@charset "UTF-8";

html {
  font-size: 0.486vw;
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 6.8px;
  }
}

/*-------------------------
 common
-------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

.l-header {
  padding: 0;
  position: relative;
  z-index: 999;
  background-color: #fff;
  overflow-x: clip;
}

.l-footer {
  padding: 0;
  position: relative;
  z-index: 999;
  background-color: #fff;
  overflow-x: clip;
}

.pc-footer {
  margin: 0;
}

#feature {
  box-sizing: border-box;
  overflow: clip;
  position: relative;
  font-family: "fot-tsukumin-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
  color: #000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

#feature {
  min-height: 100vh;
  background-image: url("../img/bg-color.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#feature .feature__inner {
  width: 75rem;
  position: relative;
  overflow: clip;
}

#feature .section {
  position: relative;
  background: #f4efee;
}

#feature a {
  transition: all 0.3s ease-in-out;
  display: block;
  transform: none;
  text-decoration: none;
}

#feature img,
svg,
video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.l-container {
  width: 100%;
  overflow: clip;
}

#feature .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

#feature .left figure {
  width: 34.8rem;
}

#feature .right {
  grid-column: 3;
  justify-self: center;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
  overflow: hidden;
  position: sticky;
  top: 80px;
  left: auto;
  transform: none;
}

#feature .right figure {
  width: 31.5rem;
  margin-top: -4.3rem;
}

/*-------------------------
 Font
-------------------------*/
#feature .img_txt {
  font-size: 8rem;
  line-height: 1.45;
  letter-spacing: 0.025em;
  text-align: center;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  pointer-events: none;
}

#feature .credit-inner a,
#feature .staff {
  font-family: "univers-next-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*-------------------------
 Sticky
-------------------------*/
#feature .sticky {
  position: sticky;
  top: 80px;
}

/*-------------------------
 FadeIn
-------------------------*/
#feature .fadeIn {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
}

#feature .fadeIn.active {
  opacity: 1;
}

/*-------------------------
 FadeUp
-------------------------*/
#feature .fadeUp_area {
  position: relative;
  overflow: hidden;
  height: 105rem;
}

#feature .img14 {
  position: relative;
  z-index: 1;
}

/*-------------------------
 Slider
-------------------------*/
#feature .splide-fade .splide {
  width: 75rem;
  margin-left: 0;
  margin-right: auto;
  overflow: hidden;
}

#feature .splide__track {
  overflow: visible;
}

#feature .splide__slide .splide__list {
  gap: 0;
  justify-content: flex-start;
}

#feature .splide__slide .splide__slide {
  width: 67rem !important;
  flex-shrink: 0;
  margin-right: 4rem;
}

#feature .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
}

#feature .splide__slide .splide__track {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/*-------------------------*
 * Animation
 *-------------------------*/

#feature .rose_rain,
#feature.sec08 .rose_rain02 {
  position: absolute;
  inset: 0;
  z-index: 15;
  overflow: hidden;
  pointer-events: none;
}

#feature .rose_rain,
#feature .rose_rain *,
#feature .rose_rain02,
#feature .rose_rain02 * {
  pointer-events: none !important;
  z-index: 15;
}


/* -------------------------
   縦方向：落下
------------------------- */

#feature .rose_fall,
#feature .rose_fall02 {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform, opacity;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

#feature .rose_fall {
  animation-name: fall01;
}

#feature .rose_fall02 {
  animation-name: fall02;
}

/* -------------------------
   左右移動：共通
------------------------- */

#feature .rose_sway {
  will-change: transform;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transform: translate3d(0, 0, 0);
}

/* -------------------------
   左右移動：狭い
------------------------- */

#feature .rose_sway--small {
  animation-name: roseSwaySmall;
}

@keyframes roseSwaySmall {

  from {
    transform: translate3d(-3rem, 0, 0);
  }

  to {
    transform: translate3d(3rem, 0, 0);
  }
}

/* -------------------------
   左右移動：広い
------------------------- */
#feature .rose_sway--large {
  animation-name: roseSwayLarge;
}

@keyframes roseSwayLarge {
  from {
    transform: translate3d(-15rem, 0, 0);
  }

  to {
    transform: translate3d(15rem, 0, 0);
  }
}

/* -------------------------
   花びらの姿勢
   クルクル回さず、
   ゆっくり向きを変える
------------------------- */

#feature .rose_rot {
  will-change: transform;
  animation-name: roseRotate;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
}

@keyframes roseRotate {
  0% {
    transform:
      rotateZ(-12deg) rotateY(-15deg) rotateX(5deg);
  }

  50% {
    transform:
      rotateZ(15deg) rotateY(12deg) rotateX(-5deg);
  }

  100% {
    transform:
      rotateZ(-8deg) rotateY(-12deg) rotateX(4deg);
  }

}

/* -------------------------
   花びら画像
------------------------- */

#feature .rose_rot img {
  display: block;
  width: 6rem;
  height: auto;
  opacity: 1;
  backface-visibility: visible;
  pointer-events: none;
  user-select: none;
}

/* -------------------------
   sec02 落下
------------------------- */

@keyframes fall01 {

  0% {
    transform: translate3d(0, -5rem, 0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 285rem, 0);
    opacity: 0;
  }

}


/* -------------------------
   sec08 落下
------------------------- */

@keyframes fall02 {

  0% {
    transform: translate3d(0, -5rem, 0);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 285rem, 0);
    opacity: 0;
  }

}


/* -------------------------
   アニメーション軽減
------------------------- */

@media (prefers-reduced-motion: reduce) {

  #feature .rose_fall,
  #feature .rose_fall02,
  #feature .rose_sway,
  #feature .rose_rot {
    animation: none !important;
  }

}

/*-------------------------
 Hero
-------------------------*/
#feature .hero_area {
  width: 75rem;
  height: fit-content;
  margin: 0 auto;
}

#feature .hero_area .hero_ttl {
  width: 37.7rem;
  position: absolute;
  top: 3.8rem;
  left: 50.2%;
  transform: translate(-50%);
}

#feature .text_area {
  width: 100%;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.01em;
  position: absolute;
  top: 6.8rem;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  color: #ea7e9c;
}

#feature .text_area p:nth-of-type(2) {
  margin-top: 2.6rem;
}

#feature .text_area p:nth-of-type(3) {
  margin-top: 2.6rem;
}

#feature .text_area p:nth-of-type(1) span:nth-of-type(1) {
  letter-spacing: 0.05em;
  margin-left: 1.3rem;
}

#feature .text_area p:nth-of-type(1) span:nth-of-type(2) {
  letter-spacing: -0.01em;
  margin-left: -0.3rem;
}

#feature .text_area p:nth-of-type(1) span:nth-of-type(3) {
  letter-spacing: 0.04em;
  margin-left: 1.2rem;
}

#feature .text_area p:nth-of-type(2) span:nth-of-type(1) {
  letter-spacing: 0.06em;
  margin-left: 1.3rem;
}

#feature .text_area p:nth-of-type(2) span:nth-of-type(2) {
  letter-spacing: -0.03em;
  margin-left: 1.1rem;
}

#feature .text_area p:nth-of-type(3) span:nth-of-type(1) {
  letter-spacing: 0.02em;
  margin-left: 1.4rem;
}

#feature .text_area p:nth-of-type(3) span:nth-of-type(2) {
  letter-spacing: -0.02em;
  margin-left: 1.3rem;
}

/*-------------------------
 Content
-------------------------*/
#feature .sec01 {
  position: relative;
  overflow: hidden;
  padding-bottom: 18.8rem;
}

#feature .sec02 {
  padding-bottom: 12.1rem;
}

#feature .sec03 {
  position: relative;
  overflow: hidden;
  padding-bottom: 18.8rem;
}

#feature .sec04 {
  position: relative;
  overflow: hidden;
  padding-bottom: 18.8rem;
}

#feature .sec05 {
  position: relative;
  overflow: hidden;
  padding-bottom: 19rem;
}

#feature .sec06 {
  position: relative;
  overflow: hidden;
  padding-bottom: 19rem;
}

#feature .sec07 {
  position: relative;
  overflow: hidden;
  padding-bottom: 18.7rem;
}

#feature .sec08 {
  position: relative;
  overflow: hidden;
  padding-bottom: 10.8rem;
}

#feature .section__inner {
  width: 100%;
}

#feature .block_area {
  position: relative;
  height: fit-content;
}

#feature .staff {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  color: #ea7e9c;
  margin-top: 6.8rem;
}

/*-------------------------
 Image/Text
-------------------------*/
#feature .deco {
  margin-top: 60rem;
}

#feature .bg {
  width: 67rem;
  margin: 8.8rem auto 0;
}

#feature .ttl_01 {
  width: 41.30708rem;
  margin: auto;
  padding-top: 5.2rem;
}

#feature .img01 {
  width: 75rem;
  margin: 20rem auto 0;
}

#feature .img02 {
  width: 67rem;
  margin: 6rem auto 0;
}

#feature .img04 {
  width: 67rem;
  margin: 18.8rem auto 0;
}

#feature .flower_04 {
  width: 26rem;
  margin: 8.8rem auto 0;
}

#feature .ttl_02 {
  width: 47.68639rem;
  margin: 0.5rem auto 0;
}

#feature .img06 {
  width: 75rem;
  margin: 0 auto;
}

#feature .img07 {
  width: 67rem;
  margin: 6rem auto 0;
}

#feature .img08 {
  width: 67rem;
  margin: 0 auto;
}

#feature .img09 {
  width: 75rem;
  margin: 19.8rem auto 0;
}

#feature .img10 {
  width: 67rem;
  margin: 18.6rem auto 0;
}

#feature .img13 {
  width: 67rem;
  margin: 5.9rem auto 0;
}

#feature .flower_03 {
  width: 18rem;
  margin: 13rem 0 0 0;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

#feature .img15 {
  width: 63rem;
  margin: -25.1rem auto 0;
}

#feature .flower_05 {
  width: 26rem;
  margin: 15rem auto 0;
}

#feature .btn {
  width: 46.13539rem;
  margin: 2rem auto 0;
  position: relative;
}

/*-------------------------
 Credit
-------------------------*/
#feature .credit-inner a {
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #ea7e9c;
}

#feature .credit-inner {
  width: fit-content;
  margin: 3rem 0 0 4rem;
  text-align: left;
}

#feature .credit-inner .price{
  margin-left: -0.7rem;
}