@charset "UTF-8";
@font-face {
  font-family: "Meychan_web";
  src: url("../fonts/Meychan_web-Regular.otf") format("opentype");
  font-weight: var(--font-weight-heading);
  font-style: normal;
}
@font-face {
  font-family: "Hind";
  src: url("../fonts/Hind-Regular.ttf") format("truetype");
  font-weight: var(--font-weight-number);
  font-style: normal;
}
:root {
  --vw: 1vw;
  --color-base: #111111;
  --color-line: #2c2c2c;
  --color-gray: #656565;
  --color-white: #ffffff;
  --color-orange: #e26522;
  --font-family-base: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-family-heading: "Meychan_web", sans-serif;
  --font-family-number: "Hind", sans-serif;
  --font-weight-base: 500;
  --font-weight-heading: 400;
  --font-weight-number: 500;
  --letter-spacing-base: 0.08em;
  --letter-spacing-heading: 0.2em;
  --letter-spacing-number: 0.08em;
}

.p-single {
  padding: 4rem 0;
}
@media screen and (min-width: 720px) {
  .p-single {
    padding: 8rem 0;
  }
}
.p-single__title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 720px) {
  .p-single__title {
    font-size: 2.6rem;
  }
}
.p-single__title time {
  font-family: var(--font-family-number);
  font-weight: var(--font-weight-number);
  letter-spacing: var(--letter-spacing-number);
  font-size: 1.2rem;
}
@media screen and (min-width: 720px) {
  .p-single__title time {
    font-size: 2rem;
  }
}
.p-single__content {
  padding-bottom: 4rem;
}
@media screen and (min-width: 720px) {
  .p-single__content {
    padding-bottom: 6rem;
  }
}
.p-single.--live .p-single__content p {
  padding: 0 1rem;
}
.p-single__content .wp-block-image {
  margin-top: 1rem;
}
.p-single__content .wp-block-image.size-medium {
  max-width: 60rem;
}
.p-single__content .wp-block-image.size-thumbnail {
  max-width: 15rem;
}
.p-single__content .wp-block-heading {
  padding: 1rem 2rem;
  background-color: var(--color-line);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 1rem 0;
}
@media screen and (min-width: 720px) {
  .p-single__content .wp-block-heading {
    font-size: 1.8rem;
  }
}
.p-single__content ul.wp-block-list li {
  padding: 1rem;
  border-bottom: solid 0.1rem var(--color-line);
}
.p-single__content ol.wp-block-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: wp-block-list-counter;
}
.p-single__content ol.wp-block-list li {
  padding: 2rem;
  position: relative;
  line-height: 1;
  counter-increment: wp-block-list-counter;
}
.p-single__content ol.wp-block-list li::before {
  content: counter(wp-block-list-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
}
.p-single__footer {
  border-top: solid 0.1rem var(--color-line);
  padding: 4rem 2.4rem;
  display: flex;
}
@media screen and (max-width: 719px) {
  .p-single__footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
@media screen and (min-width: 720px) {
  .p-single__footer {
    padding: 6rem 0 0;
    justify-content: space-between;
  }
}
.p-single__footer__backLink {
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
@media screen and (min-width: 720px) {
  .p-single__footer__backLink {
    font-size: 1.6rem;
  }
}
.p-single__footer__backLink::before {
  content: "";
  display: inline-block;
  width: 2rem;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  -webkit-mask: center center/contain url("../img/icon/arrow-left.svg") no-repeat;
  mask: center center/contain url("../img/icon/arrow-left.svg") no-repeat;
}
.p-single__footer__snsList {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 720px) {
  .p-single__footer__snsList {
    grid-template-columns: repeat(2, 20rem);
    gap: 4rem;
  }
}
.p-single__footer__snsItem {
  font-size: 1.4rem;
  background-color: var(--color-line);
  padding: 0 1.2rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  gap: 2.7rem;
}
@media screen and (min-width: 720px) {
  .p-single__footer__snsItem {
    font-size: 1.6rem;
    height: 4rem;
    gap: 3.4rem;
  }
}
.p-single__footer__snsItem::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  -webkit-mask: center center/contain no-repeat;
  mask: center center/contain no-repeat;
}
.p-single__footer__snsItem.--x::before {
  -webkit-mask-image: url("../img/icon/x.svg");
  mask-image: url("../img/icon/x.svg");
}
.p-single__footer__snsItem.--facebook::before {
  -webkit-mask-image: url("../img/icon/facebook.png");
  mask-image: url("../img/icon/facebook.png");
}