/* ラッパー全体 */
.carousel {
  position: relative;
  max-width: 1100px;   /* スライダー幅（任意で調整） */
  margin: 20px auto;
  overflow: hidden;    /* トラックがはみ出さないように */
}

/* トラック部分（横スクロール領域） */
.carousel__track {
  display: flex;
  gap: 16px;                      /* カード間の隙間 */
  overflow-x: auto;
  scroll-snap-type: x mandatory;  /* スナップスクロール有効 */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
}

/* スクロールバーを非表示（任意） */
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track { scrollbar-width: none; }

/* 各カード */
.card {
  flex: 0 0 auto;                 /* 幅固定で横に並ぶ */
  width: 200px;                   /* カード幅（スマホで調整可） */
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;       /* スナップ位置 */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  background: #fff;
  text-decoration: none;
}
.card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;            /* 正方形にしたい場合 */
  object-fit: cover;
}

/* 矢印ボタン */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: #333;
  z-index: 10;
}
.carousel__arrow.is-prev { left: 6px; }
.carousel__arrow.is-next { right: 6px; }

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .card { width: 140px; }
}
@media (max-width: 480px) {
  .card { width: 120px; }
}

.midashi {
  text-align: center;   /* 中央寄せ */
  font-weight: bold;    /* 太字 */
  font-size: 16px;      /* 見出しの大きさ */
  margin-top: 50px;     /* 上に50pxの余白 */
}

.p-top-logo {
  font-size: 20px;
  line-height: 1.4;
  max-width: 50%;
  margin: 20px auto;
  text-align: center;
}

.p-top-logo a {
  display: block;
  transition: opacity .2s;
  text-decoration: none;
  color: #333;
}

.p-top-logo a:hover {
  opacity: .66;
}

.p-top-logo a:active {
  opacity: 1;
}

.bx-viewport {
  overflow: inherit !important;
}

#slider-wrapper .bx-controls-direction a {
  z-index: 100;
}

#slider-wrapper .bx-viewport {
  top: 0;
  left: 0;
  border: 0;
  background: #f8f8f8;
  box-shadow: none;
}

#slider-wrapper .bx-wrapper img {
  margin: 0 auto;
}

#slider-wrapper .bx-caption {
  top: 0;
  bottom: auto;
  background: rgba(0, 0, 0, .3);
}

#slider-wrapper .bx-caption span {
  padding: 1.5em;
}

#slider-wrapper .bx-pager {
  bottom: 10px;
  padding-top: 0;
}

#slider-wrapper .bx-pager a {
  background: #fff;
}

#slider-wrapper .bx-pager a:hover,
#slider-wrapper .bx-pager a.active {
  background: #fd7f23;
}

.slide-item {
  background-position: center center !important;
  background-size: cover !important;
}
.slick-item01 {
    background: url("https://img21.shop-pro.jp/PA01493/201/etc/kotilabo_slide1_2.png?cmsp_timestamp=20230328175033");
  }
  .slick-item02 {
    background: url("https://img21.shop-pro.jp/PA01493/201/etc/kotilabo_slide2_3.png?cmsp_timestamp=20230425123222");
  }
  .slick-item03 {
    background: url("https://img21.shop-pro.jp/PA01493/201/etc/kotilabo_slide3_3.png?cmsp_timestamp=20230425124017");
  }
  .slick-item04 {
    background: url("https://img21.shop-pro.jp/PA01493/201/etc_base64/a290aWxhYm9fc2xpZGVfbGluZQ.jpg?cmsp_timestamp=20240918203134");
  }  
.slick-dots {
  bottom: -20px !important;
}
.slick-dots li button {
  width: 5px !important;
  height: 5px !important;
  padding: 5px !important;
  background: #f5f2eb !important;
  border-radius: 10px !important;
}
.slick-dots li {
  width: 5px !important;
  height: 5px !important;
  border-radius: 10px !important;
  margin: 0 8px !important;
}
.slick-dots li.slick-active button {
  background: #9B8C6C !important;
}


.topbanner {
  width: 370px;
  height: 170px;
  margin-bottom: 20px;
}

.topbanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
.sp_topbanner{
  text-align: center;
  padding: 10px 10px;
  background-color: #000000;
  color: #ffffff;
 }
.banner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 350px;
  margin: 0 auto;
  padding-top: 10px;
}
.topbanner {
width: 48%;
height: auto;
margin-bottom: 20px;
}
.pc-image {
display: none;
}
.mobile-image {
display: block;
}
}
@media (min-width: 601px) {
.sp_topbanner{
display: none;
}
.spbanner-container {
display: none;
}
.pc-image {
display: block;
}
.mobile-image {
display: none;
}
}
  
.p-news {
  line-height: 1.5;
  margin: 0;
}

.p-news::after {
  display: block;
  clear: both;
  content: '';
}

.p-news__label {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  width: 180px;
  margin: 0;
  letter-spacing: 1px;
}

.p-news__content {
  line-height: 1.6;
  margin: 5px 0 20px 10px;
}

.p-news__content p:nth-child(1) {
  margin-top: 0;
}

.p-news__label {
  font-family: 'Montserrat', sans-serif;
}

.p-news__label::before {
  content: '-';
}

.p-info {
  line-height: 1.5;
}

.p-contents {
  line-height: 1.5;
  margin-bottom: 40px;
}

.p-contents__list {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

.p-contents__list::after {
  display: block;
  clear: both;
  content: '';
}

.p-contents__list li {
  position: relative;
  box-sizing: border-box;
  padding: 0 2em 0 1em;
}

.p-contents__list li::before {
  position: absolute;
  top: .5em;
  left: 0;
  content: '-';
}

.p-contents__list a {
  display: block;
  max-width: 100%;
  padding: .5em 0;
  transition: opacity .2s;
  text-decoration: none;
  color: #333;
}

.p-contents__list a:hover {
  opacity: .66;
}

.p-contents__list a:active {
  opacity: 1;
}

.p-custom-banner {
  margin-top: 50px;
  text-align: center;
}

.p-custom-banner__unit {
  background: #f8f8f8;
}

.p-custom-banner__unit--text {
  font-family: 'Montserrat', sans-serif;
  padding: 30px 10px;
  color: #f8f8f8;
  background: #333;
}

.p-custom-banner__unit--text a {
  color: #f8f8f8;
}

.p-custom-banner__image {
  width: 100%;
}

.p-custom-banner__heading {
  font-size: 24px;
  padding: 10px 0;
}

.p-custom-banner__body {
  line-height: 1.5;
  padding: 10px 0;
}

@media screen and (min-width: 600px) {
  .p-top-logo {
    display: none;
  }

  #slider-wrapper .bx-pager {
    bottom: 30px;
  }

  .p-contents__list li::before {
    top: 0;
  }

  .p-contents__list li {
    float: left;
    width: 50%;
    margin-bottom: 20px;
  }

  .p-contents__list li:nth-child(2n + 1) {
    clear: left;
  }

  .p-contents__list a {
    display: inline-block;
    padding: 0;
  }

  .p-custom-banner {
    display: table;
    width: 100%;
    margin-top: 100px;
    table-layout: fixed;
  }

  .p-custom-banner__unit {
    display: table-cell;
    box-sizing: border-box;
    width: 50%;
    max-width: 50%;
    vertical-align: middle;
    word-break: break-all;
  }

  .p-custom-banner__unit--text {
    padding: 10px 20px;
  }

  .slick-item01 {
    background: url("https://img21.shop-pro.jp/PA01493/201/etc/kotilabo_slide1_2.png?cmsp_timestamp=20230328175033");
  }
  .slick-item02 {
    background: url("https://img21.shop-pro.jp/PA01493/201/etc/kotilabo_slide2_3.png?cmsp_timestamp=20230425123222");
  }
  .slick-item03 {
    background: url("https://img21.shop-pro.jp/PA01493/201/etc/kotilabo_slide3_3.png?cmsp_timestamp=20230425124017");
  }
  .slick-item04 {
    background: url("https://img21.shop-pro.jp/PA01493/201/etc_base64/a290aWxhYm9fc2xpZGVfbGluZQ.jpg?cmsp_timestamp=20240918203134");
  }  
}

@media screen and (min-width: 960px) {
  .p-news__label {
    float: left;
    clear: left;
    margin-right: 20px;
  }

  .p-news__content {
    overflow: hidden;
    margin: 0 0 20px;
  }

  .p-custom-banner__heading {
    font-size: 30px;
  }
}




.banner-container{
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    font-family: "Yu Gothic",YuGothic,"Hiragino Kaku Gothic ProN",Meiryo,"Open Sans",Helvetica,Arial,-apple-system,blinkMacSystemFont,sans-serif;
    line-height: 1.42857143;
    font-size: 16px;
    box-sizing: border-box;
    width: 100%;
    margin:20px auto 20px auto;
    max-width: 1100px;
}

@media screen and (max-width: 600px){
  .banner-container{
    width:95%;}
}


.banner-ul{

    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    padding: 0;
    list-style: none;
    width: 100%;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    margin: 0;
    -webkit-justify-content: space-around;
    
  
}

.banner-ul li{
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    list-style: none;
    box-sizing: border-box;
    border-radius: 5px;
    height: auto;
    overflow: hidden;
    width: calc(50% - 5px);
    margin-bottom: 15px;
    width:32%;
}

@media screen and (max-width: 600px){
.banner-ul li{
    width:48%;
  	margin-bottom: 10px;
  }
}

.banner-a{
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    list-style: none;
    box-sizing: border-box;
    transition: all .2s ease;
    text-decoration: none;
    display: -webkit-flex;
    -webkit-align-items: center;
    -webkit-justify-content: flex-start;
    color: #333;
    position: relative;
    background: #f8f4e6;
    letter-spacing: -1em;
    padding: 5px 20px 5px 5px;
    min-height: 50px;
    height: /*auto*/100%;
}

.banner-a:hover{
    color: #999;
}

.keyword{

-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: 100%;
list-style: none;
box-sizing: border-box;
display: inline-block;
vertical-align: middle;
font-weight: bold;
letter-spacing: normal;
width: calc(100% - 60px - 1em);
}

@media screen and (max-width: 600px){
  .keyword{
    font-size:12px;
    width: calc(100% - 40px - 1em);
}
}


.banner-ul img{

-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: 100%;
list-style: none;
letter-spacing: -1em;
box-sizing: border-box;
vertical-align: middle;
border: 0;
width: 60px;
height: 60px;
display: inline-block;
margin-right: 1em;

}

@media screen and (max-width: 600px){
  .banner-ul img{
 width: 40px;
height: 40px;
  }
}

@media screen and (min-width: 601px){
  .sp-br{
 display:none;
  }
}

/*PCのスライドバナー表示*/
  .slide-item {
    height: 480px !important;
  }

/*タブレットのスライドバナー表示*/
@media screen and (max-width: 1280px) {
 .slide-item {
    height: 240px !important;
  }
  
  /*スマホのスライドバナー表示*/
@media screen and (max-width: 600px) {
.slide-item {
  height: 130px !important;