@charset 'UTF-8';

.cmn_section:last-of-type{
  padding-bottom: 13.6rem;
}

/*  category  */
#category{
  padding: 5.0rem 0 3.0rem 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-wrap: wrap;
}
#category li{
  margin-bottom: 2.0rem;
}
#category li:not(:last-of-type){
  border-right: solid 1px rgb(51, 51, 51);
}
#category a{
  padding: .2em 1em;
  margin: -.3em 0;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: rgb(51, 51, 51);
}
@media screen and (min-width: 768px){
  #category a{
    font-size: 2.0rem;
  }
}
#category .current-cat a{
  color: rgb(249, 129, 162);
}

/*  .column  */
main>article .column{
  padding: 3.0rem calc(60 / 1200 * 100%);
  margin: 0 auto;
  max-width: 108.0rem;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  box-sizing: border-box;
}

/*  artlist  */
#artlist article{
  padding-top: 3.0rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  border-bottom: dotted 2px rgb(249, 129, 162);
}
#artlist article a{
  padding: 1.2rem 0 3.0rem 0;
  display: block;
}
#artlist article h2{
  padding: .3em 0;
  margin: 0;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#artlist article .desc{
  padding: .4em 0;
  font-size: 1.6rem;
  line-height: 1.8;
}
#artlist article .desc p{
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  text-align: justify;
}
#artlist article .meta{
  -webkit-box-ordinal-group: 0;
  order: -1;
  display: -webkit-box;
  display: flex;
}
#artlist article .cat ul{
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: flex;
}
#artlist article .cat li:not(:first-of-type){
  padding-left: .4rem;
}
#artlist article .cat a{
  padding: .25em 1.4rem;
  display: block;
  min-width: calc(13.0rem * 18 / 14);
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  color: rgb(249, 129, 162);
  background-color: rgb(254, 239, 242);
  box-sizing: border-box;
}

#artlist article time{
  padding: 0.35rem 1.5em;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/*  pagination  */
#pagination{
  padding-top: 6.0rem;
  padding-bottom: 3.0rem;
}
#pagination>div{
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#pagination .page,
#pagination .current{
  display: block;
  width: 2em;
  height: 2em;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
#pagination .current{
  font-weight: bold;
  color: rgb(11, 16, 87);
  text-decoration: underline;
  text-underline-offset: .5em;
  text-decoration-thickness: 4px;
  -webkit-text-decoration-color: rgb(249, 129, 162);
  text-decoration-color: rgb(249, 129, 162);
}
#pagination a[rel]{
  margin: 0 1em;
  display: block;
  width: 2em;
  height: 2em;
  overflow: hidden;
  white-space: nowrap;
}
#pagination a[rel]::before{
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgb(11, 16, 87) url(../images/ico_button.svg) no-repeat 50% 50%/auto 50%;
  border-radius: 50%;
}
#pagination a[rel='prev']::before{
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
