html {
  scroll-behavior: smooth;
}

body {
  background: #0d0d10;
  color: #f1efe9;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.u-disp {
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.c-label {
  color: #e0262a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.c-label--mute {
  color: #9a9aa0;
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
[data-fadein] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--fadein-delay, 0s);
}

[data-fadein=A] {
  transform: none;
}

[data-fadein=B] {
  transform: translateY(24px);
}

[data-fadein].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-fadein] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .p-ticker__track {
    animation: none;
  }
}
.l-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #202024;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
@media screen and (min-width: 1000px) {
  .l-header__inner {
    padding: 20px 0;
  }
}

.l-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 18px + (100vw - 375px) * (24 - 18) / (1440 - 375), 24px);
  line-height: 1;
  white-space: nowrap;
}

.l-header__logo svg {
  width: 32px;
  height: 32px;
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 1000px) {
  .l-header__nav {
    display: flex;
    gap: 28px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
  }
}

.l-header__nav a {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .l-header__nav a:hover {
    color: #e0262a;
  }
}

.l-header .l-header__cta {
  display: none;
}
@media screen and (min-width: 1000px) {
  .l-header .l-header__cta {
    display: inline-flex;
  }
}

.l-header__menu {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}
@media screen and (min-width: 1000px) {
  .l-header__menu {
    display: none;
  }
}

.l-header__menu-bar {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: #f1efe9;
  transition: 0.3s ease;
}
.l-header__menu-bar::before, .l-header__menu-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f1efe9;
  transition: 0.3s ease;
}
.l-header__menu-bar::before {
  top: -7px;
}
.l-header__menu-bar::after {
  top: 7px;
}

.l-header__menu.is-open .l-header__menu-bar {
  background: transparent;
}
.l-header__menu.is-open .l-header__menu-bar::before {
  top: 0;
  transform: rotate(45deg);
}
.l-header__menu.is-open .l-header__menu-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.l-drawer {
  position: fixed;
  inset: 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 10vw;
  background: #0d0d10;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.l-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1000px) {
  .l-drawer {
    display: none;
  }
}

.l-drawer__link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #202024;
  font-size: clamp(32px, 32px + (100vw - 375px) * (40 - 32) / (1440 - 375), 40px);
  line-height: 1;
}

.l-drawer__link span {
  display: block;
  margin-top: 6px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.75rem;
  color: #9a9aa0;
  letter-spacing: 0.15em;
}

.l-footer {
  border-top: 1px solid #202024;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  line-height: 1;
}

.l-footer__logo svg {
  width: 28px;
  height: 28px;
}

.l-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  font-size: 0.75rem;
  color: #9a9aa0;
  letter-spacing: 0.1em;
}

.l-footer__links a {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .l-footer__links a:hover {
    color: #f1efe9;
  }
}

.l-footer__copy {
  font-size: 0.75rem;
  color: #6c6c74;
}

.l-inner {
  width: min(90vw, 1312px);
  margin-inline: auto;
}

.l-section {
  padding: 64px 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 96px 0;
  }
}
@media screen and (min-width: 1000px) {
  .l-section {
    padding: 112px 0 96px;
  }
}

.l-section--sub {
  background: #17171b;
}

.l-section__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .l-section__wrapper {
    gap: 48px;
  }
}

.l-section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-section__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.c-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(44px, 44px + (100vw - 375px) * (72 - 44) / (1440 - 375), 72px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.c-title__label {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e0262a;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.c-title--sm {
  font-size: clamp(40px, 40px + (100vw - 375px) * (56 - 40) / (1440 - 375), 56px);
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  background: #f1efe9;
  color: #0d0d10;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-button:hover {
    background: #e0262a;
    color: #ffffff;
  }
}

.c-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.c-button--accent {
  background: #e0262a;
  color: #ffffff;
}
@media (hover: hover) {
  .c-button--accent:hover {
    background: #f1efe9;
    color: #0d0d10;
  }
}

.c-button--ghost {
  background: transparent;
  color: #f1efe9;
  border: 1px solid #3a3a40;
}
@media (hover: hover) {
  .c-button--ghost:hover {
    background: transparent;
    border-color: #f1efe9;
    color: #f1efe9;
  }
}

.c-button--sm {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.75rem;
}

.c-button--block {
  display: flex;
  width: 100%;
}

.c-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-link:hover {
    color: #e0262a;
  }
}

.c-link svg {
  width: 14px;
  height: 14px;
}

.c-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid #3a3a40;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-icon-button:hover {
    border-color: #e0262a;
    color: #e0262a;
  }
}

.c-icon-button svg {
  width: 20px;
  height: 20px;
}

.c-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #222226;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 10px);
}

.c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-img--square {
  aspect-ratio: 1/1;
}

.c-img--portrait {
  aspect-ratio: 13/16;
}

.c-img--thumb {
  aspect-ratio: 4/3;
}

.c-img--placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #6c6c74;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-align: center;
}

.c-card {
  max-width: 100%;
  background: #17171b;
  border-top: 3px solid #3a3a40;
  transition: 0.3s ease;
}

.c-card--accent {
  border-top-color: #e0262a;
}

.c-card__inner {
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .c-card__inner {
    padding: 32px;
  }
}

.c-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-card__date {
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(40px, 40px + (100vw - 375px) * (52 - 40) / (1440 - 375), 52px);
  line-height: 0.95;
}

.c-card__date small {
  display: block;
  margin-top: 4px;
  font-size: clamp(18px, 18px + (100vw - 375px) * (22 - 18) / (1440 - 375), 22px);
  color: #9a9aa0;
}

.c-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.c-card__text {
  font-size: 0.8125rem;
  color: #c9c7c0;
  line-height: 1.8;
}

.c-spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: #202024;
}

.c-spec__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: #17171b;
}
@media screen and (min-width: 768px) {
  .c-spec__item {
    padding: 20px 22px;
  }
}

.c-spec__item dt {
  font-size: 0.6875rem;
  font-weight: 400;
  color: #9a9aa0;
  letter-spacing: 0.2em;
}

.c-spec__item dd {
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-spec__item dd {
    font-size: 0.9375rem;
  }
}

.p-fv {
  position: relative;
  overflow: hidden;
  background: #0d0d10;
}
@media screen and (min-width: 1000px) {
  .p-fv {
    background: linear-gradient(100deg, #0d0d10 0%, #0d0d10 48%, #17171b 48.2%, #17171b 100%);
  }
}

.p-fv::before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 140px;
  height: 100%;
  background: #e0262a;
  transform: skewX(-14deg);
  opacity: 0.9;
}
@media screen and (min-width: 1000px) {
  .p-fv::before {
    right: -40px;
    width: 240px;
  }
}

.p-fv__inner {
  position: relative;
}

.p-fv__wrapper {
  display: grid;
  gap: 24px;
  padding: 24px 0 48px;
}
@media screen and (min-width: 1000px) {
  .p-fv__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 48px;
    min-height: min(760px, 90svh);
    padding: 0;
  }
}

.p-fv__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .p-fv__body {
    order: 1;
    gap: 28px;
    padding: 80px 0;
    align-self: center;
  }
}

.p-fv__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #9a9aa0;
  letter-spacing: 0.3em;
}
.p-fv__kicker::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #e0262a;
}

.p-fv__name {
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(72px, 72px + (100vw - 375px) * (168 - 72) / (1440 - 375), 168px);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.p-fv__name span {
  display: block;
  color: #e0262a;
}

.p-fv__lead {
  max-width: 460px;
  font-size: clamp(14px, 14px + (100vw - 375px) * (18 - 14) / (1440 - 375), 18px);
  color: #c9c7c0;
  line-height: 1.9;
  text-wrap: pretty;
}

.p-fv__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 500px) {
  .p-fv__buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
}

.p-fv__visual {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .p-fv__visual {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 48px 0 0;
  }
}

.p-fv__photo {
  width: 100%;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 100%);
}
@media screen and (min-width: 1000px) {
  .p-fv__photo {
    width: min(100%, 520px);
  }
}

.p-fv__next {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #17171b;
  border-left: 4px solid #e0262a;
}
@media screen and (min-width: 1000px) {
  .p-fv__next {
    position: absolute;
    left: 0;
    bottom: 40px;
    margin: 0;
    padding: 20px 24px;
    background: #0d0d10;
  }
}

.p-fv__next-label {
  font-size: 0.6875rem;
  color: #9a9aa0;
  letter-spacing: 0.3em;
}

.p-fv__next-date {
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(36px, 36px + (100vw - 375px) * (44 - 36) / (1440 - 375), 44px);
  line-height: 1;
}

.p-fv__next-text {
  font-size: 0.8125rem;
  color: #c9c7c0;
}

.p-ticker {
  overflow: hidden;
  padding: 12px 0;
  background: #e0262a;
  color: #ffffff;
}

.p-ticker__track {
  display: flex;
  gap: 48px;
  width: max-content;
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(20px, 20px + (100vw - 375px) * (26 - 20) / (1440 - 375), 26px);
  white-space: nowrap;
  animation: ticker-slide 28s linear infinite;
}

.p-record__note {
  font-size: 0.8125rem;
  color: #9a9aa0;
}

.p-record__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  background: #202024;
}

.p-record__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 0;
  background: #0d0d10;
}
@media screen and (min-width: 768px) {
  .p-record__stat {
    align-items: flex-start;
    gap: 8px;
    padding: 36px 32px;
  }
}

.p-record__stat-num {
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(36px, 36px + (100vw - 375px) * (96 - 36) / (1440 - 375), 96px);
  line-height: 0.9;
}

.p-record__stat--win .p-record__stat-num {
  color: #e0262a;
}

.p-record__stat-label {
  font-size: 0.6875rem;
  color: #9a9aa0;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-record__stat-label {
    font-size: 0.75rem;
  }
}

.p-record__list {
  border-top: 1px solid #202024;
}

.p-record__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #202024;
}
@media screen and (min-width: 768px) {
  .p-record__row {
    grid-template-columns: 160px 1fr 1fr 160px;
    gap: 24px;
    padding: 22px 0;
  }
}

.p-record__row-date {
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(16px, 16px + (100vw - 375px) * (24 - 16) / (1440 - 375), 24px);
  color: #9a9aa0;
  grid-column: 1;
}

.p-record__row-event {
  font-size: 0.875rem;
  font-weight: 700;
  grid-column: 1;
}
@media screen and (min-width: 768px) {
  .p-record__row-event {
    grid-column: auto;
    font-size: 0.9375rem;
  }
}

.p-record__row-vs {
  font-size: 0.8125rem;
  color: #c9c7c0;
  grid-column: 1;
}
@media screen and (min-width: 768px) {
  .p-record__row-vs {
    grid-column: auto;
    font-size: 0.875rem;
  }
}

.p-record__row-result {
  grid-column: 2;
  grid-row: 1/4;
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(20px, 20px + (100vw - 375px) * (24 - 20) / (1440 - 375), 24px);
  color: #9a9aa0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-record__row-result {
    grid-column: auto;
    grid-row: auto;
    text-align: right;
  }
}

.p-record__row--win .p-record__row-result {
  color: #e0262a;
}

.p-gym {
  background: #17171b;
}

.p-gym__wrapper {
  display: grid;
  gap: 64px;
}
@media screen and (min-width: 1000px) {
  .p-gym__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
}

.p-gym__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1000px) {
  .p-gym__col {
    padding: 0 64px 0 0;
    border-right: 1px solid #202024;
  }
  .p-gym__col + .p-gym__col {
    padding: 0 0 0 64px;
    border-right: 0;
  }
}

.p-gym__name {
  font-size: clamp(18px, 18px + (100vw - 375px) * (22 - 18) / (1440 - 375), 22px);
  font-weight: 700;
}

.p-gym__address {
  font-size: 0.875rem;
  color: #c9c7c0;
  line-height: 1.9;
}

.p-juku {
  position: relative;
  overflow: hidden;
}

.p-juku__bg {
  position: absolute;
  right: -10px;
  top: 0;
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(120px, 120px + (100vw - 375px) * (220 - 120) / (1440 - 375), 220px);
  line-height: 1;
  color: #1f1f24;
  pointer-events: none;
  user-select: none;
}

.p-juku__text {
  position: relative;
  max-width: 480px;
  font-size: clamp(14px, 14px + (100vw - 375px) * (15 - 14) / (1440 - 375), 15px);
  color: #c9c7c0;
  line-height: 2;
  text-wrap: pretty;
}

.p-juku__spec {
  position: relative;
}

.p-juku__button {
  position: relative;
  align-self: flex-start;
}

.p-schedule__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-schedule__container {
    gap: 24px;
  }
}

.p-diary__wrapper {
  display: grid;
  gap: 64px;
}
@media screen and (min-width: 1000px) {
  .p-diary__wrapper {
    grid-template-columns: 2fr 1fr;
  }
}

.p-diary__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-diary__col {
    gap: 40px;
  }
}

.p-diary__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #202024;
}

.p-diary__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #202024;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-diary__item {
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding: 24px 0;
  }
}
@media (hover: hover) {
  .p-diary__item:hover {
    color: #e0262a;
  }
}

.p-diary__item-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-diary__item-date {
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: 1.125rem;
  color: #9a9aa0;
}

.p-diary__item-title {
  font-size: clamp(14px, 14px + (100vw - 375px) * (18 - 14) / (1440 - 375), 18px);
  font-weight: 700;
  line-height: 1.5;
}

.p-diary__item-text {
  display: none;
  font-size: 0.8125rem;
  color: #9a9aa0;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-diary__item-text {
    display: block;
  }
}

.p-oneline__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-oneline__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: #17171b;
}

.p-oneline__date {
  font-size: 0.6875rem;
  color: #9a9aa0;
  letter-spacing: 0.15em;
}

.p-oneline__text {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.p-goods__container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-goods__container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }
}

.p-goods__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-goods__item:hover {
    opacity: 0.8;
  }
}

.p-goods__name {
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-goods__name {
    font-size: 0.9375rem;
  }
}

.p-goods__price {
  font-family: "Bebas Neue", "Anton", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(20px, 20px + (100vw - 375px) * (22 - 20) / (1440 - 375), 22px);
  color: #e0262a;
}

.p-youtube__wrapper {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 1000px) {
  .p-youtube__wrapper {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 64px;
  }
}

.p-youtube__video {
  display: block;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-youtube__video:hover {
    opacity: 0.85;
  }
}

.p-youtube__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.p-youtube__play-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: #e0262a;
}
@media screen and (min-width: 768px) {
  .p-youtube__play-icon {
    width: 84px;
    height: 84px;
  }
}

.p-youtube__play-icon svg {
  width: 28px;
  height: 28px;
}

.p-youtube__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-youtube__body {
    gap: 24px;
  }
}

.p-youtube__text {
  font-size: 0.9375rem;
  color: #c9c7c0;
  line-height: 2;
  text-wrap: pretty;
}

.p-youtube__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
