@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_250121 {
  --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"; */
  overflow: clip;
}
.lp-barbour_250121 {
  font-family: var(--font-noto);
  /* font-family: 'Arimo', 'Noto Sans JP',Helvetica,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Arial,Verdana,sans-serif; */
  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;
  filter: blur(10px); /* ぼかしを最初に適用 */
  transform: scale(1.05); /* ほんの少し拡大 */
  animation: fadein 1.5s ease-in-out forwards;
  animation-delay: 0.7s;
}

@keyframes fadein {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.05);
  }
  /* 50% {
    opacity: 0.5;
    filter: blur(5px);
    transform: scale(1.02);
  } */
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(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;
  }

}

/*
///////////////////////////////////////////////////////////////////////////////////////
  スライドインアニメーション
///////////////////////////////////////////////////////////////////////////////////////
*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextY100;
          animation-name: slideTextY100;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextY100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}


/*上下のアニメーション*/
.topAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimetop_btm {
  -webkit-animation-name: top_slideTextY100;
          animation-name: top_slideTextY100;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes top_slideTextY100 {
  from {
    transform: translateY(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes top_slideTextY100 {
  from {
    transform: translateY(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimebtm {
  -webkit-animation-name: top_slideTextY-100;
          animation-name: top_slideTextY-100;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes top_slideTextY-100 {
  from {
    transform: translateY(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes top_slideTextY-100 {
  from {
    transform: translateY(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  lp_head_section
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp_head_section {
  margin-bottom: 15.5rem;
}
.lp_head_section_img {
  width: 102.4rem;
  margin: 0 auto 6rem;
  position: relative;
}
.lp_head_section_img02 {
  position: absolute;
  top: 6.7%;
  right: 16.6%;
  width: 29.9rem;
}
.lp_head_section_img02_2 {
  position: absolute;
  top: 20%;
  right: 2.7%;
  width: 1.85rem;
}
.lp_head_section_img03 {
  position: absolute;
  bottom: 16%;
  left: 69%;
  width: fit-content;
}
.lp_head_section_img03 p {
  font-family: var(--font-f37-ginger);
  color: #fff;
  font-size: 5rem;
  letter-spacing: 0.037em;
}
.lp_head_section_ttl {
  font-family: var(--font-source);
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  /* letter-spacing: 0.065em; */
  font-weight: var(--fw-bold);
}
.lp_head_section_lead {
  width: 75.5rem;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.7;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item_section01
///////////////////////////////////////////////////////////////////////////////////////
*/
.item_box01 {
  margin-bottom: 13rem;
}
.item_box01_ttl {
  font-size: 2.8rem;
  text-align: center;
  font-family: var(--font-source);
  margin-bottom: 6rem;
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
.item_box01_ttl span {
  font-weight: var(--fw-regular);
}
.item_box01_img {
  width: 84rem;
  margin: 0 auto 4rem;
}
.item_box01_lead {
  width: 75.5rem;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.7;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item_section02
///////////////////////////////////////////////////////////////////////////////////////
*/
.flex_base {
  width: 84rem;
  margin: 0 auto 0rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.item_box02_img {
  width: 41rem;
}
.item_box01.item_section02 .item_box01_lead {
  margin-top: 4rem;
}
.item_box01.item_section03 .item_box01_lead {
  margin-top: 4rem;
}
.mb_plus {
  margin-top: 2rem;
}
.mb_plus_2 {
  margin-top: 4rem;
}
.item_box01.item_section02 {
  margin-bottom: 4rem;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item_section04
///////////////////////////////////////////////////////////////////////////////////////
*/
.item_middle {
  margin-bottom: 4rem;
}
.price_box {
  width: 75.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 4rem auto 0;
}
.price_box_name {
  font-size: 2rem;
  line-height: 1.2;
  margin-right: 4rem;
}
.buy_button {
  width: 12rem;
  height: 3rem;
  background: var(--color-black);
  border: solid 1px var(--color-black);
  color: var(--color-white);
  font-size: 2rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  padding: 0.4rem 0;
  transition: 0.3s;
  position: relative;
  top: 0.2rem;
}
.buy_button:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item_all
///////////////////////////////////////////////////////////////////////////////////////
*/
.item_all {
  width: 33rem;
  height: 4rem;
  margin: 15.2rem auto 30rem;
  background: var(--color-black);
  border: solid 1px var(--color-black);
  color: var(--color-white);
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  padding: 0rem 0;
  align-items: center;
  transition: 0.3s;
}
.item_all:hover {
  background: var(--color-white);
  color: var(--color-black);
}


/*
///////////////////////////////////////////////////////////////////////////////////////
  SP
///////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 767px) {
/*
///////////////////////////////////////////////////////////////////////////////////////
  lp_head_section
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp_head_section {
  margin-bottom: calc(127* (100vw /750));
}
.lp_head_section_img {
  width: 100%;
  margin: 0 auto calc(40* (100vw /750));
}
.lp_head_section_ttl {
  font-size: calc(28* (100vw /750));
  margin-bottom: calc(30* (100vw /750));
  line-height: 1.4;
}
.lp_head_section_lead {
  width: calc(650* (100vw /750));
  font-size: calc(22* (100vw /750));
  line-height: 1.48;
}
.lp_head_section_img03 {
  bottom: unset;
  top: 3.6%;
  left: 13%;
}
.lp_head_section_img03 p {
  font-size: calc(85* (100vw /750));
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item_section01
///////////////////////////////////////////////////////////////////////////////////////
*/
.item_box01 {
  margin-bottom: calc(130* (100vw /750));
}
.item_box01_ttl {
  font-size: calc(28* (100vw /750));
  margin-bottom: calc(40* (100vw /750));
}
.item_box01_img {
  width: 100%;
  margin: 0 auto calc(40* (100vw /750));
}
.item_box01_lead {
  width: calc(697* (100vw /750));
  font-size: calc(22* (100vw /750));
  line-height: 1.47;
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item_section02
///////////////////////////////////////////////////////////////////////////////////////
*/
.item_box02_img {
  width: calc(650* (100vw /750));
}
.slide.js-slide {
  width: calc(650* (100vw /750));
  margin: 0 auto calc(40* (100vw /750));
}
.item_box01.item_section02 .item_box01_lead {
  margin-top: calc(40* (100vw /750));
}
.item_box01.item_section02 {
  margin-bottom: calc(40* (100vw /750));
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item_section04
///////////////////////////////////////////////////////////////////////////////////////
*/
.item_middle {
  margin-bottom: calc(40* (100vw /750));
}
.price_box {
  width: calc(650* (100vw /750));
  margin: calc(40* (100vw /750)) auto 0;
}
.price_box_name {
  font-size: calc(20* (100vw /750));
  margin-right: calc(40* (100vw /750));
}
.buy_button {
  width: calc(120* (100vw /750));
  height: calc(30* (100vw /750));
  font-size: calc(20* (100vw /750));
  top: calc(2* (100vw /750));
  padding: calc(3* (100vw /750)) 0;
}
.item_min_img.slide.js-slide {
  width: calc(474* (100vw /750));
  margin: 0 auto;
}
.item_section04 .item_box01_ttl {
  line-height: 1.2;
  margin-bottom: calc(24*(100vw / 750));
}
.price_box.sp_width02 {
  /* width: calc(700* (100vw /750)); */
}

/*
///////////////////////////////////////////////////////////////////////////////////////
  item_all
///////////////////////////////////////////////////////////////////////////////////////
*/
.item_all {
  width: calc(330* (100vw /750));
  height: calc(40* (100vw /750));
  margin: calc(122* (100vw /750)) auto calc(240* (100vw /750));
  font-size: calc(18* (100vw /750));
  padding: calc(2* (100vw /750)) 0;
}


.lp_head_section_img02 {
  top: 14%;
  right: 0;
  width: calc(222* (100vw /750));
}
.lp_head_section_img02_2 {
  top: 69.1%;
  right: 9%;
  width: calc(80* (100vw /750));
}



.mb_plus {
  margin-top: 0;
}
.mb_plus_2 {
  margin-top: calc(40* (100vw /750));
}
.item_box01.item_section03 .item_box01_lead {
  margin-top: calc(40* (100vw /750));
}
}
