@charset "UTF-8";
/*現在位置*/
.pc-nav li:nth-child(7) {
  color: #333333;
  font-weight: 700;
}

.blog-title {
  width: 100%;
  height: 400px;
  background-image: url(../img/photo/blog-FV.jpg);
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 64px;
}

.blog-title h2 {
  font-size: 3.2rem;
  font-weight: 700;
  max-width: 300px;
  width: 100%;
  height: auto;
  background-color: #fff;
  text-align: center;
  padding: 5px 40px;
}

/*スライダー*/
.autoplay {
  max-width: 59vw;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.autoplay div {
  margin: 0 8px;
  cursor: pointer;
}

.autoplay img {
  height: auto;
  margin: 0 auto;
  aspect-ratio: 4/3;
}

.slide1 a {
  width: 100%;
}

.slide-img {
  width: 100%;
}

.slide-arrow {
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 36%;
  cursor: pointer;
}

.prev-arrow {
  left: -50px;
}

.next-arrow {
  right: -50px;
}

.slick-dots {
  padding-top: 20px;
}

@media (max-width: 768px) {
  .autoplay {
    max-width: 80vw;
  }
  .prev-arrow {
    left: -30px;
  }
  .next-arrow {
    right: -30px;
  }
}

@media (max-width: 410px) {
  .slide-img {
    width: 60vw;
  }
  .slide-arrow {
    top: 35%;
  }
  .prev-arrow {
    left: 0px;
  }
  .next-arrow {
    right: 0px;
  }
}

/*記事一覧とサイド*/
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1120px;
  margin: 96px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 24px;
}

.wrapper h3 {
  font-weight: 700;
  display: block;
  padding: 8px 0;
  border-bottom: solid 2px #a1a1a1;
  margin-bottom: 24px;
}

.wrapper h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: -8px;
  margin-bottom: 4px;
}

.wrapper img {
  max-width: 288px;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}

.wrapper time {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

.blog-lists {
  width: 64.285%;
}

.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #cccccc;
}

.article-discription {
  padding-left: 16px;
  width: 40vw;
}

.line-clamp {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aside {
  width: 28.571%;
}

.aside p {
  padding: 8px 16px;
  background-color: #ffbb37;
  color: #fff;
  font-weight: 700;
}

.aside a {
  display: block;
  padding: 8px 12px;
  border-bottom: 2px solid #cccccc;
  position: relative;
}

.aside a::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 12px;
  width: 10px;
  height: 3px;
  background: #a1a1a1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.aside a::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 12px;
  width: 10px;
  height: 3px;
  background: #a1a1a1;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .blog-title {
    height: 206px;
    background-size: cover;
  }
  .blog-title h2 {
    font-size: 2.4rem;
  }
  .article-discription {
    width: 60vw;
  }
}

@media (max-width: 600px) {
  .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wrapper h4 {
    font-size: 1.6rem;
  }
  .article-content {
    width: 100%;
  }
  .blog-lists {
    width: 100%;
    margin-bottom: 64px;
  }
  .aside {
    width: 100%;
  }
  .article-discription {
    width: 80vw;
  }
}

@media (max-width: 375px) {
  .blog-lists {
    width: 100%;
    margin-bottom: 64px;
  }
  .blog-lists p {
    display: none;
  }
}

/*下層ページ*/
.breadcrumb {
  max-width: 1120px;
  padding: 0 24px;
  margin-top: -48px;
}

.article-content {
  margin-right: 56px;
  width: 64.285%;
}

.article-content h3 {
  margin-bottom: 48px;
}

.article-content img {
  margin-bottom: 24px;
}

.article-content .ore-btn {
  margin-top: 64px;
}

.article-content span {
  font-size: 1.2rem;
  font-weight: 500;
}

.article-content .article-img {
  text-align: center;
  margin: 36px 0 16px;
}

.article-content p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.category-title {
  margin-bottom: 0 !important;
}

.firstImg {
  margin-right: 32px;
}

.article-credit{
  text-align: right;
}

@media (max-width: 600px) {
  .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wrapper h4 {
    font-size: 1.6rem;
  }
  .article-content {
    margin-right: 0;
    width: 100%;
  }
  .article-content .ore-btn {
    margin-top: 24px;
    margin-bottom: 64px;
  }
}

@media (max-width: 1000px) {
  .firstImg {
    margin-right: 0;
  }
}
/*# sourceMappingURL=blog.css.map */