@charset "UTF-8";
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* HTML and Body */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Media elements */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form elements */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

/* List */
ul,
ol {
  list-style: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #3FA6AA;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default button styles */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/* Remove default input styles */
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Accessibility */
[hidden] {
  display: none !important;
}

body {
  color: #2E545F;
  background: #E0DED7;
}

.l-container {
  padding-inline: 3.2rem;
}

@media screen and (max-width: 1040px) {
  .l-container {
    padding-inline: 1.6rem;
  }
}
.l-footer {
  padding-block: 2rem;
}

.l-footer__content {
  display: flex;
  justify-content: center;
}

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3.2rem;
  border-bottom: 1px solid #2E545F;
}

.l-header__title {
  font-size: 3.2rem;
  font-weight: bold;
}

.l-header__nav ul {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.l-header__nav a {
  font-weight: bold;
}

.l-header__menu-btn {
  display: none;
}

@media screen and (max-width: 1040px) {
  .l-header {
    padding: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__title {
    position: relative;
    z-index: 10000;
    font-size: 2.4rem;
    transition: 0.3s;
  }
  body:has(.is-menu-open) .l-header__title {
    color: #E0DED7;
  }
  .l-header__menu-btn {
    position: relative;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    width: 4.8rem;
    height: 4.8rem;
    padding: 0.8rem 0.8rem 0.4rem 0.8rem;
    border-radius: 0.8rem;
    background: #C4BDB7;
    cursor: pointer;
  }
  .l-header__menu-btn span {
    width: 100%;
    height: 0.2rem;
    background: #2E545F;
    transition: 0.3s;
  }
  body:has(.is-menu-open) {
    overflow-y: hidden;
  }
  body:has(.is-menu-open) .l-header__menu-btn span:first-child {
    transform: translateY(0.6rem) rotate(30deg);
  }
  body:has(.is-menu-open) .l-header__menu-btn span:nth-child(2) {
    opacity: 0;
  }
  body:has(.is-menu-open) .l-header__menu-btn span:nth-child(3) {
    transform: translateY(-0.6rem) rotate(-30deg);
  }
  .l-header__menu-btn__text {
    font-size: 1rem;
    font-weight: bold;
  }
  .l-header__nav {
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #2E545F;
    transition: 0.3s;
    opacity: 0;
  }
  .l-header__nav.is-menu-open {
    visibility: visible;
    opacity: 1;
  }
  .l-header__nav ul {
    flex-direction: column;
    gap: 0;
  }
  .l-header__nav a {
    display: inline-block;
    padding: 1.6rem;
    color: #E0DED7;
  }
}
.l-inner {
  max-width: 104rem;
  margin-inline: auto;
}

.c-heading--lg {
  font-size: 3.2rem;
  font-weight: bold;
}

.c-heading--md {
  font-size: 2.8rem;
  font-weight: bold;
}

.c-heading--sm {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .c-heading--lg {
    font-size: 2.4rem;
  }
  .c-heading--md {
    font-size: 2rem;
  }
  .c-heading--sm {
    font-size: 1.8rem;
  }
}
.c-pagetop {
  visibility: hidden;
  position: fixed;
  right: 3.2rem;
  bottom: 3.2rem;
  display: block;
  width: 5rem;
  height: 5rem;
  font-size: 0;
  background: url(../img/pagetop.svg) no-repeat center;
  background-size: contain;
  transition: 0.3s;
  opacity: 0;
}
.c-pagetop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/pagetop-hov.svg) no-repeat center;
  background-size: contain;
  opacity: 0;
  transition: 0.3s;
}
.c-pagetop:hover::before {
  opacity: 1;
}
.c-pagetop.is-show {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1040px) {
  .c-pagetop {
    right: 1.6rem;
    bottom: 1.6rem;
    width: 4rem;
    height: 4rem;
  }
}
.pagination {
  display: flex;
  justify-content: center;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.8rem;
}
.pagination .current {
  color: #E0DED7;
  background: #2E545F;
}
.pagination .next {
  transform: rotate(180deg);
}

.c-post-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 97.6rem;
  margin-inline: auto;
}

.c-post-link__item {
  min-width: 3.2rem;
}
.c-post-link__item a {
  display: inline-block;
  position: relative;
}
.c-post-link__item a::before, .c-post-link__item a::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0.8rem;
  width: 0.8rem;
  height: 1rem;
  transition: 0.3s;
}
.c-post-link__item a::before {
  background: url(../img/arrow.svg) no-repeat center;
  background-size: contain;
}
.c-post-link__item a::after {
  background: url(../img/arrow-hov.svg) no-repeat center;
  background-size: contain;
  opacity: 0;
}
.c-post-link__item a:hover::before {
  opacity: 0;
}
.c-post-link__item a:hover::after {
  opacity: 1;
}
.c-post-link__item--next a {
  padding-left: 1.6rem;
}
.c-post-link__item--next a::before, .c-post-link__item--next a::after {
  left: 0;
}
.c-post-link__item--prev a {
  padding-right: 1.6rem;
}
.c-post-link__item--prev a::before, .c-post-link__item--prev a::after {
  right: 0;
  transform: scaleX(-1);
}

.p-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding-block: 6rem;
}

@media screen and (max-width: 1040px) {
  .p-404 {
    padding-block: 4rem;
  }
}
.p-ikimono {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-bottom: 6rem;
}

.p-ikimono__mv {
  padding-block: 6rem;
  background: #C4BDB7;
  border-bottom: 1px solid #2E545F;
}

.p-ikimono__mv__content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 120rem;
  margin-inline: auto;
}

.p-ikimono__mv__img {
  min-width: 30rem;
  max-width: 50rem;
  width: 40%;
}

.p-ikimono__mv__info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.6rem;
  padding: 3.2rem;
  border-radius: 2.4rem;
  background: #E0DED7;
}

.p-ikimono__other-wrap {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.p-ikimono__others {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}

/* 他の姿 */
.p-ikimono__others__slider__thumb {
  position: relative;
  margin: 0 40px 30px;
}

.slider-arrow-left,
.slider-arrow-right {
  width: 17px;
  height: 35px;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 0;
  cursor: pointer;
}

.slider-arrow-left {
  left: -40px;
}

.slider-arrow-right {
  right: -40px;
}

.p-ikimono__others__slider__thumb__list {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.p-ikimono__others__slider__thumb__list li {
  position: relative;
  min-width: calc((100% - 45px) / 4);
  height: 12rem;
  background: rgba(36, 35, 35, 0.6);
  border-radius: 1.6rem;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
}

.p-ikimono__others__slider__thumb__list li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.p-ikimono__others__slider__thumb__list li.active {
  background: transparent;
  border: 2px solid #3FA6AA;
}

.p-ikimono__others__slider__thumb__list li.active img {
  opacity: 1;
}

.p-ikimono__others__slider__info {
  padding: 40px;
  border: 2px solid #C4BDB7;
  border-radius: 1.6rem;
}

.slider-info-item {
  display: none;
}

.slider-info-item.active {
  display: flex;
  gap: 5%;
}

.p-ikimono__others__slider__info__img {
  display: block;
  min-width: 30rem;
  max-width: 40rem;
  width: 40%;
}

.p-ikimono__others__slider__info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-ikimono__others__slider__info__text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 60%;
}

/* column-2 */
.p-ikimono__others__slider--column-2 .p-ikimono__others__slider__thumb__list li {
  min-width: calc((100% - 15px) / 2);
}

.p-ikimono__others__slider--column-2 .p-ikimono__others__slider__thumb {
  margin: 0 0 30px;
}

/* column-3 */
.p-ikimono__others__slider--column-3 .p-ikimono__others__slider__thumb__list li {
  min-width: calc((100% - 30px) / 3);
}

.p-ikimono__others__slider--column-3 .p-ikimono__others__slider__thumb {
  margin: 0 0 3rem;
}

@media screen and (max-width: 768px) {
  .p-ikimono__mv {
    padding-block: 2.4rem 4rem;
  }
  .p-ikimono__mv__content {
    flex-direction: column;
  }
  .p-ikimono__mv__img {
    width: 100%;
  }
  .p-ikimono__mv__info {
    width: 100%;
  }
  .p-ikimono__mv__info {
    padding: 1.6rem;
  }
  .p-ikimono__other-wrap {
    gap: 4rem;
  }
  .p-ikimono__others {
    gap: 2.4rem;
  }
  .slider-info-item.active {
    flex-direction: column;
    align-items: center;
  }
  .p-ikimono__others__slider__info {
    padding: 1.6rem;
  }
  .p-ikimono__others__slider__info__text {
    width: 100%;
  }
  .p-ikimono__others__slider__thumb__list {
    width: calc(100% + 3.1rem);
    margin-left: -1.6rem;
    padding-inline: 1.6rem;
    overflow-x: auto;
  }
  .p-ikimono__others__slider__thumb__list li {
    height: 8rem;
    width: calc((100% - 30px) / 3);
    min-width: 15rem !important;
  }
}
.p-ikimono-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4rem 3.2rem;
}

.p-ikimono-list__link {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-ikimono-list__img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  border-radius: 2rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #C4BDB7;
}

.p-ikimono-list__img img {
  transition: 0.3s;
}

.p-ikimono-list__link:hover .p-ikimono-list__img img {
  transform: scale(1.1);
}

@media screen and (max-width: 1040px) {
  .p-ikimono-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem 1.6rem;
  }
  .p-ikimono-list__img {
    padding: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-ikimono-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-ikimono-list__link {
    gap: 0.8rem;
  }
}
.p-page {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-block: 6rem;
}

.p-page__content a {
  color: #3FA6AA;
}
.p-page__content a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .p-page {
    gap: 4rem;
    padding-block: 4rem;
  }
}
.p-post {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 104rem;
  margin-inline: auto;
  padding-block: 6rem;
}
.p-post--work-manga .wp-block-image {
  max-width: 60rem;
}

.p-post__info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-post__date {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  color: #A8A19C;
}

.p-post__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-post__content .wp-block-image {
  margin-inline: auto;
}
.p-post__content .wp-block-image:not(:last-child) {
  margin-bottom: 1.6rem;
}

@media screen and (max-width: 768px) {
  .p-post {
    gap: 4rem;
    padding-block: 4rem;
  }
}
.p-post-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 3.2rem;
}

.p-post-list__link {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-post-list__img {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2rem;
}

.p-post-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.p-post-list__link:hover .p-post-list__img img {
  transform: scale(1.1);
}

@media screen and (max-width: 1040px) {
  .p-post-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-post-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-post-list__link {
    gap: 0.8rem;
  }
}
.p-top-post {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-block: 3.2rem 8rem;
}

@media screen and (max-width: 1040px) {
  .p-top-post {
    padding-bottom: 6rem;
  }
}
/*# sourceMappingURL=style.css.map */