@import url("https://fonts.googleapis.com/css2?family=Kaisei+Opti&family=Marcellus&family=Noto+Sans+JP:wght@100..900&display=swap");
/* ====================
 SIZE SET
==================== */
/* ===================
 MIXIN
==================== */
.p-info_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 65px;
}
@media only screen and (max-width: 768px) {
  .p-info_category {
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.p-info_category_lbl {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 12px 0;
}
@media only screen and (max-width: 768px) {
  .p-info_category_lbl {
    padding: calc(10 / 375 * 100vw) 0;
    font-size: calc(18 / 375 * 100vw);
  }
}
.p-info_category_list {
  background-color: #fff;
  width: 150px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-info_category_list {
    width: calc(108 / 375 * 100vw);
  }
}
.p-info_category_list ._cat {
  display: block;
  padding: 12px 15px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .p-info_category_list ._cat {
    padding: calc(10 / 375 * 100vw) calc(12 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
  }
}
.p-info_category_list > span {
  border: 1px solid #b3b3b3;
  border-radius: 6px;
  position: relative;
}
.p-info_category_list > span::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 7px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/info/arrow_up.svg) left top no-repeat;
  background-size: cover;
}
.p-info_category_list > span.active {
  border-radius: 6px 6px 0 0;
  border-bottom: none;
}
.p-info_category_list > span.active::after {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
.p-info_category_list ._cat-list {
  display: none;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  border: 1px solid #b3b3b3;
  position: absolute;
  left: 0;
  z-index: 2;
}
.p-info_category_list ._cat-list li {
  display: block;
}
.p-info_category_list ._cat-list li + li {
  border-top: 1px solid #b3b3b3;
}
.p-info .c-card-info__category {
  -webkit-mask-image: url(../img/info/cat_mask.svg);
          mask-image: url(../img/info/cat_mask.svg);
  width: 101px;
  height: 97px;
  border-radius: 0;
  top: -20px;
  left: -10px;
}
@media only screen and (max-width: 768px) {
  .p-info .c-card-info__category {
    width: calc(90 / 375 * 100vw);
    height: calc(86 / 375 * 100vw);
    top: calc(-13 / 375 * 100vw);
    left: calc(-10 / 375 * 100vw);
  }
}
.p-info .c-card-info__date {
  color: #b8583c;
}
.p-info .c-card-info__img {
  display: block;
}
.p-info .c-card-info__link > span:not(.c-card-info__category) {
  display: block;
}
.p-info .p-top-info__slide {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 52px 20px;
}
.p-info .p-top-info__slide li {
  width: calc((100% - 40px) / 3);
}
@media only screen and (max-width: 768px) {
  .p-info .p-top-info__slide {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: calc(28 / 375 * 100vw) 0;
    margin: 0;
    padding: 0 calc(10 / 375 * 100vw);
  }
  .p-info .p-top-info__slide li {
    width: 100%;
    margin: 0;
  }
}

.post-body {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
}
@media only screen and (max-width: 768px) {
  .post-body {
    padding: calc(20 / 375 * 100vw) calc(17 / 375 * 100vw) calc(40 / 375 * 100vw);
    border-radius: calc(6 / 375 * 100vw);
  }
}
.post-body_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .post-body_head {
    padding-bottom: calc(15 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.post-body_head::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background: url(../img/info/dots.svg) left center no-repeat;
  background-size: cover;
}
.post-body_head .c-card-info__category {
  position: static;
}
@media only screen and (max-width: 768px) {
  .post-body_head .c-card-info__category {
    width: calc(70 / 375 * 100vw);
    height: calc(67.5 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
}
.post-body_head__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .post-body_head__ttl {
    font-size: calc(20 / 375 * 100vw);
  }
}
.post-body .c-card-info__date {
  color: #333333;
  margin-bottom: 2rem;
}
.post-body_feature {
  max-width: 800px;
  margin: 30px auto 25px;
}
.post-body_content {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .post-body_content {
    font-size: calc(16 / 375 * 100vw);
  }
}
.post-body_content h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6666;
  letter-spacing: 0;
  margin-bottom: 30px;
}
.post-body_content h2:not(:first-child) {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .post-body_content h2 {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .post-body_content h2:not(:first-child) {
    margin-top: calc(40 / 375 * 100vw);
  }
}
@media only screen and (min-width: 769px) {
  .post-body_content ._flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 769px) {
  .post-body_content .post-blk_img {
    width: 50%;
  }
  .post-body_content .post-blk_txt {
    width: 50%;
    padding-left: 30px;
  }
  .post-body_content .post-blk._reserve .post-blk_txt {
    padding-left: 0;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .post-body_content .post-blk_img {
    margin-bottom: calc(30 / 375 * 100vw);
  }
  .post-body_content .post-blk._reserve .post-blk_img {
    margin-bottom: 0;
    margin-top: calc(30 / 375 * 100vw);
  }
}
.post-body_content--story p {
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .post-body_content--story p {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}

.post-nav {
  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;
  max-width: 1000px;
  margin: 40px auto 0;
}
.post-nav_itm {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
}
.post-nav_itm::after {
  content: "";
  display: block;
  width: 15px;
  height: 21px;
  background: #b8583c;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.post-nav_itm._prev {
  padding-left: 38px;
}
.post-nav_itm._prev::after {
  left: 0;
  -webkit-mask-image: url(../img/common/icon_bread_arw_l.svg);
          mask-image: url(../img/common/icon_bread_arw_l.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.post-nav_itm._next {
  padding-right: 38px;
}
.post-nav_itm._next::after {
  right: 0;
  -webkit-mask-image: url(../img/common/icon_bread_arw_r.svg);
          mask-image: url(../img/common/icon_bread_arw_r.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media only screen and (max-width: 768px) {
  .post-nav {
    margin-top: calc(40 / 375 * 100vw);
  }
  .post-nav_itm {
    font-size: calc(14 / 375 * 100vw);
  }
  .post-nav_itm::after {
    width: calc(10 / 375 * 100vw);
    height: calc(15 / 375 * 100vw);
  }
  .post-nav_itm._prev {
    padding-left: calc(18 / 375 * 100vw);
  }
  .post-nav_itm._next {
    padding-right: calc(18 / 375 * 100vw);
  }
}

/** p-story **/
.p-story .story-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 40px 6%;
}
@media only screen and (max-width: 768px) {
  .p-story .story-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: calc(30 / 375 * 100vw) 0;
  }
}
@media only screen and (min-width: 769px) {
  .p-story .story-item {
    width: 47%;
  }
}
.p-story .story-item_img {
  border: 10px solid #fff;
}
@media only screen and (max-width: 768px) {
  .p-story .story-item_img {
    border-width: calc(7 / 375 * 100vw);
  }
}
.p-story .story-item_ttl {
  display: block;
  background-color: #b8583c;
  color: #fff;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  margin: -40px -30px 20px 60px;
  max-width: 420px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .p-story .story-item_ttl {
    font-size: calc(16 / 375 * 100vw);
    border-radius: calc(8 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw);
    max-width: calc(300 / 375 * 100vw);
    margin: calc(-32 / 375 * 100vw) auto calc(10 / 375 * 100vw);
  }
}
.p-story .story-item_txt {
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.p-story .story-item_link {
  display: block;
}

@media only screen and (min-width: 769px) {
  .hover-img {
    overflow: hidden;
  }
  .hover-img img {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .hover:hover .hover-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}