#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;
}

.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;
  font-family: 'Montserrat', sans-serif;
}

.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::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: #1d2082;
}

.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__heading a {
  text-decoration: none;
}

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

@media screen and (min-width: 600px) {
  #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;
  }
}

@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;
  }
}

.p-contents__freespace {
  margin: 20px 0;
}


/* ==========================
   PC・スマホ画像切り替え
========================== */

.sp-img {
  display: none;
}

.pc-img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  /* スマホ時にPC用画像を非表示 */
  .pc-img {
    display: none;
  }


  /* スマホ時にスマホ用画像を表示 */
  .sp-img {
    display: block;
    width: 100%;
  }
}

.top-main-visual {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .top-main-visual {
    margin-bottom: 16px;
  }
}

/* ==========================
   YouTube埋め込み
========================== */

.youtube-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0px auto 10px;
}

.youtube-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}


/* ==========================
   メインスライダー
========================== */

.gr-top-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.gr-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}

.gr-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.gr-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* スライダー */

/* ===========================
   スライダーナビ
=========================== */

.gr-slider-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    line-height:1;
}
.gr-top-slider + .gr-slider-nav + a .sp-img{
  margin-top:0 !important;
  margin-bottom:2px !important;
}

/* 矢印 */

.gr-slider-arrow{
    width:30px;
    height:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:none;
    background:none;
    color:#0B3D91;
    cursor:pointer;
    transition:.25s;
    padding:0;
}

.gr-slider-arrow:hover{
    color:#F4A100;
}

.gr-arrow{
    width:24px;
    height:24px;
}

/* ドット */

.gr-slider-dots{

    display:flex;
    margin:0;
    gap:8px;

}

/* 通常 */

.gr-dot{

    width:12px;
    height:4px;
    border:none;
    border-radius:999px;
    background:#D7D7D7;
    transition:all .25s ease;
    cursor:pointer;

}

/* 選択中 */

.gr-dot.is-active{

    width:24px;
    height::4px;
    background:#0B3D91;

}


@media screen and (max-width: 768px) {
  .gr-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .gr-prev {
    left: 12px;
  }

  .gr-next {
    right: 12px;
  }
}
/* ===== スライダー内SNS（スマホのみ） ===== */

.gr-sns-slider{
    position:absolute;
    right:0px;
    top:78%;
    transform:translateY(-50%);
    z-index:30;

    display:flex;
    flex-direction:column;

    background:#fff;
    border-radius:8px 0 0 8px;
    overflow:hidden;

    box-shadow:0 2px 8px rgba(0,0,0,.15);
}

.gr-sns-slider a{
    width:48px;
    height:50px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-bottom:1px solid #e9e9e9;
    text-decoration:none;
}

.gr-sns-slider a:last-child{
    border-bottom:none;
}

/* アイコン色 */
.gr-sns-slider .c-social-icon,
.gr-sns-slider .c-social-icon use{
    width:24px;
    height:24px;

    fill:#222 !important;
    color:#222 !important;
}

/* 押した時 */
.gr-sns-slider a:active{
    background:#f5f5f5;
}

/* PCでは表示しない */
@media (min-width:769px){

    .gr-sns-slider{
        display:none;
    }

}

  .c-product-list__detail{
    text-align:right;
    margin-top:8px;
  }

  .c-product-list__detail a{
    font-size:11px;
    color:#777;
  }

