@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_251121 {
  --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%, 1400px);
  width: 100%;
  margin: 0 auto;
}
.lp-barbour_251121 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: var(--fw-medium);
  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: opacity 0.7s, transform 0.7s;
}
.jsFade.delay01.isActive {
  transition-delay: 0.5s;
}
.jsFade.delay02.isActive {
  transition-delay: 1s;
}
.jsFade.delay03.isActive {
  transition-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: calc(1400* (100vw /1400));
  margin: 0 auto 18rem;
}
.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); */
  /* font-family: var(--font-en); */
}
.main_area_lead {
  width: 96rem;
  margin: 0 auto;
  line-height: 2;
  font-size: 1.7rem;
}


/* lp_top_movie_area */
.lp_top_movie_area {
  width: calc(1400* (100vw /1400));
  margin-bottom: 10rem;
}
.lp_top_img {
  width: calc(1220* (100vw /1400));
  margin: 0 auto 5.7rem;
}

/* lp__flex_area */
.lp__flex_area {
  width: calc(1400* (100vw /1400));
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18rem;
}
.lp__flex_area_inner {
  width: 50%;
}
.lp__flex_area_inner.inner_red {
  background-color: #8F0720;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp__flex_area_inner_text {
  width: 43rem;
  font-size: 1.7rem;
  line-height: 2;
  color: #fff;
  margin: 0 auto;
}
.lp__flex_area_inner_text_ttl {
  width: fit-content;
  font-size: 1.7rem;
  font-weight: var(--fw-bold);
  line-height: 2;
  color: #fff;
  margin-bottom: 4rem;
}

/* lp__section_01 */
.section_common {
  margin-bottom: 18rem;
}
.section_common_ttl {
  font-size: 2.4rem;
  line-height: 1.58333;
  text-align: center;
  margin-bottom: 4rem;
}
.section_common_img_video {
  width: 96rem;
  margin: 0 auto 4rem;
}
.section_common_lead {
  width: 96rem;
  margin: 0 auto;
  font-size: 1.7rem;
  line-height: 2;
}
.detail_button {
  width: 96rem;
  height: 7rem;
  margin: 10rem auto 0;
  background-color: #000;
  color: #fff;
  border: solid 1px #000;
  padding: 2rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6666;
  transition: .3s;
}
.detail_button:hover {
  background-color: #fff;
  color: #000;
}
.lp__section_03_flex_area {
  width: 114rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10rem auto 4rem;
}
.lp__section_03_flex_area_inner {
  width: 55rem;
}
.lp__section_03_flex_img01 {
  width: 42.5rem;
  margin: 0 auto;
}
.lp__section_03_flex_img02 {
  width: 30rem;
  margin: 0 auto;
}
.section_common_lead span {
  font-size: 1.4rem;
}
.attention_text {
  width: 96rem;
  margin: 4rem auto 2rem;
  font-size: 1.7rem;
  line-height: 2;
}
.underline_link {
  text-decoration: underline;
  width: 96rem;
  margin: 0 auto;
  font-size: 1.7rem;
  line-height: 2;
}
.underline_link a {
  display: inline;
}
.lp__section_04 .section_common_img_video {
  width: 50rem;
}







/*
///////////////////////////////////////////////////////////////////////////////////////
  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(100* (100vw /402));
}
.main_area_img {
  margin-bottom: calc(100* (100vw /402));
  width: 100%;
}
.main_area_ttl {
  font-size: calc(20* (100vw /402));
  line-height: 1.8;
  margin-bottom: calc(60* (100vw /402));
}
.main_area_lead {
  width: calc(360* (100vw /402));
  font-size: calc(14* (100vw /402));
  line-height: 2;
}

/* lp_top_movie_area */
.lp_top_movie_area {
  margin-bottom: calc(100* (100vw /402));
}
.lp_top_img {
  width: calc(360* (100vw /402));
  margin: 0 auto calc(41* (100vw /402));
}

/* lp__flex_area */
.lp__flex_area {
  margin-bottom: calc(100* (100vw /402));
}
.lp__flex_area_inner {
  width: 100%;
}
.lp__flex_area_inner_text {
  width: calc(360* (100vw /402));
  font-size: calc(14* (100vw /402));
}
.lp__flex_area_inner_text_ttl {
  width: calc(360* (100vw /402));
  font-size: calc(14* (100vw /402));
  margin-bottom: 0;
}
.lp__flex_area_inner.inner_red {
  padding-top: calc(40* (100vw /402));
  padding-bottom: calc(48* (100vw /402));
}
.lp__flex_area_inner.wrap001 {
  order: -1;
}
.lp__flex_area_inner.wrap002 {
  order: 0;
}
.lp__flex_area_inner.wrap004 {
  order: 1;
}
.lp__flex_area_inner.wrap003 {
  order: 2;
}

/* lp__section_01 */
.section_common {
  margin-bottom: calc(100* (100vw /402));
}
.section_common_ttl {
  font-size: calc(20* (100vw /402));
  line-height: 1.8;
  margin-bottom: calc(24* (100vw /402));
}
.section_common_img_video {
  width: 100%;
  margin: 0 auto calc(60* (100vw /402));
}
.section_common_lead {
  width: calc(360* (100vw /402));
  margin: 0 auto;
  font-size: calc(14* (100vw /402));
}
.detail_button {
  width: calc(360* (100vw /402));
  height: calc(70* (100vw /402));
  margin: calc(60* (100vw /402)) auto 0;
  padding: calc(20* (100vw /402));
  font-size: calc(16* (100vw /402));
  line-height: 1.875;
}

.lp__section_01 .section_common_img_video {
  width: calc(360* (100vw /402));
}

.lp__section_03_flex_area {
  width: calc(360* (100vw /402));
  margin: calc(100* (100vw /402)) auto calc(60* (100vw /402));
  justify-content: center;
}
.lp__section_03_flex_area_inner {
  width: 100%;
}
.lp__section_03_flex_img01 {
  width: 100%;
  margin: 0 auto calc(60* (100vw /402));
}
.lp__section_03_flex_img02 {
  width: calc(200* (100vw /402));
  margin: 0 auto;
}
.section_common_lead span {
  font-size: calc(12* (100vw /402));
}
.attention_text {
  width: calc(360* (100vw /402));
  margin: calc(40* (100vw /402)) auto calc(20* (100vw /402));
  font-size: calc(14* (100vw /402));
}
.underline_link {
  width: calc(360* (100vw /402));
  font-size: calc(14* (100vw /402));
}
.lp__section_04 .section_common_img_video {
  width: calc(360* (100vw /402));
}


}
