@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_250613 {
  --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-serif);
  --font-ja: var(--font-noto);
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  font-feature-settings: normal;
  overflow: clip;
  width: var(--container-default);
  margin: 0 auto;
}
.lp-barbour_250613 {
  font-family: var(--font-noto);
  color: var(--color-black);
  font-weight: var(--fw-regular);
}

/* 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;
}
.jsFade.delay01.isActive {
  transition-delay: 0.5s;
}
.jsFade.delay02.isActive {
  transition-delay: 1s;
}
.jsFade.delay03.isActive {
  transition-delay: 1.5s;
}

/* 右方向からスライドイン */
.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 20rem;
}
.main_area_img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 6rem;
}
.main_area_ttl {
  font-size: 3.2rem;
  line-height: 1.375;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: var(--fw-bold);
}
.main_area_lead {
  width: 90rem;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 2;
  /* text-align: justify; */
  /* font-weight: var(--fw-bold); */
}

/*  */

.item_wrap {
  width: 80rem;
  margin: 0 auto 20rem;
}
.fadein_ttl {
  margin-bottom: 4rem;
}
.fadein_ttl.jsFade {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.item_num {
  width: fit-content;
  margin-bottom: 1.5rem;
  /* border-bottom: solid 2px #000; */
  display: flex;
  align-items: baseline;
  position: relative;
}
.item_num::after {
  content: "";
  position: absolute;
  width: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: #000;
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.jsFade.isActive .item_num::after {
  width: 100%;
  opacity: 1;
}
.item_num_model {
  font-size: 2.8rem;
  font-style: italic;
  font-family: var(--font-barbour-serif);
  line-height: 0.9;
}
.item_num_main {
  font-size: 4.8rem;
  font-style: italic;
  font-family: var(--font-barbour-serif);
  line-height: 0.9;
}
.item_ttl {
  font-size: 4.8rem;
  line-height: 0.875em;
  font-family: var(--font-barbour-serif);
  font-weight: var(--fw-medium);
}
.item_img {
  width: 53rem;
  margin: 0 auto 4rem;
}
.item_lead {
  font-size: 1.8rem;
  line-height: 2;
  margin: 0 auto 4rem;
}
.item_credit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.item_credit_name {
  font-size: 1.8rem;
  line-height: 1.3333;
}
.item_credit_button {
  width: 12rem;
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.5rem 0;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.1;
}
.last_wrap {
  width: 80rem;
  margin: 0 auto 40rem;
}
.last_lead {
  font-size: 1.8rem;
  line-height: 2;
  margin: 0 auto 4rem;
  width: 61.6rem;
}
.last_img {
  width: 53rem;
  margin: 0 auto 4rem;
}
.last_button {
  width: 53rem;
  height: 4rem;
  margin: 0 auto;
  background: var(--color-black);
  color: var(--color-white);
  /* padding: 1rem 0; */
  font-size: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item_lead_ttl {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.5714;
  font-weight: var(--fw-bold);
}


/*
///////////////////////////////////////////////////////////////////////////////////////
  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(200* (100vw /750));
}
.main_area_img {
  margin-bottom: calc(60* (100vw /750));
  width: 100%;
}
.main_area_ttl {
  font-size: calc(32* (100vw /750));
  line-height: 1.375;
  margin-bottom: calc(30* (100vw /750));
}
.main_area_lead {
  width: calc(690* (100vw /750));
  font-size: calc(22* (100vw /750));
  line-height: 1.818;
}

/*  */
.item_wrap {
  width: 100%;
  margin: 0 auto calc(200* (100vw /750));
}
.item_num {
  margin-bottom: calc(15* (100vw /750));
  /* border-bottom: solid 1.5px #000; */
}
.item_num_model {
  font-size: calc(28* (100vw /750));
}
.item_num_main {
  font-size: calc(48* (100vw /750));
}
.item_ttl {
  font-size: calc(48* (100vw /750));
}
.fadein_ttl {
  width: calc(670* (100vw /750));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(40* (100vw /750));
}
.item_img {
  width: 100%;
  margin: 0 auto calc(40* (100vw /750));
}
.item_lead {
  font-size: calc(22* (100vw /750));
  width: calc(690* (100vw /750));
  line-height: 1.818;
  margin: 0 auto calc(80* (100vw /750));
}
.item_credit_name {
  font-size: calc(22* (100vw /750));
  line-height: 1.090;
}
.item_credit_button {
  width: calc(120* (100vw /750));
  padding: 0;
  font-size: calc(22* (100vw /750));
  line-height: 1.37;
}
.last_wrap {
  width: calc(690* (100vw /750));
  margin: 0 auto calc(400* (100vw /750));
}
.last_lead {
  font-size: calc(22* (100vw /750));
  line-height: 1.636;
  margin: 0 auto calc(40* (100vw /750));
  width: calc(690* (100vw /750));
  text-align: left;
}
.last_img {
  width: calc(530* (100vw /750));
  margin: 0 auto calc(40* (100vw /750));
}
.last_button {
  width: calc(530* (100vw /750));
  height: calc(40* (100vw /750));
  /* padding: calc(10* (100vw /750)) 0; */
  font-size: calc(20* (100vw /750));
}

.item_lead_ttl {
  font-size: calc(28* (100vw /750));
  margin-bottom: calc(30* (100vw /750));
}
.item_wrap01 .item_lead {
  letter-spacing: -0.02em;
}
.item_wrap03 .item_lead {
  letter-spacing: -0.069em;
}
.item_num::after {
  height: 1.5px;
}
}


/*  */
.jsFade.jsFade_img {
  opacity: 0;
  transform: translateY(0);

  -webkit-filter: blur(30px) brightness(1.1);
  filter: blur(30px) brightness(1.1);
}
.jsFade.jsFade_img.isActive {
  opacity: 1;
  transform: translateY(0);

  -webkit-animation: blurPic 1s ease forwards;
  animation: blurPic 1s ease forwards;
}
@keyframes blurPic {
  0%{
    opacity: 0;
    -webkit-filter: blur(30px) brightness(1.1);
    filter: blur(30px) brightness(1.1);
  }
  100%{
    opacity: 1;
    -webkit-filter: blur(0) brightness(1);
    filter: blur(0) brightness(1);
  }
}
