@charset "utf-8";

/* ==================================
*
目次

# ブランドページ共通パーツ用スタイル
##ページヘッダー
##セクションタイトル
##ブランド概要セクション
##商品タイプ別セクション
##使える場所セクション
##商品ラインナップ一覧
##特設サイトへのリンクボタン
##レスポンシブ

# メラミン用スタイル
##モーダルボタン
##激落ちくんのプロフィール用モーダル
##使用時の注意点用モーダル
##汚れの落ちるメカニズムセクション
##レスポンシブ

# カビシリーズ用スタイル
##カビくんタブメニュー 
##タブコンテンツ
##レスポンシブ

*
================================== */

/* ==================================
*
  ブランドページ共通パーツ用スタイル
*
================================== */


/*ページヘッダー
================================== */
.brandPageHeader {
    overflow: hidden;
    margin-top: 45px;
    /* padding-top: 10px; */
    background-color: #fff;
    border-radius: 15px;
}

.brandPageHeader__img {
  width: 100%;
  height: auto;
}

.brandPageHeader__exp {
  padding: 20px 5%;
  text-align: center;
}

.brandPageHeader__subTitle {
  margin-bottom: 8px;
}

.brandPageHeader__title {
  font-size: 2.4rem;
  font-weight: bold;
}

/*セクションタイトル
================================== */

.brandContHeader {
  position: relative;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
  padding-top: 30px;
}

.brandContHeader__subTitle {
  margin-bottom: 5px;
}

.brandContHeader__title {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 2.4rem;
}

.brandContHeader__title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 96%;
  height: 3px;
  background-color: #000;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.brandIntro.brand-sesuki .brandContHeader__title::after {
  background-color: #fff;
}

/*ブランド概要
================================== */

.brandIntro {
  margin-top: 30px;
  padding-bottom: 50px;
  background-color: #fff;
  border-radius: 10px;
}

.brandIntro.brand-melamine {
  background-color: #D6F0FE;
}

.brandIntro.brand-mizu {
  background-color: #92d3e6;
}

.brandIntro.brand-sesuki {
  background-color: #5FB14E;
  color: #fff;
}

.brandIntro__bg {
  height: 100px;
  background-size: cover;
  border-radius: 10px 10px 0 0;
}

.brandIntro__bg.bg-sesuki {
  background-position: left 50% top 60%;
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_brandintro-sesuki.jpg);
}

.brandIntro__bg.bg-melamine {
  background-position: left 50% top 70%;
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_brandintro-melamine.jpg);
}

.brandIntro__bg.bg-mizu {
  background-position: center;
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_brandintro-mizu.jpg);
}

.brandIntro__bg.bg-kabikun {
  background-position: left 50% top 70%;
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_brandintro-kabikun.jpg);
}

.brandIntro__expWrap {
  width: 50%;
  margin: auto;
  font-weight: bold;
}

.brandIntro__exp {
  line-height: 2;
}

/*商品タイプ別セクション
================================== */

.productTypeWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 30px;
}

.productTypeCard {
  position: relative;
  width: 48.64%;
  border-radius: 10px;
  background-color: #fff;
}

.productTypeCard:nth-of-type(3),
.productTypeCard:nth-of-type(4) {
  margin-top: 50px;
}

.productTypeCard.type-liquid::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/brands-cat/bg_type-liquid.png);
  background-repeat: no-repeat;
  background-position: right;
  z-index: -1;
}

.productTypeCard.type-powder::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  width: 100%;
  height: 60px;
  background-image: url(../img/brands-cat/bg_type-powder.png);
  background-repeat: no-repeat;
  background-position: right;
  z-index: 1;
}

.productTypeCard.type-form::before {
  content: "";
  position: absolute;
  top: -35px;
  right: 0;
  width: 100%;
  height: 60px;
  background-image: url(../img/brands-cat/bg_type-form.png);
  background-repeat: no-repeat;
  background-position: right;
  z-index: -1;
}

.productTypeCard__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 12px 24px;
  font-weight: bold;
}

.productTypeCard__header.type-sheet {
  background-color: #f1f5f6;
  background-image: url(../img/brands-cat/bg_type-sheet.png);
  background-size: cover;
}

.productTypeCard__type {
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 40px;
  border-radius: 50px;
  text-align: center;
}

.productTypeCard__type.sesuki {
  background-color: #5FB14E;
  color: #fff;
}

.productTypeCard__type.mizu {
  background-color: #92d3e6;
  color: #fff;
}

.productTypeCard__typeTxt {
  position: relative;
  bottom: -4px;
  font-size: 80%;
}

.productTypeCard__typeNum {
  position: absolute;
  left: 50%;
  top: 17px;
  font-size: 2.1rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.productTypeCard__title {
  font-size: 2.1rem;
}

.productTypeCard__title-en {
  display: inline-block;
  margin-left: 20px;
  font-size: 1.2rem;
}

.productTypeCard__bg {
  padding: 20px;
  height: 280px;
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_living-room.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.productTypeCard__img {
  max-width: 100%;
  max-height: 100%;
  margin: auto; 
  width: auto;
}

.productTypeCard__expWrap {
  padding: 24px;
}

.productTypeCard__exp {
  line-height: 1.8;
}

/*使える場所セクション
================================== */

.variousUsesWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
}

.variousUsesWrap.col-3-adjust::after {
  content: "";
  display: block;
  width: 31.52%;
}

.variousUsesCard {
  position: relative;
  width: 31.52%;
  margin-bottom: 50px;
  -webkit-transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
  transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
  cursor: pointer;
}

.variousUsesWrap.col-2 {
  width: 80%;
  margin: auto;
}

.variousUsesCard.col-2 {
  width: 48.64%;
}

.variousUsesCard:hover {
  -webkit-transform: scale(.96);
  transform: scale(.96);
}

.variousUsesCard::after {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.28);
    /* background-color: rgba(0, 0, 0, 0.6); */
    /*border-radius: 100%;*/
    -webkit-transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: all 0.6s cubic-bezier(.165, .84, .44, 1);

}
 
.variousUsesCard__num {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  text-align: center;
}

.variousUsesCard__num::before {
  content: attr(data-numTxt);
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 4.8rem;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.variousUsesCard__inner {
    position: relative;
    background-size: cover;
    /* border-radius: 100%; */
    background-color: rgba(0, 0, 0, 0.28);
    -webkit-transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
}

.variousUsesCard__inner::before {
content: "";
    display: inline-block;
    padding-top: 100%;
    background-color: rgba(0, 0, 0, 0.28);
    border-radius: 0;
    -webkit-transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
    transition: all 0.6s cubic-bezier(.165, .84, .44, 1);

}

.variousUsesCard__inner.uses-kitchen {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_scene-kitchen.jpg);
}

.variousUsesCard__inner.uses-living {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_scene-living.jpg);
}

.variousUsesCard__inner.uses-clothing {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_scene-clothing.jpg);
}

.variousUsesCard__inner.uses-washstand {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_scene-washstand.jpg);
}

.variousUsesCard__inner.uses-food {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_scene-food.jpg);
}

.variousUsesCard__inner.uses-bauble {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_scene-bauble.jpg);
}

.variousUsesCard__inner.uses-pet {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_scene-pet.jpg);
}

.variousUsesCard__inner.uses-car {
  background-image: url(../img/brands-cat/bg_scene-car.jpg);
}

.variousUsesCard__inner.uses-bathroom {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/bg_scene-bathroom.jpg);
}

.variousUsesCard__header {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.variousUsesCard__title {
  /* font-size: 2.4rem; */
}

.variousUsesCard__expWrap {
    /* visibility: hidden; */
    position: absolute;
    top: 62%;
    padding: 5%;
    z-index: 2;
}


.variousUsesCard__exp {
  color: #fff;
  font-size: 1.3rem;
}

.variousUsesCard__inner.is-active {
  border-radius: 0;
  -webkit-transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
  transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
}

.variousUsesCard__inner.is-active .variousUsesCard__expWrap {
  visibility: visible;
  -webkit-transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
  transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
}

.variousUsesCard.is-active::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.28);
  border-radius: 0;
  -webkit-transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
  transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
}

/*商品ラインナップ一覧
================================== */

.lineUpHeader__title {
  margin-top: 20px;
  padding-left: 12px;
  border-left: 5px solid #000;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
}

.lineUpHeader__subTitle {
  display: inline-block;
  padding-left: 20px;
  font-size: 1.5rem;
}

.productLineUp {
  margin: 0 0 20px;
}

.lineUpCard__bg {
  padding: 20px;
  border-radius: 10px 10px 0 0;
  background-color: rgba(67, 192, 246, 0.2);
}

.lineUpCard__img {
  max-width: 100%;
}

.lineUpCard__title {
  padding: 12px 24px 24px;
  font-weight: bold;
}

/*特設サイトへのリンクボタン
================================== */

.goToSpecialSite__btn {
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  padding: 20px 120px;
  background-color: #f81b84;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  -webkit-transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
  transition: all 0.6s cubic-bezier(.165, .84, .44, 1);
}

.goToSpecialSite__btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-image: url(../img/common/icon_external-link-w.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.goToSpecialSite__btn:hover {
  -webkit-transform: scale(.96);
  transform: scale(.96);
}

/*その他の激落ちくんブランド
================================== */

.otherBrands { 
/*  background-color: #fff;*/
  padding-bottom: 50px;
}

.otherBrands__bg {
  min-height: 280px;
  background-image: url(https://lecinc.itembox.design/item/img/fv_gekiochi_2165.jpg);
  background-size: contain;
}

/*修正前
.otherBrands__bg {
  min-height: 380px;
  background-image: url(https://lecinc.itembox.design/item/img/fv_gekiochi_2165.jpg);
  background-size: cover;
}*/

.otherBrands__header {
  margin: 40px 0 0;
  text-align: center;
}

.otherBrands__subTitle {
  margin-bottom: 8px;
}

.otherBrands__title {
  font-size: 2.8rem;
  font-weight: bold;
}

.otherBrands__link {
  position: relative;
  padding: 24px;
  font-weight: bold;
}

.otherBrands__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-image: url(../img/common/icon_arrow-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.otherBrands__linkWrap.col-3-adjust::after {
  content: "";
  display: block;
  width: 31.52%;
}

/* ==================================
*
  ブランドページ共通パーツ レスポンシブ
*
================================== */

@media screen and (max-width: 991px) {

  .brandPageHeader__title,
  .brandContHeader__title,
  .lineUpHeader__title,
  .otherBrands__title {
    font-size: 2.1rem;
  }

  .brandIntro__expWrap {
    width: 70%;
  }

  .productTypeCard__header {
    padding: 12px 5%;
  }

  .productTypeCard__type {
    margin-right: 20px;
  }

  .productTypeCard__title {
    font-size: 1.8rem;
  }

  .productTypeCard__expWrap {
    padding: 24px 5%;
  }

  .variousUsesCard__num {
    top: -20px;
  }

  .variousUsesCard__num::before {
    font-size: 3.6rem;
  }

  .variousUsesCard__title {
    font-size: 1.8rem;
  }

  .lineUpCard__title {
    padding: 12px 5% 24px;
  }

  .otherBrands__link {
    padding: 16px 24px;
  }
}

@media screen and (max-width: 991px) {
  .brandPageHeader {
    margin-top: 70px;
  }

  .brandIntro__expWrap {
    width: 90%;
  }

  .productTypeCard__type {
    width: 40px;
    height: 40px;
  }

  .productTypeCard__typeNum {
    font-size: 1.6rem;
  }

  .variousUsesWrap.col-2 {
    width: 100%;
  }

  .variousUsesCard {
    width: 48.64%;
  }

  .otherBrands__bg {
    min-height: 250px;
  }
}

@media screen and (max-width: 991px) {
  .productTypeWrap {
    padding-top: 20px;
  }

  .productTypeCard:nth-of-type(3),
  .productTypeCard:nth-of-type(4) {
    margin-top: 0;
  }

  .productTypeCard {
    width: 100%;
    margin-bottom: 30px;
  }

  .productTypeCard:nth-of-type(4) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 481px) {

  .variousUsesCard,
  .variousUsesCard.col-2 {
    width: 100%;
  }

  .lineUpHeader__subTitle {
    display: none;
  }

  .goToSpecialSite__btn {
    width: 100%;
    padding: 16px;
  }

  .otherBrands__bg {
    min-height: 80px;
  }
}


/* ==================================
*
  メラミン用スタイル
*
================================== */

/*モーダルボタン
================================== */

.modalBtn {
    display: inline-block;
    padding: 12px 40px;
    margin: auto;
    background-color: #43c0f6;
    border-radius: 10px;
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .2);
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}
 
.brandIntro__profileBtnWrap {
  padding-top: 50px;
  text-align: center;
}

.brandIntro__profileBtn {
  position: relative;
}

.brandIntro__profileBtn::before {
  content: url(../img/brands-cat/gekiochikun-check.png);
  position: absolute;
  top: -40px;
  left: -110px;
}

/*激落ちくんのプロフィール用モーダル
================================== */

.profileModal {
  width: 100%;
  padding: 5%;
  background-color: #D6F0FE;
  border-radius: 10px;
  border: 2px solid #000;
}

.profileModal__imgWrap {
  text-align: center;
  margin: 20px 0;
}

.profileModal__table {
  width: 90%;
  margin: 30px auto 0;
  text-align: left;
  font-weight: bold;
}

.profileModal__th {
  position: relative;
  padding: 12px;
  background-color: #43c0f6;
  border-bottom: 1px solid #D6F0FE;
  color: #fff;
}

.profileModal__th::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #43c0f6;
}

.profileModal__td {
  padding: 12px 12px 12px 24px;
  background-color: #fff;
  border-bottom: 1px solid #D6F0FE;
}

/*激落ちくん 使用時の注意点
================================== */

.gekiochiAttention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 40px 0;
  padding: 30px 4% 40px;
  background-color: #D6F0FE;
  border-radius: 10px;
  border: 2px solid #000;
}

.gekiochiAttention__title {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
}

.gekiochiAttention__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 40%;
}

.gekiochiAttention__expWrap {
  width: 60%;
}

.gekiochiAttention__exp {
  line-height: 1.6;
}

/*激落ちくん 使用時の注意点用モーダル
================================== */

.attentionModal {
  width: 100%;
  padding: 40px 5% 5%;
  background-color: #D6F0FE;
  border-radius: 10px;
  border: 2px solid #000;
}

.attentionModal__list {
  margin-top: 20px;
  list-style: disc;
  list-style-position: inside;
}

.attentionModal__listItem {
  padding-top: 4px;
}

.attentionModal__title-forUse {
  margin: 20px 0 10px;
  font-size: 1.6rem;
  font-weight: bold;
}

.attentionModal__title-forUse.ok {
  color: #118411;
}

.attentionModal__title-forUse.ng {
  color: #FA0505;
}

.attentionModal__forUseExp {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

/*汚れの落ちるメカニズムセクション
================================== */

.aboutMechanism {
  background-color: #fff;
  border-radius: 10px;
  padding: 0 5% 15px;
  margin-top: 30px;
}

.aboutMechanism__contWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.aboutMechanism__exp {
  line-height: 2;
  font-weight: bold;
}

.aboutMechanism__exp-asterisk {
  margin-top: 20px;
  font-size: 1.2rem;
}

.aboutMechanism__expWrap {
  width: 60%;
  padding: 5% 0;
}

.aboutMechanism__imgWrap {
  width: 30%;
}




/* before&after 追加
================================== */





.brandContHeader_about {
    position: relative;
    text-align: center;
    font-weight: bold;
    padding-top: 30px;
    width: 60%;
}


.aboutMechanism__expWrap_about {
    width: 60%;
    padding: 2% 0;
}

.aboutMechanism__imgWrap_about {
    width: 35%;
    margin-top: -12%;
}













/* レスポンシブ
================================== */

@media screen and (max-width: 991px) {

  .modalCont__titleTxt {
    font-size: 2.1rem;
  }

  .modalCont__subTitle {
    font-size: 1.2rem;
  }

  .profileModal__img {
    width: 40%;
  }

  .gekiochiAttention {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .gekiochiAttention__expWrap {
    width: 100%;
  }

  .gekiochiAttention__btnWrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
  }

  .aboutMechanism__contWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .aboutMechanism__expWrap_about,
  .aboutMechanism__imgWrap_about {
    width: 100%;
  }

  .aboutMechanism__imgWrap {
    text-align: center;
  }
    
    
  .aboutMechanism__expWrap,
  .aboutMechanism__imgWrap {
    width: 100%;
  }

  .aboutMechanism__imgWrap_about {
    text-align: center;
  }
    
    .brandContHeader_about {
        position: relative;
        text-align: center;
        font-weight: bold;
        padding-top: 35px;
        width: auto;
    }
    
}

@media screen and (max-width: 600px) {
  .brandIntro__profileBtn::before {
    content: none;
  }
}

@media screen and (max-width: 481px) {
  .modalBtn {
    width: 90%;
    padding: 12px 20px;
    text-align: center;
  }

  .profileModal__table {
    width: 100%;
    margin: 20px auto 0;
    font-size: 1.2rem;
  }

  .profileModal__th {
    padding: 8px;
  }

  .profileModal__td {
    padding: 8px 8px 8px 16px;
  }

  .attentionModal__listItem {
    font-size: 1.1rem
  }

  .attentionModal__title-forUse {
    font-size: 1.4rem;
  }

  .attentionModal__forUseExp {
    font-size: 1.2rem
  }
}

/* ==================================
*
 カビシリーズ用スタイル
*
================================== */

/*カビくんタブメニュー 
================================== */

.kabikunTabList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  background-color: #fff;
}

.kabikunTabList::after {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  background-color: #e2e2e2;
}

.kabikunTabList__listItem.is-active {
  background-color: #e2e2e2;
}

.kabikunTabList__listItem {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 33.33333%;
  position: relative;
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
  cursor: pointer;
}

.kabikunTabList__listItem::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 16px;
  opacity: 0;
}

.kabikunTabList__listItem.tab-aka::before {
  background-color: #E4432D;
}

.kabikunTabList__listItem.tab-kuro::before {
  background-color: #000;
}

.kabikunTabList__listItem.tab-yobou::before {
  background-color: #37A2EA;
}

.kabikunTabList__listItem::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 9px 0 9px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
}

.kabikunTabList__listItem.tab-aka::after {
  border-color: #e4422d transparent transparent transparent;
}

.kabikunTabList__listItem.tab-kuro::after {
  border-color: #000 transparent transparent transparent;
}

.kabikunTabList__listItem.tab-yobou::after {
  border-color: #37A2EA transparent transparent transparent;
}

.kabikunTabList__listItem.is-active::after,
.kabikunTabList__listItem.is-active::before {
  opacity: 1;
}

.kabikunTabList__listTxt {
  display: block;
  position: relative;
  padding: 20px 5%;
}

.kabikunTabList__listTxt.tab-aka {
  color: #E4432D;
}

.kabikunTabList__listTxt::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 5px;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  background-size: contain;
}

.kabikunTabList__listTxt.tab-aka::before {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/icon_akakabikun.png);
}

.kabikunTabList__listTxt.tab-kuro {
  color: #000;
}

.kabikunTabList__listTxt.tab-kuro::before {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/icon_kurokabikun.png);
}

.kabikunTabList__listTxt.tab-yobou {
  color: #37A2EA;
}

.kabikunTabList__listTxt.tab-yobou::before {
  background-image: url(https://lecinc.itembox.design/item/html/gekiochi_lp/img/icon_kabiyobou.png);
}

/* タブコンテンツ
================================== */

.kabikunTabCont {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px 0 50px;
  background-color: #fff;
  border-radius: 10px;
}

.kabikunTabCont__expWrap,
.kabikunTabCont__imgWrap {
  width: 50%;
}

.kabikunTabCont__expWrap {
    padding: 60px 5%;
}

.kabikunTabCont__title {
  position: relative;
  padding: 0 10px 10px;
  border-bottom: 1px solid #000;
  font-size: 2.1rem;
  font-weight: bold;
}

.kabikunTabCont__title.title-aka::before {
  content: url(../img/brands-cat/icon_akakabikun.png);
  position: relative;
  left: 0;
  top: 5px;
  margin-right: 10px;
}

.kabikunTabCont__title.title-kuro::before {
  content: url(../img/brands-cat/icon_kurokabikun.png);
  position: relative;
  left: 0;
  top: 5px;
  margin-right: 10px;
}

.kabikunTabCont__title.title-yobou::before {
  content: url(../img/brands-cat/icon_kabiyobou.png);
  position: relative;
  left: 0;
  top: 5px;
  margin-right: 10px;
}

.kabikunTabCont__exp {
  margin-top: 16px;
  line-height: 2;
  font-weight: bold;
}

.kabikunTabCont__img {
  width: 100%;
  height: 100%;
}

/* レスポンシブ
================================== */

@media screen and (max-width: 991px) {
  .kabikunTabList__listTxt {
    font-size: 1.8rem;
  }

  .kabikunTabList__listTxt::before {
    top: 4px;
    width: 21px;
    height: 21px;
  }

  .kabikunTabCont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .kabikunTabCont__expWrap,
  .kabikunTabCont__imgWrap {
    width: 100%;
  }
}

@media screen and (max-width: 481px) {
  .kabikunTabList::after {
    height: 10px;
  }

  .kabikunTabList__listItem::before {
    height: 10px;
    bottom: -10px;
  }

  .kabikunTabList__listItem::after {
    bottom: -18px;
  }

  .kabikunTabList__listTxt {
    padding: 24px 5% 8px;
    font-size: 1.4rem;
  }

  .kabikunTabList__listTxt::before {
    position: absolute;
    top: 4px;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: 0 0 0 -9px;
  }
}

