@charset "UTF-8";
/*
///////////////////////////////////////////////////////////////////////////////////////
setting - custompropaty
///////////////////////////////////////////////////////////////////////////////////////
*/

html {
  scroll-behavior: smooth;
}


.lp-barbour_251128 {
  --color-white: #fff;
  --color-cream: #F4F1EA;
  --color-beige: #A0825A;
  --color-black: #000;
  --color-black2: #171D1D;
  --color-green: #113E1D;
  --color-green2: #2C5234;
  --color-navy: #474C59;

  --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: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  color: var(--color-white);
  width: 100%;
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting
//////////////////////////////////////////////////////////////////////////////////////////////
*/

.lp-barbour_251128 .common-grid {
  display: grid;
}
.lp-barbour_251128 .common-flex_row {
  display: flex;
  flex-direction: row;
}
.lp-barbour_251128 .common-flex_row_reverse {
  display: flex;
  flex-direction: row-reverse;
}
.lp-barbour_251128 .common-flex_column {
  display: flex;
  flex-direction: column;
}
.lp-barbour_251128 .common-flex_column_reverse {
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (min-width: 768px) {
  .lp-barbour_251128 .desktop-flex_row {
    display: flex!important;
    flex-direction: row;
  }
  .lp-barbour_251128 .desktop-flex_row_reverse {
    display: flex;
    flex-direction: row-reverse;
  }
  .lp-barbour_251128 .desktop-flex_column {
    display: flex;
    flex-direction: column;
  }
  .lp-barbour_251128 .desktop-flex_column_reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .lp-barbour_251128 .mobile-flex_row {
    display: flex;
    flex-direction: row;
  }
  .lp-barbour_251128 .mobile-flex_row_reverse {
    display: flex;
    flex-direction: row-reverse;
  }
  .lp-barbour_251128 .mobile-flex_column {
    display: flex;
    flex-direction: column;
  }
  .lp-barbour_251128 .mobile-flex_column_reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* --------------------------- bg_setting */

.lp-barbour_251128 .bg_block{
  position: relative;
  background-image: url(../img/bg_green.jpg);
  background-repeat: repeat;
  background-size: 100%;
  /* background-size: contain; */
}

.lp-barbour_251128 .bg_block::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4.45rem;
  z-index: 2;
  background-image: url(../img/green_nami.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 4.5rem;
}

@media screen and (max-width: 767px) {
  .lp-barbour_251128 .bg_block::after{
    background-image: url(../img/green_nami_sp.png);
  }

  .lp-barbour_251128 .product01.bg_block::after{
    background-image: url(../img/baige_nami_sp.png)!important;
  }
}

/* _____ product01 */
.lp-barbour_251128 .product{
  background-image: url(../img/bg_green.jpg);
  background-size: 100%;
}

.lp-barbour_251128 .product01.bg_block{
  background-image: url(../img/bg_beige.jpg);
}

.lp-barbour_251128 .product01.bg_block::after{
  background-image: url(../img/baige_nami.png);
}

/* _____ product04 */
.lp-barbour_251128 .product04{
  background-image: url(../img/bg_red.jpg);
  background-size: 100%;
  /* background-size: contain; */
}

/* _____ anchor_link_area */
.anchor_link_area{
  background-image: url(../img/bg_navy.jpg);
  background-size: 100%;
  /* background-size: contain; */
}

@media screen and (max-width: 767px) {
  .lp-barbour_251128 .bg_block::after{
    bottom: calc(-25* (100vw /402));
    height: calc(26* (100vw /402));
  }
}

/* --------------------------- decoration */
.sub_title__wrapper{
  align-items: center;
  justify-content: center;
}

.product-img{
  position: relative;
  z-index: 1;
}

.product-img .dec_animation{
  position: absolute;
  z-index: 2;
}

.sub_title__wrapper .dec_animation{
  animation: rotateAnimation 6000ms linear infinite;
}

.product-img .big{
  animation: rotateAnimation-reverse 12000ms linear infinite;
}

.product-img .small{
  animation: rotateAnimation 8000ms linear infinite;
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateAnimation-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@media screen and (min-width: 768px) {
  .sub_title__wrapper{
    column-gap: 6rem;
    margin-bottom: 8rem;
  }

  .sub_title__wrapper .dec_animation{
    width: 3rem;
  }

  .product-img .big{
    width: 11rem;
  }

  .product-img .small{
    width: 7rem;
  }

  .product01 .product-img .big{
    top: -2.3rem;
    right: 18rem;
  }

  .product01 .product-img .small{
    bottom: -2rem;
    left: 22.6rem;
  }

  .product02 .product-img .big{
    top: -9rem;
    left: 8.7rem;
  }

  .product02 .product-img .small{
    bottom: -2rem;
    right: 11.1rem;
  }

  .product03 .product-img .big{
    top: -6.9rem;
    right: 13.1rem;
  }

  .product03 .product-img .small{
    bottom: -3.5rem;
    left: 12rem;
  }
}

@media screen and (max-width: 767px) {
  .sub_title__wrapper{
    column-gap: calc(30* (100vw / 402));
  }

  .sub_title__wrapper .dec_animation{
    width: calc(20* (100vw / 402));
  }

  .product-img .big{
    width: calc(60* (100vw / 402));
  }

  .product-img .small{
    width: calc(40* (100vw / 402));
  }

  .product01 .product-img .big{
    top: calc(-20* (100vw / 402));
    right: calc(41* (100vw / 402));
  }

  .product01 .product-img .small{
    bottom: calc(-10* (100vw / 402));
    left: calc(41* (100vw / 402));
  }

  .product02 .product-img .big{
    top: calc(-40* (100vw / 402));
    left: calc(21* (100vw / 402));
  }

  .product02 .product-img .small{
    bottom: calc(-30* (100vw / 402));
    right: calc(41* (100vw / 402));
  }

  .product03 .product-img .big{
    top: calc(-40* (100vw / 402));
    right: calc(21* (100vw / 402));
  }

  .product03 .product-img .small{
    bottom: calc(-30* (100vw / 402));
    left: calc(41* (100vw / 402));
  }
}


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

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

.lp-barbour_251128 .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_251128 .product_link > a {
  width: 100%;
  height: 100%;
  line-height: 1.6666666667;
  padding: 2rem 0;
}

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

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

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

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

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

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

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

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

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


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

.lp-barbour_251128 .hero_inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.lp-barbour_251128 .hero_text {
  justify-content: center;
  margin: 0 auto;
}

.lp-barbour_251128 .hero_text_title {
  font-weight: var(--fw-medium);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--color-white);
  line-height: 1.5833333333;
  text-align: center;
}

.lp-barbour_251128 .hero_text_lead {
  width: fit-content;
  margin: 0 auto;
  line-height: 2;
  font-weight: var(--fw-medium);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--color-white);
}

@media screen and (min-width: 768px) {
  .lp-barbour_251128 .hero_inner {
    max-width: 1400px;
    padding: 18rem 0;
  }

  .lp-barbour_251128 .hero_text {
    width: 96rem;
  }

  .lp-barbour_251128 .hero_text_title {
    font-size: 2.4rem;
    margin-bottom: 6rem;
  }

  .lp-barbour_251128 .hero_text_lead {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 767px) {
  .lp-barbour_251128 .hero {
    width: 100%;
  }

  .lp-barbour_251128 .hero_inner {
    padding: calc(100* (100vw / 402)) 0;
  }

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

  .lp-barbour_251128 .hero_text_title {
    font-size: calc(24 * 100vw/402);
    margin-bottom: calc(60* (100vw / 402));
  }

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


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

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



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

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

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

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

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

/*
///////////////////////////////////////////////////////////////////////////////////////
setting - product
///////////////////////////////////////////////////////////////////////////////////////
*/

.lp-barbour_251128 .product_top_title {
  line-height: 1;
  font-family: var(--font-barbour-serif);
  font-weight: var(--fw-light);
  color: var(--color-white);
  text-align: center;
}

.lp-barbour_251128 .product_title{
  line-height: 1.9;
  font-weight: var(--fw-bold);
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}

.lp-barbour_251128 .product_lead {
  line-height: 2;
  font-weight: var(--fw-regular);
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}

.lp-barbour_251128 .viewall_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: var(--fw-medium);
  font-family: var(--font-barbour-sans);
  text-align: center;
  border: 1px solid var(--color-white);
  border-radius: 30px;
  background-color: var(--color-white);
  color: var(--color-green);
  transition: 0.3s;
}


/* _____ viewall_btn */
.lp-barbour_251128 .item_credit{
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-barbour_251128 .product01 .viewall_btn:hover{
  background: var(--color-beige);
  color: var(--color-white);
}

.lp-barbour_251128 .product02 .viewall_btn:hover,
.lp-barbour_251128 .product03 .viewall_btn:hover{
  background: var(--color-green);
  color: var(--color-white);
}

.lp-barbour_251128 .product04 .viewall_btn:hover{
  background: var(--color-red);
  color: var(--color-white);
}

.lp-barbour_251128 .viewall_btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: none;
}


/* _____   .lp-barbour_251128 .product01 .slide_img{
*/


@media screen and (min-width: 768px) {
  .lp-barbour_251128 .product01 .slide_img,
  .lp-barbour_251128 .product02 .slide_img,
  .lp-barbour_251128 .product03 .slide_img,
  .lp-barbour_251128 .product04 .product-img__inner{
    border-radius: 20px;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .lp-barbour_251128 .product01 .slide_img,
  .lp-barbour_251128 .product02 .slide_img,
  .lp-barbour_251128 .product03 .slide_img,
  .lp-barbour_251128 .product04 .product-img__inner{
    border-radius: 14px;
    overflow: hidden;
  }
}


/* _____ product04 */
.lp-barbour_251128 .product04 .product-img{
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.lp-barbour_251128 .product04 .product-img::after{
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/sc_ttl.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.lp-barbour_251128 .product02{
  position: relative;
}

.lp-barbour_251128 .product02::before{
  content: "";
  position: absolute;
  z-index: -10;
  top: 68px;
  left: 0;
  background-image: url(../img/bg_green.jpg);
  background-size: 100%;
  width: 100%;
  height: 100%;
}

.lp-barbour_251128 .product02::after{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #002B0B;
}

@media screen and (min-width: 768px) {
  .lp-barbour_251128 .product{
    padding: 22.7rem 0 18rem;
  }

  .lp-barbour_251128 .product03{
    padding: 18rem 0;
  }

  .lp-barbour_251128 .product_top_title{
    font-size: 6rem;
  }

  .lp-barbour_251128 .sub_title{
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .lp-barbour_251128 .product_title {
    font-size: 2rem;
    margin-bottom: 4rem;
  }

  .lp-barbour_251128 .product_lead{
    font-size: 1.7rem;
    margin-bottom: 8rem;
  }

  .lp-barbour_251128 .item_credit{
    margin-top: 8rem;
  }

  .lp-barbour_251128 .viewall_btn{
    width: 30.1rem;
    height: 6rem;
    font-size: 2rem;
  }

  .lp-barbour_251128 .product03 .viewall_btn{
    width: 26rem;
  }

  .lp-barbour_251128 .product04 .viewall_btn{
    width: 26rem;
  }



  /* _____ product01 */
  .lp-barbour_251128 .product01 .slide_img{
    width: 64rem;
    margin-right: 1rem;
  }

  /* _____ product02 */
  .lp-barbour_251128 .product02 .slide_img,
  .lp-barbour_251128 .product03 .slide_img{
    width: 36rem;
    margin-right: 1rem;
  }



  /* _____ product04 */
  .lp-barbour_251128 .product04 .product-img{
    padding-top: 19.1rem;
  }

  .lp-barbour_251128 .product04 .product-img::after{
    width: 48rem;
    height: 23.1rem;
  }

  .lp-barbour_251128 .product04 .product-img__inner{
    width: 120rem;
  }
}

@media screen and (max-width: 767px) {
  .lp-barbour_251128 .product01,
  .lp-barbour_251128 .product02{
    padding: calc(126* (100vw / 402)) 0 calc(80* (100vw / 402))!important;
  }

  .lp-barbour_251128 .product{
    padding: calc(126* (100vw / 402)) 0 calc(100* (100vw / 402));
  }

  .lp-barbour_251128 .sub_title__wrapper,
  .lp-barbour_251128 .product_title,
  .lp-barbour_251128 .product_lead,
  .lp-barbour_251128 .hero_text{
    width: calc(360* (100vw / 402));
    margin: 0 auto;
  }

  .lp-barbour_251128 .product_lead{
      width: calc(365* (100vw / 402));
  }

  .lp-barbour_251128 .product04 .product_lead{
    width: calc(335 * (100vw / 402));
  }

  .lp-barbour_251128 .sub_title__wrapper{
    margin-bottom: calc(80* (100vw / 402));
  }

  .lp-barbour_251128 .product_top_title{
    font-size: calc(40* (100vw / 402));
  }

  .lp-barbour_251128 .sub_title{
    font-size: calc(30 * (100vw / 402));
    line-height: 1.4;
    margin-bottom: calc(10 * (100vw / 402));
  }

  .lp-barbour_251128 .product_title{
    font-size: calc(18* (100vw / 402));
    line-height: 1.7777777778;
    margin-bottom: calc(40* (100vw / 402));
  }

  .lp-barbour_251128 .product_lead{
    font-size: calc(15* (100vw / 402));
    margin-bottom: calc(80* (100vw / 402));
  }

  .lp-barbour_251128 .item_credit{
    margin-top: calc(80* (100vw / 402));
  }

  .lp-barbour_251128 .viewall_btn{
    width: calc(251* (100vw / 402));
    height: calc(50* (100vw / 402));
    font-size: calc(18* (100vw / 402));
  }


  /* _____ product01 */
  .lp-barbour_251128 .product01 .slide_img{
    width: calc(360* (100vw / 402));
    margin-right: calc(6* (100vw / 402));
  }

  /* _____ product02 */
  .lp-barbour_251128 .product02 .slide_img,
  .lp-barbour_251128 .product03 .slide_img{
    width: calc(150* (100vw / 402));
    margin-right: calc(6* (100vw / 402));
  }

  /* _____ product04 */
  .lp-barbour_251128 .product04 .product-img{
    position: relative;
    z-index: 1;
    padding-top: calc(88* (100vw / 402));
  }

  .lp-barbour_251128 .product04 .product-img::after{
    width: calc(200* (100vw / 402));
    height: calc(96* (100vw / 402));
  }

  .lp-barbour_251128 .product04 .product-img__inner{
    width: calc(360* (100vw / 402));
  }
}


/*
///////////////////////////////////////////////////////////////////////////////////////
setting - loop_txt_slider
///////////////////////////////////////////////////////////////////////////////////////
*/

.loop_txt_slider{
  background-color: var(--color-white);
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .loop_txt_slider{
    padding: 5.5rem 0;
  }

  .loop_txt_slider .slide_img{
    width: 216.79rem;
    margin-right: 4rem;
  }

  .loop_txt:first-of-type{
    margin-bottom: 2.5rem;
  }
}

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

  .loop_txt_slider .slide_img{
    width: calc(1095* (100vw / 402));
    margin-right: calc(20* (100vw / 402));
  }

  .loop_txt:first-of-type{
    margin-bottom: calc(13* (100vw / 402));
  }
}

/*
///////////////////////////////////////////////////////////////////////////////////////
setting - anchor_link_area
///////////////////////////////////////////////////////////////////////////////////////
*/

.anchor_link_area a{
  font-family: var(--font-barbour-serif);
  font-weight: var(--fw-light);
  text-align: center;
  line-height: 1;
  color: var(--color-beige);
}

.anchor_link_area__inner{
  justify-content: center;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .anchor_link_area{
    padding: 10.5rem;
  }

  .anchor_link_area a{
    font-size: 4rem;
    line-height: 1.15;
  }

  .anchor_link_area .slide_img{
    width: 216.79rem;
    margin-right: 4rem;
  }

  .anchor_link_area__inner{
    column-gap: 14rem;
    width: 98.2rem;
  }
}

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

  .anchor_link_area a{
    font-size: calc(24* (100vw / 402));
  }

  .anchor_link_area .slide_img{
    width: calc(1095* (100vw / 402));
    margin-right: calc(20* (100vw / 402));
  }

  .anchor_link_area__inner{
    text-align: center;
    row-gap: calc(30* (100vw / 402));
  }
}

/*
///////////////////////////////////////////////////////////////////////////////////////
setting - animation
///////////////////////////////////////////////////////////////////////////////////////
*/
/* .lp-barbour_251128 .js-fade {
  opacity: 0;
  transform: translateY(20px);
}

.lp-barbour_251128 .js-fade.is-active {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.7s, transform 0.7s;
} */
