@charset "UTF-8";
/* =================================
 p_top_mv
 ================================= */
 .p_top_mv{
  position: relative;
  overflow: hidden;
  background: #f7f0e6;
  padding: 4rem 0;
}
.p_top_mv_inner {
  position: relative;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
  display: flex;
}
@media screen and (max-width: 1188px) {
  .p_top_mv_inner {
    flex-direction : column;
    padding: 0 24px;
  }
}


/* =================================
 p_top_mv_slide
 ================================= */
 .p_top_mv_slide {
  width: 60%;
  max-width: 600px;
}
.p_top_mv_slide .img {
  width: 100%;
  height: auto;
  display: block;
}
.p_top_mv_slide_item{
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 1188px) {
  .p_top_mv_slide {
    width: 100%;
    margin: 0 auto;
  }
}

/* =====================
  slick prev
===================== */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 0;
    display: block;
    height: 100%;
    width: 40px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 10;
}
.slick-prev:before,.slick-next:before {
    position: absolute;
    top: 45%;
    right: 0;
    width: 40px;
    height: 40px;
    transform: translate(0 , -50%);
    content: '';
    background: url(../img/slick_next.svg);
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all .2s ease-in-out;
}

.slick-prev {
    left : 8px;
}
.slick-next {
    right : 8px;
}

.slick-prev:before {
 transform: translate(0 , -50%) rotate(180deg);
}
.hover .slick-prev:hover:before,
.hover .slick-next:hover:before {
    background: url(../img/slick_next_2.svg);
}

@media screen and (max-width: 767px) {
    .slick-prev,
    .slick-next{
        width: 34px
    }
    .slick-prev:before,.slick-next:before{
        top: 110px;
        width: 34px;
        height: 34px
    }
}

/* =================================
 p_top_mv_rec
 ================================= */
.p_top_mv_rec {
  margin-left: 32px;
  flex: 1;
  
}
.p_top_mv_rec__ttl{
  background: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 2.2rem;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "Times New Roman", serif;
}
.p_top_mv_rec__list{
  position: relative;
}
@media screen and (max-width: 1188px) {
  .p_top_mv_rec {
    width: 100%;
    max-width: 708px;
    margin: 0 auto;
    margin-top: 24px;
  }
}

/* =================================
 p_top_mv_rec__card
 ================================= */
.p_top_mv_rec__card {
  display: flex;
  align-items: flex-start;
  padding: 0.8rem 1.6rem;
  background: #fff;
  border-top: 1px solid #a5a4a3;
  transition: all .2s ease-in-out;
}
.p_top_mv_rec__card-img {
  width: 35%;
  margin-right: 1.6rem;
  display: block;
  object-fit: cover;
}
.p_top_mv_rec__card-img .img{
  width: 100%;
}
.p_top_mv_rec__card-cont {
  width: calc(100% - 35% - 1rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p_top_mv_rec__card-date {
  font-size: 1.2rem;
  color: #808080;
  margin-bottom: 4px;
}

.p_top_mv_rec__card-txt {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.5;
}

.hover .p_top_mv_rec__card:hover{
  color: #1f2c5c;
  background: #e5ebf9;
  transform:translate(3px , 0);
}
/* =================================
 slick
 ================================= */
/* dotsの親：中央揃え */
.p_top_mv .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px; /* 丸同士の間隔（必要なら調整） */
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

/* dotのボタンを円形に */
.p_top_mv .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cccccc;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

/* active（現在）のdotの色変更 */
.p_top_mv .slick-dots li.slick-active button {
  background-color: #b47814;
}