@charset "UTF-8";
/* CSS Document */

.sec1 {
  width: 90%;
  max-width: 700px;
  margin: 200px auto 100px;
}

.sec1__p {
  font-weight: 900;
  font-family: var(--en);
  margin-bottom: 10px;
}

.sec1__h2 {
  font-size: 4rem;
  margin-bottom: 50px;
}

.sec7__wapper__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 70px;
}

.sec7__wapper__right__li {
  width: 100%;
}

.sec7__wapper__right__li__a {
  padding: 22.5px 5%;
  background: #F6EFDC;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: 0.5s;
  transition-timing-function: ease-out;
}

.sec7__wapper__right__li__a:hover {
  background: #232323;
  color: #F6EFDC;
}

.sec7__wapper__right__li__a time {
  display: block;
  width: 100px;
}

.sec7__wapper__right__li__a h3 {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.sec7__wapper__right__li__a div {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #232323;
  margin-left: 20px;
  transition: 0.5s;
  transition-timing-function: ease-out;
}

.sec7__wapper__right__li__a:hover div {
  background: #F6EFDC;
}

.sec7__wapper__right__li__a div img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 15px;
  height: 15px;
  transition: 0.5s;
  transition-timing-function: ease-out;
}

.sec7__wapper__right__li__a:hover div img:nth-child(2) {
  opacity: 0;
}


@media (max-width: 1024px) {
  .sec1 {
    margin: 150px auto 75px;
  }

  .sec1__h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
  }

  .sec7__wapper__right__li__a time {
    font-size: 1.4rem;
    width: 80px;
  }
}


@media (max-width: 600px) {
  .sec1 {
    margin: 125px auto 50px;
  }

  .sec1__h2 {
    font-size: 3rem;
  }

  .sec7__wapper__right__li__a time {
    font-size: 1.3rem;
    width: 70px;
  }

  .sec7__wapper__right__li__a h3 {
    font-size: 1.4rem;
  }

  .sec7__wapper__right__li__a div {
    width: 30px;
    height: 30px;
    margin-left: 10px;
  }

  .sec7__wapper__right__li__a div img {
    width: 10px;
    height: 10px;
  }
}


/* アーカイブページナビ用 */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.wp-pagenavi .previouspostslink {
  position: absolute !important;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
}

.wp-pagenavi .nextpostslink {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
  color: #CCBE9E !important;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.wp-pagenavi a:hover {
  color: #232323 !important;
}

.wp-pagenavi span.current {
  color: #232323 !important;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 50px;
  background: #232323;
  color: #232323 !important;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  scale: 1.1;
}

.wp-pagenavi .previouspostslink::after {
  content: "";
  display: block;
  background-image: url(../images/common/arrow-after.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.wp-pagenavi .nextpostslink::after {
  content: "";
  display: block;
  background-image: url(../images/common/arrow-after.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}