@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.swiper-container {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.swiper-container.swiper-container-autoheight {
  height: auto;
}

.swiper-wrapper {
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.swiper-slide.swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  overflow: hidden;
}
.swiper-lazy-preloader::before {
  position: absolute;
  pointer-events: none;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0, rgba(255, 255, 255, 0.35) 50%, rgba(217, 217, 217, 0) 100%);
  background-size: 100% 100%;
  animation: loading_skeleton 1s linear infinite;
}

.swiper-pagination {
  margin-top: 6px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .swiper-pagination {
    margin-top: 8px;
  }
}

body.is-modal-open {
  overflow: hidden;
}
body .m-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: auto;
  touch-action: none;
  pointer-events: none;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}
body .m-modal.is-open {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  opacity: 1;
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
body .m-modal .m-modal__content {
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  pointer-events: none;
  text-align: left;
  overflow: hidden;
}
body .m-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
body .m-modal__close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
@media not all and (max-width: 900px) {
  body .m-modal__close-btn {
    transform-origin: top right;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  body .m-modal__close-btn:hover {
    transform: scale(1.1);
  }
}
body .m-modal__close-btn::before, body .m-modal__close-btn::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -9px;
  width: 70px;
  height: 4px;
}
@media screen and (max-width: 900px) {
  body .m-modal__close-btn::before, body .m-modal__close-btn::after {
    top: 15px;
    right: -6px;
    width: 48px;
    height: 3px;
  }
}
body .m-modal__close-btn::before {
  transform: rotate(45deg);
}
body .m-modal__close-btn::after {
  transform: rotate(-45deg);
}

@media not all and (max-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
html {
  touch-action: manipulation;
}

body,
button,
input,
select,
textarea,
datalist {
  font-family: "Shippori Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: normal;
}
@media not all and (max-width: 900px) {
  body,
  button,
  input,
  select,
  textarea,
  datalist {
    font-size: 16px;
  }
}

body {
  position: relative;
  color: #000;
  background: #f9f3f3;
}

h2 {
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

* {
  -webkit-tap-highlight-color: transparent;
}

main {
  display: block;
}

a {
  color: currentColor;
  text-decoration: none;
}

svg {
  fill-rule: evenodd;
  width: 100%;
  height: 100%;
}

[data-modal] {
  cursor: pointer;
}

[tabindex] {
  cursor: pointer;
}
[tabindex].focus-visible {
  outline: 1px solid;
}

.js-focus-visible :focus:not(:focus-visible) {
  outline: 0;
}

.visually-hidden {
  font-size: 0;
  opacity: 0;
}

.l-wrapper {
  position: relative;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .l-wrapper {
  opacity: 1;
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background: url(../img/bg_tree.png) center center no-repeat;
  background-size: contain;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 900px) {
  .l-bg {
    background-size: 200% auto;
  }
}

.p-btn__inner {
  position: relative;
  display: block;
  padding: 2px;
  background: #2b303d;
  color: #fffbf2;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-btn__inner {
    padding: 1px;
  }
}
.--white .p-btn__inner {
  background: #fffbf2;
  color: #2b303d;
}
.--white .p-btn__inner::after {
  border-color: #2b303d;
}
.p-btn__inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 31px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fffbf2;
  border-bottom: 1px solid #fffbf2;
  transform: translate(0%, -80%) rotate(45deg);
  transition: border-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-btn__inner::after {
    top: auto;
    right: auto;
    bottom: 11px;
    left: 50%;
    width: 4px;
    height: 4px;
    transform: translate(-50%, 0%) rotate(45deg);
  }
}
@media (hover: hover) {
  .p-btn__inner {
    transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-btn__inner:hover {
    color: #2b303d;
  }
  .p-btn__inner:hover::after {
    border-color: #2b303d;
  }
  .p-btn__inner:hover .p-btn__inner-wrap {
    background: #fffbf2;
  }
  .--white .p-btn__inner:hover {
    color: #fffbf2;
  }
  .--white .p-btn__inner:hover::after {
    border-color: #fffbf2;
  }
  .--white .p-btn__inner:hover .p-btn__inner-wrap {
    background: #2b303d;
  }
}
.p-btn__inner-wrap {
  padding: 16px 0 17px;
  border: 1px solid #fffbf2;
  font-size: 21px;
  font-size: min(1.5vw, 21px);
  letter-spacing: 0.06rem;
  background: #2b303d;
  transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-btn__inner-wrap {
    padding: 13px 0 21px;
    font-size: 15px;
  }
}
.--white .p-btn__inner-wrap {
  border-color: #2b303d;
  background: #fffbf2;
}
.p-btn__inner-wrap .p-in-small {
  display: block;
}
@media not all and (max-width: 900px) {
  .p-btn__inner-wrap .p-in-small {
    margin-top: 5px;
    font-size: 15px;
    font-size: clamp(10px, 1.0714285714vw, 15px);
  }
}
@media screen and (max-width: 900px) {
  .p-btn__inner-wrap .p-in-small {
    font-size: 10px;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  transform: translate3d(0, 0, 0);
  mix-blend-mode: difference;
  pointer-events: none;
}
.p-header::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  border: 1px solid #f9f3f3;
}
@media screen and (max-width: 900px) {
  .p-header::after {
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
.p-header__container {
  position: relative;
  width: 93%;
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .p-header__container {
    display: none;
  }
}
.p-header__ttl {
  width: 200px;
}

.p-header_share {
  display: flex;
  align-items: center;
  pointer-events: auto;
}
.p-header_share__ttl {
  position: relative;
  margin-right: 8px;
  color: #f9f3f3;
  font-size: 13px;
  letter-spacing: 0.04rem;
}
.p-header_share__list {
  display: flex;
  gap: 10px;
}
.p-header_share__list-item {
  width: 50px;
}
.p-header_share__link {
  display: block;
}
@media (hover: hover) {
  .p-header_share__link {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-header_share__link:hover {
    transform: scale(1.1);
  }
}

.p-main {
  position: relative;
}

.p-hero {
  position: relative;
  padding-top: 8.6%;
  padding-bottom: 5.4%;
}
@media screen and (max-width: 900px) {
  .p-hero {
    padding-top: 66px;
    padding-bottom: 60px;
  }
}
.p-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 49.2857142857%;
  background: url(../img/noise.png) top center repeat-x;
  background-size: auto 100%;
}
@media not all and (max-width: 900px) {
  .p-hero::after {
    padding-top: 20%;
  }
}
.p-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e6e0da;
}
.p-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
.p-hero__logo {
  width: 393px;
  width: min(28.0714285714%, 393px);
  margin: 0 auto 1.7%;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-hero__logo {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .p-hero__logo {
    width: 177px;
    margin-bottom: 13px;
  }
}
.p-hero__ttl {
  width: 801px;
  width: min(57.2142857143%, 801px);
  margin: 0 auto 2.8%;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}
.is-load .p-hero__ttl {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .p-hero__ttl {
    width: 250px;
    margin-bottom: 19px;
  }
}
.p-hero__inner {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.25s, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.25s;
}
.is-load .p-hero__inner {
  transform: translateY(0);
  opacity: 1;
}
.p-hero__period {
  margin-bottom: 3.8%;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-hero__period {
    margin-bottom: 31px;
  }
}
.p-hero__period-inner {
  display: inline-block;
  padding: 4px 16px;
  background: #f9f3f3;
  border: 1px solid #2b303d;
  font-size: 24px;
  font-size: min(1.7142857143vw, 24px);
  letter-spacing: 0.06rem;
}
@media screen and (max-width: 900px) {
  .p-hero__period-inner {
    padding: 2px 12px;
    font-size: 14px;
    letter-spacing: 0.03rem;
  }
}
.p-hero__desc {
  position: relative;
  margin-bottom: 2.76%;
  text-align: center;
  font-size: 18px;
  font-size: min(1.2857142857vw, 18px);
  line-height: 1.75;
}
@media screen and (max-width: 900px) {
  .p-hero__desc {
    margin-bottom: 31px;
    font-size: 13px;
  }
}
.p-hero__about {
  position: relative;
  margin-bottom: 5.8%;
  text-align: center;
  font-size: 22px;
  font-size: min(1.5714285714vw, 22px);
}
@media screen and (max-width: 900px) {
  .p-hero__about {
    margin-bottom: 41px;
    font-size: 16px;
  }
}
.p-hero__about-link {
  display: inline-block;
}
@media (hover: hover) {
  .p-hero__about-link:hover .p-in-arrow {
    transform: translateY(5px);
  }
}
.p-hero__about-link .p-in-txt {
  position: relative;
  margin-bottom: 9%;
}
@media screen and (max-width: 900px) {
  .p-hero__about-link .p-in-txt {
    margin-bottom: 13px;
  }
}
.p-hero__about-link .p-in-arrow {
  width: 52%;
  margin: 0 auto;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-hero__links {
    width: 84%;
    margin: 0 auto;
  }
}
@media not all and (max-width: 900px) {
  .p-hero__links-list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 40px;
  }
}
@media screen and (max-width: 900px) {
  .p-hero__links-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media not all and (max-width: 900px) {
  .p-hero__links-item {
    width: min(24.2857142857%, 340px);
  }
}
.p-hero__present {
  position: absolute;
  top: 22%;
  left: 78.3%;
  width: 224px;
  width: min(16%, 224px);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.35s, opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.35s;
}
.is-load .p-hero__present {
  transform: scale(1);
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .p-hero__present {
    top: -45px;
    left: auto;
    right: 19px;
    width: 80px;
  }
}
.p-hero__present-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.p-hero__present-txt img {
  width: 60%;
}

.p-about {
  position: relative;
  z-index: 1;
  margin-bottom: 90px;
  padding-top: 104px;
  padding-bottom: 108px;
  background: #2b303d;
  color: #fffbf2;
}
@media screen and (max-width: 900px) {
  .p-about {
    margin-bottom: 36px;
    padding-top: 50px;
    padding-bottom: 61px;
  }
}
.p-about::before, .p-about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0.7%;
  background: url(../img/bg_frame_pc.png) bottom center repeat-x;
  background-size: auto 100%;
  transform: translateY(-100%);
}
@media screen and (max-width: 900px) {
  .p-about::before, .p-about::after {
    padding-top: 10px;
    background-image: url(../img/bg_frame_sp.png);
  }
}
.p-about::after {
  top: auto;
  bottom: 0;
  transform: translateY(100%) scaleY(-1);
}
.p-about__container {
  width: 85.7142857143%;
  max-width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-about__container {
    width: 84%;
  }
}
.p-about__inner {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-about__inner.is-active {
  transform: translateY(0);
  opacity: 1;
}
.p-about__inner + .p-about__inner {
  margin-top: 75px;
}
@media screen and (max-width: 900px) {
  .p-about__inner + .p-about__inner {
    margin-top: 58px;
  }
}
.p-about__ttl {
  position: relative;
  margin-bottom: 39px;
  padding-bottom: 28px;
  text-align: center;
  font-size: 28px;
}
@media screen and (max-width: 900px) {
  .p-about__ttl {
    margin-bottom: 0;
    padding-bottom: 15px;
    font-size: 16px;
  }
}
.p-about__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 3px;
  background: url(../img/line_pc.png) center center repeat-x;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .p-about__ttl::after {
    background-image: url(../img/line_sp.png);
  }
}
@media not all and (max-width: 900px) {
  .p-about__links {
    width: 82%;
    margin: 0 auto;
    margin-top: 79px;
  }
}
@media screen and (max-width: 900px) {
  .p-about__links {
    margin-top: 41px;
  }
}
.p-about__links-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .p-about__links-list {
    gap: 15px;
  }
}
.p-about__present {
  line-height: 1.75;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 900px) {
  .p-about__present {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.9;
  }
}
.p-about__caution {
  line-height: 1.9;
  font-size: 13px;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 900px) {
  .p-about__caution {
    margin-top: 16px;
    font-size: 10px;
  }
}
.p-about__caution-item {
  padding-left: 1em;
  text-indent: -1em;
}
.p-about_step {
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-about_step {
    margin-top: 24px;
  }
}
.p-about_step__list-item {
  position: relative;
  padding: 9px 19px 13px;
  background: #3d424e;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .p-about_step__list-item {
    padding: 11px 10px 13px;
  }
}
.p-about_step__list-item + .p-about_step__list-item {
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .p-about_step__list-item + .p-about_step__list-item {
    margin-top: 10px;
  }
}
.p-about_step__cap {
  position: relative;
  padding-right: 20px;
}
@media not all and (max-width: 900px) {
  .p-about_step__cap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 900px) {
  .p-about_step__cap {
    padding-right: 16px;
    text-align: center;
  }
}
.p-about_step__cap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 80%;
  border-right: 2px dotted #fffbf2;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .p-about_step__cap::after {
    height: 110%;
    transform: translateY(-45%);
    border-width: 1px;
  }
}
.p-about_step__cap-txt {
  padding-right: 5px;
  font-size: 12px;
}
@media not all and (max-width: 900px) {
  .p-about_step__cap-txt {
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 900px) {
  .p-about_step__cap-txt {
    padding-right: 0;
    font-size: 10px;
    transform: scale(0.9);
  }
}
.p-about_step__cap-num {
  font-size: 45px;
  letter-spacing: -0.08rem;
}
@media screen and (max-width: 900px) {
  .p-about_step__cap-num {
    font-size: 23px;
    line-height: 1;
  }
}
.p-about_step__txt {
  padding-left: 40px;
  flex-grow: 1;
}
@media screen and (max-width: 900px) {
  .p-about_step__txt {
    padding-left: 14px;
    line-height: 1.8;
  }
}
.p-about_step__txt .p-in-small {
  vertical-align: baseline;
}
@media screen and (max-width: 900px) {
  .p-about_step__txt .p-in-small {
    display: block;
    font-size: 10px;
  }
}

.p-post {
  position: relative;
  padding-top: 50px;
  padding-bottom: 138px;
}
@media screen and (max-width: 900px) {
  .p-post {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.p-post__container {
  position: relative;
  z-index: 1;
  width: 85.7142857143%;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-post__container {
    width: 84%;
  }
}
.p-post__ttl {
  width: 278px;
  margin: 0 auto 38px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-post.is-active .p-post__ttl {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .p-post__ttl {
    width: 139px;
    margin-bottom: 27px;
  }
}
.p-post__lead {
  text-align: center;
  font-size: 18px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s, opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}
.p-post.is-active .p-post__lead {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .p-post__lead {
    font-size: 15px;
  }
}
.p-post__list {
  margin-top: 59px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.p-post.is-active .p-post__list {
  transform: translateY(0);
  opacity: 1;
}
@media not all and (max-width: 900px) {
  .p-post__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 900px) {
  .p-post__list {
    margin-top: 28px;
  }
}
@media screen and (max-width: 900px) and (min-width: 500px) {
  .p-post__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .p-post__list-item + .p-post__list-item {
    margin-top: 10px;
  }
}
@media screen and (max-width: 900px) and (min-width: 500px) {
  .p-post__list-item + .p-post__list-item {
    margin-top: 0;
  }
}
.p-post__link {
  position: relative;
  display: block;
}
@media not all and (max-width: 900px) {
  .p-post__link {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-post__link:hover {
    z-index: 1;
    transform: scale(1.07);
  }
  .p-post__link:hover::before {
    opacity: 1;
  }
}
.p-post__link::before {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-post__link img {
  position: relative;
  z-index: 1;
}

.p-list {
  position: relative;
  margin-top: 172px;
  margin-bottom: 204px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #e6e0da;
}
@media screen and (max-width: 900px) {
  .p-list {
    margin-top: 62px;
    margin-bottom: 71px;
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.p-list::before, .p-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 24.6428571429%;
  background: url(../img/noise.png) top center repeat-x;
  background-size: auto 100%;
}
@media not all and (max-width: 900px) {
  .p-list::before, .p-list::after {
    padding-top: 20%;
  }
}
.p-list::before {
  transform: translateY(-100%) scaleY(-1);
}
.p-list::after {
  top: auto;
  bottom: 0;
  transform: translateY(100%);
}
.p-list__container {
  position: relative;
  z-index: 1;
  width: 85.7142857143%;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-list__container {
    width: 84%;
  }
}
.p-list__ttl {
  width: 272px;
  margin: 0 auto 79px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-list.is-active .p-list__ttl {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 900px) {
  .p-list__ttl {
    max-width: 135px;
    margin-bottom: 38px;
  }
}
.p-list__post {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.p-list.is-active .p-list__post {
  transform: translateY(0);
  opacity: 1;
}
@media not all and (max-width: 900px) {
  .p-list__post {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 900px) {
  .p-list__post-item + .p-list__post-item {
    margin-top: 12px;
  }
}
.p-list__coming {
  text-align: center;
  font-size: 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 900px) {
  .p-list__coming {
    font-size: 14px;
  }
}
.p-list.is-active .p-list__coming {
  transform: translateY(0);
  opacity: 1;
}

.p-card {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2px;
  background: #f9f3f3;
}
@media (hover: hover) {
  .p-card {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-card:hover {
    transform: scale(1.03);
  }
}
.p-card__container {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 7px;
  padding-bottom: 24px;
  border: 1px solid #2b303d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .p-card__container {
    padding-bottom: 21px;
  }
}
.p-card__head {
  position: relative;
  margin-bottom: 22px;
}
.p-card__ogp {
  position: relative;
}
.p-card__txt {
  width: 89%;
  margin: 0 auto;
  padding-top: 23px;
  line-height: 1.75;
}
@media screen and (max-width: 900px) {
  .p-card__txt {
    padding-top: 19px;
  }
}
.p-card__foot {
  position: relative;
  width: 89%;
  margin: 0 auto;
}
.p-card__foot::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 0;
  width: 18px;
  height: 20px;
  background: url(../img/s_x.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .p-card__foot::after {
    width: 14px;
    height: 17px;
  }
}
.p-card__user {
  font-size: 13px;
}
@media screen and (max-width: 900px) {
  .p-card__user {
    font-size: 11px;
  }
}

.p-terms {
  position: relative;
  margin-bottom: 99px;
}
@media screen and (max-width: 900px) {
  .p-terms {
    margin-bottom: 74px;
  }
}
.p-list + .p-terms {
  margin-top: 138px;
}
@media screen and (max-width: 900px) {
  .p-list + .p-terms {
    margin-top: 56px;
  }
}
.p-terms__wrap {
  position: relative;
  z-index: 1;
  width: 85.7142857143%;
  max-width: 1400px;
  margin: 0 auto;
  background: #f9f3f3;
  padding: 3px;
}
@media screen and (max-width: 900px) {
  .p-terms__wrap {
    width: 84%;
    padding: 2px;
  }
}
.p-terms__container {
  border: 1px solid #2b303d;
}
.p-terms__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 55px 0 71px;
}
@media screen and (max-width: 900px) {
  .p-terms__inner {
    width: 93%;
    margin: 0 auto;
    padding: 20px 0 27px;
  }
}
.p-terms__ttl {
  position: relative;
  margin-bottom: 39px;
  padding-bottom: 28px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .p-terms__ttl {
    margin-bottom: 13px;
    padding-bottom: 15px;
    font-size: 16px;
  }
}
.p-terms__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 3px;
  background: url(../img/line_b_pc.png) center center repeat-x;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .p-terms__ttl::after {
    background-image: url(../img/line_b_sp.png);
  }
}
.p-terms__txt {
  font-size: 14px;
  line-height: 1.75;
}
@media screen and (max-width: 900px) {
  .p-terms__txt {
    font-size: 10.5px;
    line-height: 1.85;
  }
}
.p-terms__txt a:hover {
  text-decoration: underline;
}

.p-footer {
  position: relative;
  z-index: 1;
  padding: 50px 0 99px;
  background: #2b303d;
  color: #fffbf2;
}
@media screen and (max-width: 900px) {
  .p-footer {
    padding: 41px 0 56px;
  }
}
.p-footer__container {
  width: 85.5%;
  margin: 0 auto;
}
@media not all and (max-width: 900px) {
  .p-footer__container {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 900px) {
  .p-footer__head {
    margin-bottom: 28px;
  }
}
.p-footer__ttl {
  width: 270px;
}
@media screen and (max-width: 900px) {
  .p-footer__ttl {
    width: 168px;
    margin: 0 auto;
  }
}
.p-footer__ttl-inner {
  display: block;
}
@media (hover: hover) {
  .p-footer__ttl-inner {
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-footer__ttl-inner:hover {
    opacity: 0.6;
  }
}
.p-footer__links {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 900px) {
  .p-footer__links {
    justify-content: center;
  }
}
.p-footer__links-item {
  position: relative;
}
.p-footer__links-item:last-child::after {
  content: none;
}
.p-footer__links-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2px;
  height: 16px;
  transform: translateY(-50%);
  background: #fffbf2;
}
@media screen and (max-width: 900px) {
  .p-footer__links-item::after {
    width: 1px;
    height: 10px;
    transform: translateY(-40%);
  }
}
.p-footer__links-txt {
  display: block;
  padding: 0 13px;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 900px) {
  .p-footer__links-txt {
    font-size: 10px;
  }
}
@media not all and (max-width: 900px) {
  .p-footer__links-item:last-child .p-footer__links-txt {
    padding-right: 0;
  }
}
@media (hover: hover) {
  .p-footer__links-txt {
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-footer__links-txt:hover {
    opacity: 0.6;
  }
}
.p-footer__detail {
  position: relative;
  margin-top: 29px;
  text-align: right;
  color: #888b92;
  font-size: 10px;
}
@media screen and (max-width: 900px) {
  .p-footer__detail {
    margin-top: 22px;
    text-align: center;
    transform: scale(0.9);
    line-height: 1.6;
  }
}
.p-footer__detail-copy {
  margin-top: 8px;
}
@media screen and (max-width: 900px) {
  .p-footer__detail-copy {
    margin-top: 11px;
  }
}