@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_250321 {
  --color-white: #fff;
  --color-black: #000;
  --fw-regular: 400;
  --fw-bold: 700;
  overflow: clip;

  font-family: var(--font-yugothic);
  color: var(--color-black);
  font-weight: var(--fw-regular);
  --width__thisLP_max: 140rem;
  width: var(--width__thisLP_max);
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .lp-barbour_250321 {
    width: 100%;
  }
}

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


/*
///////////////////////////////////////////////////////////////////////////////////////
  slickページネーション
///////////////////////////////////////////////////////////////////////////////////////
*/
/* ページネーションの位置調整 */
.slick-dots {
  position: absolute;
  bottom: calc(-15 * (100vw / 1280));
  display: flex;
  justify-content: left;
  gap: calc(5 * (100vw / 1280));
  margin: 0;
}

.slick-dots li {
  margin: 0;
  width: fit-content;
  height: fit-content;
}

/* ドットの基本スタイル */
.slick-pagination-bullet {
  width: calc(45 * (100vw /1280));
  height: calc(3 * (100vw / 1280));
  background-color: #C6C6C6;
  position: relative;
  overflow: hidden;
  display: block;
}

/* アクティブドットのスタイル */
.slick-pagination-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #305334;
  animation: progress 4s linear forwards;
}

/* アニメーション */
@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* SP */
@media screen and (max-width: 767px) {
/* ページネーションの位置調整 */
.slick-dots {
  position: absolute;
  bottom: calc(-60 * (100vw / 750));
  display: flex;
  justify-content: left;
  gap: calc(5 * (100vw / 750));
  margin: 0;
}

.slick-dots li {
  margin: 0;
  margin-right: calc(15 * (100vw / 750));
  width: 20px;
  height: 20px;
}

/* ドットの基本スタイル */
.slick-pagination-bullet {
  width: calc(50 * (100vw / 750));
  height: calc(5 * (100vw / 750));
  background-color: #C6C6C6;
  position: relative;
  overflow: hidden;
  display: block;
}

/* アクティブドットのスタイル */
.slick-pagination-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #305334;
  animation: progress 4s linear forwards;
}

/* アニメーション */
@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
}


/*
///////////////////////////////////////////////////////////////////////////////////////
  関連ページ
///////////////////////////////////////////////////////////////////////////////////////
*/
.btm_imgArea {
  width: 64rem;
  margin: 5rem auto 15rem;
}
.item_img.btm_img02 {
  margin-top: 3rem;
}
.btm_imgArea_ttl {
  font-size: 2rem;
  margin-bottom: 3.3rem;
  text-align: center;
}
/* SP */
@media screen and (max-width: 767px) {
  .btm_imgArea {
    width: calc(365 * (100vw / 390));
    margin: calc(61 * (100vw / 390)) auto calc(100 * (100vw / 390));
  }
  .item_img.btm_img02 {
    margin-top: calc(20 * (100vw / 390));
  }
  .btm_imgArea_ttl {
    font-size: calc(14 *(100vw / 390));
    margin-bottom: calc(22*(100vw / 390));
    text-align: center;
    letter-spacing: 0;
  }
}
  
/*
///////////////////////////////////////////////////////////////////////////////////////
  アニメーション
///////////////////////////////////////////////////////////////////////////////////////
*/

/* その場でフェード(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.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;
  }

}


/*
///////////////////////////////////////////////////////////////////////////////////////
  main_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.main_area {
  width: 100%;
  margin: 0 auto 18rem;
}
.main_area_img {
  margin-bottom: 18rem;
}
.main_area_ttl {
  font-size: 2.4rem;
  line-height: 1.583;
  text-align: center;
  margin-bottom: 6rem;
  font-weight: var(--fw-bold);
}
.main_area_lead {
  width: 96rem;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 2;
  /* text-align: justify; */
  font-weight: var(--fw-bold);
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  lp_middle_img
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp_middle_img {
  width: var(--width__thisLP_max);
  height: 78.6rem;
  margin: 0 auto 18rem;
  background-position: center;
  background-size: cover;
}
.lp_middle_img.lp_middle_img--01 {
  background-image: url(../img/lp__middle_img--01.jpg);
  margin-bottom: 18.1rem;
}
.lp_middle_img.lp_middle_img--02 {
  background-image: url(../img/lp__middle_img--02.jpg);
}
.lp_middle_img.lp_middle_img--03 {
  background-image: url(../img/lp__middle_img--03.jpg);
  margin-bottom: 18.5rem;
}
.lp_middle_img.lp_middle_img--04 {
  background-image: url(../img/lp__middle_img--04.jpg?ver2);
}




/*
///////////////////////////////////////////////////////////////////////////////////////
  lp_second_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp_second_area {
  margin: 0 auto 18rem;
}
.lp_text_block {
  width: 96rem;
  margin: 0 auto 18rem;
}
.lp_text_block__ttl {
  font-size: 2.4rem;
  line-height: 1.583;
  text-align: center;
  margin-bottom: 6rem;
  font-weight: var(--fw-bold);
}
.lp_text_block__lead {
  font-size: 1.8rem;
  line-height: 2;
  /* text-align: justify; */
}
.lp_flex_base {
  display: flex;
  justify-content: space-between;
}
.lp_second_area__flex01 {
  width: 96rem;
  margin: 0 auto 18rem;
  align-items: flex-end;
}
.lp_credit_wrap {
  width: 36rem;
  flex-wrap: wrap;
  display: flex;
  gap: 1.1rem;
}
.lp_credit_wrap__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp_credit_wrap__row_name_right {
  display: flex;
  align-items: center;
}
.lp_credit_wrap__row_name {
  font-family: var(--font-f37-ginger);
  font-size: 2rem;
}
.lp_credit_wrap__row_price {
  font-family: var(--font-f37-ginger);
  font-size: 2rem;
  margin-right: 1rem;
  text-align: right;
}
.lp_credit_wrap__row_buy {
  font-family: var(--font-f37-ginger);
  width: 6.5rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: var(--fw-regular);
  background: var(--color-black);
  border: solid 1px var(--color-black);
  color: var(--color-white);
  padding: 0.13rem 0;
  transition: .3s;
  letter-spacing: 0.05em;
}
.lp_credit_wrap__row_buy:hover {
  color: var(--color-black);
  background: var(--color-white);
}
.lp_second_area__flex01_right {
  width: 54rem;
}
.lp_second_area__flex02 {
  width: 120rem;
  margin: 0 auto;
}
.lp_second_area__flex02_left {
  width: 60rem;
  margin-top: 18rem;
}
.lp_second_area__flex02_right {
  width: 42rem;
  height: 74.8rem;
}
.lp_movie_inner {
  width: auto;
  height: 100%;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  lp_third_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp_third_area {
  margin: 0 auto 18rem;
}
.lp_third_area__section01 {
  width: 90rem;
  margin: 0 auto 6rem;
  position: relative;
  left: 3rem;
}
.lp_third_area__section01_img {
  margin-bottom: 6rem;
}
.lp_third_area__section01 .lp_credit_wrap {
  margin-left: auto;
}
.lp_third_area__section02 {
  width: 120rem;
  margin: 0 auto 6rem;
}
.lp_third_area__section02_left {
  width: 42rem;
  height: 74.8rem;
}
.lp_third_area__section02_right {
  width: 60rem;
  margin-top: 18rem;
}
.lp_third_area__section03 {
  width: 108rem;
  margin: 0 auto;
  position: relative;
  align-items: flex-end;
  left: -6rem;
}
.lp_third_area__section03_left {
  width: 66rem;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  lp_forth_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp_forth_area {
  margin: 0 auto 18rem;
}
.lp_forth_area__section01 {
  width: 120rem;
  margin: 0 auto;
  position: relative;
}
.lp_forth_area__section01_left {
  width: 60rem;
}
.lp_forth_area__section01_img01 {
  width: 100%;
  margin-bottom: 6rem;
}
.lp_forth_area__section01_img02 {
  width: 48rem;
  margin-bottom: 6rem;
  margin-left: auto;
}
.lp_forth_area__section01_right {
  width: 54rem;
  margin-top: 48rem;
}
.lp_forth_area__section01_img03 {
  width: 42rem;
  margin-bottom: 18rem;
}
.lp_forth_area__section01_img04 {
  width: 42rem;
  height: 74.6rem;
  margin-left: auto;
}
.lp_forth_area .lp_credit_wrap {
  margin-left: 12rem;
}
.lp_forth_area .lp_text_block__ttl {
  margin-bottom: 6.4rem;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  lp_fifth_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp_fifth_area {
  margin: 0 auto 18rem;
}
.lp_fifth_area__section01 {
  width: 108rem;
  margin: 0 auto;
  position: relative;
  left: -6rem;
}
.lp_fifth_area__section01_left {
  margin-top: 18rem;
  width: 54rem;
}
.lp_fifth_area__section01_right {
  width: 48rem;
}
.lp_fifth_area__section01_img02 {
  margin-bottom: 6rem;
}
.lp_fifth_area__section01_right .lp_credit_wrap {
  margin-left: auto;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  lp_profile_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp_profile_area {
  width: 96rem;
  margin: 0 auto 18rem;
  border: solid 1px var(--color-black);
  padding: 1.6rem 2rem 1.4rem;
}
.lp_profile_area p {
  width: 91rem;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 2;
  position: relative;
  left: -0.5rem;
}
.lp_profile_area p span {
  font-weight: var(--fw-bold);
  padding-right: 0.7rem;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  lp_popup_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp_popup_area {
  width: 120rem;
  margin: 0 auto 18rem;
}
.lp_popup_area__img01 {
  margin-bottom: 6.1rem;
}
.lp_popup_area__lead {
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 6rem;
}
.lp_popup_area__detail {
  width: 18.5rem;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 2;
  background: var(--color-black);
  border: solid 1px var(--color-black);
  color: var(--color-white);
  padding: 0.7rem 0;
  text-align: center;
  transition: .3s;
}
.lp_popup_area__detail:hover {
  color: var(--color-black);
  background: var(--color-white);
}

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





/*
///////////////////////////////////////////////////////////////////////////////////////
  SP
///////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
/*
///////////////////////////////////////////////////////////////////////////////////////
  main_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.main_area {
  width: 100%;
  margin: 0 auto calc(60* (100vw /402));
}
.main_area_img {
  margin-bottom: calc(60* (100vw /402));
}
.main_area_ttl {
  font-size: calc(22* (100vw /402));
  margin-bottom: calc(61* (100vw /402));
  line-height: 1.65;
}
.main_area_lead {
  width: calc(360* (100vw /402));
  margin: 0 auto;
  font-size: calc(15* (100vw /402));
}

/*  */
.lp_middle_img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  margin: 0 auto calc(120* (100vw /402));
}
.lp_middle_img.lp_middle_img--01 {
  /* background-image: url(../img/lp__middle_img--01_sp.jpg); */
  margin-bottom: calc(120* (100vw /402));
}

/*  */
.lp_second_area {
  margin: 0 auto calc(60* (100vw /402));
}
.lp_text_block {
  width: calc(360* (100vw /402));
  margin: 0 auto calc(60* (100vw /402));
}
.lp_text_block__ttl {
  font-size: calc(22* (100vw /402));
  margin-bottom: calc(60* (100vw /402));
  line-height: 1.65;
}
.lp_text_block__lead {
  font-size: calc(15* (100vw /402));
}
.lp_flex_base {
  flex-wrap: wrap;
}
.lp_second_area__flex01 {
  width: calc(300* (100vw /402));
  margin: 0 auto calc(60* (100vw /402));
}
.lp_second_area__flex01_right {
  width: 100%;
}
.lp_credit_wrap {
  width: calc(240* (100vw /402));
  gap: calc(10* (100vw /402));
}
.lp_credit_wrap__row_name {
  font-size: calc(15* (100vw /402));
}
.lp_credit_wrap__row_price {
  font-size: calc(15* (100vw /402));
  margin-right: calc(10* (100vw /402));
}
.lp_credit_wrap__row_buy {
  width: calc(54* (100vw /402));
  font-size: calc(15* (100vw /402));
  padding: calc(1* (100vw /402)) 0;
}
.lp_second_area__flex01 .lp_credit_wrap {
  margin-top: calc(28* (100vw /402));
  margin-left: auto;
  order: 2;
}
.lp_second_area__flex02 {
  width: calc(360* (100vw /402));
}
.lp_second_area__flex02_left {
  width: calc(180* (100vw /402));
  margin-top: calc(61* (100vw /402));
}
.lp_second_area__flex02_right {
  width: calc(150* (100vw /402));
  height: calc(266* (100vw /402));
}
.lp_middle_img.lp_middle_img--02 {
  /* background-image: url(../img/lp__middle_img--02_sp.jpg); */
  margin-bottom: calc(120* (100vw /402));
}


/*  */
.lp_third_area {
  margin: 0 auto calc(65* (100vw /402));
}
.lp_third_area__section01 {
  width: calc(330* (100vw /402));
  margin: calc(-1* (100vw /402)) auto calc(60* (100vw /402));
  left: calc(15* (100vw /402));
}
.lp_third_area__section01_img {
  margin-bottom: calc(30* (100vw /402));
}
.lp_third_area__section02 {
  width: calc(360* (100vw /402));
  margin: 0 auto calc(60* (100vw /402));
}
.lp_third_area__section02_left {
  width: calc(150* (100vw /402));
  height: calc(266* (100vw /402));
}
.lp_third_area__section02_right {
  width: calc(180* (100vw /402));
  margin-top: calc(60* (100vw /402));
}
.lp_third_area__section03 {
  width: calc(330* (100vw /402));
  left: calc(-15* (100vw /402));
}
.lp_third_area__section03_left {
  width: 100%;
  margin-bottom: calc(57* (100vw /750));
}
.lp_third_area__section03 .lp_credit_wrap {
  order: 2;
}
.lp_middle_img.lp_middle_img--03 {
  /* background-image: url(../img/lp__middle_img--03_sp.jpg); */
  margin-bottom: calc(120* (100vw /402));
}
/*  */
.lp_forth_area {
  margin: 0 auto calc(60* (100vw /402));
}
.lp_forth_area__section01 {
  width: 100%;
}
.lp_forth_area__section01_left {
  width: 100%;
}
.lp_forth_area .lp_credit_wrap {
  margin-left: auto;
  margin-right: calc(51* (100vw /402));
  margin-top: calc(30* (100vw /402));
}
.lp_forth_area__section01_right {
  width: 100%;
  margin-top: calc(60* (100vw /402));
  order: 2;
}
.lp_forth_area__section01_img04 {
  width: calc(300* (100vw /402));
  height: calc(534* (100vw /402));
  margin-right: auto;
}
.lp_forth_area .lp_text_block__ttl {
  margin-bottom: calc(61* (100vw /402));
}
/*  */
.lp_middle_img.lp_middle_img--04 {
  /* background-image: url(../img/lp__middle_img--04_sp.jpg); */
}
.lp_fifth_area {
  margin: 0 auto calc(120* (100vw /402));
}
.lp_fifth_area__section01 {
  width: 100%;
  left: unset;
}
.lp_fifth_area__section01_right {
  width: 100%;
}
.lp_fifth_area__section01_right .lp_credit_wrap {
  margin-left: auto;
  margin-right: calc(51* (100vw /402));
  margin-top: calc(30* (100vw /402));
}
/*  */
.lp_profile_area {
  width: calc(360* (100vw /402));
  margin: 0 auto calc(120* (100vw /402));
  padding: calc(16* (100vw /402)) calc(20* (100vw /402)) calc(14* (100vw /402));
}
.lp_profile_area p {
  width: calc(315* (100vw /402));
  font-size: calc(15* (100vw /402));
  margin: 0 auto;
  left: calc(-3*(100vw / 402));
}
.lp_profile_area p span {
  padding-right: calc(9* (100vw /402));
}
/*  */
.lp_popup_area {
  width: calc(360* (100vw /402));
  margin: 0 auto calc(120* (100vw /402));
}
.lp_popup_area__img01 {
  margin-bottom: calc(40* (100vw /402));
}
.lp_popup_area__lead {
  font-size: calc(15* (100vw /402));
  margin-bottom: calc(40* (100vw /402));
}
.lp_popup_area__detail {
  width: calc(240* (100vw /402));
  font-size: calc(15* (100vw /402));
  padding: calc(7* (100vw /402)) 0;
}
/*  */
.sp_slick.hidden-desktop.slide {
  display: block !important;
}
.slide.js-slide .slide_inner {
  width: calc(300* (100vw /402));
  margin: 0 calc(2* (100vw /402));
}
.slide.js-slide .slide_inner img {
  max-width: 100%;
  height: auto;
}

}
