/* Main Visual - Hero Section */
@keyframes hero-photo-loop {
  from { background-position: 0 top, 1930px top; }
  to   { background-position: -1930px top, 0 top; }
}

/* Main Visual Section */
.mv-section {
  position: relative;
  height: clamp(600px, 75vw, 1080px);
  min-height: clamp(600px, 75vw, 1080px);
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mv-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background:
    radial-gradient(ellipse 45% 160% at left bottom, #FFDAC7 0%, transparent 65%),
    radial-gradient(ellipse 45% 160% at right bottom, #FFDAC7 0%, transparent 65%),
    linear-gradient(to top, #FFDAC7 0%, transparent 20%);
  z-index: 0;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("../img/top/bg_mv.jpg");
  background-repeat: no-repeat;
  background-size: 1920px auto;
  background-position: left top;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/top/mv_hero-image.png"), url("../img/top/mv_hero-image.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 1920px auto, 1920px auto;
  background-position: 0 top, 1930px top;
  animation: hero-photo-loop 40s linear infinite;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 248, 240, 0), rgba(245, 240, 232, 0));
}

.hero-visual-inner {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  padding-right: 0;
  text-align: left;
}

.hero-visual-copy {
  position: absolute;
  left: 121px;
  bottom: 60px;
  display: grid;
  gap: 15px;
  width: auto;
  aspect-ratio: 709 / 516;
  justify-items: center;
  margin: 0;
}

.hero-visual-copy-title {
  width: 100%;
  max-width: 609px;
  height: auto;
  margin: 0;
}

.hero-visual-copy-title-picture {
  display: block;
  width: 100%;
  max-width: 100%;
}

.hero-visual-copy-title-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual-copy__line {
  display: block;
  width: fit-content;
  padding: 0.08em 0.34em 0.14em;
  background: rgba(255, 255, 255, 0.96);
  font-size: 76px;
  font-weight: 700;
  line-height: 1.3023;
  color: #D7250C;
  letter-spacing: 0.03em;
}

.hero-visual-copy__line + .hero-visual-copy__line {
  margin-top: -0.04em;
}

.hero-visual-subcopy {
  position: absolute;
  right: 11.875%;
  bottom: 38px;
  display: flex;
  width: 28.55%;
  gap: 45px;
  color: var(--muted);
}

.hero-visual-copy-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  gap: 18px;
}

.hero-visual-copy p,
.hero-visual-subcopy p {
  margin: 0;
}

.dreams-and-aspirations {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: #2f241d;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.06em;
  text-align: center;
  text-shadow:
    -3px 0 0 rgba(255, 255, 255, 0.96),
    3px 0 0 rgba(255, 255, 255, 0.96),
    0 -3px 0 rgba(255, 255, 255, 0.96),
    0 3px 0 rgba(255, 255, 255, 0.96),
    -2px -2px 0 rgba(255, 255, 255, 0.96),
    2px -2px 0 rgba(255, 255, 255, 0.96),
    -2px 2px 0 rgba(255, 255, 255, 0.96),
    2px 2px 0 rgba(255, 255, 255, 0.96),
    0 0 12px rgba(255, 255, 255, 0.94),
    0 0 24px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(255, 255, 255, 0.58);
}

.concept-wrap {
  display: block;
  width: fit-content;
}

.concept-image {
  width: 100%;
}

.anniversary {
  position: relative;
  flex: 0 0 auto;
  align-self: stretch;
  display: grid;
  place-items: center;
  width: 173px;
  aspect-ratio: 173 / 170;
  height: auto;
  color: #fff;
}

.anniversary::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../img/top/bg_anniversary.svg") no-repeat center / 100% 100%;
  z-index: -1;
}

.anniversary p {
  position: relative;
  top: -1px;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "lead lead" "number suffix";
  align-content: center;
  justify-content: center;
  justify-items: center;
  align-items: stretch;
  column-gap: 4px;
  row-gap: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.anniversary-lead {
  grid-area: lead;
}

.anniversary-number {
  grid-area: number;
  font-size: 62px;
  line-height: 0.92;
}

.anniversary-suffix {
  grid-area: suffix;
  display: grid;
  place-items: center;
  align-self: stretch;
  font-size: 22px;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.08em;
}

.hero-visual-subcopy-proof {
  flex: 0 1 360px;
  display: grid;
  gap: 10px;
}

.popularity {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  margin: 0;
  color: #D7250C;
  font-size: 24px;
  font-weight: 700;
  line-height: 2.4;
  padding-left: 1em;
  white-space: nowrap;
}

.popularity::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../img/top/bg_popularity.png") no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: -1;
}

.social-proof-copy {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 2px;
  justify-items: start;
  justify-self: end;
  width: fit-content;
  max-width: 100%;
  padding: 6px 18px 8px;
  color: #2f241d;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0.01em;
  isolation: isolate;
}

.social-proof-copy::before,
.social-proof-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.social-proof-copy__reason,
.social-proof-copy__result {
  position: relative;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  justify-self: start;
}

.social-proof-copy__glow,
.social-proof-copy__text {
  display: block;
  white-space: nowrap;
}

.social-proof-copy__glow {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  -webkit-text-fill-color: currentColor;
  pointer-events: none;
  text-shadow:
    -3px 0 0 rgba(255, 255, 255, 0.97),
    3px 0 0 rgba(255, 255, 255, 0.97),
    0 -3px 0 rgba(255, 255, 255, 0.97),
    0 3px 0 rgba(255, 255, 255, 0.97),
    -2px -2px 0 rgba(255, 255, 255, 0.97),
    2px -2px 0 rgba(255, 255, 255, 0.97),
    -2px 2px 0 rgba(255, 255, 255, 0.97),
    2px 2px 0 rgba(255, 255, 255, 0.97),
    -3px -1px 0 rgba(255, 255, 255, 0.97),
    3px -1px 0 rgba(255, 255, 255, 0.97),
    -3px 1px 0 rgba(255, 255, 255, 0.97),
    3px 1px 0 rgba(255, 255, 255, 0.97),
    -1px -3px 0 rgba(255, 255, 255, 0.97),
    1px -3px 0 rgba(255, 255, 255, 0.97),
    -1px 3px 0 rgba(255, 255, 255, 0.97),
    1px 3px 0 rgba(255, 255, 255, 0.97),
    0 0 14px rgba(255, 255, 255, 0.94),
    0 0 28px rgba(255, 255, 255, 0.78),
    0 0 44px rgba(255, 255, 255, 0.56);
}

.social-proof-copy__glow--soft {
  opacity: 1;
  transform: scale(1.05);
  transform-origin: center;
  filter: blur(8px);
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.98),
    0 0 40px rgba(255, 255, 255, 0.88),
    0 0 72px rgba(255, 255, 255, 0.68);
}

@supports (-webkit-text-stroke: 1px rgba(255, 255, 255, 0.96)) {
  .social-proof-copy__glow:not(.social-proof-copy__glow--soft) {
    -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.97);
    -webkit-text-fill-color: currentColor;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.92),
      0 0 22px rgba(255, 255, 255, 0.74),
      0 0 34px rgba(255, 255, 255, 0.5);
  }
}

.social-proof-copy__text {
  position: relative;
  z-index: 1;
  color: inherit;
  -webkit-text-fill-color: currentColor;
}

.social-proof-copy__result {
  margin-left: 2em;
}

.social-proof-copy .review,
.social-proof-copy .introduce {
  color: #D7250C;
  -webkit-text-fill-color: currentColor;
}

.social-proof-copy .social-proof-copy__glow .review,
.social-proof-copy .social-proof-copy__glow .introduce {
  color: #fff;
  -webkit-text-fill-color: currentColor;
}

@media screen and (min-width: 1920px) {
  .hero-image {
    background-size: cover;
    background-position: center top;
  }
}

@media screen and (max-width: 1679.98px) {
  .hero-image {
    background-position: 18% top;
  }
  .hero-visual-copy {
    bottom: 21%;
  }
  .hero-visual-copy__line {
    font-size: 64px;
  }
  .hero-visual-copy-title {
    height: auto;
  }
  .dreams-and-aspirations {
    font-size: 28px;
  }
}

@media screen and (max-width: 1439.98px) {
  .hero-image {
    background-position: 26% top;
  }
  .hero-visual-copy {
    left: 56px;
    top: 20%;
    bottom: auto;
    width: 50%;
  }
}

@media screen and (max-width: 1279.98px) {
  .hero-image {
    background-position: 36% top;
  }
  .hero-visual-copy__line {
    font-size: 49px;
  }
  .dreams-and-aspirations {
    font-size: 22px;
  }
  .hero-visual-subcopy {
    height: auto;
  }
  .anniversary {
    width: 136px;
  }
  .anniversary-number {
    font-size: 50px;
  }
  .anniversary-suffix {
    font-size: 16px;
  }
  .popularity {
    padding-left: 0.5em;
    padding-bottom: 0.8em;
  }
  .popularity::before {
    inset: 0;
  }
}

@media screen and (max-width: 991.98px) {
  .hero-visual-inner {
    max-width: none;
    padding: 96px 5% 0;
  }
  .hero-visual-copy {
    left: 5%;
    right: 5%;
  }
  .hero-visual-copy__line {
    font-size: 46px;
  }
  .hero-visual-subcopy {
    bottom: 32px;
    justify-content: center;
  }
  .anniversary {
    width: 40%;
  }
  .hero-visual-subcopy-proof {
    justify-items: center;
  }
  .popularity,
  .social-proof-copy {
    justify-self: center;
  }
  .dreams-and-aspirations {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .mv-section {
    height: clamp(667px, calc(521px + 38.93vw), 820px);
    min-height: 0;
    aspect-ratio: auto;
  }
  .hero-image {
    background-image: url("../img/top/hero-visual-media_sp.png");
    background-size: cover;
    background-position: 4px -151px;
  }
  .hero-image::before {
    display: none;
  }
  .hero-visual-inner {
    padding: 112px 5% 0;
  }
  .hero-visual-copy {
    top: auto;
    bottom: 280px;
    gap: 15px;
    margin: 0;
  }
  .hero-visual-copy-header {
    align-items: flex-start;
  }
  .hero-visual-copy-title {
    width: 100%;
    max-width: 606px;
    height: auto;
  }
  .hero-visual-copy-header {
    gap: 10px;
  }
  .dreams-and-aspirations {
    font-size: 31px;
  }
  .concept-wrap {
    width: 100%;
  }
  .concept-image {
    width: 100%;
  }
  .hero-visual-subcopy {
    --hero-subcopy-height: 170px;
    left: 50%;
    right: auto;
    bottom: 150px;
    align-items: stretch;
    width: 100%;
    height: var(--hero-subcopy-height);
    gap: 22px;
    justify-content: center;
    transform: translateX(-50%);
  }
  .anniversary {
    height: var(--hero-subcopy-height);
  }
  .anniversary-number {
    font-size: 74px;
  }
  .anniversary-suffix {
    font-size: 33px;
  }
  .hero-visual-subcopy-proof {
    flex: 1 1 auto;
    align-self: stretch;
    height: 100%;
    justify-items: center;
    min-width: 0;
    max-width: 100%;
  }
  .popularity {
    font-size: 20px;
    width: 68%;
    justify-self: center;
    max-width: 100%;
  }
  .popularity::before {
    background-image: url("../img/top/bg_popularity_sp.png");
  }
  .social-proof-copy {
    font-size: 31px;
    justify-items: start;
    justify-self: center;
    padding: 4px 14px 6px;
    text-align: left;
    max-width: 100%;
  }
  .social-proof-copy__reason,
  .social-proof-copy__result {
    justify-self: start;
  }
}

@media screen and (max-width: 767.98px) {
  .hero-visual-copy {
    justify-items: center;
    left: 5%;
  }

  .hero-visual-copy-title {
    width: 100%;
    max-width: none;
    height: auto;
    min-width: 0;
  }

  .hero-visual-subcopy {
    box-sizing: border-box;
  }
}

@media screen and (max-width: 575.98px) {
  .hero-visual-inner {
    padding: 100px 5% 0;
  }
  .hero-visual-copy {
    top: auto;
    bottom: 339px;
    gap: 12px;
    min-width: 300px;
  }
  .hero-visual-copy-title {
    width: 100%;
    max-width: none;
    height: auto;
    min-width: 0;
  }
  .hero-visual-copy__line {
    font-size: 58px;
  }
  .dreams-and-aspirations {
    font-size: 25px;
  }
  .concept-wrap {
    max-width: 558px;
    height: 80px;
  }
  .hero-visual-subcopy {
    --hero-subcopy-height: 154px;
    bottom: 170px;
    max-width: 488px;
    min-height: var(--hero-subcopy-height);
    height: var(--hero-subcopy-height);
    gap: 16px;
  }
  .anniversary {
    width: 197px;
    height: var(--hero-subcopy-height);
    overflow: visible;
  }
  .anniversary::before {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .anniversary-number {
    font-size: 56px;
  }
  .anniversary-suffix {
    font-size: 25px;
  }
  .hero-visual-subcopy-proof {
    width: calc(100% - 197px - 16px);
    max-width: 100%;
    min-width: 0;
  }
  .popularity {
    width: 100%;
    aspect-ratio: 215 / 43;
    min-height: 0;
    display: flex;
    align-items: center;
    padding: 2px 8px 13px;
    font-size: clamp(14px, calc(18 / 575 * 100vw), 22px);
    line-height: 1.2;
  }
  .popularity::before {
    background-image: url("../img/top/bg_popularity_sp.png");
    background-size: 100% 100%;
  }
  .social-proof-copy {
    width: 100%;
    padding: 4px 0 6px;
    font-size: clamp(14px, calc(20 / 575 * 100vw), 24px);
  }
}

@media screen and (max-width: 375px) {
  .mv-section {
    margin-top: 0;
    padding-top: 0;
    height: 667px;
    min-height: 667px;
  }
  .hero-visual-inner {
    padding: 84px 18px 0;
  }
  .hero-visual-copy {
    top: auto;
    bottom: 221px;
    max-width: 340px;
    min-width: 333px;
    gap: 8px;
  }
  .hero-visual-copy-title {
    width: 100%;
    max-width: none;
    height: auto;
    min-width: 0;
  }
  .hero-visual-copy__line {
    font-size: 38px;
  }
  .dreams-and-aspirations {
    font-size: 16px;
  }
  .concept-wrap {
    max-width: 362.85px;
    height: 51.67px;
  }
  .hero-visual-subcopy {
    --hero-subcopy-height: 98.77px;
    bottom: 84px;
    max-width: 317.74px;
    min-height: var(--hero-subcopy-height);
    height: var(--hero-subcopy-height);
    gap: 18.4px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .anniversary {
    width: 100.29px;
    height: var(--hero-subcopy-height);
    overflow: visible;
  }
  .anniversary::before {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .anniversary p {
    font-size: 9px;
  }
  .anniversary-number {
    font-size: 36px;
  }
  .anniversary-suffix {
    font-size: 12px;
  }
  .hero-visual-subcopy-proof {
    flex: 1 1 auto;
    width: calc(100% - 100.29px - 18.4px);
    height: auto;
    align-self: flex-start;
    gap: 2px;
    min-width: 0;
  }
  .popularity {
    width: 100%;
    aspect-ratio: 215 / 43;
    padding: 2px 6px 10px;
    font-size: clamp(12px, calc(13 / 375 * 100vw), 13px);
    line-height: 1.2;
    text-align: left;
    font-weight: bold;
  }
  .popularity::before {
    inset: 0;
  }
  .social-proof-copy {
    width: 100%;
    padding: 2px 0 0;
    font-size: 15px;
    line-height: 1.2;
    gap: 1px;
  }
  .social-proof-copy__result {
    margin-left: 2.5em;
  }
  .hero-image {
    background-position: 0 -83px;
  }
}

/* Featured News Section */

.featured-section {
  background: #FFDAC7;
}

.featured-section .kicker {
  margin-bottom: 4.8em;
}

.news-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.news-card {
  --news-main-color: #D7250C;
  display: grid;
  gap: 10px;
  transition: transform 0.2s ease;
}

.news-card:hover { transform: translateY(-4px); }

.news-card-media {
  position: relative;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-card-media picture,
.guide-page-card picture,
.software-section .software-media-wrap picture,
.album-gallery-preview__personal-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card:hover .news-card-media,
.news-card:focus-visible .news-card-media {
  border-color: var(--news-main-color);
  box-shadow: 0 10px 22px rgba(215, 37, 12, 0.18);
}

.news-card-image {
  width: 100%;
  aspect-ratio: 1342 / 828;
  object-fit: cover;
  display: block;
}

.news-card-heading {
  margin: 0 12px 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #D7250C;
  font-weight: 600;
  text-align: center;
}

.news-actions { margin-top: 14px; }
.news-links { margin: 5em 0 0; }

@media screen and (max-width: 575.98px) {
  .news-block { grid-template-columns: 1fr; }
}

.story-animation-section {
  --story-scroll-height: 420vh;
  --story-frame-height: min(1080px, 100vh);
  --story-fade-height: clamp(88px, 9.2vw, 170px);
  --story-fade-spread: clamp(6%, 7vw, 10%);
  position: relative;
  z-index: 3;
  height: var(--story-scroll-height);
  padding: 0;
  background: #f3d9c8;
}

.story-animation__container {
  width: 100vw;
  height: var(--story-frame-height);
  position: sticky;
  top: 0;
  padding: 0;
}

.story-animation__frame-wrap {
  position: relative;
  height: var(--story-frame-height);
}

.story-animation__frame-wrap::before,
.story-animation__frame-wrap::after {
  content: "";
  position: absolute;
  left: calc(var(--story-fade-spread) * -1);
  display: block;
  width: calc(100% + (var(--story-fade-spread) * 2));
  height: var(--story-fade-height);
  pointer-events: none;
  z-index: 3;
  filter: blur(clamp(8px, 1vw, 14px));
}

.story-animation__frame-wrap::before {
  top: 0;
  background:
    radial-gradient(128% 118% at 50% -12%,
      rgba(243, 217, 200, 0.96) 0%,
      rgba(255, 255, 255, 0.86) 34%,
      rgba(255, 255, 255, 0.34) 60%,
      rgba(255, 255, 255, 0) 82%
    ),
    radial-gradient(62% 86% at 12% -8%,
      rgba(243, 217, 200, 0.48) 0%,
      rgba(243, 217, 200, 0.18) 40%,
      rgba(243, 217, 200, 0) 74%
    ),
    radial-gradient(62% 86% at 88% -8%,
      rgba(243, 217, 200, 0.46) 0%,
      rgba(243, 217, 200, 0.18) 40%,
      rgba(243, 217, 200, 0) 74%
    );
}

.story-animation__frame-wrap::after {
  top: auto;
  bottom: 0;
  background:
    radial-gradient(130% 120% at 50% 112%,
      rgba(243, 217, 200, 0.96) 0%,
      rgba(255, 255, 255, 0.84) 34%,
      rgba(255, 255, 255, 0.32) 60%,
      rgba(255, 255, 255, 0) 82%
    ),
    radial-gradient(64% 88% at 12% 108%,
      rgba(243, 217, 200, 0.5) 0%,
      rgba(243, 217, 200, 0.2) 40%,
      rgba(243, 217, 200, 0) 74%
    ),
    radial-gradient(64% 88% at 88% 108%,
      rgba(243, 217, 200, 0.48) 0%,
      rgba(243, 217, 200, 0.2) 40%,
      rgba(243, 217, 200, 0) 74%
    );
}

.story-animation__frame {
  position: relative;
  top: auto;
  display: block;
  width: 100%;
  height: var(--story-frame-height);
  max-height: none;
  border: 0;
  border-radius: 0;
  background: #f3d9c8;
  pointer-events: none;
  z-index: 1;
}

@media screen and (max-width: 991.98px) {
  .story-animation-section {
    --story-scroll-height: 360vh;
    --story-frame-height: 78vh;
  }

  .story-animation__container {
    width: 100%;
  }

  .story-animation__frame {
    max-height: 760px;
  }
}

@media screen and (max-width: 575.98px) {
  .story-animation-section {
    --story-scroll-height: 420vh;
    --story-frame-height: 100vh;
  }

  .story-animation__frame {
    top: 0;
    max-height: none;
  }
}

@supports (height: 100svh) {
  .story-animation-section {
    --story-scroll-height: 420svh;
    --story-frame-height: min(1080px, 100svh);
  }

  @media screen and (max-width: 991.98px) {
    .story-animation-section {
      --story-scroll-height: 360svh;
      --story-frame-height: 78svh;
    }
  }

  @media screen and (max-width: 575.98px) {
    .story-animation-section {
      --story-scroll-height: 420svh;
      --story-frame-height: 100svh;
    }
  }
}

/* Priceless Message + Reasons Background Section */
.priceless-reasons-wrap {
  --priceless-arch-overlap: 188px;
  --priceless-bg-offset-y: 170px;
  --priceless-bg-width: clamp(1920px, 145vw, 2800px);
  --priceless-bg-size: clamp(1920px, 145vw, 2800px);
  --priceless-bg-top: -228px;
  --priceless-bg-aspect: 2333 / 3146;
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: calc(var(--priceless-arch-overlap) * -1);
  padding-top: var(--priceless-arch-overlap);
  overflow: hidden;
}

.priceless-reasons-wrap__bg {
  position: absolute;
  top: var(--priceless-bg-top);
  left: 50%;
  width: var(--priceless-bg-width);
  height: auto;
  aspect-ratio: var(--priceless-bg-aspect);
  transform: translateX(-50%);
  background-image: url("../img/top/bg_priceless_reason.png");
  background-repeat: no-repeat;
  background-size: var(--priceless-bg-size) auto;
  background-position: center var(--priceless-bg-offset-y);
  pointer-events: none;
  z-index: 0;
}

@media screen and (min-width: 992px) {
  .priceless-reasons-wrap {
    --priceless-bg-width: calc(100vw * 2333 / 1920);
    --priceless-bg-size: 100%;
  }

  .priceless-reasons-wrap__bg {
    left: calc(50% + (100vw * 112.5 / 1920));
  }
}

.priceless-reasons-wrap .priceless-message-section,
.priceless-reasons-wrap .reasons-section {
  background: transparent;
}

.priceless-message-section {
  position: relative;
  overflow: hidden;
  padding: 3.8em 0 6em;
}

.priceless-message-section .container,
.reasons-section .container { position: relative; z-index: 1; }

.priceless-message-section__copy {
  width: fit-content;
  margin: 0 auto;
}

.priceless-message-section__copy p {
  margin: 0;
  color: #D7250C;
  font-size: 46px;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.priceless-message-section__photo {
  position: absolute;
  z-index: 1;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(104, 56, 39, 0.16);
  opacity: 0.88;
  pointer-events: none;
}

.priceless-message-section__photo.is-top-left {
  width: 20vw;
  max-width: 300px;
  aspect-ratio: 4 / 3;
  left: -2%;
  top: 30px;
  border-radius: 24px;
  transform: rotate(-18deg);
}

.priceless-message-section__photo.is-top-right {
  width: 20vw;
  max-width: 300px;
  aspect-ratio: 5 / 3;
  right: 5%;
  top: 28px;
  border-radius: 999px;
  transform: rotate(-18deg);
}

.priceless-message-section__photo.is-bottom-left {
  width: 22vw;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  left: 7%;
  bottom: 56px;
  border-radius: 50%;
}

.priceless-message-section__photo.is-bottom-right {
  width: 23vw;
  max-width: 330px;
  aspect-ratio: 4 / 3;
  right: 5%;
  bottom: -24px;
  border-radius: 50%;
}

@media screen and (min-width: 1920px) {
  .priceless-reasons-wrap {
    --priceless-bg-offset-y: 128px;
  }

  .priceless-message-section {
    padding-top: 3.2em;
  }
}

@media screen and (max-width: 991.98px) {
  .priceless-reasons-wrap {
    --priceless-bg-offset-y: 130px;
    --priceless-arch-overlap: 146px;
    --priceless-bg-width: clamp(1500px, 160vw, 2200px);
    --priceless-bg-size: clamp(1500px, 160vw, 2200px);
    --priceless-bg-top: -200px;
  }
  .priceless-message-section { padding: 44px 0 54px; }
  .priceless-message-section__copy p {
    font-size: 36px;
    line-height: 1.55;
  }
  .priceless-message-section__photo.is-top-left {
    width: 220px;
    top: 14px;
    left: -10%;
  }
  .priceless-message-section__photo.is-top-right {
    width: 220px;
    right: -6%;
    top: 8px;
  }
  .priceless-message-section__photo.is-bottom-left {
    width: 250px;
    left: -7%;
    bottom: 22px;
  }
  .priceless-message-section__photo.is-bottom-right {
    width: 250px;
    right: -7%;
    bottom: -38px;
  }
}

@media screen and (max-width: 575.98px) {
  .priceless-reasons-wrap {
    --priceless-bg-offset-y: 76px;
    --priceless-arch-overlap: 104px;
    --priceless-bg-width: clamp(760px, 128vw, 1080px);
    --priceless-bg-size: clamp(760px, 128vw, 1080px);
    --priceless-bg-top: -118px;
    --priceless-bg-aspect: 689 / 1563;
  }
  .priceless-reasons-wrap__bg {
    background-image: url("../img/top/bg_priceless_reason_sp.png");
  }
  .priceless-message-section { padding: 40px 54px 46px 65px; }
  .priceless-message-section__copy {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .priceless-message-section__copy p {
    --design-font-size: 18;
    --design-line-height: 40;
    --design-tracking: 100;
    font-size: calc(var(--design-font-size) * 1px);
    font-weight: 700;
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
    white-space: nowrap;
  }
  .priceless-message-section__photo {
    opacity: 0.7;
    filter: saturate(0.88);
  }
  .priceless-message-section__photo.is-top-left {
    width: 36vw;
    left: -14%;
    top: 10px;
  }
  .priceless-message-section__photo.is-top-right {
    width: 37vw;
    right: -16%;
    top: 16px;
  }
  .priceless-message-section__photo.is-bottom-left {
    width: 42vw;
    left: -14%;
    bottom: 70px;
  }
  .priceless-message-section__photo.is-bottom-right {
    width: 44vw;
    right: -18%;
    bottom: -26px;
  }
}

/* Reasons Section */
.reasons-section{
  position: relative;
  overflow: hidden;
  padding: 2em 0 10em;
}

.reasons-section__veil {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  filter: blur(4px);
}

.reasons-section__head {
  position: relative;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 28px 0 20px;
  background: url("../img/top/bg_center-heart.png") no-repeat center center;
  background-size: min(929px, 92vw) auto;
}

.reasons-section__title {
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
  line-height: 1.55;
  letter-spacing: 0.02em;
  padding: 80px 0 30px;
}

.reason-heading {
  display: block;
  width: 100%;
  max-width: 697px;
  line-height: 0;
}

.reason-heading__image {
  display: block;
  width: 100%;
  height: auto;
}

.reasons-section__title-mark {
  display: inline-block;
  padding: 12px 18px 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(215, 37, 12, 0.1);
  font-family: 'hanatotyoutyo', serif;
  font-size: 64px;
  line-height: 1.1;
  transform: rotate(-1.2deg);
}

.reasons-section__lead {
  margin: 0;
  max-width: 560px;
  color: #433f3d;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.reasons-section__lead-break {
  display: none;
}

.reasons-section__talks {
  display: grid;
  gap: 28px;
  width: min(100%, 900px);
  margin: 0 auto;
  margin-top: 34px;
}

.reasons-section__talk {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.reasons-section__talk::before {
  content: "";
  width: 738px;
  height: 303px;
  background-image: url("../img/top/bg_speech-ballon.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 19%;
  z-index: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.reasons-section__talk--right {
  grid-template-columns: minmax(0, 1fr) 280px;
  width: 100%;
  max-width: 920px;
}

.reasons-section__talk--right::before {
  left: -28px;
}

.reasons-section__person {
  position: relative;
  align-self: end;
  z-index: 1;
}

.reasons-section__person::after {
  content: none;
}

.reasons-section__staff-image {
  width: 100%;
  height: 30vw;
  min-height: 260px;
  max-height: 380px;
  object-fit: cover;
}

.reasons-section__bubble {
  position: relative;
  padding: 40px 48px 40px 0;
  min-height: 186px;
  z-index: 2;
}


.reasons-section__talk--right .reasons-section__bubble::before {
  left: auto;
  right: -16px;
  bottom: 28px;
}

.reasons-section__talk--right .reasons-section__bubble::after {
  right: auto;
  left: 26px;
  top: auto;
  bottom: 16px;
}

.reasons-section__bubble--left {
  padding-left: 140px;
  padding-right: 0 !important;
}

.reasons-section__bubble p {
  margin: 0;
  text-align: left;
  color: #403a38;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.79;
  letter-spacing: 0.056em;
}

.reasons-section__cards {
  margin-top: 7rem;
  display: flex;
  gap: 4px;
}

.reasons-section__card {
  position: relative;
  overflow: hidden;
  width: 25%;
}

.reasons-section__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reasons-section__cards-merged-image {
  display: none;
  width: 100%;
  height: auto;
}

.reasons-section__actions {
  margin-top: 7rem;
}

.reasons-section__cta {
  --design-font-size: 16;
  --design-line-height: 42;
  --design-tracking: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 32px;
  border: 0;
  background: #D7250C;
  color: #fff;
  font-size: calc(var(--design-font-size) * 1px);
  font-weight: 500;
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  box-shadow: none;
  transition: none;
}

.reasons-section__cta::after {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%2024%2024%27%20fill=%27none%27%3E%3Cpath%20d=%27M9%206l6%206-6%206%27%20stroke=%27%23D7250C%27%20stroke-width=%272.2%27%20stroke-linecap=%27round%27%20stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.reasons-section__cta:hover,
.reasons-section__cta:focus-visible,
.reasons-section__cta:active {
  background: #D7250C;
  color: #fff;
  box-shadow: none;
  transform: none;
}

@media screen and (max-width: 1279.98px) {
  .reasons-section__cards {
    margin-top: clamp(48px, 5vw, 7rem);
    display: block;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
  }

  .reasons-section__cards .reasons-section__card {
    display: none;
  }

  .reasons-section__cards-merged-image {
    display: block;
    width: 100%;
    max-width: none;
  }

  .reasons-section__card {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

}

@media screen and (max-width: 1199.98px) {
  .reasons-section__talks {
    width: min(100%, 900px);
  }

  .reasons-section__talk::before,
  .reasons-section__talk--right::before {
    width: clamp(520px, 74vw, 738px);
    height: auto;
    aspect-ratio: 738 / 303;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .reasons-section__talk {
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  }

  .reasons-section__talk--right {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 30%);
    max-width: none;
  }

  .reasons-section__bubble {
    padding: 34px 30px 34px 0;
  }

  .reasons-section__bubble--left {
    padding-left: clamp(96px, 10vw, 140px);
  }

  .reasons-section__bubble p {
    font-size: clamp(20px, 2.3vw, 28px);
  }

  .reasons-section__staff-image {
    height: clamp(240px, 30vw, 360px);
    min-height: 220px;
  }
}

@media screen and (max-width: 991.98px) {
  .reasons-section__talks {
    width: min(100%, 760px);
    max-width: none;
    margin-top: 24px;
    gap: 20px;
  }

  .reasons-section__talk {
    grid-template-columns: minmax(170px, 32%) minmax(0, 1fr);
    width: 100%;
    justify-items: stretch;
  }

  .reasons-section__talk--right {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 29%);
  }

  .reasons-section__talk::before,
  .reasons-section__talk--right::before {
    width: clamp(460px, 90vw, 620px);
    height: auto;
    aspect-ratio: 738 / 303;
    background-image: url("../img/top/bg_speech-ballon.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .reasons-section__bubble,
  .reasons-section__bubble--left {
    min-height: auto;
    padding: 28px 18px;
    order: 0;
  }

  .reasons-section__bubble {
    padding-right: 0;
  }

  .reasons-section__bubble--left {
    padding-left: clamp(166px, 24vw, 220px);
    padding-right: 0;
  }

  .reasons-section__bubble p {
    text-align: left;
    font-size: clamp(18px, 2.1vw, 22px);
    line-height: 1.62;
  }

  .reasons-section__person {
    width: 100%;
    max-width: 210px;
    order: 0;
  }

  .reasons-section__talk--right .reasons-section__person {
    max-width: 188px;
    order: 0;
  }

  .reasons-section__staff-image {
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }
}

@media screen and (max-width: 767.98px) {
  .reasons-section{
    padding: 48px 0 58px;
  }

  .reasons-section__head {
    gap: 8px;
    padding: 12px 0 12px;
  }

  .reasons-section__title {
    --design-font-size: 21;
    --design-line-height: 33;
    --design-tracking: 100;
    gap: 8px;
    padding: 58px 0 24px;
    font-size: clamp(18px, calc(21 / 375 * 100vw), 21px);
    font-weight: 700;
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  }

  .reasons-section__title > span:first-child,
  .reasons-section__title .reason-heading > span:last-child {
    display: block;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }

  .reason-heading {
    width: clamp(248px, calc(276 / 375 * 100vw), 276px);
    max-width: 276px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .reasons-section__title-mark {
    padding: 0;
    background: transparent;
    box-shadow: none;
    font-family: "Yu Gothic", YuGothic, sans-serif;
    font-size: clamp(24px, calc(30 / 375 * 100vw), 30px);
    line-height: 1.2;
    transform: none;
  }

  .reasons-section__title .reason-heading > span:last-child {
    font-size: clamp(16px, calc(17 / 375 * 100vw), 17px);
    letter-spacing: 0.2em;
  }

  .reasons-section__lead {
    --design-font-size: 14;
    --design-line-height: 22;
    --design-tracking: 60;
    max-width: 330px;
    font-size: calc(var(--design-font-size) * 1px);
    font-weight: 500;
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  }
  .reasons-section__lead-break {
    display: block;
  }

  .reasons-section__talks {
    width: 100%;
    max-width: 420px;
    margin-top: 22px;
    gap: 24px;
  }

  .reasons-section__talk {
    --reasons-talk-bubble-height: 172px;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    justify-items: center;
  }

  .reasons-section__talk::before,
  .reasons-section__talk--right::before {
    content: "";
    width: min(100%, 420px);
    height: var(--reasons-talk-bubble-height);
    background-image: url("../img/top/bg_speech-ballon.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    left: 50%;
    top: calc(var(--reasons-talk-bubble-height) / 2);
    transform: translate(-50%, -50%);
  }

  .reasons-section__talk--right {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .reasons-section__talk--right .reasons-section__person {
    order: 2;
    width: min(58%, 188px);
    max-width: 188px;
  }

  .reasons-section__person {
    width: min(62%, 220px);
    max-width: 220px;
    order: 2;
  }

  .reasons-section__staff-image {
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }

  .reasons-section__bubble,
  .reasons-section__bubble--left {
    width: 100%;
    max-width: 420px;
    min-height: var(--reasons-talk-bubble-height);
    padding: 24px 22px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    order: 1;
  }

  .reasons-section__bubble p {
    --design-font-size: 14;
    --design-line-height: 24;
    --design-tracking: 40;
    text-align: center;
    font-size: calc(var(--design-font-size) * 1px);
    font-weight: 700;
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  }
}

@media screen and (max-width: 575.98px) {
  .reasons-section{
    padding: 160px 0 52px;
  }
  .reasons-section__head {
    padding: 10px 0 10px;
    background-size: min(360px, 96vw) auto;
  }
  .reasons-section__talks {
    width: 100%;
    max-width: none;
    gap: 12px;
  }
  .reasons-section__talk {
    --reasons-talk-bubble-height: clamp(148px, calc(164 / 375 * 100vw), 164px);
    gap: 0;
  }
  .reasons-section__talk::before,
  .reasons-section__talk--right::before {
    width: 100%;
    max-width: none;
    background-image: url("../img/top/bg_speech-ballon_sp.png");
    background-size: auto;
    top: 18%;
    transform: translate(-50%, -50%);
  }
  .reasons-section__bubble,
  .reasons-section__bubble--left {
    min-height: var(--reasons-talk-bubble-height);
    padding: 20px 18px;
  }
  .reasons-section__bubble p {
    --design-font-size: 14;
    --design-line-height: 24;
    font-size: calc(var(--design-font-size) * 1px);
    line-height: calc(var(--design-line-height) / var(--design-font-size));
  }
  .reasons-section__person {
    width: min(70%, 260px);
    margin-top: -70px;
  }
  .reasons-section__talk--right .reasons-section__person {
    width: min(54%, 170px);
    max-width: 170px;
  }
  .reasons-section__cards {
    margin-top: 40px;
    display: block;
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .reasons-section__card {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
  .reasons-section__actions {
    margin-top: 24px;
  }
  .reasons-section__cta {
    --design-font-size: 14;
    --design-line-height: 42;
    --design-tracking: 0;
    min-width: 0;
    width: clamp(248px, calc(276 / 375 * 100vw), 276px);
    padding: 10px 22px;
    font-size: calc(var(--design-font-size) * 1px);
    font-weight: 600;
    line-height: calc(var(--design-line-height) / var(--design-font-size));
    letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  }
}

/* Customer Service Pages */
.service-section {
  --service-bg-width: max(1920px, 100vw);
  --service-bg-height: calc(var(--service-bg-width) * 1748 / 1920);
  --service-fog-top-overlap: 542px;
  position: relative;
  z-index: 3;
  padding-block: 10em;
  background: transparent;
}

.service-section::before {
  content: "";
  position: absolute;
  top: calc(var(--service-fog-top-overlap) * -1);
  left: 50%;
  width: 100vw;
  height: var(--service-bg-height);
  transform: translateX(-50%);
  background-color: transparent;
  background-image: url("../img/top/bg_service.png");
  background-repeat: no-repeat;
  background-position: center 13em;
  background-size: var(--service-bg-width) auto;
  pointer-events: none;
  z-index: -1;
}

.service-section::after {
  content: none;
}

.service-section .kicker {
  margin-bottom: 3.7em;
}

.service-section-rule {
  width: 66px;
  height: 2px;
  margin-bottom: 22px;
}

.service-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.service-section-grid .guide-page-card {
  display: flex;
  flex-direction: column;
}
.service-section-grid .guide-page-card picture {
  flex: 1;
}
.service-section-grid .guide-page-card picture img {
  height: 100%;
  object-fit: cover;
}
.guide-page-card img {
  border-radius: 0 40px 0 0;
}

@media screen and (max-width: 991.98px) {
  .service-section {
    --service-bg-width: 100vw;
    --service-bg-height: auto;
    --service-fog-top-overlap: 0;
    padding: 42px 0 46px;
  }
  .service-section::before {
    top: 0;
    height: 100%;
    background-position: center top;
    background-size: cover;
  }
  .service-section-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }
  .service-section-grid .guide-page-card {
    display: block;
    width: 628px;
    max-width: 100%;
    margin-inline: auto;
  }
}

@media screen and (max-width: 703.98px) {
  .service-section-grid .guide-page-card {
    width: min(100%, 340px);
  }
}

@media screen and (max-width: 767.98px) {
  .service-section-grid {
    gap: 20px;
  }
}

/* Album Lineup */
.album-lineup-section-card,
.common-outline-button,
.support-section__card-link {
  --round-arrow-size: 18px;
  --round-arrow-glyph-size: 10px 10px;
  --round-arrow-icon-image: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%2024%2024%27%20fill=%27none%27%3E%3Cpath%20d=%27M9%206l6%206-6%206%27%20stroke=%27%23fff%27%20stroke-width=%272.2%27%20stroke-linecap=%27round%27%20stroke-linejoin=%27round%27/%3E%3C/svg%3E");
}

.album-lineup-section-card {
  --round-arrow-size: 24px;
  --round-arrow-glyph-size: 10px 10px;
}

.common-outline-button {
  --round-arrow-size: 18px;
  --round-arrow-glyph-size: 10px 10px;
}

.support-section__card-link {
  --round-arrow-size: 18px;
  --round-arrow-glyph-size: 10px 10px;
}

.album-lineup-section-card::after,
.common-outline-button::after,
.support-section__card-link::before {
  content: "";
  width: var(--round-arrow-size);
  height: var(--round-arrow-size);
  border-radius: 50%;
  background-color: #D7250C;
  background-image: var(--round-arrow-icon-image);
  background-repeat: no-repeat;
  background-size: var(--round-arrow-glyph-size);
  background-position: center;
}
.album-lineup-section {
  position: relative;
  z-index: 4;
  overflow: hidden;
  min-height: 0;
  padding-top: clamp(66px, 6vw, 96px);
  padding-bottom: clamp(54px, 7vw, 94px);
  background: #fff;
}

.album-lineup-section .kicker {
  margin: 6px auto 32px;
}

.album-lineup-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/top/bg_lineup.jpg") no-repeat center center / cover;
  opacity: 0.62;
  pointer-events: none;
  z-index: 0;
}

.album-lineup-section::after {
  content: none;
}

.album-lineup-section .container {
  position: relative;
  z-index: 1;
  width: min(100%, 1400px);
  margin-inline: 0;
}

.album-lineup-section-grid {
  display: grid;
  width: min(100%, 1400px);
  margin-inline: auto;
  grid-template-columns: 96px 1fr;
  gap: 30px 53px;
  align-items: stretch;
}

.album-lineup-section-label {
  --design-font-size: 28;
  --design-line-height: 42;
  --design-tracking: 100;
  margin: 0;
  align-self: center;
  justify-self: center;
  font-size: clamp(28px, 3vw, calc(var(--design-font-size) * 1px));
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 700;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  text-align: center;
  white-space: nowrap;
}

.album-lineup-section-label-sub {
  display: block;
  margin-left: 0;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 500;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.album-lineup-section-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.album-lineup-section-card {
  --lineup-icon-left: clamp(14px, calc(7.41px + 1.76vw), 32px);
  --lineup-icon-size: clamp(18px, calc(12.15px + 1.56vw), 34px);
  --lineup-icon-offset-y: 0px;
  --round-arrow-size: clamp(18px, calc(15.8px + 0.6vw), 24px);
  position: relative;
  width: min(100%, 603px);
  max-width: 603px;
  height: clamp(60px, calc(11.34px + 12.98vw), 193px);
  min-height: clamp(60px, calc(11.34px + 12.98vw), 193px);
  border-radius: 12px;
  border: 1px solid #efc5b8;
  background: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: inherit;
  box-shadow: 0 6px 18px rgba(131, 95, 74, 0.06);
}

.album-lineup-section-card::before {
  content: none;
}

.album-lineup-section-card::after {
  position: absolute;
  right: clamp(10px, calc(5.61px + 1.17vw), 22px);
  top: 50%;
  transform: translateY(-50%);
}

.album-lineup-section-card .album-lineup-section-card-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, calc(5.61px + 1.17vw), 22px);
  width: auto;
  margin-inline: auto;
  text-align: left;
}

.album-lineup-section-card-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  width: auto;
  margin-inline: auto;
}

.album-lineup-section-card-eyebrow {
  display: block;
  margin: 0;
  font-size: clamp(10px, calc(7.8px + 0.58vw), 16px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #7b6358;
  white-space: nowrap;
}

.album-lineup-section-card-stack .album-lineup-section-card-main {
  margin-inline: 0;
  justify-content: flex-start;
}

.album-lineup-section-card.is-self-made .album-lineup-section-card-stack {
  --lineup-main-gap: clamp(10px, calc(5.61px + 1.17vw), 22px);
}

.album-lineup-section-card.is-self-made .album-lineup-section-card-eyebrow {
  padding-left: calc(var(--lineup-icon-size) + var(--lineup-main-gap));
}

.album-lineup-section-card .album-lineup-section-card-main::before {
  content: "";
  width: var(--lineup-icon-size);
  height: var(--lineup-icon-size);
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: translateY(var(--lineup-icon-offset-y));
}

.album-lineup-section-card.is-self-made .album-lineup-section-card-main::before {
  background-image: url("../img/top/ico_self-made.png");
  --lineup-icon-offset-y: 1px;
}

.album-lineup-section-card.is-order-made .album-lineup-section-card-main::before {
  background-image: url("../img/top/ico_pro.png");
  --lineup-icon-offset-y: -1px;
}

.album-lineup-section-card.is-small .album-lineup-section-card-main::before {
  background-image: url("../img/top/ico_small.png");
  --lineup-icon-size: 33px;
  --lineup-icon-offset-y: 1px;
}

.album-lineup-section-card.is-large .album-lineup-section-card-main::before {
  background-image: url("../img/top/ico_large.png");
  --lineup-icon-size: 34px;
  --lineup-icon-offset-y: -1px;
}

.album-lineup-section-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff5f0;
  border: 1px solid #ffd9cf;
  color: #D7250C;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.album-lineup-section-card-main {
  font-size: clamp(16px, calc(8.32px + 1.98vw), 36px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #2f241d;
}

@media screen and (min-width: 992px) {
  .album-lineup-section-card-main {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.album-lineup-section-card-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #D7250C;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

@media screen and (max-width: 991.98px) {
  .album-lineup-section {
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 48px;
  }
  .album-lineup-section-grid { grid-template-columns: 1fr; gap: 12px; justify-items: center; }
  .album-lineup-section-label { justify-self: center; text-align: center; }
  .album-lineup-section-label br { display: none; }
  .album-lineup-section-label-sub { display: inline-block; margin-left: 0.14em; }
  .album-lineup-section-row { grid-template-columns: 1fr; width: 100%; justify-items: center; }
}

@media screen and (max-width: 767.98px) {
  .album-lineup-section {
    margin-bottom: 0;
    padding-bottom: 140px;
    padding-left: clamp(17.5px, calc(23 / 375 * 100vw), 23px);
    padding-right: clamp(17.5px, calc(23 / 375 * 100vw), 23px);
  }
  .album-lineup-section::before {
    background-image: url("../img/top/bg_lineup_sp.jpg");
    background-position: center top;
  }
  .album-lineup-section-grid {
    width: min(100%, 330px);
    margin-inline: auto;
    gap: 18px;
  }
  .album-lineup-section-label {
    font-size: 24px;
  }
  .album-lineup-section-label-sub {
    font-size: 14px;
  }
  .album-lineup-section-row {
    width: 100%;
    gap: 10px;
  }
  .album-lineup-section-grid > .album-lineup-section-row + .album-lineup-section-label {
    margin-top: 24px;
  }
  .album-lineup-section-card {
    --lineup-icon-size: 30px;
    --lineup-icon-offset-y: 0px;
    --round-arrow-size: 22px;
    --round-arrow-glyph-size: 9px 9px;
    width: 100%;
    max-width: 330px;
    height: 60px;
    min-height: 60px;
    box-shadow: none;
  }
  .album-lineup-section-card.is-self-made,
  .album-lineup-section-card.is-order-made,
  .album-lineup-section-card.is-small,
  .album-lineup-section-card.is-large {
    --lineup-icon-size: 30px;
    --lineup-icon-offset-y: 0px;
  }
  .album-lineup-section-card::after {
    right: 14px;
  }
  .album-lineup-section-card .album-lineup-section-card-main {
    gap: 14px;
  }
  .album-lineup-section-card-eyebrow {
    font-size: 11px;
    line-height: 1.15;
  }
  .album-lineup-section-card.is-self-made .album-lineup-section-card-eyebrow {
    padding-left: calc(var(--lineup-icon-size) + 14px);
    font-size: 10px;
  }
  .album-lineup-section-card-main {
    font-size: 18px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 575.98px) {
  .album-lineup-section-label { font-size: 24px; }
  .album-lineup-section-card-arrow { font-size: 20px; }
}

/* FAQ Section */
.faq-section {
  background: #FFEFE6;
}

.faq-section .container {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 0;
}

.faq-section-head,
.faq-section-list {
  width: 100%;
}

.faq-section-head {
  margin-bottom: 0;
}

.support-section__kicker,
.faq-section-kicker,
.news-section-head .kicker {
  margin: 8px 0 2em;
  text-align: left;
}

.faq-section-list {
  display: grid;
  gap: 10px;
}

.faq-section-item {
  color: #2f241d;
  overflow: hidden;
}

.faq-section-question {
  display: grid;
  grid-template-columns: 26px 1fr 30px;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 87px;
  padding: 0 26px 0 34px;
  border: 0;
  border-bottom: 1px solid #E4E4E4;
  background: #fff;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.faq-section-question:focus-visible {
  outline: 2px solid #D7250C;
  outline-offset: -2px;
}

.faq-section-mark,
.faq-section-answer p::before {
  --design-font-size: 24;
  --design-line-height: 32;
  --design-tracking: 100;
  color: #D7250C;
  font-family: "Yu Gothic", YuGothic, sans-serif;
  font-size: calc(var(--design-font-size) * 1px);
  font-weight: 700;
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  text-align: center;
}

.faq-section-text {
  --design-font-size: 20;
  --design-line-height: 27;
  --design-tracking: 100;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 700;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.faq-section-arrow {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%2030%2030%27%20fill=%27none%27%3E%3Cpath%20d=%27M7%2011l8%208%208-8%27%20stroke=%27%23D7250C%27%20stroke-width=%273.2%27%20stroke-linecap=%27round%27%20stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: center;
  transition: transform 0.2s ease;
}

.faq-section-answer {
  --design-font-size: 16;
  --design-line-height: 28;
  --design-tracking: 60;
  display: none;
  padding: 0 34px 24px 78px;
  border-top: 1px solid rgba(215, 37, 12, 0.22);
  color: #4a3f37;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.faq-section-answer p {
  position: relative;
  margin: 10px 0 0;
  padding-left: 44px;
}

.faq-section-answer p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}

.faq-section-answer p + p::before {
  content: none;
}

.faq-section-item.is-open .faq-section-answer {
  display: block;
  background-color: #fff;
}

.faq-section-item.is-open .faq-section-arrow {
  transform: rotate(180deg);
}

@media screen and (max-width: 1439.98px) {
  .faq-section-head,
  .faq-section-list {
    padding-inline: 16px;
  }
}

@media screen and (max-width: 991.98px) {
  .faq-section {
    padding: 72px 0 80px;
  }

  .faq-section-item {
    min-height: 0;
  }

  .faq-section-question {
    min-height: 0;
    padding: 22px 16px;
    grid-template-columns: 22px 1fr 30px;
    gap: 12px;
  }

  .faq-section-mark,
  .faq-section-answer p::before {
    font-size: 22px;
  }

  .faq-section-text {
    font-size: 20px;
    line-height: 1.55;
  }

  .faq-section-answer {
    padding: 0 16px 20px 50px;
  }

  .faq-section-answer p {
    padding-left: 34px;
  }
}

@media screen and (max-width: 575.98px) {
  .faq-section {
    padding: 56px 0 64px;
  }

  .faq-section-kicker {
    font-size: 16px;
  }

  .faq-section-question {
    padding: 18px 14px;
  }

  .faq-section-text {
    font-size: 17px;
  }

  .faq-section-answer {
    --design-font-size: 14;
    --design-line-height: 24;
    --design-tracking: 40;
    padding: 0 14px 18px 42px;
  }

  .faq-section-answer p {
    padding-left: 30px;
  }
}

/* =========================
   Software Intro (REFERENCE STYLE)
   Keep this block as reference and avoid visual drift.
   Tweak values here only when design updates require it.
========================= */
/* Software Section */
.software-section{
  padding-right: 0;
}

.software-section .software-shell{
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
  column-gap: clamp(24px, 2.8vw, 42px);
  align-items: stretch;
}

.software-section .software-copy-block{
  width: 100%;
  max-width: 680px;
  padding: 4px 0 0;
  align-self: center;
}

.software-section .kicker{
  margin-bottom: 4em;
  text-align: left;
}

.software-headline{
  --design-font-size: 41;
  --design-font-size-min: 34;
  --design-font-size-max: 41;
  --design-font-size-fluid: 2.7vw;
  --design-line-height: 77;
  --design-tracking: 40;
  margin: 0 0 24px;
  font-size: clamp(
    calc(var(--design-font-size-min) * 1px),
    var(--design-font-size-fluid),
    calc(var(--design-font-size-max) * 1px)
  );
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  color: #1f1f1f;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  white-space: nowrap;
}

.software-copy{
  --design-font-size: 20;
  --design-line-height: 44;
  --design-tracking: 60;
  margin: 0;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  color: #2d2d2d;
}

.software-links{
  margin: 5em 0 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
}

.common-outline-button{
  --design-font-size: 16;
  --design-line-height: 42;
  --design-tracking: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 37px;
  padding: 10px 30px;
  border: 1px solid #D7250C;
  border-radius: 999px;
  background: #fff;
  color: #3a2b24;
  font-size: calc(var(--design-font-size) * 1px);
  font-weight: 700;
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  white-space: nowrap;
}

.common-outline-button::after{
  flex: 0 0 var(--round-arrow-size);
}

.software-section .software-media-wrap{
  position: relative;
  width: min(100%, 960px);
  max-width: 960px;
  aspect-ratio: 960 / 708;
  min-height: 0;
  overflow: hidden;
  background: #ececec;
  align-self: start;
  justify-self: end;
}

.software-section .software-media-wrap::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(43%, 280px);
  background: linear-gradient(90deg, rgba(243, 243, 243, 0.98) 0%, rgba(243, 243, 243, 0.55) 46%, rgba(243, 243, 243, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.software-section .software-media-wrap::after{
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 100%);
  z-index: 1;
  pointer-events: none;
}

.software-section .software-media{
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

@media screen and (max-width: 1679.98px){
  .software-section .software-shell{
    column-gap: 0;
  }
}

@media screen and (max-width: 1279.98px){
  .software-section{
    padding-left: clamp(37.5px, 6vw, 96px);
    padding-right: clamp(37.5px, 6vw, 96px);
  }

  .software-section .software-shell{
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vw, 36px);
  }

  .software-section .software-copy-block{
    order: 0;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .software-section .software-media-wrap{
    order: -1;
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    justify-self: center;
  }
}

@media screen and (max-width: 991.98px){
  .software-section{
    padding-top: 0;
    padding-bottom: 52px;
  }

  .software-section .software-shell{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .software-section .software-copy-block{
    max-width: none;
    padding: 0;
  }

  .software-section .kicker{
    --design-font-size: 14;
    --design-line-height: 20;
  }

  .software-headline{
    --design-font-size: 38;
    --design-font-size-min: 30;
    --design-font-size-max: 38;
    --design-font-size-fluid: 6.4vw;
    --design-line-height: 56;
    margin: 28px 0 18px;
    white-space: normal;
  }

  .software-copy{
    --design-font-size: 15;
    --design-line-height: 33;
  }

  .software-links{
    flex-wrap: wrap;
  }

  .software-section .software-media-wrap{
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    justify-self: center;
  }

  .software-section .software-media-wrap::before{
    width: min(28%, 180px);
  }

  .software-section .software-media-wrap::after{
    inset: 0;
  }
}

@media screen and (max-width: 767.98px){
  .section.software-section{
    padding-left: 17.5px;
    padding-right: 17.5px;
  }
}

@media screen and (max-width: 575.98px){
  .software-section{
    padding-top: 0;
    padding-bottom: 44px;
  }

  .software-headline{
    --design-font-size: 31;
    --design-font-size-min: 26;
    --design-font-size-max: 31;
    --design-font-size-fluid: 7.2vw;
    --design-line-height: 44;
  }

  .software-copy{
    --design-font-size: 14;
    --design-line-height: 30;
  }

  .software-links{
    flex-direction: column;
    align-items: flex-start;
  }

  .software-link-button{
    width: 100%;
    justify-content: space-between;
  }

  .software-section .software-media-wrap{
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
  }
}

/* ========================= */

/* Album Gallery Section */
.album-gallery-preview {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  padding: 3.5em 0 7em;
}

.album-gallery-preview .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.album-gallery-preview__stage {
  position: relative;
  z-index: 0;
  height: 501px;
  overflow: visible;
}

.album-gallery-preview__stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 64%;
  width: min(1443px, 92vw);
  max-width: 1443px;
  aspect-ratio: 1443 / 651;
  background-image: url("../img/top/bg_gallery.png");
  background-repeat: no-repeat;
  background-position: 50% 49%;
  background-size: 100% auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.album-gallery-preview__personal-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  aspect-ratio: 1917 / 501;
  margin: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.album-gallery-preview__personal-image {
  display: block;
  width: 100%;
  height: auto;
}

.album-gallery-preview__actions {
  position: relative;
  z-index: 2;
  margin-top: 5.6em;
}

@media screen and (max-width: 991.98px) {
  .album-gallery-preview {
    padding: 20px 0 54px;
  }
  .album-gallery-preview__stage {
    height: 420px;
  }
  .album-gallery-preview__stage::before {
    width: min(760px, 80vw);
    top: 70%;
  }
  .album-gallery-preview__personal-wrap {
    top: 52%;
  }
}

@media screen and (max-width: 767.98px) {
  .album-gallery-preview {
    padding: 16px 0 42px;
  }
  .album-gallery-preview .container {
    overflow: visible;
  }
  .album-gallery-preview__stage {
    width: 100vw;
    height: calc(196.7 / 375 * 100vw);
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
  }
  .album-gallery-preview__stage::before {
    width: min(560px, 100vw);
    top: 64%;
  }
  .album-gallery-preview__personal-wrap {
    top: 50%;
    width: 100vw;
    height: calc(253 / 375 * 100vw);
    aspect-ratio: auto;
  }
  .album-gallery-preview__personal-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .album-gallery-preview__actions {
    margin-top: 14px;
  }
}

/* Achievement Showcase */
.achievement-showcase {
  position: relative;
  overflow: hidden;
  padding: 4em 0 18em;
  background: #fff;
}

.achievement-showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  aspect-ratio: 1920 / 239;
  background-image: url("../img/top/bg_achievement-showcase.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.achievement-showcase .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 0;
}

.achievement-showcase__head {
  max-width: 72.5rem;
  margin: 0 auto clamp(3rem, 6vw, 6.25rem);
  padding-inline: clamp(1rem, 2.5vw, 1.5rem);
}

.achievement-showcase__title {
  --design-font-size: 36;
  --design-line-height: 77;
  --design-tracking: 100;
  margin: 0;
  font-family: "Yu Gothic", YuGothic, sans-serif;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 700;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  text-align: center;
  color: #1D1D1D;
}

.achievement-showcase__title-break {
  display: none;
}

.achievement-showcase__awards {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.achievement-showcase__celebration {
  display: block;
  margin: 0;
}

.achievement-showcase__awards-image {
  display: block;
  width: min(1100px, 88vw);
  height: auto;
}

.achievement-showcase__voices {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: clamp(320px, 21.77vw, 418px);
  margin: 0 auto;
  background: #FFDAC7 url("../img/top/img_customers.png") no-repeat center / cover;
}

.achievement-showcase__voice {
  position: absolute;
  width: clamp(260px, 17.24vw, 331px);
  margin: 0;
  padding: 28px 28px 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.achievement-showcase__voice p {
  margin: 0;
  color: #3d3631;
  font-size: 14px;
  line-height: 1.72;
  letter-spacing: 0.01em;
}

.achievement-showcase__voice span {
  display: block;
  margin-top: 12px;
  color: #6a625b;
  font-size: 12px;
  font-weight: 700;
}

.achievement-showcase__voice--left {
  left: min(310px, 17%);
  top: -33px;
  aspect-ratio: 331 / 189;
  background-image: url("../img/top/speech-bable_left.png");

}

.achievement-showcase__voice--right {
  right: min(262px, 14vw);
  top: -40px;
  aspect-ratio: 331 / 194;
  background-image: url("../img/top/speech-bable_right.png");
}

.achievement-showcase__voice--center {
  left: 50%;
  bottom: -92px;
  transform: translateX(-50%);
  aspect-ratio: 331 / 185;
  background-image: url("../img/top/speech-bable_center.png");
}

@media screen and (max-width: 1199.98px) {
  .achievement-showcase {
    padding: 56px 0 108px;
  }

  .achievement-showcase__voice {
    padding: 24px 24px 20px;
  }

  .achievement-showcase__voice p {
    font-size: 13px;
    line-height: 1.68;
  }

  .achievement-showcase__voice span {
    margin-top: 10px;
    font-size: 11px;
  }

  .achievement-showcase__voice--left,
  .achievement-showcase__voice--right {
    top: -34px;
  }

  .achievement-showcase__voice--center {
    bottom: -80px;
  }
}

@media screen and (max-width: 1279.98px) {
  .achievement-showcase__title {
    --design-font-size: 30;
    --design-line-height: 45;
    --design-tracking: 40;
  }
}

@media screen and (max-width: 991.98px) {
  .achievement-showcase {
    padding: 48px 0 98px;
  }

  .achievement-showcase__awards-image {
    width: min(900px, 92vw);
  }

  .achievement-showcase__voice {
    width: clamp(232px, 30vw, 300px);
    padding: 20px 20px 18px;
  }

  .achievement-showcase__voice p {
    font-size: 12px;
    line-height: 1.62;
  }

  .achievement-showcase__voice--left,
  .achievement-showcase__voice--right {
    top: -26px;
  }

  .achievement-showcase__voice--center {
    bottom: -72px;
  }
}

@media screen and (max-width: 767.98px) {
  .achievement-showcase {
    padding: 42px 0 70px;
  }

  .achievement-showcase__title-break {
    display: block;
  }

  .achievement-showcase::after {
    aspect-ratio: 375 / 117;
    background-image: url("../img/top/bg_achievement-showcase_sp.png");
  }

  .achievement-showcase__awards-image {
    width: min(280px, 74.67vw);
  }

  .achievement-showcase__voices {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    gap: 12px;
    background: #FFDAC7;
  }

  .achievement-showcase__voices::before,
  .achievement-showcase__voices::after {
    content: "";
    display: block;
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
  }

  .achievement-showcase__voices::before {
    aspect-ratio: 375 / 386;
    background-image: url("../img/top/img_customers_sp1.png");
  }

  .achievement-showcase__voices::after {
    aspect-ratio: 375 / 373;
    background-image: url("../img/top/img_customers_sp2.png");
  }

  .achievement-showcase__voice {
    position: relative;
    width: min(331px, 88.27vw);
    aspect-ratio: 331 / 189;
    padding: 24px 22px 20px;
    background-image: url("../img/top/speech-bable_left.png");
  }

  .achievement-showcase__voice p {
    font-size: 16px;
  }

  .achievement-showcase__voice--left,
  .achievement-showcase__voice--right,
  .achievement-showcase__voice--center {
    padding-bottom: 64px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }
}

@media screen and (max-width: 575.98px) {
  .achievement-showcase__voice {
    width: min(331px, 88.27vw);
    padding: 24px 22px 20px;
  }

  .achievement-showcase__voice--left,
  .achievement-showcase__voice--right,
  .achievement-showcase__voice--center {
    padding-bottom: 64px;
  }

  .achievement-showcase__voice p {
    font-size: 16px;
    line-height: 1.58;
  }

  .achievement-showcase__voice span {
    margin-top: 8px;
    font-size: 11px;
  }

}

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
  height: 933px;
  padding: 0;
  background: #fff url("../img/top/bg_about.png") no-repeat center top / cover;
}

.about-section .container {
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-block {
  width: min(924px, calc(100% - 48px));
  height: 684px;
  margin: 0 auto;
  padding: 10rem 6rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: url("../img/top/bg_message-block.png") no-repeat center / 100% 100%;
}

.message-block__title {
  --design-font-size: 38;
  --design-line-height: 69;
  --design-tracking: 100;
  color: #D7250C;
  margin: 0;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  font-weight: 700;
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.message-block__text {
  --design-font-size: 18;
  --design-line-height: 36;
  --design-tracking: 60;
  margin: 12px 0 0;
  color: #3a302a;
  font-size: 18px;
  line-height: 2;
}

.message-block__button {
  --message-logo-size: clamp(58px, calc(58px + (16 * ((100vw - 375px) / 1065))), 74px);
  --message-logo-gap-top: 30px;
  --message-logo-gap-bottom: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  margin-top: calc(var(--message-logo-gap-top) + var(--message-logo-size) + var(--message-logo-gap-bottom));
  width: clamp(180px, calc(180px + (36 * ((100vw - 375px) / 1065))), 216px);
  height: clamp(52px, calc(52px + (12 * ((100vw - 375px) / 1065))), 64px);
  padding: 0 clamp(16px, calc(16px + (6 * ((100vw - 375px) / 1065))), 22px);
  border-radius: 999px;
  background: #D7250C;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.message-block__button::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + var(--message-logo-gap-bottom));
  width: var(--message-logo-size);
  aspect-ratio: 1 / 1;
  background: url("../img/top/logo-symbol.png") no-repeat center / contain;
  transform: translateX(-50%);
}

.message-block__button::after {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%2024%2024%27%20fill=%27none%27%3E%3Cpath%20d=%27M9%206l6%206-6%206%27%20stroke=%27%23D7250C%27%20stroke-width=%272.2%27%20stroke-linecap=%27round%27%20stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 8px;
}

@media screen and (max-width: 991.98px) {
  .about-section {
    height: auto;
    min-height: 0;
    padding: 72px 0 0;
  }

  .message-block {
    width: min(760px, calc(100% - 24px));
    height: auto;
    padding: 30px 20px 34px;
    background-size: cover;
  }

  .message-block__title {
    font-size: 40px;
  }

  .message-block__text {
    font-size: 16px;
    line-height: 1.9;
  }
}

@media screen and (max-width: 767.98px) {
  .about-section {
    background-image: url("../img/top/bg_about_sp.png");
    background-position: center top;
    background-size: 100% 100%;
  }

  .message-block {
    background: none;
    padding: 24px 18.6px 24px 16.4px;
  }

  .message-block__title {
    font-size: 24px;
  }

  .message-block__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 575.98px) {
  .about-section {
    padding: 56px 0 0;
    height: 707px;
    background-size: auto;
  }

  .message-block__title {
    font-size: 24px;
  }

  .message-block__text {
    font-size: 14px;
    line-height: 1.8;
    width: 375px;
    max-width: 100%;
  }
}

/* Support Section */
.support-section {
  --design-font-size: 32;
  --design-line-height: 39;
  --design-tracking: 60;
  --design-vw-min: 375;
  --design-vw-max: 1440;
  --design-font-min-scale: 0.82;
  --support-arch-width: min(2200px, 150vw);
  --support-arch-height: clamp(90px, 9vw, 150px);
  position: relative;
  overflow: hidden;
  background: #FFEFE6;
}

.support-section::before {
  content: none;
}

.support-section .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: 0;
}

.support-section :is(
  .support-section__group-title,
  .support-section__howto-heading,
  .support-section__howto-copy,
  .support-section__card-link,
  .support-section__article-heading,
  .support-section__article-copy
) {
  font-size: clamp(
    calc(var(--design-font-size) * var(--design-font-min-scale) * 1px),
    calc(
      (var(--design-font-size) * var(--design-font-min-scale) * 1px) +
      (var(--design-font-size) - (var(--design-font-size) * var(--design-font-min-scale))) *
      ((100vw - (var(--design-vw-min) * 1px)) / (var(--design-vw-max) - var(--design-vw-min)))
    ),
    calc(var(--design-font-size) * 1px)
  );
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.support-section__head,
.support-section__group {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.support-section__head {
  margin-bottom: 0;
}

.support-section__group + .support-section__group {
  margin-top: 42px;
}

.support-section__group-title {
  --design-font-size: 28;
  --design-line-height: 37;
  --design-tracking: 100;
  position: relative;
  margin: 0 0 24px;
  padding-left: 16px;
  color: #201813;
  font-family: YuGoth;
  font-weight: 700;
}

.support-section__group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  bottom: 0.1em;
  width: 6px;
  border-radius: 999px;
  background: #D7250C;
}

.support-section__howto-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 25px;
  width: 100%;
  max-width: 1400px;
  min-height: 580px;
  height: auto;
}

.support-section__howto-card {
  display: flex;
  width: 100%;
  min-width: 0;
  align-self: start;
  min-height: 0;
  height: auto;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid #e7e1db;
  color: #2f241d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-section__howto-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(104, 85, 71, 0.1);
}

.support-section__howto-media {
  margin: 0;
}

.support-section__howto-image {
  display: block;
  width: 100%;
  aspect-ratio: 390 / 241;
  object-fit: cover;
}

.support-section__howto-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.support-section__howto-heading {
  --design-font-size: 26;
  --design-line-height: 38;
  --design-tracking: 60;
  margin: 0;
  color: #221a15;
  font-weight: 700;
}

.support-section__howto-copy {
  --design-font-size: 16;
  --design-line-height: 30;
  --design-tracking: 60;
  margin: 0;
  color: #423b36;
}

.support-section__card-link {
  --design-font-size: 14;
  --design-line-height: 20;
  --design-tracking: 0;
  position: relative;
  align-self: flex-end;
  margin-top: auto;
  padding-left: 28px;
  color: #3f3834;
}

.support-section__card-link::before {
  --round-arrow-size: 18px;
  --round-arrow-glyph-size: 10px 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.support-section__card-link::after {
  content: none;
}

.support-section__article-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-section__article-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 30px 22px 26px;
  background: #f5f5f5;
  border: 1px solid #e7e1db;
  color: #2f241d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-section__article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(104, 85, 71, 0.1);
}

.support-section__article-heading {
  --design-font-size: 26;
  --design-line-height: 37;
  --design-tracking: 60;
  margin: 0;
  color: #221a15;
  font-weight: 700;
}

.support-section__article-copy {
  --design-font-size: 17;
  --design-line-height: 34;
  --design-tracking: 20;
  margin: 20px 0 0;
  color: #423b36;
}

@media screen and (max-width: 1439.98px) {
  .support-section__howto-list {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .support-section__howto-card {
    width: 100%;
    height: auto;
    min-height: 0;
    flex-basis: auto;
  }
}

@media screen and (max-width: 1199.98px) {
  .support-section__howto-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-section__article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-section__howto-card {
    min-height: 0;
  }
}

@media screen and (max-width: 575.98px) {
  .support-section {
    padding-top: 56px;
    padding-bottom: 66px;
  }

  .support-section__head {
    margin-bottom: 0;
  }

  .support-section__group + .support-section__group {
    margin-top: 34px;
  }

  .support-section__group-title {
    margin-bottom: 16px;
    padding-left: 12px;
  }

  .support-section__group-title::before {
    width: 4px;
  }

  .support-section__howto-list {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    min-height: 0;
    margin-inline: 0;
    gap: 20px;
  }

  .support-section__howto-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 109px;
    grid-template-areas:
      "heading media"
      "copy copy"
      "link link";
    align-items: start;
    width: 100%;
    aspect-ratio: 300 / 202.67;
    min-height: 0;
    padding: 16px;
  }

  .support-section__howto-body {
    display: contents;
    margin-top: 0;
    gap: 0;
  }

  .support-section__howto-media {
    grid-area: media;
    width: 109px;
  }

  .support-section__howto-image {
    width: 109px;
    height: 67px;
    aspect-ratio: 109 / 67;
  }

  .support-section__article-heading {
    grid-area: heading;
    margin: 0;
    min-height: 67px;
    padding: 8px 6px 8px 6px;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: 0.06em;
  }

  .support-section__howto-media {
    border-bottom: 2px solid #d6dfff;
  }

  .support-section__article-copy {
    grid-area: copy;
    margin: 8px 6px 0;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .support-section__card-link {
    grid-area: link;
    justify-self: end;
    margin: 6px 6px 6px 0;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.2;
  }

  .support-section__article-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .support-section__article-card {
    min-height: 0;
    padding: 20px 18px;
  }

  .support-section__article-copy {
    margin-top: 12px;
  }
}

/* News Section */
.news-section {
  background: #fff;
}

.news-section .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.news-section-layout {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
}

.news-section .news-list {
  width: 983px;
  flex: 0 0 983px;
  gap: 0;
  margin-top: 0;
}

.news-section .news-item {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 24px;
  position: relative;
  min-height: 0;
  padding: 25px 20px 25px 0;
  border: 0;
  border-bottom: 1px solid #DDDDDD;
  border-radius: 0;
  background: transparent;
  color: #2f241d;
}

.news-section .news-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%2018%2018%27%20fill=%27none%27%3E%3Cpath%20d=%27M6%204l6%205-6%205%27%20stroke=%27%23D7250C%27%20stroke-width=%272.6%27%20stroke-linecap=%27round%27%20stroke-linejoin=%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center;
}

.news-section .news-item:first-child {
  border-top: 1px solid #DDDDDD;
}

.news-section .news-title {
  --design-font-size: 14;
  --design-line-height: 20;
  --design-tracking: 20;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: calc(var(--design-font-size) * 1px);
  font-weight: 500;
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
}

.news-section .news-date {
  --design-font-size: 14;
  --design-line-height: 20;
  --design-tracking: 20;
  font-size: calc(var(--design-font-size) * 1px);
  line-height: calc(var(--design-line-height) / var(--design-font-size));
  letter-spacing: calc(var(--design-tracking) / 1000 * 1em);
  font-weight: 700;
  color: #D7250C;
}

@media screen and (max-width: 1279.98px) {
  .news-section-layout {
    display: grid;
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
    gap: clamp(20px, 2.6vw, 32px);
  }

  .news-section .news-list {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media screen and (max-width: 991.98px) {
  .news-section {
    height: auto;
  }

  .news-section-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-section .news-list {
    width: 100%;
    flex: 0 1 auto;
  }

  .news-section .news-item {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 20px 18px 0;
  }
}

@media screen and (max-width: 767.98px) {
  .kicker,
  .featured-section .kicker,
  .service-section .kicker,
  .album-lineup-section .kicker,
  .software-section .kicker,
  .support-section__kicker,
  .faq-section-kicker,
  .news-section-head .kicker {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 40px;
  }
}






