@charset "UTF-8";

/* CONTENTS */
.inner {
  width: 102.4rem;
  max-width: 80%;
  margin: auto;
  position: relative;
  z-index: 0;
}

@media screen and (max-width:768px){
  .c-sp{
    display:block;
  }
}

/* HEADER */
.header{
  background: url(../../asset/images/header_sp_sub.png) no-repeat top left / cover;
}

.header-inner{
  width: 102.4rem;
  height: max(20rem,50vw);
  max-width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1.4rem;
}

.header-inner > h2{
  width: 9.6rem;
}

.header-inner > h2 > img{
  width: 100%;
}

.header-inner > p{
  font-size: 1.3rem;
  color: #C6A4CF;
  letter-spacing: 0.2vw;
}

/* POST LIST */
.post-list{
  padding: 13vw 0;
}

.post-list-inner{
  width: 102.4rem;
  max-width: 80%;
  margin: auto;
}

.post-box{border-bottom: 1px #C6A4CF solid;margin: 0 0 5rem;padding: 0 0 5rem;}

.post-contents{
  display: flex;
  flex-direction: column;
  gap: max(1.4rem,2.4vw);
  color: #313131;
}

.post-contents li:nth-of-type(1){
  width: 100%;
}

.post-contents li:nth-of-type(1) img{
  width: 100%;
  height: auto;
}

.post-contents li:nth-of-type(2){
  width: 100%;
}

.post-contents li:nth-of-type(2) h3{
  font-size: max(1.8rem,2.8vw);
  margin: 0 0 max(1rem,2vw);
  letter-spacing: 2.64px;
  line-height: 1.5;
}

.post-contents li:nth-of-type(2) p{
  font-size: max(1.2rem,2.2vw);
  letter-spacing: 1.56px;
}

/* POST DETAIL */
.post-detail{
  padding: 0 0 10vw;
}

.post-detail-inner{
  width: 102.4rem;
  max-width: 90%;
  margin: auto;
  display: flex;
  color: #313131;
  flex-direction: column;
}

.post-detail-inner__title{
  width: 100%;
}

.post-detail-inner__title > h2{
  font-size: max(1.6rem,2.6vw);
  margin: 0 0 1.5rem;
  line-height: 1.5;
  letter-spacing: 2.88px;
}

.post-detail-inner__title > p{
  font-size: max(1.2rem,2.2vw);
  letter-spacing: 1.8px;
}

.post-detail-inner__text{
  width: 100%;
  padding: 5rem 0 0;
}

.post-detail-inner__text > p{
  font-size: max(1.4rem,2.4vw);
  line-height: 1.7;
  margin: 0 0 max(3rem,6vw);
  letter-spacing: .9px;
}

.post-detail-pagenation{
  width: 100%;
  border-top: 1px #C6A4CF solid;
  display: flex;
  justify-content: end;
  padding: max(1rem,2vw) 0 0;
  margin: 0 0 max(3rem,6vw);
}

.post-pagenation-list{
  font-size: max(1.4rem,2.4vw);
  display: flex;
  color: #C6A4CF;
  flex-direction: row;
  gap: 4rem;
}

.post-pagenation-list li{
  font: 1em sans-serif;
}

.bt-view{
  width: 100%;
  text-align: right;
}

.view-all {
  position: relative;
  display: inline-block;
  font-size: max(1.4rem,2.4vw);
  color: #b990e1;
  padding: 2vw 0 2vw 1.2vw;
  letter-spacing: 1px;
}

.circle {
  width: max(5rem,8.5vw);
  height: max(5rem,8.5vw);
  position: absolute;
  top: 50%;
  left: -0.6rem;
  transform: translateY(-50%);
  z-index: 1;
}

circle {
  fill: none;
  stroke-width: 1.5px;
  transform: rotate(20deg);
  transform-origin: center;
}

.bg {
  stroke: #e8d8f4;
}

.fg {
  stroke: #B990E1;
  stroke-dasharray: 365;
  stroke-dashoffset: 365;
  transition: stroke-dashoffset 0.3s linear;
}

.view-all:hover .fg {
  stroke-dashoffset: 0;
}

.text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  top: 0;
  left: 0;
}

/* PAGENATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.pagination li span.current {
  background-color: #C6A4CF; /* デザインの紫に調整 */
  color: #fff;
  border-color: #C6A4CF;
}

.pagination li a:hover {
  background-color: #C6A4CF;
  color: #fff;
}

@media screen and (min-width: 769px) {
  /* HEADER */
  .header{
    background: url(../../asset/images/header_sub.png) no-repeat top left / cover;
  }

  .header-inner{
    width: 102.4rem;
    height: 18.6vw;
    max-width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 1vw;
  }

  .header-inner > h2{
    width: 9vw;
  }

  .header-inner > h2 > img{
    width: 100%;
  }

  .header-inner > p{
    font-size: 1.2vw;
    color: #C6A4CF;
    letter-spacing: 0.2vw;
  }

  /* POST LIST */
  .post-list{
    padding: 10vw 0;
  }

  .post-list-inner{
    width: 102.4rem;
    max-width: 80%;
    margin: auto;
  }

  .post-box{border-bottom: 1px #C6A4CF solid;margin: 0 0 4vw;padding: 0 0 4vw;}

  .post-contents{
    display: flex;
    flex-direction: row;
    gap: 2vw;
    color: #313131;
  }

  .post-contents li:nth-of-type(1){
    width: 30%;
  }

  .post-contents li:nth-of-type(1) img{
    width: 100%;
    height: auto;
  }

  .post-contents li:nth-of-type(2){
    width: 70%;
  }

  .post-contents li:nth-of-type(2) h3{
    font-size: 1.4vw;
    margin: 0 0 1vw;
    letter-spacing: 2.64px;
    line-height: 1.5;
  }

  .post-contents li:nth-of-type(2) p{
    font-size: 0.9vw;
    letter-spacing: 1.56px;
  }

  /* POST DETAIL */
  .post-detail{
    padding: 0 0 10vw;
  }

  .post-detail-inner{
    width: 102.4rem;
    max-width: 80%;
    margin: auto;
    display: flex;
    color: #313131;
    flex-direction: row;
    gap: 5vw;
  }

  .post-detail-inner__title{
    width: 30%;
  }

  .post-detail-inner__title > h2{
    font-size: max(1.5rem,1.5vw);
    margin: 0 0 1vw;
    letter-spacing: 2.88px;
  }

  .post-detail-inner__title > p{
    font-size: max(1rem,1vw);
    letter-spacing: 1.8px;
  }

  .post-detail-inner__text{
    width: 70%;
    padding: 10vw 0 0;
  }

  .post-detail-inner__text > p{
    font-size: max(1rem,1vw);
    line-height: 1.7;
    margin: 0 0 5vw;
    letter-spacing: .9px;
  }

  .post-detail-pagenation{
    width: 100%;
    border-top: 1px #C6A4CF solid;
    display: flex;
    justify-content: end;
    padding: 1vw 0 0;
    margin: 0 0 2vw;
  }

  .post-pagenation-list{
    font-size: max(1rem,1vw);
    display: flex;
    color: #C6A4CF;
    flex-direction: row;
    gap: 5vw;
  }

  .post-pagenation-list li{
    font: 1em sans-serif;
  }

  .bt-view{
    width: 100%;
    text-align: right;
  }

  .view-all {
    position: relative;
    display: inline-block;
    font-size: max(1rem,1vw);
    color: #b990e1;
    padding: 2vw 0 2vw 1.2vw;
    letter-spacing: 1px;
  }

  .circle {
    width: max(3.8rem,4vw);
    height: max(3.8rem,4vw);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
  }

  circle {
    fill: none;
    stroke-width: 1.5px;
    transform: rotate(20deg);
    transform-origin: center;
  }

  .bg {
    stroke: #e8d8f4;
  }

  .fg {
    stroke: #B990E1;
    stroke-dasharray: 365;
    stroke-dashoffset: 365;
    transition: stroke-dashoffset 0.3s linear;
  }

  .view-all:hover .fg {
    stroke-dashoffset: 0;
  }

  .text {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    top: 0;
    left: 0;
  }

  /* PAGENATION */
  .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 40px 0;
  }

  .pagination li a,
  .pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }

  .pagination li span.current {
    background-color: #C6A4CF; /* デザインの紫に調整 */
    color: #fff;
    border-color: #C6A4CF;
  }

  .pagination li a:hover {
    background-color: #C6A4CF;
    color: #fff;
  }
}
