@charset "UTF-8";

/* -------------------------
   Base
------------------------- */
html {
  font-size: 0.4667vw;
}

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

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;
}

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

#feature {
  box-sizing: border-box;
  overflow: clip;
  position: relative;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #a3a3a3;
  display: flex;
  background: #fffeeb;
}

#feature .feature__inner {
  width: 75rem;
  margin: 0 auto;
  position: relative;
  overflow: clip;
  background: #fff;
}

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

#feature a:hover {
  cursor: pointer;
  opacity: .7;
  transition: all 0.3s ease-in-out;
}

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

#feature .section__inner {
  width: 100%;
}

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

#feature .block_area a {
  color: #a3a3a3;
}

#feature .section,
#feature .hero_logo {
  position: relative;
}

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

#feature .sec04 {
  padding-bottom: 15.5rem;
}

#feature .sec05 {
  padding-bottom: 15.8rem;
}

#feature .sec06 {
  padding-top: 16rem;
}

#feature .bg_yellow {
  background: #fffeeb;
}

#feature .bg_yellow:first-child {
  padding-top: 11rem;
}

#feature .left {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  left: 0;
  width: 50%;
  height: calc(100vh - 80px);
}

/* -------------------------
   Title
------------------------- */
#feature .txt_fadeUp {
  text-align: center;
  font-family: "warbler-deck", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#feature .txt_fadeUp .mask__01 span {
  font-size: 4.2rem;
  letter-spacing: 0.045em;
  line-height: 1.25;
  position: relative;
  z-index: 25;
}

#feature .txt_fadeUp .mask__02 span {
  font-size: 5.6rem;
  letter-spacing: 0.055em;
  line-height: 1.4285;
  margin: -0.8rem 0 0.5rem 0;
  position: relative;
  z-index: 25;
}

#feature .sec01 .txt_area .txt_fadeUp:nth-of-type(1) .mask__01::after,
#feature .sec02 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after,
#feature .sec03 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after,
#feature .sec04 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after,
#feature .sec05 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after,
#feature .sec06 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after {
  content: "";
  display: block;
  width: 13.85859rem;
  height: 13.84804rem;
  background-image: url("../img/icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  pointer-events: none;
  z-index: 10;
}

#feature .sec01 .txt_area .txt_fadeUp:nth-of-type(1) .mask__01::after {
  top: 9.2rem;
  left: 50%;
  transform: translateX(-50%);
}

#feature .sec02 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after {
  top: 2.5rem;
  right: 4rem;
}

#feature .sec03 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after {
  top: 4.8rem;
  left: 4rem;
}

#feature .sec04 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after {
  top: 9.8rem;
  right: 3.1rem;
}

#feature .sec05 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after {
  top: 24.6rem;
  right: 4.1rem;
}

#feature .sec06 .txt_area .txt_fadeUp:nth-of-type(1) .mask__02::after {
  top: 9.2rem;
  left: 50%;
  transform: translateX(-50%);
}

/* -------------------------
   Animation
------------------------- */
#feature .fadeIn {
  opacity: 0;
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

#feature .fadeIn.active {
  animation-name: fadeBlur;
  opacity: 1;
  transition: 1.2s;
}

@keyframes fadeBlur {
  from {
    opacity: 0;
    filter: blur(calc(100vw / 100));
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* -------------------------
   Hero intro animation
------------------------- */
#feature .hero_logo_mask {
  position: absolute;
  overflow: hidden;
  display: block;
}

#feature .hero_logo_mask img {
  display: block;
  position: static;
  transform: translateY(120%);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#feature .hero_logo_mask img.active,
#feature .hero_txt .scroll-up.active,
#feature .txt_fadeUp.active .scroll-up {
  transform: translateY(0);
}

#feature .hero_txt .scroll-up {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

#feature .txt_fadeUp .mask {
  display: block;
  overflow: hidden;
}

#feature .txt_fadeUp .scroll-up {
  display: block;
  transform: translateY(120%);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------
   Hero
------------------------- */
#feature .hero {
  width: 100%;
  height: 100vh;
  margin: auto;
  position: relative;
  box-sizing: border-box;
}

#feature .hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

#feature .hero_ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#feature .hero_ttl.active {
  opacity: 1;
  translate: 0 0;
}

#feature .hero_logo span {
  overflow: hidden;
}

#feature .logo01 {
  width: 47.65575rem;
  top: 6.3rem;
  right: 23.4rem;
}

#feature .logo02 {
  width: 10.7827rem;
  top: 14.6rem;
  right: 12.4rem;
  z-index: 20;
}

#feature .logo03 {
  width: 47.47283rem;
  top: 23.9rem;
  right: 6rem;
}

#feature .logo01 img,
#feature .logo02 img,
#feature .logo03 img {
  width: 100%;
}

#feature .hero_txt {
  overflow: hidden;
  line-height: 1;
  position: absolute;
  top: 40.3rem;
  right: 5.7rem;
}

#feature .hero_txt span {
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}

/* -------------------------
   Lead
------------------------- */
#feature .lead {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.75;
}

#feature .lead p:nth-child(n+2) {
  margin: 4.3rem 0 0 1rem;
}

#feature .lead p:nth-of-type(1) span:nth-of-type(1),
#feature .lead p:nth-of-type(1) span:nth-of-type(2) {
  margin-left: 1.3rem;
}

#feature .lead p:nth-of-type(2) span:nth-of-type(1) {
  letter-spacing: 0.05em;
}

#feature .lead p:nth-of-type(2) span:nth-of-type(2) {
  letter-spacing: 0.04em;
  margin-left: -0.8rem;
  margin-right: 0.8rem;
}

/* -------------------------
   Section 01
------------------------- */
#feature .sec01 .ttl01 {
  width: 2.34863rem;
  position: absolute;
  top: 0.2rem;
  right: 4.6rem;
}

#feature .sec01 .txt_fadeUp:nth-of-type(1),
#feature .sec06 .txt_fadeUp:nth-of-type(1) {
  margin-top: 7rem;
}

#feature .sec01 .txt_fadeUp:nth-of-type(2),
#feature .sec06 .txt_fadeUp:nth-of-type(2) {
  margin-top: 5.5rem;
}

#feature .img01 {
  width: 57rem;
  margin: 11rem auto 0;
}

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

#feature .color {
  width: 68.8rem;
  margin: 6.8rem auto 0;
}

#feature .sec01 .flex_item,
#feature .sec06 .flex_item {
  display: flex;
  justify-content: center;
  gap: 0 8.4rem;
}

#feature .sec01 .item_img,
#feature .sec06 .item_img {
  width: 19.6rem;
  margin-left: -1rem;
}

#feature .item_check {
  font-size: 2.8rem;
  letter-spacing: 0.044em;
  line-height: 1.5;
  margin: 3.8rem 0 0 4rem;
  display: flex;
  font-family: "akzidenz-grotesk-next-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#feature .sec04 .item_check {
  padding-bottm: 10rem;
}

#feature .item_check img {
  width: 13.5281rem;
  position: absolute;
  top: 0.5rem;
  right: 4rem;
}

#feature .item_check__btn {
  width: 13.5281rem;
  margin: 2.8rem 4rem 0 auto;
}

#feature .sec02 .txt_fadeUp .mask__02 span:nth-of-type(1),
#feature .sec03 .txt_fadeUp .mask__02 span:nth-of-type(1) {
  margin: 0;
  letter-spacing: 0.045em;
}

/* -------------------------
   Section 02
------------------------- */
#feature .sec02 .txt_fadeUp:nth-of-type(2) .mask__02 span {
  margin: 0;
  letter-spacing: 0.055em;
}

#feature .sec02 .txt_fadeUp:nth-of-type(1) {
  margin: 8.7rem 0 0 -4.8rem;
}

#feature .sec02 .txt_fadeUp:nth-of-type(2) {
  margin: 1rem 0 0 -2.1rem;
}

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

#feature .sec02 .ttl02 {
  width: 2.34863rem;
  position: absolute;
  top: 10.6rem;
  left: 4rem;
  z-index: 20;
}

#feature .img04 {
  width: 43rem;
  margin: 8rem 0 0 auto;
}

#feature .img05 {
  width: 61rem;
  margin: -33.7rem auto 0 0;
  position: relative;
  z-index: 25;
}

#feature .sec02 .flex_item,
#feature .sec03 .flex_item {
  display: flex;
  justify-content: center;
  gap: 0 4rem;
}

#feature .sec02 .item_img {
  width: 31.5rem;
}

/* -------------------------
   Section 03
------------------------- */
#feature .sec03 .txt_fadeUp:nth-of-type(2) .mask__02 span {
  margin-top: -1.2rem;
  letter-spacing: 0.045em;
  line-height: 1.6;
}

#feature .sec03 .txt_fadeUp:nth-of-type(1) {
  margin: 6.3rem 0 0 -11.8rem;
}

#feature .sec03 .txt_fadeUp:nth-of-type(2) {
  margin: 6rem 0 0 3.9rem;
  text-align: left;
}

#feature .img06 {
  width: 63rem;
  margin: 15.9rem 0 0 8rem;
}

#feature .sec03 .ttl03 {
  width: 2.34863rem;
  position: absolute;
  top: 0.3rem;
  left: 4rem;
  z-index: 20;
}

#feature .img07 {
  width: 27rem;
  margin: -10.8rem 0 0 auto;
  position: relative;
  z-index: 25;
}

#feature .img08 {
  width: 53rem;
  margin: -54.8rem auto 0 0;
}

#feature .sec03 .item_img,
#feature .sec04 .item_img,
#feature .sec05 .item_img {
  width: 19.6rem;
}

#feature .sec03 .color {
  margin: 6.1rem auto 0;
}

/* -------------------------
   Section 04
------------------------- */
#feature .sec04 .txt_fadeUp .mask__01 span:nth-of-type(1),
#feature .sec04 .txt_fadeUp .mask__02 span:nth-of-type(1) {
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.5;
  position: relative;
}

#feature .sec04 .txt_fadeUp:nth-of-type(1) .mask__02 span,
#feature .sec05 .txt_fadeUp:nth-of-type(1) .mask__02 span,
#feature .sec05 .txt_fadeUp:nth-of-type(2) .mask__02 span {
  margin: -1.5rem 0 0 0;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 25;
}

#feature .sec04 .txt_fadeUp:nth-of-type(1) {
  margin: 14.5rem 2.8rem 0 0;
  text-align: right;
}

#feature .sec04 .txt_fadeUp:nth-of-type(2) {
  margin: 3.6rem 2.9rem 0 0;
  text-align: right;
}

#feature .img09 {
  width: 51rem;
  margin: 15.5rem auto 0;
}

#feature .sec04 .ttl04 {
  width: 2.34863rem;
  position: absolute;
  top: 16.2rem;
  left: 4rem;
  z-index: 20;
}

#feature .img10 {
  width: 37rem;
  margin: 0;
  position: relative;
  z-index: 20;
}

#feature .img11 {
  width: 37rem;
  margin: 0;
}

#feature .sec04 .flex_item {
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin-top: 7.8rem;
}

#feature .sec04 .flex_item.flex_item__center {
  justify-content: center;
  gap: 0 7.5rem;
  margin: 0 0 0 -0.5rem;
}

#feature .img12 {
  width: 63rem;
  margin: 7.4rem auto 0;
}

/* -------------------------
   Section 05
------------------------- */
#feature .sec05 .txt_fadeUp .mask__01 span:nth-of-type(1),
#feature .sec05 .txt_fadeUp .mask__02 span:nth-of-type(1) {
  margin: 0;
  letter-spacing: 0.046em;
  line-height: 1.5;
  position: relative;
}

#feature .sec05 .txt_fadeUp .mask__02 span:nth-of-type(1) {
  margin-top: -1.5rem;
}

#feature .sec05 .txt_fadeUp:nth-of-type(2) .mask__01 span {
  margin: 1.5rem 0 0 0;
  letter-spacing: 0.04em;
}

#feature .sec05 .txt_fadeUp:nth-of-type(1) {
  margin: 0 3.8rem 0 0;
  padding-top: 15rem;
  text-align: right;
}

#feature .sec05 .txt_fadeUp:nth-of-type(2) {
  margin: 3.6rem 3.8rem 0 0;
  text-align: right;
}

#feature .img13 {
  width: 32rem;
  margin: -10.5rem auto 0 7rem;
  position: relative;
  z-index: 25;
}

#feature .sec05 .ttl05 {
  width: 2.34863rem;
  position: absolute;
  top: 16.6rem;
  left: 4rem;
  z-index: 20;
}

#feature .img14 {
  width: 47rem;
  margin: -51.5rem 0 0 auto;
  position: relative;
  z-index: 20;
}

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

#feature .sec05 .flex_item {
  display: flex;
  justify-content: center;
  gap: 0 7.2rem;
  margin: 0 0 0 -0.9rem;
}

/* -------------------------
   Section 06
------------------------- */
#feature .sec06 .ttl06 {
  width: 2.34863rem;
  position: absolute;
  top: 0.1rem;
  right: 2.6rem;
}

#feature .sec06 .txt_fadeUp:nth-of-type(1) .mask__02 span {
  letter-spacing: 0.05em;
  position: relative;
  z-index: 25;
}

#feature .sec06 .txt_fadeUp:nth-of-type(2) .mask__02 span {
  margin-top: -2rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 25;
}

#feature .img16 {
  width: 61rem;
  margin: 0 auto;
}

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

#feature .color {
  width: 68.8rem;
  margin: 6.8rem auto 0;
}

#feature .sec06 .color {
  margin: 6rem auto 0;
}

#feature .sec06 .item_check img {
  top: 0;
  right: 0;
  position: relative;
}

#feature .view_all {
  width: 47rem;
  margin: 16rem auto 16rem;
}

#feature .view_all__area .txt_fadeUp.view_all__txt {
  font-size: 5.6rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  position: absolute;
  top: 0;
  left: 50.2%;
  transform: translateX(-50%);
  margin-top: 3.2rem;
  color: #fff;
  font-family: "warbler-deck", sans-serif;
  font-weight: 400;
  font-style: normal;
  pointer-events: none;
}

/* -------------------------
   Credit
------------------------- */
#feature .credit-inner a {
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  font-family: "akzidenz-grotesk-next-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #a3a3a3;
}

#feature .sec01 .credit-inner,
#feature .sec02 .credit-inner {
  display: block;
  text-align: left;
  margin: 0;
  position: absolute;
  bottom: 2.2rem;
  right: 2.8rem;
  z-index: 20;
}

#feature .sec01 .credit-inner a,
#feature .sec02 .credit-inner a {
  text-align: right;
}

#feature .sec03 .credit_area .credit-inner {
  width: 50rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0 2.4rem;
  margin: 1.6rem auto 0 3rem;
}

#feature .sec03 .credit_area .credit-inner li:nth-of-type(4) {
  margin-left: 0.3rem;
}

#feature .sec04 .credit_area .credit-inner {
  width: 56.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0 2.6rem;
  margin: 1.9rem auto 0 7rem;
}

#feature .sec05 .credit-inner {
  display: block;
  text-align: left;
  margin: 0;
  position: absolute;
  bottom: 2.4rem;
  left: 7rem;
  z-index: 30;
}

#feature .sec06 .credit_area .credit-inner {
  width: 65.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0 2.4rem;
  margin: 1.6rem auto 0 4rem;
}
