@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");
/*
font-family: 'Zilla Slab', serif;
font-family: 'Noto Serif JP', serif;
font-family: 'EB Garamond', serif;
*/
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 62.5%;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  width: 100%;
}

ol,
ul {
  list-style: none;
}

input,
textarea,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: 'Noto Serif JP', serif;
  line-height: 1;
}

/* utility */
.u-windowFit {
  width: 100%;
  min-width: 100vw;
  height: 100vh;
  min-height: 440px;
}

/* layout */
.l-wrapper {
  position: relative;
  padding-top: 100vh;
  overflow: hidden;
}

@media (min-width: 768px), print {
  .l-wrapper {
    min-width: 1020px;
  }
}

/* component */
.c-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
}

.c-msg__txt {
  max-width: 460px;
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 30px;
}

.c-slide {
  background: #FFF;
}

.c-slide__inner {
  width: 100%;
  height: 100%;
}

.c-slide__box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.c-slide__item {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.c-slide .swiper-slide {
  position: relative;
  width: 100% !important;
  height: 100%;
  overflow: hidden;
}

.c-slide .slick-list,
.c-slide .slick-track {
  height: 100%;
}

.slick-animation .c-slide__item {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
}

.c-scroll {
  visibility: visible;
  position: absolute;
  bottom: 39px;
  left: calc(50% - 29px);
  width: 7px;
  height: 47.5px;
  opacity: 1;
  -webkit-transition: 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition: 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.c-scroll__inner {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.c-scroll__inner::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 2px;
  width: 2px;
  height: 100%;
  background-color: #FFF;
  content: "";
}

.c-scroll__dotted {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-animation: scroll 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
          animation: scroll 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.c-scroll__dotted::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  min-width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #FFF;
  content: "";
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  to {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  to {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

/* projects */
.p-firstMsg,
.p-secondMsg,
.p-thirdMsg,
.p-secondView,
.p-thirdView,
.p-gallery,
.p-history,
.p-bbs,
.p-thanks {
  position: relative;
  z-index: 500;
  background: #FFF;
}

.p-firstView {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 560px;
  /*
    .swiper-slide-active .c-slide__item,
    .swiper-slide-duplicate-active .c-slide__item,
    .swiper-slide-prev .c-slide__item {
        animation: zoomUp 10s ease 0.5s;
    }
    */
}

.p-firstView__tit {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 195px;
}

.p-firstView__icon {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 40px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 58px;
}

.p-firstView__copy {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 20px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFF;
  font-family: 'Zilla Slab', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.p-firstView .mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
}

.p-firstView__view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-firstView__scroll {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  left: 28px;
}

.p-firstView__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/memorial/assets/img/img_mv_photo_pc.jpg") center;
  background-size: cover;
}

.p-firstView #js-movie {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

@media (max-width: 767px) {
  .p-firstView__tit {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 155px;
  }
  .p-firstView__icon {
    top: 20px;
    right: 20px;
    -webkit-transform: none;
            transform: none;
    width: 38px;
  }
  .p-firstView__photo {
    background: url("/memorial/assets/img/img_mv_photo_sp.jpg") center;
  }
}

@media (max-width: 767px) {
  .p-secondView,
  .p-thirdView {
    height: 100vw;
    min-height: 100vw;
  }
}

.p-firstMsg .txt {
  position: relative;
  padding-bottom: 70px;
  line-height: 30px;
}

.p-firstMsg .sign {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 92px;
}

.p-secondMsg .sign {
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 30px;
}

@media (max-width: 767px) {
  .p-secondMsg {
    display: block;
  }
  .p-secondMsg .inner {
    margin: 70px 0;
    height: 320px;
    overflow: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .p-secondMsg .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 80px;
    -webkit-transform: translate(0, -70px);
            transform: translate(0, -70px);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-box-shadow 0.5s ease;
    transition: -webkit-box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
  }
  .p-secondMsg .btn span {
    position: relative;
    padding-bottom: 20px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .1em;
  }
  .p-secondMsg .btn span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 75px;
    height: 7px;
    margin: 12px auto 0;
    background: url("/memorial/assets/img/ico_arrow02.png") center no-repeat;
    background-size: 75px 7px;
    -webkit-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
  }
  .p-secondMsg .btn span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 75px;
    height: 7px;
    margin: 12px auto 0;
    background: url("/memorial/assets/img/ico_arrow02.png") center no-repeat;
    background-size: 75px 7px;
  }
  .p-secondMsg .sign {
    display: block;
    padding: 0;
    margin-top: 20px;
    text-align: right;
  }
}

@media (min-width: 768px) {
  .p-secondMsg .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 820px;
    max-width: none;
    padding: 140px 0;
    margin: 0 auto;
  }
  .p-secondMsg .txt {
    position: relative;
    width: 380px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
            flex: 0 0 380px;
  }
  .p-secondMsg .sign {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .p-secondMsg .btn {
    display: none;
  }
}

.p-thirdMsg {
  display: block;
}

.p-thirdMsg .sign {
  font-size: 14px;
  letter-spacing: .03em;
  line-height: 30px;
}

@media (max-width: 767px) {
  .p-thirdMsg {
    display: block;
  }
  .p-thirdMsg .wrap {
    margin: 70px 0;
    height: 320px;
    overflow: hidden;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .p-thirdMsg .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 80px;
    -webkit-transform: translate(0, -70px);
            transform: translate(0, -70px);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-box-shadow 0.5s ease;
    transition: -webkit-box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease;
    transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
  }
  .p-thirdMsg .btn span {
    position: relative;
    padding-bottom: 20px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .1em;
  }
  .p-thirdMsg .btn span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 75px;
    height: 7px;
    margin: 12px auto 0;
    background: url("/memorial/assets/img/ico_arrow02.png") center no-repeat;
    background-size: 75px 7px;
    -webkit-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
  }
  .p-thirdMsg .btn span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 75px;
    height: 7px;
    margin: 12px auto 0;
    background: url("/memorial/assets/img/ico_arrow02.png") center no-repeat;
    background-size: 75px 7px;
  }
  .p-thirdMsg .sign {
    display: block;
    padding: 0;
    margin-top: 20px;
    text-align: right;
  }
}

@media (min-width: 768px) {
  .p-thirdMsg .inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 820px;
    max-width: none;
    padding: 140px 0 0;
    margin: 0 auto;
  }
  .p-thirdMsg .inner + .inner {
    margin-top: 76px;
    padding-top: 76px;
  }
  .p-thirdMsg .inner + .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
  }
  .p-thirdMsg .txt {
    position: relative;
    width: 380px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 380px;
            flex: 0 0 380px;
  }
  .p-thirdMsg .sign {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .p-thirdMsg .btn {
    display: none;
  }
}

.p-gallery {
  position: relative;
  padding-top: 136px;
}

.p-gallery__inner {
  margin: 0 auto;
}

.p-gallery__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 768px) {
  .p-gallery__inner {
    width: 1020px;
  }
  .p-gallery__list-item {
    width: 320px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
    height: 214px;
    margin: 0 0 30px 30px;
    overflow: hidden;
  }
  .p-gallery__list-item:nth-of-type(3n + 1) {
    margin-left: 0;
  }
  .p-gallery__list-item a {
    position: relative;
  }
  .p-gallery__list-item .bgimage {
    display: block;
    width: 320px;
    height: 214px;
    background-position: center;
    background-size: cover;
  }
  .p-gallery__list-item .image {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .p-gallery__inner {
    width: 100%;
    padding: 0 20px;
  }
  .p-gallery__list-item {
    width: 50%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 48%;
            flex: 1 1 48%;
    margin: 0 0 1% 1%;
  }
  .p-gallery__list-item:nth-of-type(2n + 1) {
    margin-left: 0;
  }
  .p-gallery__list-item a {
    position: relative;
  }
  .p-gallery__list-item .bgimage {
    display: block;
    width: 100%;
    padding-top: 100%;
    background-position: center;
    background-size: cover;
  }
  .p-gallery__list-item .image {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
  }
}

.p-history {
  padding: 90px 20px 120px;
}

.p-history__inner {
  position: relative;
  max-width: 460px;
  padding-top: 120px;
  margin: 0 auto;
}

.p-history__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}

.p-history__tit {
  width: 133px;
  margin: 0 auto;
}

.p-history__list {
  margin-top: 60px;
}

.p-history__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-history__list-item:not(:first-of-type) {
  margin-top: 19px;
}

.p-history__list-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 167px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 167px;
          flex: 0 0 167px;
  margin-right: 10px;
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 20px;
}

.p-history__list-time small {
  white-space: nowrap;
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-history__list-txt {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 20px;
}

.p-history__list-txt small {
  display: block;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 27px;
}

.p-history__list-txt small.mt-0 {
  margin-top: 0;
}

.p-history__image {
  margin-top: 74px;
}

.p-history__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
  margin-top: 80px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.5s ease;
  transition: -webkit-box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
}

.p-history__link-txt {
  position: relative;
  padding-bottom: 20px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .1em;
}

.p-history__link-txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 260px;
  height: 8px;
  margin: 12px auto 0;
  background: url("/memorial/assets/img/ico_arrow.png") center no-repeat;
  background-size: 260px 8px;
  -webkit-transform: translate(-100%, 0%);
          transform: translate(-100%, 0%);
}

.p-history__link-txt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 260px;
  height: 8px;
  margin: 12px auto 0;
  background: url("/memorial/assets/img/ico_arrow.png") center no-repeat;
  background-size: 260px 8px;
}

.p-history__link:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-history__link:hover .p-history__link-txt::before {
  -webkit-animation: move0 0.4s 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
          animation: move0 0.4s 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

.p-history__link:hover .p-history__link-txt::after {
  -webkit-animation: move100 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
          animation: move100 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

@media (max-width: 767px) {
  .p-history {
    padding-top: 60px;
  }
  .p-history__inner {
    padding-top: 60px;
  }
}

@-webkit-keyframes move0 {
  from {
    -webkit-transform: translate(-100%, 0%);
            transform: translate(-100%, 0%);
  }
  to {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

@keyframes move0 {
  from {
    -webkit-transform: translate(-100%, 0%);
            transform: translate(-100%, 0%);
  }
  to {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

@-webkit-keyframes move100 {
  from {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  to {
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
  }
}

@keyframes move100 {
  from {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  to {
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
  }
}

.p-bbs {
  padding: 120px 20px 0;
  background: #EBEBEB;
}

.p-bbs__inner {
  max-width: 460px;
  margin: 0 auto;
}

.p-bbs__tit {
  width: 144px;
  margin: 0 auto;
}

.p-bbs__msg {
  margin-top: 58px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 32px;
}

.p-thanks {
  padding: 106px 20px 61px;
  background: #EBEBEB;
}

.p-thanks__inner {
  max-width: 460px;
  margin: 0 auto;
}

.p-thanks__msg {
  width: 392px;
  margin: 0 auto;
}

.p-thanks__logo {
  width: 72px;
  margin: 40px auto 0;
}

/* bbs */
.bbs {
  margin-top: 32px;
}

.bbs dt,
.bbs dd {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
}

.bbs dd + dt {
  margin-top: 24px;
}

.bbs input {
  width: 100%;
  padding: 10px 8px 10px;
  margin-top: 13px;
  border: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
}

.bbs textarea {
  resize: none;
  width: 100%;
  height: 220px;
  margin-top: 13px;
  padding: 10px 8px 10px;
  border: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
  overflow: auto;
}

.bbs__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  margin-top: 13px;
  background: #000;
  cursor: pointer;
}

.bbs__image span {
  color: #FFF;
}

.bbs__image-input {
  display: none;
}

.bbs__image-input + p {
  display: none;
}

.bbs .form-area {
  padding-bottom: 92px;
}

.bbs-post:first-of-type {
  position: relative;
  padding-top: 92px;
}

.bbs-post:first-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #CECECE;
}

.bbs-post:nth-of-type(n+2) {
  margin-top: 20px;
}

.bbs-post__inner {
  background: #FFF;
  padding: 34px 30px 36px;
  border-radius: 10px;
}

.bbs-post .new-label {
  display: none;
}

.bbs-post__name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
}

.bbs-post__name span {
  position: relative;
  padding-bottom: 6px;
}

.bbs-post__name span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}

.bbs-post__name span::after {
  content: "より";
}

.bbs-post__msg {
  margin-top: 23px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 26px;
}

.bbs-post__image img {
  margin-top: 18px;
}

.bbs-post__ctrl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.bbs-post__ctrl .edit,
.bbs-post__ctrl .delete {
  background: #000;
  padding: 6px 10px;
  margin-right: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
}

p.submit {
  position: relative;
  height: 80px;
  margin-top: 56px;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.5s ease;
  transition: -webkit-box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
}

p.submit span {
  position: absolute;
  left: 50%;
  bottom: 21px;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  display: block;
  width: 136px;
  height: 8px;
  overflow: hidden;
}

p.submit span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(-100%, 0%);
          transform: translate(-100%, 0%);
  width: 136px;
  height: 8px;
  background: url("/memorial/assets/img/ico_arrow_01.png") center no-repeat;
  background-size: 136px 8px;
}

p.submit span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  width: 136px;
  height: 8px;
  background: url("/memorial/assets/img/ico_arrow_01.png") center no-repeat;
  background-size: 136px 8px;
}

p.submit:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

p.submit:hover span::before {
  -webkit-animation: move0 0.4s 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
          animation: move0 0.4s 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

p.submit:hover span::after {
  -webkit-animation: move100 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
          animation: move100 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

p.submit input {
  margin: 0;
}

p.submit input[type=button] {
  height: 80px;
  padding-bottom: 30px;
  background: #FFF;
  cursor: pointer;
}

p.change-image img {
  max-width: noen;
  border-radius: 0;
  margin: 20px 0;
}

/* swiper */
.swiper-wrapper {
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.p-firstView .js-opening01 {
  background: #FFF;
  opacity: 1;
  -webkit-transition: opacity 2s ease, background 1.6s ease;
  transition: opacity 2s ease, background 1.6s ease;
}

.p-firstView .js-opening01.in {
  background: #000;
  opacity: 0.4;
}

.p-firstView .js-opening02 {
  opacity: 0;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}

.p-firstView .js-opening02.in {
  opacity: 1;
}

.p-firstView .js-opening02.out {
  opacity: 0;
  -webkit-transition: opacity 2.4s ease;
  transition: opacity 2.4s ease;
}

.p-firstView .js-opening04 {
  opacity: 0;
  -webkit-transition: opacity 2.4s ease;
  transition: opacity 2.4s ease;
}

.p-firstView .js-opening04.in {
  opacity: 1;
}

.p-firstView .js-opening05 {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.p-firstView .js-opening05.in {
  opacity: 1;
}

.p-firstView .js-opening06 {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.p-firstView .js-opening06.in {
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */