@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

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

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1, h2, h3, h4 {
  text-wrap: unset;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.35s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

:target {
  scroll-margin-block: 1px;
}

*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll_rock {
  overflow: hidden;
}

:root {
  --black: #000000;
  --link: #CB0000;
}

body {
  color: var(--black);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
@media (min-width: 768px) {
  body {
    border-left: 1px solid var(--black);
    border-right: 1px solid var(--black);
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px 0;
  padding: 30px 0 25px;
  font-family: "Yu Gothic Pr6N D";
  background-color: #ffffff;
}
.footer-hobo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 30px;
}
.footer-hobo a {
  display: block;
  font-size: 1rem;
  text-align: center;
  width: 220px;
  line-height: 50px;
  border: 1px solid #000000;
  border-radius: 25px;
}
.footer-share {
  display: flex;
  justify-content: center;
  gap: 0 25px;
}
.footer-share img {
  width: 33px;
  height: auto;
}
.footer-store {
  line-height: 180%;
}
.footer-store li {
  text-align: center;
}
.footer-store a {
  font-size: 0.8125rem;
  color: #000000;
}
.footer-copy img {
  margin: 0 auto;
}
.footer-font-setup {
  font-size: 0;
  font-family: "A1 Gothic L";
}
@media (min-width: 768px) {
  .footer {
    padding: 63px 0 37px;
  }
  .footer-hobo {
    flex-direction: row;
  }
  .footer-store {
    display: flex;
  }
  .footer-store li:not(:last-of-type):after {
    content: "/";
    margin: 0 12px;
  }
}

.header {
  background-color: #F5F5F5;
}
.header-visual {
  display: flex;
}
.header h1 {
  flex: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0 11px 0;
}
.header .logo {
  width: 11.12vw;
  height: auto;
}
.header .logo-tanoshimi {
  width: 14.4vw;
  height: auto;
}
@media (min-width: 768px) {
  .header {
    display: grid;
    grid-template-columns: auto 57.8042328042%;
  }
  .header-visual {
    order: 1;
    height: fit-content;
    padding: 5.2248677249vw 0 4.4312169312vw 5.6216931217vw;
  }
  .header h1 {
    padding: 0 3.1746031746vw 0 2.0502645503vw;
  }
  .header .logo {
    width: 3.7301587302vw;
  }
  .header .logo-tanoshimi {
    width: 6.1507936508vw;
  }
}

.nav {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background-color: #EDEDED;
}
.nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17.62px 4vw;
  padding: 33px 6.9333333333vw 28.62px;
}
.nav li img:last-of-type {
  max-height: 14.73px;
  margin-top: 8.65px;
}
.nav li a {
  position: relative;
}
.nav li a:before {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  width: 100%;
  border: 1px solid var(--black);
  opacity: 0;
  transform: scale(0.86);
  transition: all 0.35s ease-out;
}
.nav li a:hover {
  opacity: 1;
  filter: brightness(1.1);
}
.nav li a:hover:before {
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 768px) {
  .nav ul {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
  .nav .box-header {
    aspect-ratio: 1;
    width: 19.8412698413%;
    height: 100%;
    border-bottom: none;
    border-right: 1px solid var(--black);
  }
  .nav ul {
    width: 80.1587301587%;
    padding: 3.1084656085vw 14.8514851485% 1.8214285714vw 11.2211221122%;
    gap: 0 2.1164021164vw;
  }
}

.header .swiper {
  display: flex;
  flex-direction: column-reverse;
  width: 81.0666666667vw;
  padding: 51px 0 0;
}
.header .swiper img {
  width: 100%;
}
.header .swiper-pagination {
  --swiper-pagination-bullet-horizontal-gap: 0;
  position: static;
  display: flex;
  justify-content: flex-start;
  height: fit-content;
  gap: 0.6613756614vw 8px;
  width: fit-content;
  padding: 0 5.8666666667vw 8px;
}
.header .swiper-pagination-bullet {
  display: block;
  background-color: #D9D9D9;
  border-radius: 0;
  opacity: 1;
}
.header .swiper-pagination-bullet-active {
  background-color: #7FB9B6;
  transform: scale(1);
}
@media (min-width: 768px) {
  .header .swiper {
    flex-direction: row-reverse;
    padding: 0;
    width: 40.8068783069vw;
  }
  .header .swiper .swiper-wrapper {
    width: 38.6243386243vw;
  }
  .header .swiper-pagination {
    flex-direction: column;
    align-self: flex-end;
    padding: 0 1.5211640212vw 0 0;
  }
  .header .swiper-pagination-bullet {
    width: 0.6613756614vw;
    height: 0.6613756614vw;
  }
}

.header .splide {
  display: flex;
  flex-direction: column-reverse;
  width: 81.0666666667vw;
  padding: 51px 0 0;
}
.header .splide img {
  width: 100%;
}
.header .splide__pagination {
  position: static;
  display: flex;
  justify-content: flex-start;
  height: fit-content;
  gap: 0.6613756614vw 8px;
  width: fit-content;
  margin: 0;
  padding: 0 5.8666666667vw 8px;
}
.header .splide__pagination__page {
  display: block;
  background-color: #D9D9D9;
  border-radius: 0;
  opacity: 1;
  margin: 0;
}
.header .splide__pagination__page.is-active {
  background-color: #7FB9B6;
  transform: scale(1);
}
@media (min-width: 768px) {
  .header .splide {
    flex-direction: row-reverse;
    padding: 0;
    width: 40.8068783069vw;
  }
  .header .splide .swiper-wrapper {
    width: 38.6243386243vw;
  }
  .header .splide__pagination {
    flex-direction: column;
    align-self: flex-end;
    padding: 0 1.5211640212vw 0 0;
  }
  .header .splide__pagination__page {
    width: 0.6613756614vw;
    height: 0.6613756614vw;
  }
}

.box-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 29px 0 28px;
  border-bottom: 1px solid var(--black);
  background-color: #D9D9D9;
}
.box-header img {
  max-height: 25px;
  height: 24.5px;
}
.special .box-header img {
  max-height: 17.47px;
}
@media (min-width: 1024px) {
  .box-header img {
    max-height: 45.72px;
    height: 45.72px;
  }
}

.yodogawa {
  padding: 39px 6.9333333333vw 52px;
  font-family: "Yu Mincho Pr6N M";
  background-color: #EDEDED;
}
.yodogawa h2 {
  margin-bottom: 12px;
  font-family: "Yu Mincho Pr6N M";
  font-size: 1.375rem;
  line-height: 150%;
}
.yodogawa p {
  font-size: 0.9375rem;
  line-height: 160%;
  letter-spacing: -0.6px;
}
@keyframes fade-in-text {
  0% {
    transform: translateY(-10px);
    color: #EDEDED;
  }
  100% {
    transform: translateY(0);
    color: var(--black);
  }
}
.yodogawa p:not(:last-of-type) {
  margin-bottom: 2em;
}
.yodogawa a {
  color: var(--link);
}
@media (min-width: 768px) {
  .yodogawa {
    padding: 7.6058201058vw 3.3068783069vw 6.0846560847vw;
    border-right: 1px solid var(--black);
  }
  .yodogawa h2 {
    margin-bottom: 36px;
  }
  .yodogawa p {
    white-space: pre-line;
  }
}
@media (min-width: 1024px) {
  .yodogawa {
    padding: 7.6058201058vw 20.6896551724% 6.0846560847vw;
  }
}

.section {
  background-color: #F5F5F5;
}

@media (min-width: 768px) {
  .block.type-01 {
    padding: 0 14.6164021164vw;
  }
  .block.type-02 {
    padding: 0 14.6164021164vw 105px 16.9312169312vw;
  }
  .block.type-02.full, .block.type-03 {
    padding: 0 14.6164021164vw 105px;
  }
  .block.type-cover {
    padding: 0 0 0 14.6164021164vw;
  }
}
.type-cover .title {
  padding: 40px 0 29px 8vw;
  background-color: #EDEDED;
  border-bottom: 1px solid var(--black);
}
.type-cover h2 {
  margin: 0 0 36px;
}
.type-cover p {
  white-space: pre-line;
  font-size: 1.0625rem;
  font-family: "Yu Mincho Pr6N M";
  line-height: 164.706%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .type-cover {
    display: grid;
    grid-template-columns: auto 28.3068783069%;
  }
  .type-cover .title {
    order: 1;
    padding: 6.9444444444vw 24% 0 18.691588785%;
    border-left: 1px solid var(--black);
  }
  .type-cover .title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: fit-content;
  }
  .type-cover h2 {
    margin: 0 0 3.1746031746vw;
  }
  .type-cover p {
    writing-mode: vertical-rl;
    font-size: min(1.6534391534vw, 25px);
  }
  .type-cover .picture {
    padding: 6.9444444444vw 7.4735449735vw 0 0;
  }
  .type-cover .picture img {
    aspect-ratio: 1;
  }
}

.type-01 p {
  padding: 20px 8vw 24px;
  font-family: "Yu Mincho Pr6N M";
  font-size: 0.9375rem;
  line-height: 146.667%;
}
@media (min-width: 768px) {
  .type-01 {
    display: grid;
    grid-template-columns: auto 59.8130841121%;
    margin: 76px 0 64px;
    gap: 0 1.5873015873vw;
  }
  .type-01 p {
    align-self: flex-end;
    padding: 0;
    white-space: pre-line;
  }
}

.type-02 {
  padding: 40px 0 40px 11.7333333333vw;
}
@media (min-width: 768px) {
  .type-02 {
    display: grid;
    grid-template-columns: 51.4018691589% auto;
    gap: 0 5.6074766355%;
  }
}

.type-03 {
  padding: 40px 0 40px 11.7333333333vw;
}
.type-03 picture:nth-of-type(2) {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .type-03 {
    display: grid;
    grid-template-columns: repeat(2, 48.2242990654%);
    gap: 30px 0;
    justify-content: space-between;
  }
  .type-03 picture:nth-of-type(2) {
    grid-row: span 2;
    margin-top: auto;
  }
}

.quotation:before {
  content: "“";
}
.quotation:after {
  content: "”";
}
@media (min-width: 768px) {
  .quotation:before, .quotation:after {
    content: "";
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .quotation:before {
    width: 0.7275132275vw;
    height: 0.5952380952vw;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 9" fill="none"%3E%3Cpath d="M0.963867 8.17998L4.13541 1.44684C4.31832 1.05373 4.60724 0.896484 4.92183 0.896484C5.44494 0.896484 6.07412 1.26303 6.07412 1.76127C6.07412 1.9185 6.02107 2.1014 5.86378 2.31168L1.48697 8.46796L0.963867 8.17998ZM5.18155 8.17998L8.87802 1.44684C9.08835 1.05373 9.34991 0.896484 9.71755 0.896484C10.1894 0.896484 10.8442 1.26307 10.8442 1.81344C10.8442 1.99718 10.7912 2.15443 10.6339 2.33728L5.68088 8.46796L5.18155 8.17998Z" fill="black"/%3E%3C/svg%3E');
    vertical-align: text-top;
    margin-bottom: 0.2em;
  }
  .quotation:after {
    width: 0.6613756614vw;
    height: 0.5952380952vw;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="10" height="9" viewBox="0 0 10 9" fill="none"%3E%3Cpath d="M5.69148 0.767657L2.01245 7.47143C1.80119 7.86288 1.54257 8.01947 1.17466 8.01947C0.706575 8.01947 0.0527344 7.65442 0.0527344 7.10639C0.0527344 6.92342 0.107382 6.76682 0.264005 6.58475L5.19609 0.47998L5.69148 0.767657ZM9.8914 0.767657L6.73327 7.47143C6.55113 7.86288 6.26339 8.01947 5.95193 8.01947C5.42922 8.01947 4.80269 7.65442 4.80269 7.15829C4.80269 7.00172 4.85551 6.81964 5.01214 6.61117L9.37051 0.479998L9.8914 0.767657Z" fill="black"/%3E%3C/svg%3E');
    vertical-align: text-bottom;
    margin: 0.2em 0;
  }
}

.block .makeup {
  padding: 24px 11.7333333333vw 0 0;
  font-size: 0.875rem;
  line-height: 157.143%;
}
.block .makeup h3 {
  font-family: "Yu Gothic Pr6N B";
  font-size: inherit;
  line-height: inherit;
}
.block .makeup ul,
.block .makeup p {
  font-family: "Yu Gothic Pr6N D";
  word-break: keep-all;
  overflow-wrap: break-word;
}
.block .makeup ul + h3,
.block .makeup p + h3 {
  margin-top: 2em;
}
.block .makeup small {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .block .makeup {
    align-self: flex-end;
    padding: 0;
  }
  .block .makeup br {
    display: none;
  }
  .block .makeup .drop {
    display: block;
  }
}

.products {
  position: relative;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background-color: #EDEDED;
}
.products .at-bottom,
.products .by-side {
  padding: 29px 6.9333333333vw 9px;
}
.products ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3.4666666667vw;
}
.products li {
  width: min(50% - 1.7333333333vw, 155px);
}
.products li img {
  border: 1px solid var(--black);
}
.products li p {
  margin: 9px 0 0;
  font-family: "Yu Gothic Pr6N D";
  font-size: 0.8125rem;
  line-height: 130.769%;
  white-space: pre-line;
}
.products .note {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 43px 0 0;
  font-family: "Yu Gothic Pr6N D";
  font-size: 0.9375rem;
  line-height: 133.333%;
  letter-spacing: 0.9px;
}
.products .note img {
  width: 54px;
}
@media (min-width: 640px) {
  .products .note {
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .products {
    display: grid;
    grid-template-columns: 19.8412698413% 80.1587301587%;
  }
  .products .box-header {
    border-bottom: 0;
    border-right: 1px solid var(--black);
  }
  .products ul {
    gap: 1.5873015873vw;
  }
  .products li {
    width: min(50% - 3.2vw, 155px);
  }
  .products .note {
    justify-content: flex-end;
    margin: 15px 0 0;
  }
  .products .at-bottom {
    padding: 42px 3.3068783069vw 31px 4.5634920635vw;
  }
  .products .at-bottom .note br {
    display: none;
  }
  .products .at-bottom .note img {
    margin-bottom: -10px;
  }
  .products .by-side {
    display: grid;
    grid-template-columns: auto max-content;
    padding: 42px 3.3068783069vw 45px 4.5634920635vw;
  }
  .products .by-side .note {
    transform: translateY(15px);
  }
}

.mascara {
  position: relative;
}
.mascara:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 6px;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ffffff;
}
.mascara[data-color=blue]:after {
  background-color: #0E398A;
}
.mascara[data-color=green-blue]:after {
  background-color: #1F647D;
}
.mascara[data-color=moss-green]:after {
  background-color: #194A24;
}
.mascara[data-color=persimmon]:after {
  background-color: #914839;
}
.mascara[data-color=magma-ruby]:after {
  background-color: #940F12;
}
.mascara[data-color=chai-tea]:after {
  background-color: #784343;
}

.special {
  position: relative;
  background-color: #EDEDED;
}
.special-content {
  padding: 20px 7.2vw 67px;
}
.special .heading {
  margin-bottom: 20px;
  font-family: "Yu Mincho Pr6N M";
  font-size: 1.0625rem;
  line-height: 164.706%;
  white-space: pre-line;
}
.special .lead {
  margin: 20px 0;
  font-family: "Yu Mincho Pr6N M";
  font-size: 0.9375rem;
  line-height: 146.667%;
}
.special a {
  color: var(--link);
}
.special .pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3.4666666667vw;
  margin-bottom: 22px;
}
.special .title {
  font-family: "Yu Gothic Pr6N D";
  font-size: 1.125rem;
  line-height: 122.222%;
}
.special .spl-tag {
  margin-bottom: 22px;
  font-family: "Yu Gothic Pr6N D";
}
.special .spl-tag .tag {
  display: block;
  padding-right: 4.8vw;
  font-size: 0.875rem;
  line-height: 121.429%;
  text-align: right;
}
.special .spl-tag .price {
  font-size: 1.25rem;
}
.special .spl-description {
  margin-bottom: 26px;
  font-family: "Yu Mincho Pr6N M";
  font-size: 0.9375rem;
  line-height: 146.667%;
}
.special .spl-weekend {
  padding: 26px 0 0;
}
.special .spl-weekend a {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
  width: fit-content;
}
.special .spl-weekend img {
  max-width: 229px;
}
.special .how {
  margin: 41px 0 0;
  border-top: 1px solid var(--black);
}
.special .how .title {
  margin: 20px 0 10px;
}
.special .video-wrapper {
  aspect-ratio: 1920/1080;
}
.special .video-wrapper iframe {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .special-content {
    padding: 84px 14.6164021164vw;
  }
  .special .heading {
    position: absolute;
    right: 7.2751322751vw;
    margin-bottom: 0;
    font-size: 1.9841269841vw;
    writing-mode: vertical-rl;
  }
  .special .lead {
    margin: 34px 0 49px;
    white-space: pre-line;
  }
  .special .pair {
    gap: 0 1.9841269841vw;
    margin-bottom: 50px;
  }
  .special .title {
    font-size: 1.5rem;
  }
  .special .title br {
    display: none;
  }
  .special .spl-tag {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 0;
    margin-bottom: 50px;
  }
  .special .spl-tag .tag {
    padding-right: 0;
    font-size: 1rem;
  }
  .special .spl-tag .price {
    font-size: 1.5rem;
  }
  .special .spl-description {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 17px 1.5873015873vw;
  }
  .special .spl-description p:first-of-type {
    white-space: pre-line;
  }
  .special .spl-weekend a {
    align-items: flex-end;
    gap: 22px 0;
  }
  .special .spl-weekend img {
    max-width: 244px;
  }
  .special .how .title {
    margin: 30px 0 18px;
  }
}
@media (min-width: 1024px) {
  .special-content {
    padding: 84px 25.1322751323vw;
  }
  .special .heading {
    right: 17.5264550265vw;
  }
  .special .box-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 19.8412698413%;
    aspect-ratio: 1;
    border-right: 1px solid var(--black);
  }
}

.page-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 7.2vw;
  font-family: "Yu Gothic Pr6N D";
  border-top: 1px solid var(--black);
  background-color: #EDEDED;
}
.page-footer h3 {
  font-size: 0.9375rem;
}
.page-footer ul {
  font-size: 0.8125rem;
}
.page-footer .credit {
  padding: 23px 0 31px;
}
.page-footer .banner {
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid var(--black);
}
.page-footer .banner a {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.page-footer .banner img {
  max-width: 382px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-footer {
    padding: 0 25.1322751323vw;
  }
  .page-footer .credit {
    padding: 64px 0 72px;
  }
  .page-footer .banner {
    padding: 52px 0;
  }
}

.header-visual {
  opacity: 0;
  transition: opacity 1.5s 0.5s ease-in-out;
}
.ready .header-visual {
  opacity: 1;
}

.yodogawa h2,
.yodogawa p {
  opacity: 0;
  transition: opacity 1.5s 1.5s ease-in-out;
}
.ready .yodogawa h2,
.ready .yodogawa p {
  opacity: 1;
}

[data-watch=box] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease-in-out, transform 0.75s;
}
[data-watch=box].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-watch=cover] h2 {
  opacity: 0;
  transition: opacity 1s 0.5s ease-in-out;
}
[data-watch=cover] p {
  opacity: 0;
  transition: opacity 1s 1s ease-in-out;
}
[data-watch=cover] .picture img {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s 1.5s ease-in-out, transform 0.75s 1.5s;
}
[data-watch=cover].in-view h2,
[data-watch=cover].in-view p {
  opacity: 1;
}
[data-watch=cover].in-view .picture img {
  opacity: 1;
  transform: translateY(0);
}

[data-watch=photo] img {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 0.75s;
}
[data-watch=photo].in-view img {
  opacity: 1;
  transform: translateY(0);
}

[data-watch=text] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s 0.5s ease-in-out, transform 0.75s;
}
[data-watch=text] .special *:not(.heading) {
  transition-delay: 0;
}
[data-watch=text].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-watch=video] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 0.75s;
}
[data-watch=video].in-view {
  opacity: 1;
  transform: translateY(0);
}