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

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

.lp-barbour_250206 {
  --color-white: #fff;
  --color-black: #000;
  --color-brown: #c09a5d;
  --color-green: #305334;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-source: "source-han-sans-japanese", sans-serif;
  --font-en: var(--font-f37-ginger);
  --font-ja: var(--font-noto);
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;
  --column_1: 1;
  --column_2: 2;
  --column_3: 3;
  --column_4: 4;
  /* font-feature-settings: "palt"; */
  font-feature-settings: normal;
  overflow: clip;
}
.lp-barbour_250206 {
  font-family: var(--font-noto);
  color: var(--color-black);
  font-weight: var(--fw-regular);
}

/* ●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: 128rem;
  margin: 0 auto 12.7rem;
}
.main_area_img {
  margin-bottom: 6.5rem;
}
.main_area_ttl {
  font-family: var(--font-f37-ginger);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 6rem;
  font-weight: var(--fw-bold);
}
.main_area_lead {
  width: 86rem;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.7;
  /* text-align: justify; */
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item-section01
///////////////////////////////////////////////////////////////////////////////////////
*/
.item-section {
  width: 128rem;
  margin: 0 auto 13.5rem;
}
.item_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}
.item_flex_img {
  width: 50%;
}
.price_flex {
  width: 86rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price_text {
  font-size: 2rem;
  /* border-bottom: solid 1px #b2b2b2; */
  /* padding-bottom: 2px; */
}
.price_text span {
  border-bottom: solid 1px #b2b2b2;
  padding-bottom: 2px;
}
.buy_button {
  width: 12rem;
  background: var(--color-black);
  border: solid 1px var(--color-black);
  color: var(--color-white);
  font-size: 2rem;
  text-align: center;
  padding: 0.3rem 0;
  line-height: 1.1;
  transition: 0.3s;
}
.buy_button:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  bottom_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.bottom_area {
  width: 86rem;
  margin: 0 auto 12.7rem;
}
.about_ttl {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.about_lead {
  font-size: 2rem;
  line-height: 1.7;
  /* text-align: justify; */
}
.about_lead.lead02 {
  margin-top: 3.5rem;
}
.about_lead.lead03 {
  margin-top: 12.5rem;
}
.item-section.item-section05 {
  margin-bottom: 13.5rem;
}
.bottom_area_img {
  width: 43rem;
  margin: 0 auto 3.7rem;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  all_button
///////////////////////////////////////////////////////////////////////////////////////
*/
.all_button {
  width: 28rem;
  margin: 0 auto 13rem;
  background: var(--color-black);
  border: solid 1px var(--color-black);
  color: var(--color-white);
  font-size: 2rem;
  text-align: center;
  line-height: 1.1;
  padding: 0.8rem 0;
  transition: 0.3s;
}
.all_button:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  SP
///////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
/*
///////////////////////////////////////////////////////////////////////////////////////
  main_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.main_area {
  width: 100%;
  margin: 0 auto calc(128* (100vw /750));
}
.main_area_img {
  margin-bottom: calc(60* (100vw /750));
}
.main_area_ttl {
  font-size: calc(28* (100vw /750));
  line-height: 1.5;
  margin-bottom: calc(53* (100vw /750));
}
.main_area_lead {
  width: calc(650* (100vw /750));
  font-size: calc(22* (100vw /750));
  line-height: 1.55;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item-section01
///////////////////////////////////////////////////////////////////////////////////////
*/
.item-section {
  width: calc(750* (100vw /750));
  margin: 0 auto calc(135* (100vw /750));
}
.item_flex {
  margin-bottom: calc(43* (100vw /750));
}
.item_flex_img {
  width: 100%;
  order: 2;
}
.item_flex_img.first_item {
  margin-bottom: calc(40* (100vw /750));
  order: 1;
}
.price_flex {
  width: calc(650* (100vw /750));
}
.price_text {
  font-size: calc(20* (100vw /750));
}
.buy_button {
  width: calc(120* (100vw /750));
  font-size: calc(20* (100vw /750));
  padding: calc(1* (100vw /750)) 0;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  bottom_area
///////////////////////////////////////////////////////////////////////////////////////
*/
.bottom_area {
  width: calc(650* (100vw /750));
  margin: 0 auto calc(130* (100vw /750));
}
.about_ttl {
  font-size: calc(22* (100vw /750));
  margin-bottom: calc(6* (100vw /750));
}
.about_lead {
  font-size: calc(20* (100vw /750));
  line-height: 1.7;
}
.item-section.item-section05 {
  margin-bottom: calc(135* (100vw /750));
}
.bottom_area_img {
  width: calc(430* (100vw /750));
  margin: 0 auto calc(35* (100vw /750));
}
.about_lead.lead02 {
  margin-top: calc(37* (100vw /750));
}
.about_lead.lead03 {
  margin-top: calc(125* (100vw /750));
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  all_button
///////////////////////////////////////////////////////////////////////////////////////
*/
.all_button {
  width: calc(280* (100vw /750));
  margin: 0 auto calc(132* (100vw /750));
  font-size: calc(20* (100vw /750));
  padding: calc(7* (100vw /750)) 0;
}


}
