@charset "UTF-8";
/*
///////////////////////////////////////////////////////////////////////////////////////
setting - custompropaty
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp-barbour_251126 {
  --color-white: #fff;
  --color-cream: #F4F1EA;
  --color-black: #000;
  --color-black2: #171D1D;
  --color-green: #2C5234;

  --font-jp: zen-kaku-gothic-new, sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  overflow: clip;
  font-feature-settings: "pwid" 0;
  font-variant-east-asian: proportional-width;
  font-weight: var(--fw-medium);
  font-family: var(--font-jp);
  font-style: normal;
  color: var(--color-black);
  width: 100%;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting
//////////////////////////////////////////////////////////////////////////////////////////////
*/

.lp-barbour_251126 .common-grid {
  display: grid;
  gap: var(--row, 0) var(--column, 0);
}
.lp-barbour_251126 .common-flex_row {
  display: flex;
  flex-direction: row;
  gap: var(--row, 0) var(--column, 0);
}
.lp-barbour_251126 .common-flex_row_reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: var(--row, 0) var(--column, 0);
}
.lp-barbour_251126 .common-flex_column {
  display: flex;
  flex-direction: column;
  gap: var(--row, 0) var(--column, 0);
}
.lp-barbour_251126 .common-flex_column_reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--row, 0) var(--column, 0);
}

@media screen and (min-width: 768px) {
  .lp-barbour_251126{
    padding-bottom: 18rem;
    --row: 4rem;
  }

  .lp-barbour_251126 .desktop-flex_row {
    display: flex!important;
    flex-direction: row;
    gap: var(--row, 0) var(--column, 0);
  }
  .lp-barbour_251126 .desktop-flex_row_reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
  .lp-barbour_251126 .desktop-flex_column {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
  .lp-barbour_251126 .desktop-flex_column_reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
}

@media screen and (max-width: 767px) {
  .lp-barbour_251126{
    padding-bottom: calc(140 * 100vw/402);
    --row: calc(60 * 100vw/402);
  }

  .lp-barbour_251126 .mobile-flex_row {
    display: flex;
    flex-direction: row;
    gap: var(--row, 0) var(--column, 0);
  }
  .lp-barbour_251126 .mobile-flex_row_reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
  .lp-barbour_251126 .mobile-flex_column {
    display: flex;
    flex-direction: column;
    gap: var(--row, 0) var(--column, 0);
  }
  .lp-barbour_251126 .mobile-flex_column_reverse {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--row, 0) var(--column, 0);
  }
}

/* --------------------------- credit */
.lp-barbour_251126 .product_detail {
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: var(--fw-light);
  font-family: var(--font-barbour-sans);
  color: var(--color-black2);
}

.lp-barbour_251126 .product_detail > span {
  white-space: nowrap;
}

.lp-barbour_251126 .product_detail_cat{
  font-weight: var(--fw-regular);
}

.lp-barbour_251126 .product_detail_price{
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .lp-barbour_251126 .product_detail {
    font-size: 1.5rem;
    line-height: 0.8;
    column-gap: 1rem;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .lp-barbour_251126 .product_detail {
    font-size: calc(12 * (100vw / 402));
    line-height: 1;
    column-gap: calc(10 * (100vw / 402));
    margin-top: calc(8 * (100vw / 402));
  }
}

/* --------------------------- 商品一覧ボタン */
.lp-barbour_251126 .product_link > a{
  text-align: center;
}

.lp-barbour_251126 .product_link a {
  background-color: var(--color-green);
  color: var(--color-cream);
}

.lp-barbour_251126 .product_link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 96rem;
  margin: 18rem auto 0;
  font-size: 1.8rem;
  font-weight: var(--fw-light);
  font-family: var(--font-barbour-sans);
  text-align: center;
  border: 1px solid var(--color-green);
}

.lp-barbour_251126 .product_link > a {
  width: 100%;
  height: 100%;
  line-height: 1.6666666667;
  padding: 2rem 0;
}

@media screen and (min-width: 768px) {

  .lp-barbour_251126 .hidden-mobile{
    display: block;
  }

  .lp-barbour_251126 .hidden-desktop{
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .lp-barbour_251126 .product_link {
    font-size: calc(18 * 100vw/402);
    width: calc(360 * 100vw/402);
    height: calc(70 * 100vw/402);
    margin: 0 auto;
  }

  .lp-barbour_251126 .product_link > a {
    padding: calc(20 * 100vw/402) 0 calc(20 * 100vw/402);
  }

  .lp-barbour_251126 .hidden-mobile{
    display: none;
  }

  .lp-barbour_251126 .hidden-desktop{
    display: block;
  }

  .lp-barbour_251126 .common-flex_row.hidden-desktop{
    display: flex;
  }
}

/*
///////////////////////////////////////////////////////////////////////////////////////
setting - hero
///////////////////////////////////////////////////////////////////////////////////////
*/

.lp-barbour_251126 .hero {
  /* width: 144rem; */
  margin: 0 auto 18rem;
}

.lp-barbour_251126 .hero_content {
  --row: 18rem;
}

.lp-barbour_251126 .hero_content .hero_text {
  --row: 6rem;
}

.lp-barbour_251126 .hero_image {
  width: 100vw;
}

.lp-barbour_251126 .hero_text {
  justify-content: center;
  width: 96rem;
  margin: 0 auto;
}

.lp-barbour_251126 .hero_text_title {
  font-size: 2.4rem;
  line-height: 1.5833333333;
  font-weight: var(--fw-medium);
  font-family: var(--font-barbour-sans);
  color: var(--color-black);
  text-align: center;
}

.lp-barbour_251126 .hero_text_lead {
  width: fit-content;
  margin: 0 auto;
  font-size: 1.7rem;
  line-height: 2;
  font-weight: var(--fw-medium);
  font-family: var(--font-jp);
  color: var(--color-black);
}

.lp-barbour_251126 .intro .hero_text_lead,
.lp-barbour_251126 .product .product_lead,
.lp-barbour_251126 .product_lead{
  font-weight: var(--fw-regular);
}

@media screen and (max-width: 767px) {
  .lp-barbour_251126 .hero {
    width: 100%;
    margin-bottom: calc(100 * 100vw/402);
  }

  .lp-barbour_251126 .hero_content {
    --row: calc(100 * 100vw/402);
  }

  .lp-barbour_251126 .hero_content .hero_text {
    --row: calc(60 * 100vw/402);
  }

  .lp-barbour_251126 .hero_text {
    width: calc(360 * 100vw/402);
  }

  .lp-barbour_251126 .hero_text_title {
    font-size: calc(22 * 100vw/402);
    line-height: 1.7272727273;
  }

  .lp-barbour_251126 .hero_text_lead {
    font-size: calc(14 * 100vw/402);
  }
}


/*
///////////////////////////////////////////////////////////////////////////////////////
setting - intro
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp-barbour_251126 .intro{
  width: 96rem;
  margin: 0 auto 18rem;
}

.lp-barbour_251126 .intro_wrapper{
  align-items: center;
  row-gap: var(--row);
}



@media screen and (min-width: 768px) {

  .lp-barbour_251126 .intro_img{
    width: 90rem;
    margin: 0 auto;
  }

  .lp-barbour_251126 .bedale_img{
    width: 90rem;
  }
}

@media screen and (max-width: 767px) {
  .lp-barbour_251126 .intro{
    width: calc(360 * 100vw/402);
    margin: 0 auto calc(100 * 100vw/402);
  }

  .lp-barbour_251126 .intro_img{
    width: calc(300 * 100vw/402);
  }
}

/*
///////////////////////////////////////////////////////////////////////////////////////
setting - product
///////////////////////////////////////////////////////////////////////////////////////
*/
.lp-barbour_251126 .product {
  position: relative;
  z-index: 2;
  margin-bottom: 18rem;
}

.lp-barbour_251126 .product_title {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
  font-family: var(--font-barbour-sans);
  font-weight: var(--fw-regular);
  color: var(--color-black);
  text-align: left;
}

.lp-barbour_251126 .product_title span {
  display: block;
}

.lp-barbour_251126 .product_lead {
  line-height: 2;
  font-weight: var(--fw-regular);
  font-family: var(--font-jp);
}

.lp-barbour_251126 .product_img_box.--right{
  align-self: end;
}

.lp-barbour_251126 .product_img_box.--center{
  align-self: center;
}

.lp-barbour_251126 .product_img_box.--center .product_detail{
  justify-content: center;
}

/* .lp-barbour_251126 .splide__track {
-webkit-transition-timing-function: linear!important;
        transition-timing-function: linear!important;
} */

/* @keyframes の定義 */
/* @keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.splide.is-active .splide__track {
  overflow: visible;
}

.splide.is-active .splide__list {
  animation: scrolling 15s linear infinite;
  display: flex !important;
  flex-wrap: nowrap;
  width: auto !important;
}


@media screen and (max-width: 767px) {
  .splide.is-active .splide__list {
    animation: scrolling 5s linear infinite;
  }
} */

@media screen and (min-width: 768px) {
  .lp-barbour_251126 .product_intro {
    width: 120rem;
    justify-content: space-between;
    margin: 0 auto 10rem;
  }

  .lp-barbour_251126 .product_intro_wrapper{
    margin-bottom: 10rem;
  }

  .lp-barbour_251126 .product_title{
    width: 42.9rem;
    font-size: 2.4rem;
    line-height: 1.25;
    row-gap: 1rem;
  }

  .lp-barbour_251126 .product_title span {
    font-size: 1.9rem;
    line-height: 2;
  }

  .lp-barbour_251126 .product_lead {
    font-size: 1.7rem;
    width: 77.1rem;
  }

  .lp-barbour_251126 .splide__slide {
    width: 70rem;
  }

  .lp-barbour_251126 .product_wrapper{
    width: 116rem;
    margin: 0 auto 18rem;
    row-gap: 10rem;
  }

  .lp-barbour_251126 .product_img_box {
    width: 70rem;
  }

  .lp-barbour_251126 .product_img_box .product_detail{
    justify-content: left;
  }

}

@media screen and (max-width: 767px) {
  .lp-barbour_251126 .product {
    margin-bottom: calc(100 * 100vw/402);
  }

  .lp-barbour_251126 .product_intro_wrapper{
    margin-bottom: calc(100 * (100vw / 402));
  }

  .lp-barbour_251126 .product_intro {
    width: calc(360 * 100vw/402);
    margin: 0 auto calc(60 * 100vw/402);
  }

  .lp-barbour_251126 .product_title {
    font-size: calc(21 * (100vw / 402));
    line-height: 1.4285714286;
    row-gap: calc(10 * (100vw / 402));
  }

  .lp-barbour_251126 .product_title span {
    font-size: calc(16 * (100vw / 402));
    line-height: 2.25;
  }

  .lp-barbour_251126 .product_lead {
    width: calc(360 * 100vw/402);
    font-size: calc(14 * 100vw/402);
    margin: calc(60 * 100vw/402) auto calc(100 * 100vw/402);
  }

  .lp-barbour_251126 .splide__slide {
    width: calc(402* (100vw / 402));
  }

  .lp-barbour_251126 .product_wrapper{
    row-gap: calc(100* (100vw / 402));
  }

  .lp-barbour_251126 .product_img_box {
    width: calc(351 * (100vw / 402));
  }

  .lp-barbour_251126 .product_img_box.--left .product_detail{
    justify-content: right;
  }

  .lp-barbour_251126 .product_img_box.--right .product_detail{
    justify-content: left;
  }

  .lp-barbour_251126 .product_img_box.--center{
    width: 100%;
  }
}


/*
///////////////////////////////////////////////////////////////////////////////////////
setting - last_sec
///////////////////////////////////////////////////////////////////////////////////////
*/

.last_sec_box01{
  background-color: var(--color-green);
  color: var(--color-cream);
}

.abour_sorel{
  margin: 0 auto;
}

.abour_sorel_ttl{
  line-height: 1.5833333333;
  text-align: left;
  font-family: var(--font-barbour-sans);
  font-weight: var(--fw-medium);
}

.abour_sorel_info,
.shop_info_memo{
  line-height: 2;
  text-align: left;
  font-family: var(--font-jp);
  font-weight: var(--fw-medium);
}

.shop_list{
  align-items: center;
  line-height: 2.4285714286;
  text-align: left;
  font-family: var(--font-jp);
  font-weight: var(--fw-medium);
}

.shop_info_ttl{
  position: absolute;
  z-index: 10;
  line-height: 2;
  text-align: center;
  font-family: var(--font-jp);
  font-weight: var(--fw-bold);
  background-color: var(--color-white);
}

.shop_info{
  position: relative;
  border: 1px solid var(--color-black);
}

.tel_txt,
.number_txt{
  line-height: 1;
  text-align: left;
  font-family: var(--font-barbour-sans);
  font-weight: var(--fw-light);
}

@media screen and (min-width: 768px) {
  .last_sec_box01{
    width: 116rem;
    padding: 6rem 0;
    margin: 0 auto;
  }

  .abour_sorel{
    width: 96rem
  }

  .abour_sorel_ttl,
  .abour_sorel_info{
    font-size: 2.4rem;
    margin-bottom: 8rem;
  }

  .abour_sorel_info{
    font-size: 1.7rem;
    margin: 0;
  }

  .last_sec_box02{
    width: 96rem;
    margin: 18rem auto;
  }

  .shop_info_memo{
    font-size: 1.7rem;
    margin-bottom: 11.7rem;
  }

  .shop_info{
    padding: 3.2rem 2.9rem 1.5rem;
    --column: 1rem;
    --row: 1rem;
  }

  .shop_info_ttl{
    font-size: 2rem;
    top: -2rem;
    width: 10.8rem;
  }

  .shop_list{
    font-size: 1.7rem;
  }

  .tel_txt,
  .number_txt{
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .last_sec_box01{
    padding: calc(60 * (100vw / 402)) 0;
  }

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

  .abour_sorel_ttl,
  .abour_sorel_info{
    font-size: calc(24 * (100vw / 402));
    margin-bottom: calc(32* (100vw / 402));
  }

  .abour_sorel_info{
    font-size: calc(14 * (100vw / 402));
    margin: 0;
  }

  .last_sec_box02{
    width: calc(360* (100vw / 402));
    margin: calc(100 * (100vw / 402)) auto;
  }

  .shop_info_memo{
    font-size: calc(14 * (100vw / 402));
    margin-bottom: calc(77 * (100vw / 402));
  }

  .shop_info{
    padding: calc(32 * (100vw / 402)) 0 calc(20 * (100vw / 402));
    --column: calc(10 * (100vw / 402));
    --row: calc(10 * (100vw / 402));
  }

  .shop_info__inner{
    width: calc(278* (100vw / 402));
    margin: 0 auto;
  }

  .shop_info_ttl{
    font-size: calc(17 * (100vw / 402));
    top: calc(-16 * (100vw / 402));
    width: calc(98 * (100vw / 402));
    left: calc(23 * (100vw / 402));
  }

  .shop_list{
    font-size: calc(14 * (100vw / 402));
  }

  .tel_txt,
  .number_txt{
    font-size: calc(12 * (100vw / 402));
  }
}


/*
///////////////////////////////////////////////////////////////////////////////////////
setting - animation
///////////////////////////////////////////////////////////////////////////////////////
*/
/* .lp-barbour_251126 .js-fade {
  opacity: 0;
  transform: translateY(20px);
}
.lp-barbour_251126 .js-fade.is-active {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.9s, transform 0.9s;
} */
