body {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", "MS Mincho", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #23375F;
  line-height: 1.8;
}

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

section {
  display: block;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/* ===== Header ===== */
.header {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1.8vw 3.6vw;
}
.header__logo img {
  width: clamp(90px, 11vw, 190px);
  height: auto;
}

@media (max-width: 768px) {
  .header {
    padding: 14px 5vw;
  }
  .header__logo img {
    width: 90px;
  }
}
/* ===== Layout ===== */
.container {
  margin: 0 auto;
  position: relative;
  padding: 0 3vw;
}

@media (max-width: 768px) {
  .container {
    padding: 0 7.5vw;
  }
}
/* ===== MV ===== */
.mv {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.mv__inner {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: url(../images/mv-bg.jpg) no-repeat center center/cover;
}
.mv__product {
  position: absolute;
  display: block;
  top: 60%;
  left: 49.2%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 28%;
  height: 56%;
  background: url(../images/mv-product.png) no-repeat center center/contain;
  z-index: 2;
}
.mv h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: calc(58% + 90px);
  top: 52%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: 5;
}
.mv h1 span:first-child {
  margin-right: 8%;
}
.mv h1 span:first-child img {
  width: clamp(100px, 12vw, 190px);
}
.mv h1 span:last-child img {
  width: clamp(100px, 11.5vw, 180px);
}
.mv__attention {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  right: 5%;
  bottom: 7%;
  z-index: 2;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

@media (max-width: 768px) {
  .mv__inner {
    background: url(../images/mv-bg-sp.jpg) no-repeat center center/cover;
  }
  .mv__product {
    top: 55%;
    width: 50%;
    height: 70%;
    max-width: 240px;
  }
  .mv h1 {
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    right: 50%;
    top: 18%;
    width: 60%;
  }
  .mv h1 span:first-child {
    margin-right: 8%;
  }
  .mv h1 span:first-child img {
    width: clamp(160px, 12vw, 190px);
  }
  .mv h1 span:last-child img {
    width: clamp(154px, 11.5vw, 180px);
  }
  .mv .mv__attention {
    font-size: 11px;
    right: 5%;
  }
}
/* ===== About ===== */
.about {
  padding: 10vw 0;
  position: relative;
  width: 100%;
  text-align: center;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  z-index: 5;
}
.about__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 54px;
}
.about p {
  font-size: 28px;
  font-size: clamp(16px, 1.6vw, 28px);
  font-weight: 300;
}

@media (max-width: 768px) {
  .about__title {
    font-size: 28px;
    margin-bottom: 30px;
    text-indent: 0.2em;
  }
  .about p {
    font-size: 14px;
    line-height: 2;
  }
}
/* ===== Concept ===== */
.concept {
  padding: 5vw 0;
  position: relative;
  width: 100%;
  text-align: center;
  color: #fff;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
  overflow: hidden;
}
.concept__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.concept__bg-back, .concept__bg-front {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.concept__bg-back {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.concept__bg-front {
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
.concept__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.concept.js-fixed .concept__bg {
  position: fixed;
}
.concept .container {
  position: relative;
  z-index: 1;
}
.concept__inner {
  position: relative;
  padding: 100vh 0 20vw 0;
}
.concept__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 54px;
}
.concept p {
  font-size: 28px;
  font-size: clamp(16px, 1.6vw, 28px);
  font-weight: 300;
}

@media (max-width: 768px) {
  .concept__inner {
    padding-bottom: 25vh;
  }
  .concept__title {
    font-size: 28px;
    margin-bottom: 30px;
    text-indent: 0.2em;
  }
  .concept p {
    font-size: 14px;
    line-height: 2;
  }
}
/* ===== Product ===== */
.product {
  position: relative;
  width: 100%;
  z-index: 10;
  background: #fff;
}
.product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product__txt h2 {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 45px;
}
.product__txt p {
  font-size: 28px;
  font-size: clamp(16px, 1.6vw, 28px);
}
.product__mlb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  position: absolute;
  right: 1.5%;
  bottom: 5%;
  gap: 10px;
}
.product__mlb-logo {
  width: 78px;
}
.product__mlb-text p {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}
.product.product-dial {
  padding: 6vw 0;
}
.product.product-dial .product__item {
  width: 40%;
}
.product.product-dial .product__item img {
  width: 65%;
  max-width: 460px;
  margin: 0 auto;
}
.product.product-dial .product__txt {
  width: 60%;
}
.product.product-case {
  background: #ECECEC;
}
.product.product-case .product__txt {
  width: 50%;
  text-align: right;
  padding-right: 5%;
}
.product.product-case .product__item {
  width: 50%;
  padding: 7.5vw 0 0 0;
}
.product.product-back .product__item {
  width: 47%;
  margin-left: -7vw;
  margin-right: -7vw;
}
.product.product-back .product__txt {
  width: 53%;
  padding-bottom: 70px;
}

@media (max-width: 768px) {
  .product h2 {
    font-size: 54px;
    text-align: center;
    margin-bottom: 32px;
  }
  .product p {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: left;
  }
  .product p br {
    display: none;
  }
  .product.product-dial {
    padding: 16vw 0 22vw 0;
  }
  .product.product-dial .product__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .product.product-dial .product__item, .product.product-dial .product__txt {
    width: 100%;
  }
  .product.product-dial .product__item {
    padding-left: 2%;
  }
  .product.product-dial .product__item img {
    max-width: 200px;
  }
  .product.product-case {
    padding: 15vw 0 0 0;
  }
  .product.product-case .product__item, .product.product-case .product__txt {
    width: 100%;
  }
  .product.product-case .product__item {
    padding-top: 4vw;
  }
  .product.product-case .product__item img {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .product.product-back {
    padding: 15vw 0 0 0;
  }
  .product.product-back .product__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product.product-back .product__txt {
    display: contents;
    padding-bottom: 0;
  }
  .product.product-back .product__item,
  .product.product-back .product__inner > .js-trigger {
    width: 100%;
  }
  .product.product-back .product__inner > .js-trigger {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .product.product-back .product__item {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 0vw;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    position: relative;
  }
  .product.product-back .product__item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .product.product-back .product__item img {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
  .product.product-back .product__mlb-logo {
    margin-bottom: 10px;
    width: 60px;
    margin-left: 7.5vw;
  }
  .product.product-back .product__mlb-text {
    padding: 0 7.5vw;
  }
  .product.product-back .product__mlb-text p {
    font-size: 10px;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .product.product-back .product__mlb {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    position: relative;
    display: block;
    right: auto;
    bottom: auto;
    padding-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-left: -7.5vw;
    margin-right: -7.5vw;
  }
}
/* ===== Interview ===== */
.interview {
  padding: 12vw 0;
  position: relative;
  width: 100%;
  text-align: center;
  background: #071A31;
  color: #fff;
  z-index: 5;
}
.interview h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 54px;
}
.interview p {
  font-size: 28px;
  font-size: clamp(16px, 1.6vw, 28px);
  font-weight: 300;
  position: relative;
  margin-bottom: 200px;
}
.interview__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  position: relative;
  width: 71%;
  margin: 0 auto 140px auto;
}
.interview__images li {
  width: 30%;
}
.interview__video {
  width: calc(68% - 30px);
  aspect-ratio: 16/9;
  margin: 0 auto;
}
.interview__video iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .interview {
    padding: 25vw 0;
  }
  .interview h2 {
    font-size: 25px;
    margin-bottom: 30px;
    position: relative;
    margin-left: -3vw;
    margin-right: -3vw;
  }
  .interview p {
    font-size: 14px;
    margin-bottom: 65px;
  }
  .interview__images {
    width: 100%;
    margin-bottom: 60px;
    gap: 10px;
  }
  .interview__images li {
    width: calc(50% - 10px);
  }
  .interview__video {
    width: calc(100% - 10px);
  }
}
/* ===== Schedule ===== */
.schedule {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 10vw 0 0 0;
  z-index: 5;
}
.schedule .container {
  max-width: 1300px;
}
.schedule__second {
  position: relative;
  padding: 90px 0;
  border-top: 5px solid #ddd;
  border-bottom: 5px solid #ddd;
}
.schedule__second .schedule__place {
  margin-bottom: 0;
}
.schedule__second .schedule__place-detail {
  padding: 20px 0 0 0;
}
.schedule__second .schedule__place-detail div {
  margin-bottom: 0;
}
.schedule__head {
  background: #071A31;
  color: #fff;
  text-align: center;
  padding: 10px 10px;
}
.schedule__head h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
}
.schedule__body {
  padding: 56px 0 120px;
}
.schedule__title {
  font-size: clamp(20px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 36px;
  padding-left: 1em;
  position: relative;
}
.schedule__title em {
  font-style: normal;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.schedule__lead {
  font-size: clamp(14px, 1.9vw, 27px);
  font-weight: 400;
  line-height: 2;
  margin-bottom: 56px;
}
.schedule__lead a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.schedule__lead a:hover {
  opacity: 0.7;
}
.schedule__place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 40px;
}
.schedule__place:last-child {
  margin-bottom: 0;
}
.schedule__place-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: clamp(150px, 12vw, 250px);
  background: #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  padding: 24px 12px;
}
.schedule__place-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding: 20px 0 20px clamp(20px, 2.5vw, 40px);
  font-size: clamp(14px, 1.9vw, 30px);
}
.schedule__place-detail div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5em;
  margin-bottom: 0.6em;
}
.schedule__place-detail div:last-child {
  margin-bottom: 0;
}
.schedule__place-detail dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4.95em;
  font-weight: 600;
  line-height: 1.8;
}
.schedule__place-detail dd {
  margin: 0;
  font-weight: 400;
  line-height: 1.8;
}
.schedule__place-detail dd a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.schedule__place-detail dd a:hover {
  opacity: 0.7;
}
.schedule__place-detail dd small {
  font-size: 100%;
}

@media (max-width: 768px) {
  .schedule__body {
    padding: 30px 0 60px;
  }
  .schedule__title {
    font-size: clamp(17px, 1.6vw, 20px);
    margin-bottom: 12px;
  }
  .schedule__lead {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 24px;
  }
  .schedule__lead br {
    display: none;
  }
  .schedule__place {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 24px;
  }
  .schedule__place-label {
    width: 100%;
    padding: 5px;
    font-size: 16px;
  }
  .schedule__place-detail {
    padding: 15px 0 0;
  }
  .schedule__place-detail div {
    gap: 1.2%;
    margin-bottom: 5px;
  }
  .schedule__place-detail dt {
    width: auto;
    margin-bottom: 4px;
  }
  .schedule__place-detail dd {
    font-size: 13px;
  }
  .schedule__second {
    padding: 40px 0 30px 0;
    border-top: 4px solid #ddd;
    border-bottom: 4px solid #ddd;
  }
  .schedule__second .schedule__title {
    margin-bottom: 0;
  }
}
/* ===== Product Showcase ===== */
.product-showcase {
  position: relative;
  width: 100%;
  padding: 80px 0 90px;
  text-align: center;
  background: #fff;
}
.product-showcase__title {
  margin: 0 0 56px;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.product-showcase__image {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.product-showcase__image img {
  display: block;
  margin: 0 auto;
}
.product-showcase__note {
  margin: 42px 0 0;
  font-size: clamp(16px, 2.2vw, 42px);
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-showcase {
    padding: 56px 0 56px;
  }
  .product-showcase__title {
    margin-bottom: 25px;
    font-size: 34px;
  }
  .product-showcase__image img {
    width: min(55vw, 260px);
  }
  .product-showcase__note {
    margin-top: 24px;
    font-size: 21px;
  }
}
/* ===== Footer ===== */
.footer {
  position: relative;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 60px 3.5vw;
  z-index: 10;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15%;
}
.footer__logo {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__logo img {
  width: clamp(100px, 12vw, 200px);
  height: auto;
}
.footer__logo:hover {
  opacity: 0.7;
}
.footer__copyright {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: clamp(11px, 1.1vw, 18px);
  font-weight: 300;
  line-height: 1.5;
  white-space: nowrap;
}
.footer__instagram {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__instagram img {
  width: 50px;
  height: 50px;
}
.footer__instagram:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 5vw;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
  .footer__logo {
    margin: 0 auto 5px auto;
  }
  .footer__copyright {
    font-size: 11px;
    white-space: normal;
  }
  .footer__instagram {
    margin-bottom: 15px;
  }
  .footer__instagram img {
    width: 42px;
    height: 42px;
  }
}
/* ===== Animation ===== */
.js-fade {
  opacity: 0;
  -webkit-transition: 1.4s cubic-bezier(0.5, 1, 0.89, 1);
  transition: 1.4s cubic-bezier(0.5, 1, 0.89, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-fade.is-inview {
  opacity: 1;
}

.js-blur {
  opacity: 0;
  -webkit-filter: blur(25px);
          filter: blur(25px);
  -webkit-transition: 1s cubic-bezier(0.5, 1, 0.89, 1);
  transition: 1s cubic-bezier(0.5, 1, 0.89, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-blur.is-inview {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.js-wipe {
  -webkit-transition: 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-wipe.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.js-wipe-vertical {
  -webkit-transition: 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  transition: 0.8s cubic-bezier(0.5, 1, 0.89, 1);
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-wipe-vertical.is-inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.mv__product {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.mv h1 span:first-child {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.mv h1 span:last-child {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.interview h2 span.ttl1 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.interview h2 span.ttl2 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.interview h2 span.ttl3 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.interview h2 span.ttl4 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}