@charset "UTF-8";
/* ==========================================================================//
//
// information（storyでも使用）
//
// ========================================================================== */
/* アーカイブページ
---------------------------------------------------------- */
.page_archive {
  /* informationページ */
}
@media all and (min-width: 751px) {
  .page_archive.information .content_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page_archive.information .content_wrap .category_area .category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media all and (min-width: 751px) {
  .page_archive.information .content_wrap .category_area .category_list {
    position: sticky;
    top: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page_archive.information .content_wrap .category_area .category_list li a {
  font-size: 11px;
}
@media all and (min-width: 751px) {
  .page_archive.information .content_wrap .category_area .category_list li a {
    font-size: 13px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.page_archive.information .content_wrap .category_area .category_list li a.active {
  position: relative;
  padding-left: 9px;
}
.page_archive.information .content_wrap .category_area .category_list li a.active::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateX(-20%) translateY(-50%);
          transform: translateX(-20%) translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #202020;
  border-radius: 4px;
}
@media (min-width: 751px) and (hover: hover) {
  .page_archive.information .content_wrap .category_area .category_list li a:not(.active):hover {
    opacity: 0.6;
  }
}
.page_archive.information .content_wrap .post_area {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .page_archive.information .content_wrap .post_area {
    margin: 0;
    width: 100%;
  }
}
.page_archive.information .content_wrap .post_area .post_list {
  border-top: 1px solid #E6E6E6;
}
.page_archive.information .content_wrap .post_area .post_list li {
  border-bottom: 1px solid #E6E6E6;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-animation: fadeInLeft 0.6s ease-out forwards;
          animation: fadeInLeft 0.6s ease-out forwards;
}
.page_archive.information .content_wrap .post_area .post_list li:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.page_archive.information .content_wrap .post_area .post_list li:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.page_archive.information .content_wrap .post_area .post_list li:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.page_archive.information .content_wrap .post_area .post_list li:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.page_archive.information .content_wrap .post_area .post_list li:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.page_archive.information .content_wrap .post_area .post_list li:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.page_archive.information .content_wrap .post_area .post_list li:nth-child(7) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.page_archive.information .content_wrap .post_area .post_list li:nth-child(8) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.page_archive.information .content_wrap .post_area .post_list li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}
@media all and (min-width: 751px) {
  .page_archive.information .content_wrap .post_area .post_list li a {
    padding: 40px 0;
  }
}
.page_archive.information .content_wrap .post_area .post_list li a .post_wrap {
  display: block;
}
@media all and (min-width: 751px) {
  .page_archive.information .content_wrap .post_area .post_list li a .post_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page_archive.information .content_wrap .post_area .post_list li a .post_wrap .post_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  .page_archive.information .content_wrap .post_area .post_list li a .post_wrap .post_info {
    gap: 40px;
    min-width: 240px;
  }
}
.page_archive.information .content_wrap .post_area .post_list li a .post_wrap .post_info .post_date {
  font-size: 11px;
}
@media all and (min-width: 751px) {
  .page_archive.information .content_wrap .post_area .post_list li a .post_wrap .post_info .post_date {
    font-size: 12px;
  }
}
.page_archive.information .content_wrap .post_area .post_list li a .post_wrap .post_info .post_category {
  font-size: 11px;
  color: #7B7B7B;
}
@media all and (min-width: 751px) {
  .page_archive.information .content_wrap .post_area .post_list li a .post_wrap .post_info .post_category {
    font-size: 12px;
  }
}
.page_archive.information .content_wrap .post_area .post_list li a .post_wrap .post_title {
  font-weight: normal;
}
.page_archive.information .content_wrap .post_area .post_list li a .arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: block;
  overflow: hidden;
  top: 49%;
  right: 0;
  width: 12px;
  height: 3px;
}
.page_archive.information .content_wrap .post_area .post_list li a .arrow::before, .page_archive.information .content_wrap .post_area .post_list li a .arrow::after {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ico_arrow.svg);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
.page_archive.information .content_wrap .post_area .post_list li a .arrow::after {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.page_archive.information .content_wrap .post_area .post_list li a::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #202020;
  opacity: 0.8;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
@media (min-width: 751px) and (hover: hover) {
  .page_archive.information .content_wrap .post_area .post_list li a:hover .arrow::before {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  .page_archive.information .content_wrap .post_area .post_list li a:hover .arrow::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .page_archive.information .content_wrap .post_area .post_list li a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.page_archive {
  /* Storiesページ */
}
.page_archive.story .tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  .page_archive.story .tag_list {
    margin-bottom: 70px;
  }
}
.page_archive.story .tag_list a {
  display: inline-block;
  background-color: #F2EDE9;
  padding: 5px 12px;
  font-size: 11px;
}
@media all and (min-width: 751px) {
  .page_archive.story .tag_list a {
    padding: 6px 15px;
    font-size: 14px;
    -webkit-transition: background-color 0.5s;
    transition: background-color 0.5s;
  }
}
.page_archive.story .tag_list a.active {
  background-color: #202020;
  color: #fff;
}
.page_archive.story .tag_list a:not(.active):hover {
  background-color: #D5C8BF;
}
.page_archive.story .post_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media all and (min-width: 751px) {
  .page_archive.story .post_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 60px 3.5%;
  }
}
@media all and (min-width: 751px) {
  .page_archive.story .post_list li {
    width: 31%;
  }
}
@media screen and (min-width: 751px) and (max-width: 959px) {
  .page_archive.story .post_list li {
    width: 46.5%;
  }
}
.page_archive.story .post_list li a .thumbnail {
  margin-bottom: 15px;
}
@media all and (min-width: 751px) {
  .page_archive.story .post_list li a .thumbnail {
    margin-bottom: 20px;
    overflow: hidden;
  }
}
.page_archive.story .post_list li a .thumbnail img {
  aspect-ratio: 4/3;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
}
.page_archive.story .post_list li a .post_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  color: #7B7B7B;
  font-size: 11px;
  margin-bottom: 5px;
}
@media all and (min-width: 751px) {
  .page_archive.story .post_list li a .post_info {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.page_archive.story .post_list li a .post_info .post_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.page_archive.story .post_list li a .post_title {
  font-weight: normal;
}
@media (min-width: 751px) and (hover: hover) {
  .page_archive.story .post_list li a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* ページナビ
---------------------------------------------------------- */
.pagenavi {
  margin-top: 50px;
}
@media all and (min-width: 751px) {
  .pagenavi {
    margin-top: 100px;
  }
}
.pagenavi {
  position: relative;
  text-align: center;
  /* 一覧ページ用 */
}
.pagenavi .current, .pagenavi .page, .pagenavi .last, .pagenavi .first {
  display: inline-block;
  font-size: 13px;
  padding: 0 5px;
  margin: 0 5px;
  color: #7B7B7B;
}
@media all and (min-width: 751px) {
  .pagenavi .current, .pagenavi .page, .pagenavi .last, .pagenavi .first {
    font-size: 14px;
    padding: 0 8px;
    margin: 0 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .pagenavi .current:hover, .pagenavi .page:hover, .pagenavi .last:hover, .pagenavi .first:hover {
    color: #202020;
  }
}
.pagenavi .current {
  color: #202020;
}
.pagenavi {
  /* 一覧ページ・詳細ページ共通 */
}
.pagenavi .next, .pagenavi .prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  width: 40px;
  height: 40px;
  background-color: #F2EDE9;
}
@media all and (min-width: 751px) {
  .pagenavi .next, .pagenavi .prev {
    width: 55px;
    height: 55px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.pagenavi .next::before, .pagenavi .prev::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/ico_arrow.svg);
  width: 12px;
  height: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 751px) and (hover: hover) {
  .pagenavi .next:hover, .pagenavi .prev:hover {
    background-color: #202020;
  }
  .pagenavi .next:hover::before, .pagenavi .prev:hover::before {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
}
.pagenavi .next {
  right: 0;
}
.pagenavi .prev {
  left: 0;
}
.pagenavi .prev::before {
  -webkit-transform: translateY(-50%) translateX(-50%) scale(-1, 1);
          transform: translateY(-50%) translateX(-50%) scale(-1, 1);
}
.pagenavi {
  /* 詳細ページ用 */
}
.pagenavi .back {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 13px;
  padding: 6px 4px;
}
@media all and (min-width: 751px) {
  .pagenavi .back {
    font-size: 16px;
    padding: 8px 6px;
  }
}
.pagenavi .back::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #202020;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0.8;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}
@media (min-width: 751px) and (hover: hover) {
  .pagenavi .back:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/* 詳細ページ
---------------------------------------------------------- */
.page_post .post_inner {
  max-width: 800px;
  margin: 0 auto;
}
.page_post .post_head {
  margin-top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 11px;
  color: #7B7B7B;
}
@media all and (min-width: 751px) {
  .page_post .post_head {
    margin-top: 160px;
    gap: 20px;
    font-size: 14px;
  }
}
.page_post .post_head .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
@media all and (min-width: 751px) {
  .page_post .post_head .tags {
    gap: 8px;
  }
}
.page_post .post_head .tags a {
  color: #7B7B7B;
}
.page_post .post_title {
  margin: 15px 0 40px;
  font-size: 18px;
  font-weight: 500;
}
@media all and (min-width: 751px) {
  .page_post .post_title {
    margin: 20px 0 60px;
    font-size: 25px;
  }
}
.page_post .post_content {
  margin-bottom: 70px;
}
@media all and (min-width: 751px) {
  .page_post .post_content {
    margin-bottom: 100px;
  }
}
.page_post .post_content p {
  margin-bottom: 26px;
}
@media all and (min-width: 751px) {
  .page_post .post_content p {
    margin-bottom: 30px;
  }
}
.page_post .post_content p a {
  text-decoration: underline;
}
.page_post .post_content ul, .page_post .post_content ol {
  margin: 26px 0;
  padding-left: 1.2em;
}
@media all and (min-width: 751px) {
  .page_post .post_content ul, .page_post .post_content ol {
    margin: 30px 0;
    padding-left: 2em;
  }
}
.page_post .post_content ul li, .page_post .post_content ol li {
  margin-bottom: 0.5em;
  line-height: 1.8;
}
.page_post .post_content ul {
  list-style-type: disc;
  list-style: disc;
}
.page_post .post_content ul li {
  list-style: disc;
}
.page_post .post_content ul li::marker {
  color: #202020;
}
.page_post .post_content ol {
  list-style-type: decimal;
  list-style: decimal;
}
.page_post .post_content ol li {
  list-style: decimal;
}
.page_post .post_content ol li::marker {
  color: #202020;
}
.page_post .post_content h2, .page_post .post_content h3, .page_post .post_content h4, .page_post .post_content h5, .page_post .post_content h6 {
  line-height: 1.7;
  font-weight: 500;
}
.page_post .post_content h2 {
  font-size: 16px;
  margin: 46px 0 26px;
}
@media all and (min-width: 751px) {
  .page_post .post_content h2 {
    font-size: 20px;
    margin: 50px 0 30px;
  }
}
.page_post .post_content h3 {
  font-size: 15px;
  margin: 30px 0 20px;
}
@media all and (min-width: 751px) {
  .page_post .post_content h3 {
    font-size: 18px;
    margin: 40px 0 20px;
  }
}
.page_post .post_content h4 {
  font-size: 14px;
  margin: 20px 0 15px;
}
@media all and (min-width: 751px) {
  .page_post .post_content h4 {
    font-size: 16px;
    margin: 30px 0 16px;
  }
}
.page_post .post_content h5 {
  font-size: 13px;
  margin: 16px 0 10px;
}
@media all and (min-width: 751px) {
  .page_post .post_content h5 {
    font-size: 14px;
    margin: 30px 0 10px;
  }
}
.page_post .post_content .wp-block-image {
  margin: 30px 0;
}
@media all and (min-width: 751px) {
  .page_post .post_content .wp-block-image {
    margin: 40px 0;
  }
}
.page_post .pagenavi_area {
  border-top: 1px solid #E6E6E6;
}