@charset "UTF-8";
:root {
  --vw-unit: calc((var(--vw) * (460 / 1400)) / 750);
  --vw-pcunit: calc(var(--vw) / 1400);
}

@media screen and (min-width: 1400px) {
  :root {
    --vw-unit: calc((1400px * (460 / 1400)) / 750);
    --vw-pcunit: calc(1400px / 1400);
  }
}
/*アニメーション
----------------------------*/
@keyframes fadeInSimple {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sliderPagination {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
/*共通
----------------------------*/
.l-container {
  width: 100%;
}

.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 {
  width: 100%;
  margin: 0 auto;
  color: #424242;
  box-sizing: border-box;
  font-family: "toppan-bunkyu-gothic-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  position: relative;
  overflow-x: clip;
  opacity: 0;
  transition: 0.3s;
  background-color: #f0eeea;
}
#feature.is_show {
  opacity: 1;
}
#feature * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#feature a {
  width: 100%;
  height: auto;
  display: block;
  color: #424242;
  transition: 0.3s;
}
#feature a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#feature figure {
  background-color: #fff;
}
#feature img {
  width: 100%;
  height: auto;
  display: block;
}
#feature .js_anime.js_txtanime p span {
  opacity: 0;
  transition: opacity 1s;
}
#feature .js_anime.is_fade {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#feature .js_anime.is_fadein {
  opacity: 0;
  transform: translateY(calc(30 * var(--vw-unit)));
  transition: opacity 1s, transform 1s;
}
#feature .js_anime.is_show.js_txtanime p span {
  opacity: 1;
}
#feature .js_anime.is_show.is_fade {
  opacity: 1;
}
#feature .js_anime.is_show.is_fadein {
  opacity: 1;
  transform: translateY(0);
}

#feature {
  display: flex;
}
#feature .hero {
  width: 50%;
  height: calc(100vh - 80px);
  flex: 1;
  position: sticky;
  top: 80px;
  z-index: 3;
  overflow: hidden;
}
#feature .hero .hero__img {
  width: 100%;
  height: 100%;
}
#feature .hero .hero__img figure {
  width: 100%;
  height: 100%;
}
#feature .hero .hero__img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#feature .main {
  width: 50%;
}
#feature .sec {
  width: calc(750 * var(--vw-unit));
  padding-bottom: calc(150 * var(--vw-unit));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#feature .sec .sec__creditbtn {
  width: calc(64 * var(--vw-unit));
  height: calc(64 * var(--vw-unit));
  position: absolute;
  top: calc(28 * var(--vw-unit));
  right: calc(24 * var(--vw-unit));
  z-index: 10;
  transition: opacity 0.3s;
  cursor: pointer;
}
#feature .sec .sec__creditbtn:hover {
  opacity: 0.7;
}
#feature .sec .sec__creditbtn::before {
  content: "";
  width: calc(64 * var(--vw-unit));
  height: calc(2 * var(--vw-unit));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  background-color: #fff;
}
#feature .sec .sec__creditbtn::after {
  content: "";
  width: calc(2 * var(--vw-unit));
  height: calc(64 * var(--vw-unit));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: 0.5s;
  background-color: #fff;
}
#feature .sec .sec__creditbtn.is_open::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#feature .sec .sec__credit {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: calc(22 * var(--vw-unit));
  right: calc(24 * var(--vw-unit));
  z-index: 20;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}
#feature .sec .sec__credit.is_open {
  opacity: 1;
  pointer-events: auto;
}
#feature .sec .sec__credit .credit {
  width: -moz-fit-content;
  width: fit-content;
}
#feature .sec .sec__credit .credit .item {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  position: relative;
}
#feature .sec .sec__credit .credit .item.is_notrelease {
  pointer-events: none;
}
#feature .sec .sec__credit .credit .item .link {
  width: -moz-fit-content;
  width: fit-content;
}
#feature .sec .sec__credit .credit .item .link p {
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-size: calc(22 * var(--vw-unit));
  line-height: calc(42 * var(--vw-unit));
  letter-spacing: 0.05em;
  color: #fff;
}
#feature .sec .sec__block {
  width: 100%;
  position: relative;
}
#feature .sec .sec__mainttl {
  margin-top: calc(52 * var(--vw-unit));
}
#feature .sec .sec__mainttl p {
  text-align: center;
}
#feature .sec .sec__mainttl p .alternative {
  position: fixed !important;
  inset: 0 !important;
  display: block !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  contain: strict !important;
  pointer-events: none !important;
  opacity: 0 !important;
}
#feature .sec .sec__mainttl p:nth-child(1) {
  font-family: "amandine", sans-serif;
  font-size: calc(80 * var(--vw-unit));
  line-height: calc(95 * var(--vw-unit));
  letter-spacing: -0.01em;
  color: #e6aeb9;
}
#feature .sec .sec__mainttl p:nth-child(1) span:nth-child(8) {
  font-size: calc(72 * var(--vw-unit));
}
#feature .sec .sec__mainttl p:nth-child(1) span:nth-child(9) {
  font-size: calc(72 * var(--vw-unit));
}
#feature .sec .sec__mainttl p:nth-child(2) {
  margin-top: calc(2 * var(--vw-unit));
  font-family: "lato", sans-serif;
  font-size: calc(35 * var(--vw-unit));
  line-height: 1;
  letter-spacing: 0.03em;
  color: #e6aeb9;
}
#feature .sec .sec__ttl p {
  text-align: left;
}
#feature .sec .sec__ttl p .alternative {
  position: fixed !important;
  inset: 0 !important;
  display: block !important;
  inline-size: 4px !important;
  block-size: 4px !important;
  contain: strict !important;
  pointer-events: none !important;
  opacity: 0 !important;
}
#feature .sec .sec__ttl p:nth-child(1) {
  font-family: "amandine", sans-serif;
  font-weight: 500;
  font-size: calc(76 * var(--vw-unit));
  line-height: calc(95 * var(--vw-unit));
  letter-spacing: 0.02em;
  color: #e6aeb9;
}
#feature .sec .sec__ttl p:nth-child(1) span:nth-child(8) {
  font-size: calc(72 * var(--vw-unit));
}
#feature .sec .sec__ttl p:nth-child(1) span:nth-child(9) {
  font-size: calc(72 * var(--vw-unit));
}
#feature .sec .sec__ttl p:nth-child(2) {
  margin-top: calc(46 * var(--vw-unit));
  font-size: calc(30 * var(--vw-unit));
  line-height: calc(60 * var(--vw-unit));
  letter-spacing: 0.1em;
  color: #e6aeb9;
}
#feature .sec .sec__ttl.sec__ttl01 {
  margin: calc(56 * var(--vw-unit)) 0 0 calc(32 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl01 p:nth-child(2) span:nth-child(14) {
  font-size: calc(32 * var(--vw-unit));
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
}
#feature .sec .sec__ttl.sec__ttl01 p:nth-child(2) span:nth-child(15) {
  font-size: calc(32 * var(--vw-unit));
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
}
#feature .sec .sec__ttl.sec__ttl01 p:nth-child(2) span:nth-child(16) {
  font-size: calc(32 * var(--vw-unit));
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
}
#feature .sec .sec__ttl.sec__ttl01 p:nth-child(2) span:nth-child(17) {
  font-size: calc(32 * var(--vw-unit));
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
}
#feature .sec .sec__ttl.sec__ttl02 {
  margin: calc(56 * var(--vw-unit)) 0 0 calc(32 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl02 p:nth-child(1) {
  letter-spacing: 0.005em;
}
#feature .sec .sec__ttl.sec__ttl03 {
  margin: calc(56 * var(--vw-unit)) 0 0 calc(32 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl03 p:nth-child(2) {
  margin-top: calc(54 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl04 {
  margin: calc(56 * var(--vw-unit)) 0 0 calc(32 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl04 p:nth-child(2) {
  margin-top: calc(54 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl05 {
  margin: calc(56 * var(--vw-unit)) 0 0 calc(32 * var(--vw-unit));
}
#feature .sec .sec__ttl.sec__ttl05 p:nth-child(1) {
  letter-spacing: 0.01em;
}
#feature .sec .sec__ttl.sec__ttl05 p:nth-child(2) {
  margin-top: calc(52 * var(--vw-unit));
}
#feature .sec .sec__img {
  width: 100%;
  position: relative;
}
#feature .sec .sec__img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}
#feature .sec .sec__img.is_open::after {
  opacity: 0.25;
}
#feature .sec .sec__img.sec__img01 {
  width: calc(690 * var(--vw-unit));
  margin: calc(130 * var(--vw-unit)) auto 0;
}
#feature .sec .sec__img.sec__img02 {
  margin-top: calc(148 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img05 {
  margin-top: calc(62 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img08 {
  margin-top: calc(66 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img10 {
  margin-top: calc(62 * var(--vw-unit));
}
#feature .sec .sec__img.sec__img13 {
  margin-top: calc(62 * var(--vw-unit));
}
#feature .sec .sec__txt {
  font-weight: 600;
  font-size: calc(24 * var(--vw-unit));
  line-height: calc(48 * var(--vw-unit));
  letter-spacing: 0.05em;
  text-align: center;
}
#feature .sec .sec__txt span {
  font-family: "pragmatica", sans-serif;
  font-size: calc(25 * var(--vw-unit));
  font-weight: 400;
}
#feature .sec .sec__txt.sec__txt01 {
  margin-top: calc(68 * var(--vw-unit));
}
#feature .sec .sec__txt.sec__txt02 {
  margin-top: calc(66 * var(--vw-unit));
}
#feature .sec .sec__txtimg {
  width: calc(470 * var(--vw-unit));
  position: absolute;
  top: calc(52 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__logo {
  width: calc(626 * var(--vw-unit));
  position: absolute;
  bottom: calc(36 * var(--vw-unit));
  left: 50%;
  transform: translateX(-50%);
}
#feature .sec .sec__btn {
  width: calc(640 * var(--vw-unit));
  margin: calc(132 * var(--vw-unit)) auto 0;
  position: relative;
  z-index: 2;
}
#feature .sec .sec__staff {
  margin-top: calc(124 * var(--vw-unit));
  font-family: "pragmatica", sans-serif;
  font-weight: 300;
  font-size: calc(24 * var(--vw-unit));
  line-height: calc(48 * var(--vw-unit));
  letter-spacing: 0.065em;
  text-align: center;
}/*# sourceMappingURL=style.css.map */