@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

:root {
  --black: #131313;
  --white: #faf9ff;
  --en: "Inter", sans-serif;
  --ff-infact: "Cormorant Infant", serif;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
  color: var(--black);
  background-color: #e3e5e6;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: #363b48;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  display: block;
}

a:hover {
  opacity: 0.6;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main,
picture {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

i {
  display: inline-block;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

/***************************

layout/_header.scss

***************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  padding: 4rem 0 2rem;
  transition: all 0.3s linear;
}
.header.is-show {
  backdrop-filter: blur(30px);
  background-color: rgba(240, 236, 234, 0.5019607843);
}

/* Hamburger menu */
@media screen and (max-width: 834px) {
  .gnav {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100vw;
    height: 100vh;
    z-index: 6;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
    pointer-events: none;
    background-color: #878a8b;
  }
  .gnav.active {
    top: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: fill;
    color: #faf9ff;
  }
  .gnav.active .logo_h-sp {
    display: block;
    position: absolute;
    top: 2.5rem;
    left: 0;
    width: 100%;
    padding-bottom: 3rem;
  }
  .gnav.active .logo_h-sp::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #a1a3a4;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
  }
  .gnav.active .logo_h-sp.anime-start::before {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 834px) and (max-width: 450px) {
  .gnav.active .logo_h-sp {
    top: 2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .gnav.active .logo_h-sp img {
    display: block;
    max-width: 129px;
    margin-left: 4rem;
  }
}
@media screen and (max-width: 834px) and (max-width: 450px) {
  .gnav.active .logo_h-sp img {
    max-width: 100px;
    margin-left: 2rem;
  }
}
.gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 2rem;
  font-size: 1.6rem;
  font-weight: 300;
}
@media screen and (max-width: 450px) {
  .gnav-list {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .gnav-list {
    margin-top: 10rem;
    margin-left: 5.5rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 6vw;
  }
}
@media screen and (max-width: 450px) {
  .gnav-list {
    margin-top: 8rem;
    margin-left: 4rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .gnav-list-item:has(.logo_h) {
    display: none;
  }
  .gnav-list-item:not(:first-child) {
    margin-top: -1em;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter {
    animation: showText 1s forwards;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(1) {
    animation-delay: 0s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(2) {
    animation-delay: 0.01s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(3) {
    animation-delay: 0.02s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(4) {
    animation-delay: 0.03s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(5) {
    animation-delay: 0.04s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(6) {
    animation-delay: 0.05s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(7) {
    animation-delay: 0.06s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(8) {
    animation-delay: 0.07s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(9) {
    animation-delay: 0.08s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(10) {
    animation-delay: 0.09s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(11) {
    animation-delay: 0.1s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(12) {
    animation-delay: 0.11s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(13) {
    animation-delay: 0.12s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(14) {
    animation-delay: 0.13s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(15) {
    animation-delay: 0.14s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(16) {
    animation-delay: 0.15s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(17) {
    animation-delay: 0.16s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(18) {
    animation-delay: 0.17s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(19) {
    animation-delay: 0.18s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(20) {
    animation-delay: 0.19s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(21) {
    animation-delay: 0.2s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(22) {
    animation-delay: 0.21s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(23) {
    animation-delay: 0.22s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(24) {
    animation-delay: 0.23s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(25) {
    animation-delay: 0.24s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(26) {
    animation-delay: 0.25s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(27) {
    animation-delay: 0.26s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(28) {
    animation-delay: 0.27s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(29) {
    animation-delay: 0.28s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(30) {
    animation-delay: 0.29s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(31) {
    animation-delay: 0.3s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(32) {
    animation-delay: 0.31s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(33) {
    animation-delay: 0.32s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(34) {
    animation-delay: 0.33s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(35) {
    animation-delay: 0.34s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(36) {
    animation-delay: 0.35s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(37) {
    animation-delay: 0.36s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(38) {
    animation-delay: 0.37s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(39) {
    animation-delay: 0.38s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(40) {
    animation-delay: 0.39s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(41) {
    animation-delay: 0.4s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(42) {
    animation-delay: 0.41s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(43) {
    animation-delay: 0.42s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(44) {
    animation-delay: 0.43s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(45) {
    animation-delay: 0.44s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(46) {
    animation-delay: 0.45s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(47) {
    animation-delay: 0.46s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(48) {
    animation-delay: 0.47s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(49) {
    animation-delay: 0.48s;
  }
  .gnav-list-item.anime-start .c-hover__txt-letter:nth-child(50) {
    animation-delay: 0.49s;
  }
}
.gnav-list-item i {
  position: relative;
  top: 4px;
  max-width: 14px;
}
@media screen and (max-width: 834px) {
  .gnav-list-item i {
    display: none;
  }
}
.gnav-list-link:has(i) {
  position: relative;
  top: -6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}

@keyframes showText {
  0% {
    transform: translateY(100%) rotateZ(20deg);
  }
  100% {
    transform: translateY(0px) rotateZ(0deg);
  }
}
.hum-item {
  display: none;
}
@media screen and (max-width: 834px) {
  .hum-item {
    display: block;
    font-size: 5vw;
    overflow: hidden;
  }
  .hum-item.anime-start img {
    animation: showText 1s forwards;
  }
  .hum-item.-rec {
    margin-top: -0.5em;
  }
  .hum-item.-rec .gnav-list-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }
  .hum-item.-rec.anime-start img {
    animation-delay: 0.08s;
  }
  .hum-item.-rec img {
    max-width: 27px;
  }
}
@media screen and (max-width: 834px) and (max-width: 450px) {
  .hum-item.-rec img {
    max-width: 1.7rem;
  }
}
@media screen and (max-width: 834px) {
  .hum-item.-insta {
    margin-top: -0.5em;
  }
  .hum-item.-insta img {
    max-width: 33px;
  }
}
@media screen and (max-width: 834px) and (max-width: 450px) {
  .hum-item.-insta img {
    max-width: 2rem;
  }
}

.logo_h {
  max-width: 125px;
}
@media screen and (max-width: 834px) {
  .logo_h {
    display: none;
  }
}
.logo_h-sp {
  display: none;
}

/* toggle button */
.toggle.active .toggle__title:before {
  content: "( CLOSE )";
}

.toggle {
  display: none;
}
@media screen and (max-width: 834px) {
  .toggle {
    position: absolute;
    top: 1.5rem;
    right: 3rem;
    width: auto;
    padding: 0;
    cursor: pointer;
    display: block;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    font-size: 2.4rem;
    font-family: "Cormorant Infant", serif;
    color: var(--black);
    z-index: 91;
  }
}
@media screen and (max-width: 834px) and (max-width: 450px) {
  .toggle {
    font-size: 4.7vw;
  }
}
@media screen and (max-width: 834px) and (max-width: 450px) {
  .toggle {
    top: 2rem;
    right: 2rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .toggle.active {
    color: #fff;
  }
}

.toggle__title:before {
  content: "( MENU )";
}

/***************************

layout/_footer.scss

***************************/
.footer {
  margin-top: 20rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 834px) {
  .footer {
    margin-top: 10rem;
    padding-bottom: 3rem;
  }
}
.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}
.footer-flex:first-of-type {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.footer-flex:last-of-type {
  margin-top: 13rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .footer-flex:last-of-type {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 450px) {
  .footer-flex:last-of-type {
    margin-top: 3rem;
  }
}
.footer-logo {
  max-width: 125px;
}
.footer .insta-link {
  max-width: 19px;
}

.sitemap {
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
.sitemap-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-column-gap: 9rem;
  grid-row-gap: 1em;
}
@media screen and (max-width: 1200px) {
  .sitemap-list {
    grid-column-gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .sitemap-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sitemap-item:last-of-type {
  margin-left: -5rem;
}
@media screen and (max-width: 1200px) {
  .sitemap-item:last-of-type {
    margin-left: 0;
  }
}
.sitemap-detail__list {
  color: #9a9797;
  font-size: 1.2rem;
}

.copy {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #a9a9a9;
  font-size: 1.4rem;
}

/***************************

object/object/project/_mv.scss

***************************/
.top-mv {
  position: relative;
  margin-top: 15rem;
  height: calc(100svh - 15rem);
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-mv {
    margin-top: 10rem;
    height: calc(100svh - 10rem);
  }
}
@media screen and (max-width: 450px) {
  .top-mv {
    margin-top: 7rem;
    height: calc(100svh - 7rem);
  }
}
.top-mv__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .top-mv__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-mv__swiper01, .top-mv__swiper02 {
  height: calc(100svh - 15rem);
}
.top-mv__swiper01 picture, .top-mv__swiper02 picture {
  height: 100%;
}
.top-mv__swiper01 img, .top-mv__swiper02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomUp 6s linear 0s normal both;
}
.top-mv__swiper01 {
  width: 75%;
}
@media screen and (max-width: 834px) {
  .top-mv__swiper01 {
    width: 100%;
    height: calc((100svh - 10rem) * 0.75);
  }
}
@media screen and (max-width: 450px) {
  .top-mv__swiper01 .swiper-slide:first-of-type img {
    object-position: 80% center;
  }
}
@media screen and (max-width: 450px) {
  .top-mv__swiper01 {
    height: calc((100svh - 7rem) * 0.75);
  }
}
.top-mv__swiper02 {
  width: 25%;
}
@media screen and (max-width: 834px) {
  .top-mv__swiper02 {
    width: 100%;
    height: calc((100svh - 10rem) * 0.25);
  }
}
@media screen and (max-width: 450px) {
  .top-mv__swiper02 {
    height: calc((100svh - 7rem) * 0.25);
  }
}
.top-mv__catch {
  position: absolute;
  left: calc(5% + 6rem);
  bottom: 8rem;
  z-index: 2;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 1100px) {
  .top-mv__catch {
    left: calc(5% + 4vw);
    bottom: 3vw;
  }
}
.top-mv__catch-big {
  font-size: 12rem;
  font-weight: 300;
}
@media screen and (max-width: 1100px) {
  .top-mv__catch-big {
    font-size: 10vw;
  }
}
@media screen and (max-width: 450px) {
  .top-mv__catch-big {
    font-size: 13vw;
  }
}
.top-mv__catch-big__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}
.top-mv__catch-big__letter:nth-child(1) {
  animation-delay: 0s;
}
.top-mv__catch-big__letter:nth-child(2) {
  animation-delay: 0.1s;
}
.top-mv__catch-big__letter:nth-child(3) {
  animation-delay: 0.2s;
}
.top-mv__catch-big__letter:nth-child(4) {
  animation-delay: 0.3s;
}
.top-mv__catch-big__letter:nth-child(5) {
  animation-delay: 0.4s;
}
.top-mv__catch-big__letter:nth-child(6) {
  animation-delay: 0.5s;
}
.top-mv__catch-big__letter:nth-child(7) {
  animation-delay: 0.6s;
}
.top-mv__catch-big__letter:nth-child(8) {
  animation-delay: 0.7s;
}
.top-mv__catch-big__letter:nth-child(9) {
  animation-delay: 0.8s;
}
.top-mv__catch-big__letter:nth-child(10) {
  animation-delay: 0.9s;
}
.top-mv__catch-big__letter:nth-child(11) {
  animation-delay: 1s;
}
.top-mv__catch-big__letter:nth-child(12) {
  animation-delay: 1.1s;
}
.top-mv__catch-big__letter:nth-child(13) {
  animation-delay: 1.2s;
}
.top-mv__catch-big__letter:nth-child(14) {
  animation-delay: 1.3s;
}
.top-mv__catch-big__letter:nth-child(15) {
  animation-delay: 1.4s;
}
.top-mv__catch-big__letter:nth-child(16) {
  animation-delay: 1.5s;
}
.top-mv__catch-big__letter:nth-child(17) {
  animation-delay: 1.6s;
}
.top-mv__catch-big__letter:nth-child(18) {
  animation-delay: 1.7s;
}
.top-mv__catch-big__letter:nth-child(19) {
  animation-delay: 1.8s;
}
.top-mv__catch-big__letter:nth-child(20) {
  animation-delay: 1.9s;
}
.top-mv__catch-big__letter:nth-child(21) {
  animation-delay: 2s;
}
.top-mv__catch-big__letter:nth-child(22) {
  animation-delay: 2.1s;
}
.top-mv__catch-big__letter:nth-child(23) {
  animation-delay: 2.2s;
}
.top-mv__catch-big__letter:nth-child(24) {
  animation-delay: 2.3s;
}
.top-mv__catch-big__letter:nth-child(25) {
  animation-delay: 2.4s;
}
.top-mv__catch-big__letter:nth-child(26) {
  animation-delay: 2.5s;
}
.top-mv__catch-big__letter:nth-child(27) {
  animation-delay: 2.6s;
}
.top-mv__catch-big__letter:nth-child(28) {
  animation-delay: 2.7s;
}
.top-mv__catch-big__letter:nth-child(29) {
  animation-delay: 2.8s;
}
.top-mv__catch-big__letter:nth-child(30) {
  animation-delay: 2.9s;
}
.top-mv__catch-big__letter:nth-child(31) {
  animation-delay: 3s;
}
.top-mv__catch-big__letter:nth-child(32) {
  animation-delay: 3.1s;
}
.top-mv__catch-big__letter:nth-child(33) {
  animation-delay: 3.2s;
}
.top-mv__catch-big__letter:nth-child(34) {
  animation-delay: 3.3s;
}
.top-mv__catch-big__letter:nth-child(35) {
  animation-delay: 3.4s;
}
.top-mv__catch-big__letter:nth-child(36) {
  animation-delay: 3.5s;
}
.top-mv__catch-big__letter:nth-child(37) {
  animation-delay: 3.6s;
}
.top-mv__catch-big__letter:nth-child(38) {
  animation-delay: 3.7s;
}
.top-mv__catch-big__letter:nth-child(39) {
  animation-delay: 3.8s;
}
.top-mv__catch-big__letter:nth-child(40) {
  animation-delay: 3.9s;
}
.top-mv__catch-big__letter:nth-child(41) {
  animation-delay: 4s;
}
.top-mv__catch-big__letter:nth-child(42) {
  animation-delay: 4.1s;
}
.top-mv__catch-big__letter:nth-child(43) {
  animation-delay: 4.2s;
}
.top-mv__catch-big__letter:nth-child(44) {
  animation-delay: 4.3s;
}
.top-mv__catch-big__letter:nth-child(45) {
  animation-delay: 4.4s;
}
.top-mv__catch-big__letter:nth-child(46) {
  animation-delay: 4.5s;
}
.top-mv__catch-big__letter:nth-child(47) {
  animation-delay: 4.6s;
}
.top-mv__catch-big__letter:nth-child(48) {
  animation-delay: 4.7s;
}
.top-mv__catch-big__letter:nth-child(49) {
  animation-delay: 4.8s;
}
.top-mv__catch-big__letter:nth-child(50) {
  animation-delay: 4.9s;
}
.top-mv__catch-small {
  margin-top: 3rem;
  font-size: 1.2rem;
  line-height: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s 2.6s ease forwards;
}
@media screen and (max-width: 450px) {
  .top-mv__catch-small {
    margin-top: 1rem;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/***************************

object/object/project/_concept.scss

***************************/
.top-concept__catch {
  margin: 2rem 0 7rem;
  font-weight: 200;
  font-size: 5.6rem;
}
@media screen and (max-width: 1200px) {
  .top-concept__catch {
    font-size: 4vw;
  }
}
@media screen and (max-width: 834px) {
  .top-concept__catch {
    margin-bottom: 6rem;
    font-size: 4rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 834px) {
  .top-concept__catch-txt .swiper-wrapper {
    transition-timing-function: linear;
  }
  .top-concept__catch-txt .swiper-slide {
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
  }
}
.top-concept__catch-txt:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (max-width: 834px) {
  .top-concept__catch-txt:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.top-concept__catch-txt01, .top-concept__catch-txt02 {
  width: 100%;
}
.top-concept__catch-txt01 p, .top-concept__catch-txt02 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .top-concept__catch-txt01 p, .top-concept__catch-txt02 p {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 1.5rem;
  }
}
@media screen and (min-width: 835px) {
  .top-concept__catch-txt02 {
    display: none;
  }
}
.top-concept__catch-txt img {
  max-width: 203px;
}
@media screen and (max-width: 834px) {
  .top-concept__catch-txt img {
    max-width: 150px;
  }
}

/***************************

object/object/project/_service.scss

***************************/
.top-service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 3rem;
}
@media screen and (max-width: 1200px) {
  .top-service__list {
    width: 1067px;
  }
}
@media screen and (max-width: 834px) {
  .top-service__list {
    margin-bottom: 2rem;
    width: 1037px;
    grid-column-gap: 2rem;
  }
}
.top-service__item .f28 {
  margin: 3.5rem 0 1.5rem;
}
@media screen and (max-width: 834px) {
  .top-service__item .f28 {
    margin: 1.5rem 0 1rem;
  }
}
.top-service_pickup {
  position: relative;
  display: block;
  margin-top: 9rem;
  padding: 7rem 7.8%;
  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: 3rem;
  background-color: #f2f3f4;
}
@media screen and (max-width: 834px) {
  .top-service_pickup {
    margin-top: 5rem;
    padding: 3rem 2.25rem;
  }
}
@media screen and (max-width: 450px) {
  .top-service_pickup {
    margin-top: 3.5rem;
  }
}
.top-service_pickup-img {
  max-width: 550px;
  width: 50%;
}
@media screen and (max-width: 834px) {
  .top-service_pickup-img {
    position: absolute;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: calc(100% - 4.5rem);
    text-align: center;
  }
}
.top-service_pickup-cont {
  max-width: 470px;
  width: 40%;
}
@media screen and (max-width: 1100px) {
  .top-service_pickup-cont {
    width: 46%;
  }
}
@media screen and (max-width: 834px) {
  .top-service_pickup-cont {
    max-width: 100%;
    width: 100%;
  }
}
.top-service_pickup-cont .f28 {
  margin-bottom: 2rem;
}
@media screen and (min-width: 835px) {
  .top-service_pickup-cont .c-btn {
    margin-left: 0;
    margin-right: auto;
  }
}
.top-service_pickup-ttl {
  position: relative;
  margin-bottom: 5rem;
  font-family: "Cormorant Infant", serif;
  font-weight: 300;
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .top-service_pickup-ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-service_pickup-ttl {
    margin-bottom: 38rem;
  }
}
@media screen and (max-width: 670px) {
  .top-service_pickup-ttl {
    margin-bottom: 55vw;
  }
}
.top-service_pickup-ttl::before {
  position: absolute;
  content: "";
  width: calc(100% - (7em + 2rem));
  height: 1px;
  top: 50%;
  right: 0;
  background-color: #cdcfd0;
  z-index: 1;
}

/***************************

object/object/project/_gallery.scss

***************************/
.top-gallery {
  position: relative;
  background-color: #cdcfd0;
  overflow: hidden;
}
.top-gallery.top-sec {
  padding: 48rem 0 35rem;
}
@media screen and (max-width: 1100px) {
  .top-gallery.top-sec {
    padding: 40rem 0 38rem;
  }
}
@media screen and (max-width: 600px) {
  .top-gallery.top-sec {
    padding: 20rem 0 14rem;
  }
}
.top-gallery .inner {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 450px) {
  .top-gallery .c-txt.tac {
    text-align: center;
  }
}
.top-gallery_img {
  position: absolute;
  z-index: 1;
}
.top-gallery_img:nth-of-type(1) {
  max-width: 421px;
  aspect-ratio: 421/274;
  top: 12%;
  left: calc(50% - 421px);
}
@media screen and (max-width: 1100px) {
  .top-gallery_img:nth-of-type(1) {
    width: 52%;
    top: 7%;
    left: 3%;
    z-index: 2;
  }
}
@media screen and (max-width: 450px) {
  .top-gallery_img:nth-of-type(1) {
    top: 10%;
  }
}
.top-gallery_img:nth-of-type(2) {
  max-width: 367px;
  aspect-ratio: 367/431;
  top: 30%;
  left: 0;
}
@media screen and (max-width: 1100px) {
  .top-gallery_img:nth-of-type(2) {
    display: none;
  }
}
.top-gallery_img:nth-of-type(3) {
  max-width: 305px;
  aspect-ratio: 305/401;
  bottom: 13%;
  left: 12%;
}
@media screen and (max-width: 1100px) {
  .top-gallery_img:nth-of-type(3) {
    display: none;
  }
}
.top-gallery_img:nth-of-type(4) {
  max-width: 421px;
  aspect-ratio: 421/508;
  top: 18%;
  right: 12%;
}
@media screen and (max-width: 1100px) {
  .top-gallery_img:nth-of-type(4) {
    width: 48%;
    top: 11%;
    right: 0;
  }
}
@media screen and (max-width: 450px) {
  .top-gallery_img:nth-of-type(4) {
    top: 16%;
  }
}
.top-gallery_img:nth-of-type(5) {
  max-width: 234px;
  aspect-ratio: 234/250;
  bottom: 21%;
  right: 10%;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .top-gallery_img:nth-of-type(5) {
    width: 31%;
    right: 6%;
    bottom: 12%;
  }
}
@media screen and (max-width: 450px) {
  .top-gallery_img:nth-of-type(5) {
    bottom: 9%;
  }
}
.top-gallery_img:nth-of-type(6) {
  max-width: 348px;
  aspect-ratio: 348/239;
  bottom: 7%;
  right: 20%;
}
@media screen and (max-width: 1100px) {
  .top-gallery_img:nth-of-type(6) {
    width: 46%;
    right: auto;
    left: 6%;
    bottom: 5%;
  }
}
@media screen and (max-width: 834px) {
  .top-gallery_img:nth-of-type(6) {
    bottom: 13%;
  }
}
@media screen and (max-width: 450px) {
  .top-gallery_img:nth-of-type(6) {
    bottom: 2%;
  }
}

/***************************

object/object/project/_designer.scss

***************************/
.top-designer__flex {
  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: 3rem;
}
@media screen and (max-width: 834px) {
  .top-designer__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-designer__img {
  max-width: 920px;
  width: 63%;
}
@media screen and (max-width: 834px) {
  .top-designer__img {
    max-width: 100%;
    width: 100%;
  }
}
.top-designer__cont {
  max-width: 430px;
  width: 29%;
}
@media screen and (max-width: 1100px) {
  .top-designer__cont {
    min-width: 280px;
    width: 35%;
  }
}
@media screen and (max-width: 834px) {
  .top-designer__cont {
    width: 100%;
  }
}
.top-designer__cont .c-ttl {
  text-align: left;
}
@media screen and (max-width: 834px) {
  .top-designer__cont .c-ttl {
    margin-bottom: 2rem;
  }
}
.top-designer__cont .f28 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 834px) {
  .top-designer__cont .f28 {
    margin-bottom: 2rem;
  }
}
.top-designer__cont .c-btn {
  margin-left: 0;
  margin-right: auto;
}

/***************************

object/object/project/_salon.scss

***************************/
.top-salon__list {
  height: 100%;
}
@media screen and (max-width: 834px) {
  .top-salon__list {
    margin-bottom: 2rem;
    width: calc(620px + 2rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .top-salon__list {
    width: 120%;
  }
}
.top-salon__item:not(:first-of-type) {
  margin-top: 6rem;
}
@media screen and (max-width: 834px) {
  .top-salon__item:not(:first-of-type) {
    margin-top: 0;
  }
}
.top-salon__link {
  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: 3rem;
}
@media screen and (max-width: 834px) {
  .top-salon__link {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.top-salon__img {
  max-width: 506px;
  width: 60%;
}
@media screen and (max-width: 834px) {
  .top-salon__img {
    width: 100%;
  }
}
.top-salon__cont {
  max-width: 280px;
  width: 33%;
}
@media screen and (max-width: 834px) {
  .top-salon__cont {
    width: 100%;
  }
}
.top-salon__cont .c-txt {
  margin: 5rem 0 3rem;
}
@media screen and (max-width: 834px) {
  .top-salon__cont .c-txt {
    margin: 1rem 0;
  }
}

/***************************

object/object/project/_news.scss

***************************/
.top-news__item:first-of-type .top-news__link {
  padding-top: 0;
}
.top-news__item:not(:first-of-type) {
  border-top: 1px solid #ccc;
}
.top-news__link {
  position: relative;
  padding: 5rem 4rem 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 2.3rem;
}
@media screen and (max-width: 834px) {
  .top-news__link {
    padding: 3rem 4rem 3rem 0;
  }
}
.top-news__link::before {
  position: absolute;
  content: "";
  width: 11px;
  aspect-ratio: 11/9;
  right: 2.5rem;
  background: url(../img/common/ico-arw_right.svg) no-repeat center center/cover;
}
@media screen and (max-width: 1100px) {
  .top-news__link .news-ttl {
    width: 100%;
  }
}

.news-time {
  min-width: 77px;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
}

.news-cate {
  display: block;
  padding: 0.5rem 1.05rem 0.4rem;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  background-color: #d4d4d4;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  font-weight: 300;
}

.news-ttl {
  font-size: 1.6rem;
  font-weight: 300;
  max-width: 100%;
}
@media screen and (max-width: 450px) {
  .news-ttl {
    font-size: 1.5rem;
  }
}

.c-hover__txt-dot {
  display: inline-block;
  position: relative;
}
.c-hover__txt-dot:after {
  content: attr(data-txt);
  position: absolute;
  top: 100%;
  left: 0;
}

/***************************

object/object/project/_recruit.scss

***************************/
.top-recruit.top-sec {
  padding: 0;
}
.top-recruit__link {
  position: relative;
  padding: 8.5rem 5% 10rem;
  width: 100%;
  height: 100%;
  color: #fff;
}
.top-recruit__link-inner {
  position: relative;
  z-index: 2;
}
.top-recruit__link .f80 {
  margin-top: -0.35em;
}
.top-recruit__img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.top-recruit__img img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/***************************

object/component/_heading.scss

***************************/
.c-ttl {
  margin-bottom: 4rem;
  text-align: center;
  font-family: "Cormorant Infant", serif;
  font-weight: 300;
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .c-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .c-ttl {
    margin-bottom: 3rem;
  }
}
.c-ttl__en {
  font-family: "Cormorant Infant", serif;
  font-weight: 300;
  font-size: 5.6rem;
  text-transform: uppercase;
}
@media screen and (max-width: 450px) {
  .c-ttl__en {
    font-size: 12vw;
  }
}

/***************************

object/component/_box.scss

***************************/
.inner {
  max-width: 1590px;
  width: 90%;
  margin: 0 auto;
}
.inner.-l {
  max-width: 1440px;
  margin-left: 5%;
  margin-right: auto;
}
.inner.-m {
  max-width: 1300px;
}

.top-sec {
  padding: 13rem 0 17rem;
}
@media screen and (max-width: 834px) {
  .top-sec {
    padding: 5rem 0;
  }
}
.top-sec:has(.c-parallax__img01) {
  padding-bottom: 0;
}

.c-parallax__img01 {
  position: relative;
  margin-top: 14rem;
  aspect-ratio: 3360/1524;
  overflow: hidden;
}
.c-parallax__img01 picture {
  height: 100%;
}
.c-parallax__img01 img {
  position: absolute;
  top: -5%;
  left: 50%;
  height: 110%;
  width: auto;
  transform: translate(-50%, 0);
  will-change: transform;
  transition: all 0.3s linear;
}
@media screen and (max-width: 834px) {
  .c-parallax__img01 {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 450px) {
  .c-parallax__img01 {
    aspect-ratio: 5/3;
  }
}

.c-parallax__img02-01,
.c-parallax__img02-02 {
  transform: translateY(0);
  transition: all 0.3s linear;
}

.c-flex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .c-flex {
    padding-bottom: 8rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .c-flex .c-btn {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.c-flex__ttl {
  min-width: 180px;
  width: 11%;
}
@media screen and (max-width: 834px) {
  .c-flex__ttl {
    width: fit-content;
  }
}
@media screen and (min-width: 835px) {
  .c-flex__ttl .c-btn {
    margin-left: 0;
    margin-right: auto;
  }
}
.c-flex__cont {
  max-width: 836px;
  width: 64%;
}
@media screen and (max-width: 1100px) {
  .c-flex__cont {
    width: 80%;
  }
}
@media screen and (max-width: 834px) {
  .c-flex__cont {
    width: 100%;
  }
}

@media screen and (min-width: 835px) {
  .js-scroll:has(.top-salon__list) {
    overflow: hidden !important;
  }
}
@media screen and (max-width: 834px) {
  .js-scroll:has(.top-salon__list) {
    overflow-y: hidden !important;
  }
}

.scroll-hint-icon {
  display: none;
}

.sp {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp {
    display: inline-block;
  }
}

.radius10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.radius60 {
  border-radius: 60px;
  -webkit-border-radius: 60px;
}
@media screen and (max-width: 500px) {
  .radius60 {
    border-radius: 30px;
    -webkit-border-radius: 30px;
  }
}

.radius100vmax {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

/*////////////////////////

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  opacity: 1;
  animation: fadeUpAnime 0.5s ease-in-out;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/***************************

object/component/_button.scss

***************************/
.c-btn {
  margin: 4rem auto 0;
  padding: 6.5px 1rem;
  max-width: 145px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--black);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .c-btn {
    margin-top: 3rem;
  }
}
.c-btn__blank {
  position: relative;
  max-width: 185px;
}
.c-btn__blank::before {
  position: absolute;
  content: "";
  width: 9px;
  aspect-ratio: 1/1;
  top: calc(50% - 4.5px);
  right: 2rem;
  background: url(../img/common/ico-arw_upright-wht.svg) no-repeat center center/cover;
}

/***************************

object/utility/_background.scss

***************************/
.bg-white {
  background-color: #fff;
}

.bg-dark-pink {
  background-color: #f2e7e4;
}

/***************************

object/utility/_link.scss

***************************/
.c-hover__txt-wrap:hover {
  opacity: 1;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter {
  animation-name: slideTextOutInY;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0, 0.55, 0.45, 1);
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(1) {
  animation-delay: 0s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(2) {
  animation-delay: 0.01s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(3) {
  animation-delay: 0.02s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(4) {
  animation-delay: 0.03s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(5) {
  animation-delay: 0.04s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(6) {
  animation-delay: 0.05s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(7) {
  animation-delay: 0.06s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(8) {
  animation-delay: 0.07s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(9) {
  animation-delay: 0.08s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(10) {
  animation-delay: 0.09s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(11) {
  animation-delay: 0.1s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(12) {
  animation-delay: 0.11s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(13) {
  animation-delay: 0.12s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(14) {
  animation-delay: 0.13s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(15) {
  animation-delay: 0.14s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(16) {
  animation-delay: 0.15s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(17) {
  animation-delay: 0.16s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(18) {
  animation-delay: 0.17s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(19) {
  animation-delay: 0.18s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(20) {
  animation-delay: 0.19s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(21) {
  animation-delay: 0.2s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(22) {
  animation-delay: 0.21s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(23) {
  animation-delay: 0.22s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(24) {
  animation-delay: 0.23s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(25) {
  animation-delay: 0.24s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(26) {
  animation-delay: 0.25s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(27) {
  animation-delay: 0.26s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(28) {
  animation-delay: 0.27s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(29) {
  animation-delay: 0.28s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(30) {
  animation-delay: 0.29s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(31) {
  animation-delay: 0.3s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(32) {
  animation-delay: 0.31s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(33) {
  animation-delay: 0.32s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(34) {
  animation-delay: 0.33s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(35) {
  animation-delay: 0.34s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(36) {
  animation-delay: 0.35s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(37) {
  animation-delay: 0.36s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(38) {
  animation-delay: 0.37s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(39) {
  animation-delay: 0.38s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(40) {
  animation-delay: 0.39s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(41) {
  animation-delay: 0.4s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(42) {
  animation-delay: 0.41s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(43) {
  animation-delay: 0.42s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(44) {
  animation-delay: 0.43s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(45) {
  animation-delay: 0.44s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(46) {
  animation-delay: 0.45s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(47) {
  animation-delay: 0.46s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(48) {
  animation-delay: 0.47s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(49) {
  animation-delay: 0.48s;
}
.c-hover__txt-wrap:hover .c-hover__txt-letter:nth-child(50) {
  animation-delay: 0.49s;
}

@keyframes slideTextOutInY {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.c-hover__txt {
  line-height: 2;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 33%, black 67%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 33%, black 67%, rgba(0, 0, 0, 0) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Inter", sans-serif;
}
.c-hover__txt-blank {
  position: relative;
  width: fit-content;
  padding-right: 14px;
}
.c-hover__txt-blank::before {
  position: absolute;
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  top: calc(50% - 4px);
  right: 0;
  background: url(../img/common/ico-arw_upright.svg) no-repeat center center/cover;
}

.c-hover__txt-letter {
  position: relative;
  backface-visibility: hidden;
  display: block;
}
.c-hover__txt-letter:after {
  content: attr(data-txt);
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
}

.c-hover__img picture {
  overflow: hidden;
}
.c-hover__img img {
  transition: all 0.3s linear;
}
.c-hover__img:hover {
  opacity: 1;
}
.c-hover__img:hover img {
  transform: scale(1.06);
}

.c-link {
  position: relative;
  width: fit-content;
  font-family: "Inter", sans-serif;
}
.c-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 4px;
  left: 0;
  background-color: #949596;
}

/***************************

object/utility/_text.scss

***************************/
.c-txt {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 300;
}
@media screen and (max-width: 450px) {
  .c-txt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .c-txt {
    font-size: 1.5rem;
  }
}
.c-txt:not(:first-of-type) {
  margin-top: 2em;
}
@media screen and (max-width: 834px) {
  .c-txt:not(:first-of-type) {
    margin-top: 1em;
  }
}
@media screen and (max-width: 450px) {
  .c-txt.tac {
    text-align: left;
  }
}

.txt-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.txt-ellipsis02 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 最大2行まで */
  max-height: 3em; /* 2行分の高さ */
  white-space: normal;
  text-overflow: ellipsis;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.fwm {
  font-weight: 500;
}

.fwl {
  font-weight: 300;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .f15 {
    font-size: 1.4rem;
  }
}

.f16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .f16 {
    font-size: 1.5rem;
  }
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 450px) {
  .f21 {
    font-size: 4.7vw;
  }
}

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 450px) {
  .f24 {
    font-size: 4.7vw;
  }
}

.f28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 500px) {
  .f28 {
    font-size: 5.6vw;
  }
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 550px) {
  .f32 {
    font-size: 5.4vw;
  }
}

.f40 {
  font-size: 4rem;
}
@media screen and (max-width: 600px) {
  .f40 {
    font-size: 6.6vw;
  }
}

.f48 {
  font-size: 4.8rem;
}
@media screen and (max-width: 500px) {
  .f48 {
    font-size: 7vw;
  }
}

.f56 {
  font-size: 5.6rem;
}
@media screen and (max-width: 450px) {
  .f56 {
    font-size: 12vw;
  }
}

.f80 {
  font-size: 8rem;
}
@media screen and (max-width: 500px) {
  .f80 {
    font-size: 16vw;
  }
}

.f82 {
  font-size: 8.2rem;
}
@media screen and (max-width: 500px) {
  .f82 {
    font-size: 16vw;
  }
}

.f120 {
  font-size: 12rem;
}
@media screen and (max-width: 834px) {
  .f120 {
    font-size: 14.4vw;
  }
}

.fc-pink {
  color: #cd356f;
}

.fc-gray {
  color: #92959c;
}

.fc-white {
  color: #fff;
}

.lh-1_3 {
  line-height: 1.3;
}

.lh-1_4 {
  line-height: 1.4;
}

.lh-1_5 {
  line-height: 1.5;
}

.lh-1_6 {
  line-height: 1.6;
}

.lh-1_7 {
  line-height: 1.7;
}

.lh-1_8 {
  line-height: 1.8;
}

.lh-2_5 {
  line-height: 2.5;
}
@media screen and (max-width: 450px) {
  .lh-2_5 {
    line-height: 1.8;
  }
}

.lh-2_7 {
  line-height: 2.7;
}
@media screen and (max-width: 450px) {
  .lh-2_7 {
    line-height: 2;
  }
}

.bg-pink_txt {
  display: block;
  width: fit-content;
  padding: 1rem;
  color: #fff;
  background-color: #cd356f;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.txt-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
}

.w-50em {
  display: inline-block;
  width: 0.5em;
}

.wm-rl {
  writing-mode: vertical-rl;
}

/***************************

object/utility/_font.scss

***************************/
.en {
  font-family: "Inter", sans-serif;
}

.ff-infact {
  font-family: "Cormorant Infant", serif;
}