body {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body #bg-canvas {
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: -1;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
}

body #bg-canvas>canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  transform: scale(1.15);
  transform-origin: center center;
}

.top-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

.top-bg .plane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

.top-bg .plane.is-ios {
  padding-top: 100vh;
  box-sizing: border-box;
}

.top-bg .plane img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================
   Common
========================= */
a.btn_more {
  width: 100%;
  max-width: 300px;
  display: inline-block;
  position: relative;
  padding: 6px 16px;
  color: #000;
  background-color: #fff;
  margin: 0 auto 8px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  border-radius: 30px;
}

a.btn_more::after {
  content: '';
  position: absolute;
  width: 21px;
  height: 7px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../images/arrow_next.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.ttl_sub {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 24px;
}

.sp_center {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .ttl_sub {
    font-size: 28px;
    margin-bottom: 16px;
  }

  a.btn_more {
    font-size: 16px;
  }

  .sp_center {
    text-align: center;
  }
}



/* =========================
   FV
========================= */
.fv {
  text-align: center;
  padding-top: 160px;
  padding-bottom: 120px;
}

.fv .img {
  width: 100%;
  max-width: 759px;
  opacity: 0.75;
  aspect-ratio: 759 / 564;
  object-fit: cover;
  height: auto;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.fv .img>img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  opacity: 0;
  transform: translateX(100%);
}

.fv .img>img:last-child {
  margin-top: 5%;
  transform: translateY(100%);
}

.start .fv .animTarget.animated.img>img {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 1.5s, transform 1.5s cubic-bezier(0.60, 0.00, 0.10, 1.00);
}

.start .fv .animTarget.animated.img>img:nth-child(1) {
  transition-delay: 0s;
}

.start .fv .animTarget.animated.img>img:nth-child(2) {
  transition-delay: 0.2s;
}

.start .fv .animTarget.animated.img>img:nth-child(3) {
  transition-delay: 0.4s;
}

.start .fv .animTarget.animated.img>img:nth-child(4) {
  transform: translateY(0);
  transition: opacity 0.5s, transform 1.0s;
  transition-delay: 2s;
}

@media screen and (max-width: 768px) {
  .fv {
    padding-top: 208px;
  }

  .fv .img {
    max-width: 311px;
    aspect-ratio: 311 / 252;
  }
}

/* =========================
   Share No.1
========================= */
.area_share {
  position: relative;
  padding-top: 136px;
  padding-bottom: 160px;
  text-align: center;
}

.ttl_share {
  text-align: center;
  margin-bottom: 40px;
}

.ttl_share.animTarget {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s ease;
}

.ttl_share.animTarget.animated {
  opacity: 1;
  transform: translateY(0);
}

.lyric_share {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2.5;
  text-align: center;
}

.abs {
  position: absolute;
  display: block;
}

.rel {
  position: relative;
  display: block;
}

.lyric_share.animTarget>.rel {
  transition: 1.5s ease;
  opacity: 0;
  transform: translateX(23%);
}

.lyric_share.animTarget.animated>.rel {
  opacity: 1;
  transform: translateX(0);
}

.animTarget.our_business-img {
  position: relative;
}

.animTarget.our_business-img>.rel {
  width: 100%;
  height: auto;
  opacity: 0;
  transition: 3s ease;
  transform: rotate(360deg) scale(0);
}

.animTarget.animated.our_business-img>.rel {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.animTarget.our_business-img>.abs {
  width: 46.2%;
  transition: 1.5s ease;
  opacity: 0;
  transform: scale(1.5);
}

.animTarget.animated.our_business-img>.abs {
  opacity: 1;
  transform: scale(1);
}

.animTarget.our_business-img>img:nth-child(2) {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.animTarget.our_business-img>img:nth-child(3) {
  top: 48%;
  left: 0;
  transition-delay: 0.3s;
}

.animTarget.our_business-img>img:nth-child(4) {
  top: 48%;
  right: 0;
  transition-delay: 0.7s;
}

.sp-only {
  display: none !important;
}

.pc-only {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block !important;
  }

  .pc-only {
    display: none !important;
  }

  .area_share {
    padding-top: 320px;
    padding-bottom: 280px;
  }

  .ttl_share {
    text-align: center;
  }

  .ttl_share img {
    margin: 0 auto;
  }

  .lyric_share {
    font-size: 16px;
    text-align: left;
    margin-bottom: 32px;
  }
}


/* =========================
   about us
========================= */
.area_aboutus{
  padding-bottom: 160px;
}

h2.ttl_aboutus{
  font-size: 64px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.lyric_aboutus{
  font-size: 20px;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.area_aboutus{
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .area_aboutus{
    padding-bottom: 120px;
  }
  .lyric_aboutus{
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 0.05em;
  }
}


/* =========================
   Out Strength
========================= */
.area_strength{
  padding-bottom: 157px;
}

.ttl_strength{
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-bottom: 17px;
}

.lyric_strength{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .area_strength{
    padding-bottom: 120px;
  }
  .ttl_strength{
    margin-bottom: 16px;
  }
  .lyric_strength{
    margin-bottom: 32px;
  }  
}

/* =========================
   Core Products
========================= */
.area_products {
  padding-bottom: 160px;
}

.product-boxes {
  display: flex;
  gap: 30px;
}

.product-box {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
  color: #fff;
}

.product-box img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

.product-box h4 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 10px;
  min-height: 3em;
  display: flex;
  align-items: center;
}

.product-box p {
  font-size: 16px;
  line-height: 2;
}

/* スマホ */
@media (max-width: 768px) {
  .area_products {
    padding-bottom: 80px;
  }
  .product-boxes {
    flex-direction: column;
    column-gap: 24px;
  }
  .product-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
    .product-box p {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* =========================
   Company Profile
========================= */
.area_company{
  padding-bottom: 145px;
}
.company-profile {
  width: 100%;
  margin: 0 auto;
  line-height: 2.0;
  color: #fff;
  letter-spacing: 0.05em;
}

.profile-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .30);
  position: relative;
}

.profile-row::after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  border-bottom: 2px solid #fff;
  left: 0;
  bottom: -2px;
}

.profile-label {
  position: relative;
  font-weight: bold;
}

.profile-value {
  padding: 18px auto 18px 120px;
  font-weight: 500;
}

.map-link {
  display: inline-block;
  position: relative;
  margin-left: 16px;
  padding-left: 16px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.map-link::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 17px;
  background: url("../images/icon_map_white.svg") no-repeat center center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.map-link::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: url("../images/icon_outerlink_white.svg") no-repeat center center;
  right: -18px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.map_border{
  border-top:2px dotted rgba(0,0,0,.40);
  width: 100%;
  height: 40px;
}

@media screen and (max-width: 768px) {
  .area_company{
    padding-bottom: 80px;
  }  
  
  .profile-row::after {
    width: 39px;
  }

  .profile-row {
    display: grid;
    grid-template-columns: 102px 1fr;
    padding: 12px 0;
  }
}

/* =========================
   Contact
========================= */
.area_contact_en{
  padding-bottom: 160px;
}
.bg_contact_en {
  background-image: url("../images/toppage/ng_contact_en.jpg");
  background-size: cover;
  background-position: center center;
  padding: 37px 0 43px
}
@media screen and (max-width: 768px) {
  .area_contact{
    padding-bottom: 80px;
  }
  .bg_contact_en {
    background-image:none;
    background-size: cover;
    background-position: center center;
    padding: 37px 0 43px
  }
}

/* =========================
   テロップ
========================= */
.telop {
  margin-bottom: 160px;
}

@media screen and (max-width: 768px) {
  .telop {
    margin-bottom: 120px;
  }
}

/* =========================
   Our　Business
========================= */
.area_ourbusiness {
  padding-bottom: 82px;
}

.flex_ourbusiness {
  display: flex;
  gap: 56px;
}

.flex_ourbusiness>div {
  flex: 1;
}

.lyric_ourbusiness {
  line-height: 2.0;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .flex_ourbusiness {
    flex-direction: column;
    gap: 40px;
  }

  .flex_ourbusiness>div {
    /*width: 100%;*/
    flex: 1;
    /*flex:1だと、縦方向の均等割りになってしまうため*/
  }

  .lyric_ourbusiness {
    line-height: 1.75;
  }
}

/* =========================
   Information
========================= */
.area_information {
  padding-bottom: 80px;
}

.slide-info-child {
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 40px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* Safari対策 */
  background-color: rgba(0, 0, 0, 0.3);
  /* 半透明必須 */


}

.slide-info-child .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.slide-info-child .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flex_date_category {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 17px auto 12px;
  justify-content: space-between;
  align-items: center;
}

.flex_date_category .info_date {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bold;
  line-height: 1.75;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.flex_date_category .info_category {
  display: inline-block;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  background-color: #fff;
  padding: 1px 11px;
  font-weight: 600;
  color: #000;
}

.slide-info-child .info_title {
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2.0;
  margin-bottom: 37px;
}

@media screen and (max-width: 768px) {
  .area_information {
    padding-bottom: 0;
  }

  .flex_date_category {
    flex-direction: column;
    align-items: flex-start;
  }

  .flex_date_category .info_category {
    font-size: 12px;
  }
}

h5.ttl_info {
  margin-bottom: 38px;
}

.btn_more_info {
  display: block;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  padding-right: 38px;
  position: relative;
  text-align: right;
}

.btn_more_info::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("../images/arrow_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}


/* =========================
   About
========================= */
.area_about {
  padding-bottom: 160px;
}

.flex_about {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
  box-sizing: border-box;
}

.flex_about .left {
  width: calc(50% - 40px);
  /* 右との間80pxの半分を引く */
  flex-shrink: 0;
}

.flex_about .right {
  width: calc(50vw - 40px);
  /* 画面中央から右端まで - 40px */
  margin-left: 80px;
  /* 左右の間80px */
  flex-shrink: 0;
  /* ← これが重要。縮ませない */
}

.flex_about .right img {
  display: block;
  width: 100%;
  height: auto;
}

.lyric_about {
  letter-spacing: 0.05em;
  line-height: 2.0;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .area_about {
    padding-bottom: 80px;
  }

  .flex_about {
    display: block;
    padding: 0 32px;
    box-sizing: border-box;
  }

  .flex_about .left {
    width: 100%;
    margin-bottom: 32px;
  }

  .flex_about .right {
    width: calc(100% + 40px);
    /* 右へ20pxぶん広げる */
    margin-left: 0;
    margin-right: -20px;
    /* 右paddingを打ち消す */
  }

  .flex_about .right img {
    display: block;
    width: 100%;
    height: auto;
  }

  .lyric_about {
    line-height: 1.75;
    margin-bottom: 40px;
  }
}


/* =========================
   Youtube
========================= */
.area_youtube {
  position: relative;
  padding-bottom: 160px;
}

.wrap_youtube {
  position: absolute;
  left: 0;
  top: 100px;
  width: 100%;
  padding: 80px 0 70px;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.5) 0,
      rgba(0, 0, 0, 0.5) 50%,
      transparent 50%,
      transparent 100%);
}

.flex_youtube {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.flex_youtube .left,
.flex_youtube .right {
  flex: 1;
}

.flex_youtube .left {
  padding: 0 20px;
}

.lyric_youtube {
  letter-spacing: 0.05em;
  line-height: 2.0;
  margin-bottom: 40px;
}

a.btn_youtube {
  width: 100%;
  max-width: 300px;
  display: inline-block;
  position: relative;
  padding: 6px 16px 6px 66px;
  color: #000;
  background-color: #fff;
  margin: 0 auto;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  border-radius: 30px;
}

a.btn_youtube::before {
  content: '';
  position: absolute;
  width: 43px;
  height: 30px;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background-image: url("../images/icon_youtube-red.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

a.btn_youtube::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 12px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../images/icon_link.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .wrap_youtube {
    position: relative;
    background: rgba(0, 0, 0, 0);
    top: 0;
    padding: 0;
  }

  .area_youtube {
    padding-bottom: 80px;
  }

  .flex_youtube {
    flex-direction: column;
  }

  .flex_youtube .left {
    padding: 0 32px;
  }

  .lyric_youtube {
    line-height: 1.75;
  }

  a.btn_youtube {
    margin: 0 auto 40px;
  }
}



/* =========================
   CTA
========================= */
.area_cta {
  padding-bottom: 160px;
  position: relative;
}

.flex_cta {
  display: flex;
  gap: 40px;
}

.flex_cta>div {
  flex: 1;
}

.inner-cta {
  padding: 0 20px;
}

.area_recruit {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 50% 30%;
  padding: 40px 0 60px;
  aspect-ratio: 14 / 10;
}

.area_cta .area_cta-bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.area_cta-bg>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.lyric_recruit {
  letter-spacing: 0.05em;
  line-height: 2.0;
  margin-bottom: 58px;
}

a.btn_recruit {
  width: 100%;
  max-width: 300px;
  display: inline-block;
  position: relative;
  padding: 6px 16px;
  color: #000;
  background-color: #fff;
  margin: 0 auto 8px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
  border-radius: 30px;
}

a.btn_recruit::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 12px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background-image: url("../images/icon_link_top.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.area_contact .animTarget.animated.fadeImg img,
.area_contact .animTarget.animated.fadeImg::after {
  animation-delay: 0.5s;
}

.area_contact {
  position: relative;
  display: grid;
  grid-template-columns: 72% 1fr;
  padding: 40px 0 60px;
  aspect-ratio: 14 / 10;
}

.area_contact .area_cta-bg>img {
  object-position: center center;
}

.lyric_contact {
  letter-spacing: 0.05em;
  line-height: 2.0;
  margin-bottom: 24px;
}

.tel_white {
  text-align: center;
}

.business_hour {
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin-bottom: 34px;
}

a.btn_contact-top {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 378px;
  padding: 12px 16px 12px 55px;
  color: #fff;
  background-color: #ff4500;
  margin: 0 auto 8px;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 30px;
  text-align: center;
}

a.btn_contact-top::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 28px;
  top: 50%;
  left: 54px;
  transform: translateY(-50%);
  background-image: url("../images/icon_mail.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1000px) {
  a.btn_contact-top {
    font-size: 16px;
    padding: 18px 34px 18px 66px;
  }

  a.btn_contact-top::before {
    left: 24px;
  }

  .business_hour {
    font-size: 12px;
  }

  .width-cta-sp {
    padding: 0 20px;
  }
}

@media (max-width: 1400px) {
  .area_recruit {
    grid-template-columns: 0 60% 40%;
  }
}

@media (max-width: 1200px) {
  .area_recruit {
    grid-template-columns: 0 40% 60%;
    padding: 40px 0 60px;
    aspect-ratio: 14 / 10;
  }

  .titleBox__en {
    display: none;
  }
}

@media (max-width: 1000px) {
  .area_cta {
    padding-bottom: 40px;
  }

  .flex_cta {
    flex-direction: column;
    gap: 0;
  }

  .flex_cta>div {
    width: 100%;
  }

  .inner-cta {
    padding: 0 32px;
  }

  .area_recruit,
  .area_contact {
    display: flex;
    background-image: none;
    width: 100%;
  }

  img.cta {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;

  }

  .area_recruit {
    grid-template-columns: 0 100% 0;
    padding: 0 0 80px;
  }

  .area_contact {
    grid-template-columns: 100% 0;
    padding: 0;
  }

  a.btn_contact-top {
    font-size: 16px;
  }

  .img_mb32 {
    margin-bottom: 32px;
  }

  .lyric_recruit,
  .lyric_contact {
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin-bottom: 40px;
  }
}

/* fv
***************************************************************/
.fv__position {
  position: relative;
  aspect-ratio: 1600 / 1778;
}

.fv__bg {
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 100vw;
  z-index: -1;
}

.fv__bg img {
  max-width: 100%;
  width: 100vw;
}

.fv__bg-filter {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
}

.animTarget.fv01,
.animTarget.fv02,
.animTarget.fv03,
.animTarget.fv04 {
  position: absolute;
  display: block;
}

.parallax {
  will-change: transform;
}

.fv__img {
  position: relative;
  display: block;
}

.fv__img img {
  width: 100%;
}

.animTarget.fv01 {
  top: 5%;
  width: 27.78vw;
  max-width: 400px;
  z-index: -1;
  left: 16%;
}

.fv__img01 {
  opacity: 0;
  transform: translateX(-100%);
}

.animTarget.fv02 {
  top: 9%;
  width: 34.72vw;
  max-width: 500px;
  right: -5%;
  z-index: -1;
}

.fv__img02 {
  opacity: 0;
  transform: translateX(100%);
}

.animTarget.fv03 {
  top: 46%;
  width: 24.3vw;
  max-width: 375px;
  left: 6%;
  z-index: -1;
}

.fv__img03 {
  opacity: 0;
  transform: translateX(-100%);
}

.animTarget.fv04 {
  top: 80%;
  width: 17.36vw;
  max-width: 250px;
  right: 24.8%;
  z-index: -1;
}

.fv__img04 {
  opacity: 0;
  transform: translateX(100%);
}

.animTarget.animated .fv__img01 {
  opacity: 1;
  transform: translateX(0%);
  transition: 2s ease-out 0.1s;
}

.animTarget.animated .fv__img02 {
  opacity: 1;
  transform: translateX(0%);
  transition: 2s ease-out 0.3s;
}

.animTarget.animated .fv__img03 {
  opacity: 1;
  transform: translateX(0%);
  transition: 2s ease-out 0.5s;
}

.animTarget.animated .fv__img04 {
  opacity: 1;
  transform: translateX(0%);
  transition: 2s ease-out 0.7s;
}

@media screen and (max-width: 768px) {

  .area_recruit,
  .area_contact {
    aspect-ratio: inherit;
  }

  /* .fv{
    aspect-ratio: 375 / 2600;
    overflow-y: hidden;
  } */
  .fv__position {
    aspect-ratio: 375 / 1400;
  }

  .fv__bg {
    left: -10px;
  }

  .fv__bg img {
    width: 100%;
  }

  .fv__bg-filter {
    display: none;
  }

  .animTarget.fv01 {
    top: 0;
    width: 53.3vw;
    max-width: 200px;
    right: 7%;
  }

  .animTarget.fv02 {
    top: 12%;
    width: 52.5vw;
    max-width: 197px;
    right: 0;
  }

  .animTarget.fv03 {
    top: 19%;
    width: 36.8vw;
    max-width: 138px;
    left: 0;
  }

  .animTarget.fv04 {
    top: 74%;
    right: 10%;
    width: 53.3vw;
    max-width: 200px;
  }

}

/* =========================
   オープニング
========================= */
.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  overflow: hidden;
}

.opening video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opening__white {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.opening.is-whiteout .opening__white {
  opacity: 1;
}

.opening.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

/* =========================
   本体側のフェード
========================= */
body.is-loading>*:not(#opening) {
  opacity: 0;
  transform: none;
}

body.is-loaded>*:not(#opening) {
  opacity: 1;
  transform: none;
  transition: opacity 1.2s ease;
}

.animTarget .titleBox-w__label {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.7s linear;
  border: none !important;
}

.animTarget .titleBox-w__label:before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  clip-path: inset(0 0 100% 100%);
}

.animTarget .titleBox-w__inner {
  opacity: 0;
  transform: translateX(-70px);
  transition: 0.8s ease-in 0.2s;
  border: none !important;
}

.animTarget .titleBox-w__inner:before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  clip-path: inset(0 100% 100% 0);
}

.animTarget .titleBox-w__inner:after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 2px solid #fff;
  clip-path: inset(0 0 0 100%);
  transition: 0.3s linear 1.7s;
}

.animTarget.animated .titleBox-w__label {
  opacity: 1;
  transform: translateX(0px);
}

.animTarget.animated .titleBox-w__label:before {
  animation: borderSeq 0.7s linear forwards 0.3s;
}

.animTarget.animated .titleBox-w__inner {
  opacity: 1;
  transform: translateX(0px);
}

.animTarget.animated .titleBox-w__inner:before {
  animation: borderSeq2 0.7s linear forwards 1s;
}

.animTarget.animated .titleBox-w__inner:after {
  clip-path: inset(0 0 0 0);
}