@charset "UTF-8";
.top_slider .slider{
  padding: 0 !important;
}

/*****************************
    買取商品 追加
*****************************/
.ok-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 40px auto;
}
.ok-item {
  position: relative;
  width: 28%;
  min-width: 240px;
  border: 1px solid #999;
  border-radius: 8px;
  padding: 20px 20px 20px 55px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
}
.ok-item .check {
  position: absolute;
  left: 4px;
  top: 10px;
  font-size: 56px;
  color: #e60012;
  line-height: 1;
}
.ok-item p {
  margin: 0;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .ok-item {
    width: 45%;
    min-width: 160px;
  }
  .ok-item .check {
    font-size: 40px;
    top: 20px;
    left: 10px;
  }
  .ok-item p {
    font-size: 14px;
  }
}

.wrp-selectcourse{
  background-color: #fff !important;
}

/*****************************
    ブログ カルーセル
*****************************/
.blogSwiperWrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /* padding: 50px 0; */
  background: #fff;
  overflow: hidden;
}
.blogSwiper {
  width: 100%;
  padding: 0 30px;
}
.swiper-slide {
  text-align: center;
}
.blog-slide-item {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}
.blog-slide-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-slide-thumb:hover {
  transform: scale(1.05);
}
.swiper-button-prev,
.swiper-button-next {
  color: #d00;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}


/*****************************
    フッター
*****************************/
.footer {
  background: #fff;
  padding: 50px 20px 80px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}
.footer-inner {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}
/* 左側 */
.footer-left {
  flex: 1;
  min-width: 300px;
}
.footer-logo {
  width: 180px;
  margin-bottom: 10px;
}
.footer-left p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-sns {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.footer-sns img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}
.footer-sns img:hover {
  opacity: 0.7;
}

/* 右側 */
.footer-right {
  flex: 2;
  min-width: 500px;
}
.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  font-size: 14px;
  line-height: 1.8;
}
.footer-nav a {
  text-decoration: none;
  color: #333;
}
.footer-nav a:hover {
  text-decoration: underline;
}

/* 右下のキャラ */
.scroll-top {
  position: absolute;
  right: 40px;
  bottom: 20px;
  text-align: center;
  font-size: 12px;
  color: #d00;
}
.scroll-top img {
  width: 80px;
  display: block;
  margin: 0 auto 5px;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }
  .footer-right {
    min-width: auto;
  }
  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
  .scroll-top {
    position: static;
    margin-top: 30px;
  }
}
