@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
.main_inner {
  overflow-x: hidden;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  ベーススタイル
///////////////////////////////////////////////////////////////////////////////////////
*/

.lp-barbour_250925 {
  --color-white: #fff;
  --color-black: #000;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-source: "source-han-sans-japanese", sans-serif;
  --font-en: var(--font-barbour-sans);
  --font-ja: var(--font-noto);
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  font-feature-settings: normal;
  overflow: clip;
  /* width: var(--container-default); */
  /* width: min(100%, 1440px); */
  width: 100%;
  margin: 0 auto;
}
.lp-barbour_250925 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: var(--fw-regular);
  font-style: normal;
  color: var(--color-black);
}

/* vimeo動画 */
.lp_movie_inner {
  width: auto;
  height: 100%;
}

/* ●CSSで表示非表示を切り替える
.hidden-mobile
.hidden-desktop 
*/

  
/*
///////////////////////////////////////////////////////////////////////////////////////
  アニメーション
///////////////////////////////////////////////////////////////////////////////////////
*/

/* その場でフェード(js不使用) */
.fadein {
  opacity: 0;
  animation: fadein .7s ease forwards;
  animation-delay: 3.5s;
}
@keyframes fadein {
  100% {  opacity: 1;}
}

/* 下から上にフェードイン */
.jsFade {
  opacity: 0;
  /* transform: translateY(20px); */
}
.jsFade.isActive {
  /* opacity: 1; */
  /* transform: translateY(0px); */
  /* transition: all .7s; */
  animation: fadeIn 1.4s ease 0.1s forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.jsFade.delay01.isActive {
  animation-delay: 0.5s;
}
.jsFade.delay02.isActive {
  animation-delay: 1s;
}
.jsFade.delay03.isActive {
  animation-delay: 1.5s;
}

.jsFade_just {
  opacity: 0;
  animation: fadeIn 1.4s ease 0.1s forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.jsFade_just.delay01 {
  animation-delay: 1s;
}

/* 右方向からスライドイン */
.jsFade.slide_right {
  /* opacity: 1; */
  transform: translateX(20px);
}
.jsFade.slide_right.isActive {
  /* opacity: 1; */
  transform: translateX(0px);
  transition: all .7s;
}
.jsFade.slide_right.delay01.isActive {
  transition-delay: 1s;
}

/* 左方向からスライドイン */
.jsFade.slide_left {
  /* opacity: 1; */
  transform: translateX(-20px);
}
.jsFade.slide_left.isActive {
  /* opacity: 1; */
  transform: translateX(0px);
  transition: all .7s;
}
.jsFade.slide_left.delay01.isActive {
  transition-delay: 1s;
}

/* その場でフェード */
.jsFade.jsFade_spot {
  opacity: 0;
  transform: unset;
}
.jsFade.jsFade_spot.isActive {
  opacity: 1;
  transition: all .7s;
  transform: unset;
}
.jsFade.jsFade_spot.delay01.isActive {
  transition-delay: 0.5s;
}

/* .fadeInUp ---------------------------------------*/
.fadeInUp.active {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  visibility: visible ;
}

@keyframes fadeInUp{
  0% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    -ms-transform: translateY(1em);
    transform: translateY(1em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .fadeInUp_sp{
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, visibility 1s;
  }
  .fadeInUp_sp.active {
    opacity: 1;
    visibility: visible;
  }

}

.hidden-desktop {
  display: none !important;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  main_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.main_area {
  width: 100%;
  margin: 0 auto 26rem;
}
.main_area_img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 18rem;
  position: relative;
}
.main_area_ttl {
  font-size: 2.4rem;
  line-height: 1.58333;
  text-align: center;
  margin-bottom: 6rem;
  font-weight: var(--fw-medium);
}
.main_area_lead {
  width: 96rem;
  margin: 0 auto;
  line-height: 2;
  font-size: 1.7rem;
  font-weight: var(--fw-medium);
}

.jsBlur {
  filter: blur(8px);
  opacity: 0;
  transition: all 1.1s ease;
  transition-duration: 2s;
}
.jsBlur.isActive {
  opacity: 1;
  filter: blur(0);
}
.scroll_slide {
  width: 100%;
  margin-bottom: 18rem;
}
.scroll_slide_text {
  font-size: 3.2rem;
  margin: 0 10rem;
  font-family: var(--font-en);
  font-weight: var(--fw-light);
  line-height: 1.1;
}

/* item_block01 */
.item_block {
  margin-bottom: 26rem;
}
.item_block01 {

}
.item_block01_img01 , .item_block01_img02 {
  width: 100%;
}
.item_block01_img03 {
  margin: 18rem auto;
  width: calc(720* (100vw /1440));
}
.item_block01_flex {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.item_block01_flex_inner {
  width: 50%;
}
.credit_block {
  width: 120rem;
  margin: 10rem auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-en);
  font-weight: var(--fw-light);
}
.credit_block_left {
  width: fit-content;
  display: flex;
  font-size: 1.2rem;
}
.credit_name , .credit_name02 {
  margin-right: 1rem;
}
.credit_name03 {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
.credit_block_right {
  width: 42rem;
}
.credit_block_right_top {
  font-size: 1.2rem;
  margin-bottom: 6rem;
}
.credit_link {
  display: flex;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.credit_link:last-of-type {
  margin-bottom: 0;
}

/* item_block02 */
.item_block02_flex {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.item_block02_flex_inner {
  width: 50%;
}
.item_block02_img03 {
  width: calc(720* (100vw /1440));
  margin: 18rem auto;
}
.item_block02_img04 {
  width: calc(720* (100vw /1440));
  margin: 0 auto 18rem;
}

/* item_block03 */
.item_block03_img01 , .item_block03_img02 {
  width: 100%;
}
.item_block03_img03 {
  width: calc(720* (100vw /1440));
  margin: 18rem auto;
}
.item_block03_flex {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

/* vimeo動画 */
.lp_movie_inner {
  width: auto;
  height: 100%;
}
.movie_block {

}

/* all_items */
.all_items {
  width: 96rem;
  height: 5.6rem;
  background-color: #4E4E4E;
  border: solid 1px #4E4E4E;
  color: #fff;
  font-size: 1.6rem;
  padding: 2rem 0;
  text-align: center;
  margin: 18rem auto;
}
.all_items:hover {
  background-color: #fff;
  color: #4E4E4E;
}


/*
///////////////////////////////////////////////////////////////////////////////////////
  SP
///////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
.hidden-desktop {
  display: block !important;
}
.hidden-mobile {
  display: none !important;
}
/*
///////////////////////////////////////////////////////////////////////////////////////
  main_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.main_area {
  margin: 0 auto calc(180* (100vw /402));
}
.main_area_img {
  margin-bottom: calc(100* (100vw /402));
  width: 100%;
}
.main_area_ttl {
  font-size: calc(22* (100vw /402));
  line-height: 1.63636;
  margin: 0 auto;
  margin-bottom: calc(60* (100vw /402));
  text-align: left;
  width: calc(360* (100vw /402));
}
.main_area_lead {
  width: calc(360* (100vw /402));
  font-size: calc(14* (100vw /402));
  line-height: 2;
}


  .scroll_slide {
    width: 100%;
    margin-bottom: calc(60* (100vw /402));
  }
  .scroll_slide_text {
    font-size: calc(18* (100vw /402));
    margin: 0 calc(40* (100vw /402));
  }
  .item_block01_img03 {
    margin: calc(20* (100vw /402)) auto;
    width: 100%;
  }
  .item_block01_flex_inner {
    width: 100%;
  }
  .credit_block {
    width: calc(360* (100vw /402));
    margin: calc(40* (100vw /402)) auto 0;
    justify-content: left;
    flex-wrap: wrap;
  }
  .credit_block_left {
    width: 100%;
    display: flex;
    font-size: calc(12* (100vw /402));
    margin-bottom: calc(60* (100vw /402));
  }
  .credit_name, .credit_name02 {
    margin-right: calc(10* (100vw /402));
  }
  .credit_block_right {
    width: 100%;
  }
  .credit_block_right_top {
    font-size: calc(12* (100vw /402));
    margin-bottom: 0;
  }
  .credit_link {
    font-size: calc(12* (100vw /402));
    margin-bottom: calc(15* (100vw /402));
  }
  .item_block {
    margin-bottom: calc(180* (100vw /402));
  }
  .item_block02_img03 {
    width: 100%;
    margin: calc(20* (100vw /402)) auto;
  }
  .item_block02_img04 {
    width: 100%;
    margin: 0 auto calc(20* (100vw /402));
  }
  .item_block03_img03 {
    width: 100%;
    margin: calc(20* (100vw /402)) auto;
  }
  .all_items {
    width: calc(360* (100vw /402));
    height: calc(54* (100vw /402));
    font-size: calc(14* (100vw /402));
    padding: calc(20* (100vw /402)) 0;
    margin: calc(180* (100vw /402)) auto;
  }

  .accordion_trigger {
    position: relative;
    cursor: pointer;
  }
  .accordion_trigger::before, .accordion_trigger::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(11*(100vw / 402));
    height: calc(1*(100vw / 402));
    margin-right: calc(0*(100vw / 402));
    background: #000;
    content: "";
    transition: opacity .3s, transform .3s;
  }
  .accordion_trigger::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .accordion_trigger.open::after {
    transform: translateY(-50%) rotate(0deg);
  }
  .accordion_wrap {
    transition: .3s;
    margin-top: calc(40* (100vw /402));
  }

}
