@charset "UTF-8";


/*
=======================================
= Animaton
=======================================
*/
.js-effect {
  opacity: 0;
  will-change: opacity, transform;
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadeIn      { transform: none; }
.fadeInUp    { transform: translateY(40px); }
.fadeInDown  { transform: translateY(-40px); }
.slideLeft   { transform: translateX(-50px); }
.slideRight  { transform: translateX(50px); }
.zoomIn      { transform: scale(0.9); }
.zoomInDown  { transform: scale(1.2) translateY(-60px); }
.zoomInUp    { transform: scale(1.2) translateY(60px); }
.blur        { filter: blur(10px); transform: scale(1.05); }

.bounceInUp    {
  transform: translateY(100px); transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bounceInDown  {
  transform: translateY(-100px); transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bounceInLeft  {
  transform: translateX(-100px);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.bounceInRight {
  transform: translateX(100px);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes rubberBand {
  0% { transform: scale(1); }
  30% { transform: scaleX(1.25) scaleY(0.75); }
  40% { transform: scaleX(0.75) scaleY(1.25); }
  60% { transform: scaleX(1.15) scaleY(0.85); }
  100% { transform: scale(1); }
}
@keyframes heartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}

.js-effect.is-show.bounceIn   {
  animation: bounceIn 0.8s both;
}
.js-effect.is-show.rubberBand {
  animation: rubberBand 0.8s both;
  opacity: 1;
}
.js-effect.is-show.heartBeat  {
  animation: heartBeat 1.3s ease-in-out both;
  opacity: 1;
}
.js-effect.is-show {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
  filter: blur(0) !important;
  animation-delay: inherit;
}

.reveal {
  position: relative;
  display: inline-block;
  color: transparent;
  transition: color 0s 0.4s;
}
.reveal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-black);
  z-index: -1;
}
.reveal.is-animated {
  color: var(--color-white);
}
.reveal-exit.is-animated::after {
  animation: reveal-exit-anim 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes reveal-exit-anim {
  0%   { width: 0; left: 0; }
  50%  { width: 100%; left: 0; }
  100% { width: 0; left: 100%; }
}

.reveal-stay.is-animated::after {
  animation: reveal-stay-anim 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes reveal-stay-anim {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* Delay classes */
.delay-1  { transition-delay: 0.1s !important; animation-delay: 0.1s !important; }
.delay-2  { transition-delay: 0.2s !important; animation-delay: 0.2s !important; }
.delay-3  { transition-delay: 0.3s !important; animation-delay: 0.3s !important; }
.delay-4  { transition-delay: 0.4s !important; animation-delay: 0.4s !important; }
.delay-5  { transition-delay: 0.5s !important; animation-delay: 0.5s !important; }
.delay-6  { transition-delay: 0.6s !important; animation-delay: 0.6s !important; }
.delay-7  { transition-delay: 0.7s !important; animation-delay: 0.7s !important; }
.delay-8  { transition-delay: 0.8s !important; animation-delay: 0.8s !important; }
.delay-9  { transition-delay: 0.9s !important; animation-delay: 0.9s !important; }
.delay-10 { transition-delay: 1.0s !important; animation-delay: 1.0s !important; }
.delay-12 { transition-delay: 1.2s !important; animation-delay: 1.2s !important; }
.delay-14 { transition-delay: 1.4s !important; animation-delay: 1.4s !important; }
.delay-16 { transition-delay: 1.6s !important; animation-delay: 1.6s !important; }
.delay-18 { transition-delay: 1.8s !important; animation-delay: 1.8s !important; }
.delay-20 { transition-delay: 2.0s !important; animation-delay: 2.0s !important; }


/* hover Animation */
.ov-action-non .ov-action__ttl span,
.ov-action .ov-action__ttl span {
  background-image: linear-gradient(#222, #222);
  background-repeat: no-repeat;
  transition: background-size 0.6s cubic-bezier(0.17, 0.935, 0.305, 1);
}
.ov-action-non .ov-action__ttl span {
  background-position: 100% 100%;
  background-size: 0% 1px;
}
.ov-action-non:hover .ov-action__ttl span {
  background-position: 0% 100%;
  background-size: 100% 1px;
}
.ov-action .ov-action__ttl span {
  background-position: 0% 100%;
  background-size: 100% 1px;
}
.ov-action:hover .ov-action__ttl span {
  background-position: 100% 100%;
  background-size: 0% 1px;
}
.ov-action-non .ov-action__thumb img,
.ov-action .ov-action__thumb img {
  transition: transform 0.4s cubic-bezier(0.17, 0.935, 0.305, 1);
}
.ov-action-non:hover .ov-action__thumb img,
.ov-action:hover .ov-action__thumb img {
  transform: scale(1.1);
  opacity: .8;
}


/*
=======================================
= Swiper
=======================================
*/
.swiper-wrap { position: relative; }
.swiper-button-next,.swiper-button-prev {
  background-image: none;
}
.swiper-button-prev,.swiper-button-next {
  display: grid;
  cursor: pointer;
  place-content: center;
  transform: scale(1);
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .2);
  background-color:var(--color-white);
  transition: 0.3s ease all;
  z-index: 2;
}
.swiper-button-prev::after,.swiper-button-next::after {
  background-size: 1rem auto;
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.swiper-button-prev::after {
  background-image: url("../img/icon/prev-arrow.svg");
}
.swiper-button-next::after {
  background-image: url("../img/icon/next-arrow.svg");
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  border: 1px solid rgba(0, 0, 0, .4);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
}
@media screen and (max-width: 960px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 4.8rem;
    height: 4.8rem;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    background-size: 8px auto;
    width: 8px;
    height: 8px;
  }
}

/* Swiper Controller */
.swiper-controller {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}
.swiper-controller .swiper-button-next,
.swiper-controller .swiper-button-prev {
  position: relative;
  top: auto;
  margin-top: auto;
}
.swiper-controller .swiper-button-prev {
  left: auto;
  margin-right: 24px;
}
.swiper-controller .swiper-button-next {
  right: auto;
  margin-left: 24px;
}
.swiper-controller .swiper-pagination {
  position: relative;
  text-align: center;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination-bullet {
  background-color: var(--color-white);
  opacity: .3;
}
.swiper-controller .swiper-horizontal>.swiper-pagination-bullets,
.swiper-controller .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-controller .swiper-pagination-custom,
.swiper-controller .swiper-pagination-fraction {
  width: auto;
}
.swiper-controller .swiper-pagination-bullet-active {
  background: var(--color-white);
}

/*
=======================================
= Btn
=======================================
*/

/* Link btn
---------------------------------*/
.link-btn {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-width: 26rem;
  padding: 3rem 2.4rem;
  overflow: hidden;
  color: var(--color-white);
  background-color: var(--color-black);
  border: 1px solid transparent;
  border-radius: .8rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04rem;
  line-height: 1.2;
  transition:
    background-color .3s cubic-bezier(.43, .05, .17, 1),
    border-color .3s cubic-bezier(.43, .05, .17, 1);
}
/* Txt */
.link-btn .text-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  line-height: 1.2;
}
.link-btn .normal,
.link-btn .hover {
  display: block;
  white-space: nowrap;
  transition:
    transform .45s cubic-bezier(.43, .05, .17, 1),
    opacity .3s ease;
  will-change: transform;
}
.link-btn .normal {
  color: var(--color-white);
  transform: translateY(0);
}
.link-btn .hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-black);
  transform: translateY(-110%);
}
/* Arrow */
.link-btn .arrow {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  overflow: hidden;
  background-color: transparent;
  border-radius: 50%;
  transition:
    background-color .45s cubic-bezier(.43, .05, .17, 1),
    transform .45s cubic-bezier(.43, .05, .17, 1);
}
.link-btn .arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-black);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .45s cubic-bezier(.43, .05, .17, 1);
}
.link-btn .arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.43, .05, .17, 1);
}
.link-btn .arrow svg {
  position: relative;
  z-index: 2;
  width: .8rem;
  height: .8rem;
  color: var(--color-white);
  fill: currentColor;
  transition:
    transform .45s cubic-bezier(.43, .05, .17, 1),
    opacity .25s ease,
    color .3s ease;
}
/* White Btn */
.link-btn.white {
  color: var(--color-black);
  background-color: var(--color-white);
  border-color: var(--color-white);
}
.link-btn.white .normal {
  color: var(--color-black);
}
.link-btn.white .hover {
  color: var(--color-white);
}
.link-btn.white .arrow::before {
  background-color: var(--color-white);
}
.link-btn.white .arrow::after {
  border-color: var(--color-black);
}
.link-btn.white .arrow svg {
  color: var(--color-black);
}
/* Hover */
@media (hover: hover) {
  .link-btn:hover,
  .link-btn:focus-visible {
    background-color: var(--color-white);
    border-color: var(--color-black);
  }
  .link-btn:hover .normal,
  .link-btn:focus-visible .normal {
    transform: translateY(110%);
  }
  .link-btn:hover .hover,
  .link-btn:focus-visible .hover {
    transform: translateY(0);
  }
  .link-btn:hover .arrow,
  .link-btn:focus-visible .arrow {
    transform: scale(1.08);
  }
  .link-btn:hover .arrow::before,
  .link-btn:focus-visible .arrow::before {
    transform: scale(1);
  }
  .link-btn:hover .arrow::after,
  .link-btn:focus-visible .arrow::after {
    opacity: 0;
    transform: scale(1.45);
  }
  .link-btn:hover .arrow svg,
  .link-btn:focus-visible .arrow svg {
    animation: linkArrowSlide .55s cubic-bezier(.43, .05, .17, 1);
  }
  /* White Button Hover */
  .link-btn.white:hover,
  .link-btn.white:focus-visible {
    color: var(--color-white);
    background-color: var(--color-black);
    border-color: var(--color-white);
  }
  .link-btn.white:hover .arrow::before,
  .link-btn.white:focus-visible .arrow::before {
    background-color: var(--color-white);
    transform: scale(1);
  }
  .link-btn.white:hover .arrow::after,
  .link-btn.white:focus-visible .arrow::after {
    opacity: 0;
    border-color: var(--color-white);
    transform: scale(1.45);
  }
  .link-btn.white:hover .arrow svg,
  .link-btn.white:focus-visible .arrow svg {
    color: var(--color-black);
    animation: linkArrowSlide .55s cubic-bezier(.43, .05, .17, 1);
  }

  @keyframes linkArrowSlide {
    0% {
      opacity: 1;
      transform: translateX(0);
    }
    45% {
      opacity: 0;
      transform: translateX(.8rem);
    }
    46% {
      opacity: 0;
      transform: translateX(-.8rem);
    }
    100% {
      opacity: 1;
      transform: translateX(.18rem);
    }
  }
}

@media (hover: none) {
  .link-btn:active {
    transform: scale(.95);
  }
}

@media screen and (max-width: 960px) {
  .link-btn {
    min-width: 22rem;
    padding: 2.4rem 2rem;
    font-size: 1.3rem;
  }
}

.c-btn {
  text-align: center;
  margin-top: 8rem;
}
@media screen and (max-width: 960px) {
  .c-btn {
    margin-top: 4rem;
  }
}



/*
=======================================
= Category/Tag
=======================================
*/
.entry-meta {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: .8rem;
}
/* .entry-meta .entry-client,
.entry-meta .entry-date{
  padding-right: 1.2rem;
  margin-right: 1.2rem;
  position: relative;
}
.entry-meta .entry-client:after,
.entry-meta .entry-date:after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  content: "";
  width: 1px;
  height: 14px;
  transform: translateY(-50%);
  border-right: rgba(0, 0, 0, .2) solid 1px;
} */

.entry-meta .entry-client,
.entry-meta .entry-date{
  padding-right: 1.2rem;
}
@media only screen and ( max-width:960px) {
  .entry-meta {
    font-size: 1rem;
  }
}

/* entry-category */
.entry-category,
.entry-category-nolink {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}
.entry-category li a,
.entry-category-nolink li {
  display: inline-flex;
  align-items: center;
  padding: .5rem .8rem .4rem;
  border: .1rem solid #888;
  border-radius: 999px;
  color: inherit;
  /* background: #fff; */
  transition:
    color .3s ease,
    background-color .3s ease,
    border-color .3s ease;
}
.mv-slider .entry-category li a,
.mv-slider .entry-category-nolink li {
  border: .1rem solid #fff;
  color: #fff;
}

/* hover */
@media (hover: hover){
  .entry-category li a:hover,
  .entry-category li a:focus-visible {
    color: #fff;
    background-color: var(--color-black);
    border-color: var(--color-black);
  }

}


/* SP tap */
@media (hover: none){
  .entry-category li a:active {
    opacity: .7;
  }
}
/* .entry-category-nolink li{
  display: inline-flex;
  letter-spacing: 0;
} */

/* entry-taglist */
.entry-taglist,
.entry-taglist-nolink,
.entry-round-taglist {
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.22;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 10px;
  z-index: 2;
}
.entry-taglist a {
  color:var(--color-black);
  display: inline-block;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  position: relative;
  z-index: 2;
}
.entry-taglist a:hover {
  opacity: .4;
}
.entry-taglist-nolink li {
  /* color: var(--color-black); */
  position: relative;
}
.entry-taglist a:before,
.entry-taglist-nolink li:before {
  content: '#';
  color: inherit;
  padding-right: 0.2em;
  vertical-align: middle;
}
.entry-round-taglist a {
  color:var(--color-black);
  border-radius: 60px;
  display: inline-block;
  border: rgba(255, 255, 255, .12) solid 1px;
  background-color: var(--color-white);
  padding: .8rem .8rem .6rem;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
  position: relative;
  z-index: 2;
}
.entry-round-taglist li a:before {
  content: '#';
  color: var(--color-black);
  padding-right: 0.3em;
}
.entry-round-taglist li a:hover {
  border:1px solid var(--color-black);
  background: var(--color-black);
  color:var(--color-white);
}
.entry-round-taglist li a:hover::before {
  color: var(--color-white);
}

@media only screen and ( max-width:960px) {
  .entry-category,.entry-category-nolink{
    font-size: 1rem;
  }
  .entry-taglist,.entry-round-taglist{
    font-size: 1rem;
  }
}


/*=======================================
  Filter
=======================================*/
.filter-box {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 6rem;
  /* background: var(--color-white); */
  border:1px solid var(--border-color-gray);
  border-radius: var(--border-radius-8);
  margin-bottom:8rem;
}
.filter-box.works-box{
  margin-bottom:4rem;
}

.filter-title {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

/*=======================================
  Filter List
=======================================*/

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.filter-list li a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.8rem;
  min-width:11rem;
  min-height:5.8rem;
  padding:1.5rem 2.4rem;
  font-size:1.4rem;
  color:var(--color-black);
  background:var(--color-white);
  border:1px solid var(--border-color-gray);
  border-radius:var(--border-radius-8);
  transition:
    color .3s cubic-bezier(.43,.05,.17,1),
    background-color .3s cubic-bezier(.43,.05,.17,1),
    border-color .3s cubic-bezier(.43,.05,.17,1);
}
.filter-list li a::after{
  content:"";
  width:.9rem;
  height:.9rem;
  flex-shrink:0;
  background-color: var(--color-black);
  -webkit-mask-image: url("../img/icon/next-arrow-w.svg");
  mask-image: url("../img/icon/next-arrow-w.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition:transform .35s cubic-bezier(.43,.05,.17,1),background-color .3s cubic-bezier(.43,.05,.17,1);
}
.filter-list.page-link-list li a::after{
  -webkit-mask-image: url("../img/icon/down-arrow-w.svg");
  mask-image: url("../img/icon/down-arrow-w.svg");
}
.filter-text{
  display:block;
  overflow:hidden;
  height:1.4em;
  line-height:1.4;
}
.filter-text span{
  display:block;
  line-height:1.4;
  text-shadow:0 -1.4em 0 currentColor;
  transition:transform .4s cubic-bezier(.43,.05,.17,1);
  will-change:transform;
}
.filter-list li.is-current a{
  color:var(--color-white);
  background:var(--color-black);
  border-color:var(--color-black);
}
.filter-list li.is-current a::after{
  background:#fff;
}

@media (hover: hover) {
  .filter-list li a:hover,
  .filter-list li a:focus-visible{
    color:var(--color-white);
    background:var(--color-black);
    border-color:var(--color-black);
  }
  .filter-list li a:hover .filter-text span,
  .filter-list li a:focus-visible .filter-text span{
    transform:translateY(1.4em);
  }
  .filter-list li.current-cat a:hover,
  .filter-list li.current-menu-item a:hover,
  .filter-list li.is-current a:hover{
    color:var(--color-black);
    background:var(--color-white);
    border-color:var(--color-black);
  }
  .filter-list li a:hover::after{
    background-color:var(--color-white);
  }
}
@media (hover: none) {
  .filter-list li a:active{
    transform: scale(.95);
  }
}

@media screen and (max-width: 960px) {
.filter-box{
    flex-direction:column;
    align-items:flex-start;
    gap:1.6rem;
    padding:2rem 2rem;
    margin-bottom:4.8rem;
  }
  .filter-box.works-box{
    margin-bottom:2.4rem;
  }
  .filter-title{
    font-size:1.4rem;
  }
  .filter-list{
    gap:.8rem;
  }
  .filter-list li a{
    min-width:auto;
    min-height:4.6rem;
    padding:1.3rem 1.8rem;
    font-size:1.2rem;
  }
}


/*
=======================================
= Wordpress
=======================================
*/
/* WordPress Specific */
body.admin-bar #header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar #header {
    top: 46px;
  }
}

/* wp-pagenavi
---------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-top: 8rem;
  font-family: var(--font-family-en);
}
.wp-pagenavi .pages {
	display: none
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  background-color: var(--color-white);
  border: 1px solid var(--border-color-gray);
  border-radius: 100%;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin: 2px 1px;
  height: 50px;
  width: 50px;
  position: relative;
}
.wp-pagenavi .current {
  border: 1px solid  var(--color-black);
  background:  var(--color-black);
  color: var(--color-white);
}
.wp-pagenavi .page:hover,
.wp-pagenavi .last:hover {
  background: var(--color-white);
  border: 1px solid  var(--color-black);
  color:  var(--color-black);
}
.wp-pagenavi .extend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1rem;
  height: .2rem;
  margin: 0 .8rem
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--border-color-gray);
  border-radius: 5rem;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url(../img/icon/next-arrow.svg), url(../img/icon/next-arrow-w.svg);
  background-size: contain, 0 0;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background-color:  var(--color-black);
  color: var(--color-white);
}
.wp-pagenavi .previouspostslink:hover::before,
.wp-pagenavi .nextpostslink:hover::before {
  background-size: 0 0, contain
}
.wp-pagenavi .previouspostslink {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
  padding: 1.6rem 2rem 1.6rem 3.2rem;
  margin-right: 1rem;
}
.wp-pagenavi .previouspostslink::before {
  left: 1.8rem;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1)
}
.wp-pagenavi .nextpostslink {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  padding: 1.6rem 3.2rem 1.6rem 2rem;
  margin-left: 1rem;
}
.wp-pagenavi .nextpostslink::before {
  right: 1.8rem;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi {
    margin-top: 4rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current,
  .wp-pagenavi .first,
  .wp-pagenavi .last,
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    font-size: 1.1rem;
    height: 36px;
    width: 36px;
  }
  .wp-pagenavi .extend {
    display: none;
  }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    display: none
  }
}

/* sns-share-block
-----------------------------------------------------*/
.sns-share-block{
  margin:3.2rem auto 0;
  text-align: center;
}
.sns__container {
  display: flex;
  align-items: center;
}
.sns__container a {
  width: 100%;
  margin: 0;
  text-align: center;
  color: var(--color-white);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sns__container a:hover {
  opacity: 0.6;
}
.sns__container img{
  width: 26px;
  height: auto;
}
.sns__twitter {
  background: #111;
}
.sns__facebook {
  background: #3b5998;
}
.sns__pocket {
  background: #ef3f56;
}
.sns__line {
  background: #1dcd00;
}
.sns__hatena {
  background: #00a5de;
}
.sns__copy {
  background: #d1d1d1;
}

@media screen and ( max-width:960px) {
  .sns-share-block{
    margin:2.4rem auto 0;
  }
  .sns__container a {
    padding: .7rem 0;
  }
  .sns__container img{
    width: 18px;
  }
}

/* table-of-contents
---------------------------------*/
#toc_container {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
  width: 100% !important;
  background: rgba(84, 84, 84, .8)!important;
  border-radius: .8rem!important;
  overflow: hidden;
  padding:0 1rem 1rem;
}

#toc_container .toc_title {
 color: var(--color-white);
  display: block !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  text-align: left!important;
  padding:1.6rem 1rem 1.6rem 1rem !important;
}
#toc_container .toc_toggle, .toc_toggle a {
  color: var(--color-black) !important;
  font-weight: 700 !important;
  text-decoration: none!important;
}
#toc_container .toc_list {
  background-color: #fff;
  border-radius: var(--border-radius-8);
  padding:2.4rem;
  margin-top: 0 !important;
}
#toc_container .toc_list {
  margin-bottom: 0px!important;
  letter-spacing: .04em;
}
#toc_container .toc_list li:nth-of-type(n+2) {
  margin-top: .8rem  ;
}
#toc_container .toc_list li::after {
  content: none ;
}
#toc_container .toc_list a {
  font-weight: 700;
  text-decoration: none;
}
#toc_container .toc_list a:hover{
  text-decoration: underline;
}
#toc_container .toc_list a .toc_number {
  color: var(--color-primary) ;
  margin-right: 0.2em ;
  font-size:1.8rem;
  font-weight: 700 ;
}
#toc_container .toc_list > li + li {
  margin-top: .8rem;
}
#toc_container .toc_list > li ul {
  padding-left: 1.6rem;
}
#toc_container .toc_list > li ul li {
  padding-left:1.6rem;
  position: relative;
}
#toc_container .toc_list > li ul li::before {
  content: '';
  width: 8px;
  height: 1px;
  top: 12px;
  left: 0;
  position: absolute;
  background-color:var(--color-black);
}
#toc_container .toc_list > li ul a{
  font-weight: 400;
}
/* #toc_container .toc_list > li .toc_depth_1::after {
  content: ". ";
} */
#toc_container .toc_list > li .toc_number.toc_depth_2,
#toc_container .toc_list > li .toc_number.toc_depth_3,
#toc_container .toc_list > li .toc_number.toc_depth_4 {
  display: none;
}
@media screen and (max-width:960px) {
  #toc_container .toc_title {
    font-size: 1.8rem !important;
    text-align: center !important;
    padding: 1.3rem 1rem 1rem 1rem !important;
  }
  #toc_container .toc_list {
    padding: 2rem;
  }
  #toc_container .toc_list a .toc_number {
    font-size:1.5rem;
  }
}



/* Releted-Card */
.related-card {
  position: relative;
  margin-top: 3.2rem !important;
}
.related-card__label {
  position: absolute;
  top: -1.2rem;
  left: -1rem;
  z-index: 2;
  margin: 0;
  padding: .8rem 1.2rem;
  color: #fff;
  background: var(--color-black);
  border-radius: .6rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.related-card__label::after {
  content: "";
  position: absolute;
  left: 1.8rem;
  bottom: -.6rem;
  width: 0;
  height: 0;
  border-left: .6rem solid transparent;
  border-right: .6rem solid transparent;
  border-top: .7rem solid var(--color-black);
}
.related-card__link {
  position: relative;
  display: flex;
  align-items:center;
  gap: 2.4rem;
  padding: 2.4rem 6rem 2.4rem 2.4rem;
  color: inherit;
  /* background: #fff; */
  border-radius: var(--border-radius-8);
  border: 1px solid var(--border-color-gray);
  /* box-shadow: 0 .8rem 1.2rem rgba(0,0,0,.04); */
  transition:transform .4s ease,border .4s ease;
}
/* 画像 */
.related-card__pic {
  flex-shrink: 0;
  width: 22rem;
}
.related-card__pic .thumb {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: .8rem;
}
.related-card__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 本文 */
.related-card__body {
  min-width: 0;
}
.related-card__title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.related-card__text {
  display: -webkit-box;
  overflow: hidden;
  margin: 1rem 0 0;
  color: #666;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* 矢印 */
.related-card .arrow {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  transform: translateY(-50%);
  transition:transform .45s cubic-bezier(.43,.05,.17,1);
}
.related-card .arrow::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 50%;
  background: var(--color-black);
  content: "";
  transform: scale(0);
  transition: transform .45s cubic-bezier(.43,.05,.17,1);
}
.related-card .arrow::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(34,34,34,1);
  border-radius: 50%;
  content: "";
  transition:opacity .35s ease,transform .45s cubic-bezier(.43,.05,.17,1);
}
.related-card .arrow svg {
  position: relative;
  z-index: 4;
  width: .8rem;
  height: .8rem;
  color: var(--color-black);
  fill: currentColor;
  transition:
    transform .45s cubic-bezier(.43,.05,.17,1),
    opacity .25s ease,
    color .3s ease;
}
@media (hover: hover) {
  .related-card__link:hover {
    transform: translateY(-2px);
    /* background-color: #fff; */
    border: 1px solid var(--color-black);
  }
  .related-card__link:hover .arrow {
    transform:translateY(-50%) scale(1.08);
  }
  .related-card__link:hover .arrow::before {
    transform: scale(1);
  }
  .related-card__link:hover .arrow::after {
    opacity:0;
    transform:scale(1.45);
  }
  .related-card__link:hover .arrow svg {
    color:var(--color-white);
    animation:
      linkArrowSlide .55s cubic-bezier(.43,.05,.17,1);
  }
}

/* SP */
@media(max-width:960px){
  .related-card__link {
    /* display:block; */
    padding:1rem 2rem 1rem 1rem;
    gap: 1.6rem;
  }
  .related-card__pic {
    width: 14rem;
  }
  /* .related-card__pic {
    width:100%;
    margin-bottom:1.5rem;
  } */
  .related-card__title {
    font-size:1.5rem;
  }
  .related-card__text{
    font-size:1.2rem;
    display: none;
  }
  .related-card .arrow {
    display:none;
  }
}
