@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #3D3A36;
  background-color: #ffffff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

.breadcrumb {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .breadcrumb {
    font-size: 1.4rem;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}
.breadcrumb a {
  transition: opacity 0.2s;
  text-decoration: underline;
  color: #A8CACB;
}
.breadcrumb a:hover {
  opacity: 0.6;
}
.breadcrumb__current {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.pankuzu {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .pankuzu {
    font-size: 1.4rem;
  }
}

.site-wrapper {
  margin-left: 125px;
  margin-bottom: 60px;
  min-height: 100vh;
}
@media (max-width: 1029px) {
  .site-wrapper {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 60px;
  }
}

.archive-works-page,
.archive-meguru-page,
.blog-page,
.profile-page,
.qa-page,
.contact-page,
.privacy-page,
.single-works-page,
.single-meguru-page,
.single-blog-page {
  max-width: 1030px;
  margin: 0 auto;
  padding-top: 45px;
}
@media (max-width: 1029px) {
  .archive-works-page,
  .archive-meguru-page,
  .blog-page,
  .profile-page,
  .qa-page,
  .contact-page,
  .privacy-page,
  .single-works-page,
  .single-meguru-page,
  .single-blog-page {
    padding-top: 30px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 60px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn, .btn-pdf {
  min-width: 215px;
  display: inline-block;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  border: 2px solid #A8CACB;
  padding: 7px 20px 8px;
  border-radius: 25px;
  cursor: pointer;
  background: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  color: #3D3A36;
}
.btn:hover, .btn-pdf:hover {
  background-color: #A8CACB;
  color: #fff;
}
.btn--back {
  color: #3D3A36;
}
.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}
.btn-pdf::after {
  content: "PDF";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  width: 24px;
  height: 30px;
  background-color: #A8CACB;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
  flex-shrink: 0;
}
.btn-pdf:hover::after {
  background-color: white;
  color: #A8CACB;
}

.btn-story {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  padding: 3px 8px 5px;
  border-radius: 12px;
  background-color: #A8CACB;
  color: white;
}
.btn-story:hover {
  background-color: #77A9AA;
}

.btn-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btn-area .btn, .btn-area .btn-pdf {
  margin: 8px 0;
}

.pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #A8CACB;
  font-size: 1.4rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background-color: #A8CACB;
  color: white;
}

.section-title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.archive-header {
  margin-bottom: 30px;
}
.archive-header__title {
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .archive-header__title {
    font-size: 2rem;
  }
}
.archive-header__lead {
  font-size: 1.4rem;
  line-height: 2;
  max-width: 600px;
}
@media (max-width: 1029px) {
  .archive-header {
    margin-bottom: 40px;
  }
}

.archive-body {
  padding: 0 0 80px;
}
@media (max-width: 1029px) {
  .archive-body {
    padding-bottom: 60px;
  }
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 330px);
  gap: 32px 20px;
}
@media (max-width: 1029px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}
.posts-grid + .btn-area {
  margin-top: 40px;
}

.card__thumbnail {
  overflow: hidden;
}
.card__thumbnail img {
  transition: transform 0.4s ease;
}
.card__thumbnail img:hover {
  transform: scale(1.06);
}
.card__thumbnail {
  aspect-ratio: 2/3;
  margin-bottom: 10px;
  background-color: #f0f0f0;
}
.card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__title {
  margin-bottom: 5px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .card__title {
    font-size: 1.4rem;
  }
}
.card__title {
  color: #3D3A36;
}
.card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
  margin-bottom: 5px;
}
.card__cat-tag {
  font-size: 1.3rem;
  color: #A8CACB;
  text-decoration: underline;
}
.card__cat-tag:hover {
  color: #77A9AA;
}
.card__cat-tag + .card__cat-tag::before {
  content: "｜";
  display: inline-block;
  padding-right: 3px;
  color: #3D3A36;
  text-decoration: none;
}

table.nenpyo {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
}
table.nenpyo td {
  padding: 0;
  vertical-align: top;
}
table.nenpyo td:first-child {
  width: 80px;
  white-space: nowrap;
  color: #3D3A36;
}
@media (max-width: 1029px) {
  table.nenpyo td:first-child {
    width: 60px;
  }
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

.page-template-page-contact-php .grecaptcha-badge {
  visibility: visible !important;
  opacity: 1 !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 125px;
  height: 100vh;
  background-color: #ffffff;
  border-right: 1px solid #D5D5D5;
  z-index: 160;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1029px) {
  .site-header {
    width: 100%;
    height: 60px;
    border-right: none;
    border-bottom: none;
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-header__logo {
  width: 83px;
  height: 51px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.site-header__logo a {
  display: block;
  line-height: 0;
}
.site-header__logo .logo-img--pc {
  display: block;
  width: 100%;
  height: auto;
}
.site-header__logo .logo-img--sp {
  display: none;
}
@media (max-width: 1029px) {
  .site-header__logo {
    width: 221px;
    height: 24px;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
  }
  .site-header__logo .logo-img--pc {
    display: none;
  }
  .site-header__logo .logo-img--sp {
    display: block;
  }
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3D3A36;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center center;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
@media (max-width: 1029px) {
  .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    transform: none;
    width: 60px;
    height: 60px;
    background-color: #A8CACB;
    padding: 20px 16px;
    justify-content: space-between;
  }
  .hamburger span {
    background-color: #fff;
  }
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.site-header__sns {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.site-header__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: opacity 0.2s;
}
.site-header__sns a:hover {
  opacity: 0.6;
}
.site-header__sns svg {
  width: 24px;
  height: 24px;
  fill: #3D3A36;
}
@media (max-width: 1029px) {
  .site-header__sns {
    display: none;
  }
}

.site-header__sns--sp {
  position: absolute;
  top: 0;
  right: 60px;
  width: 36px;
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #77A9AA;
  padding: 10px 0;
  gap: 8px;
}
.site-header__sns--sp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
.site-header__sns--sp svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
@media (max-width: 1029px) {
  .site-header__sns--sp {
    display: flex;
  }
}

.global-nav {
  position: fixed;
  top: 0;
  left: 125px;
  width: calc(50% - 125px);
  height: 100vh;
  background-color: #ffffff;
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 60px 50px;
}
.global-nav.is-open {
  transform: translateX(0);
}
.global-nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.global-nav__list li:nth-child(4),
.global-nav__list li:nth-child(6),
.global-nav__list li:nth-child(8) {
  margin-bottom: 20px;
}
.global-nav__list a {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3D3A36;
  text-transform: uppercase;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.global-nav__list a:hover {
  opacity: 0.6;
}
.global-nav__list a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M10 0H2C.9 0 0 .9 0 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM9 7H7v2H5V7H3V5h2V3h2v2h2v2z' fill='%233D3A36'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.global-nav__list li:nth-child(9) a {
  font-size: 1.3rem;
}
@media (max-width: 1029px) {
  .global-nav {
    left: 0;
    width: 100%;
    background-color: #A8CACB;
    padding: 80px 40px 40px;
    justify-content: center;
  }
  .global-nav__list a {
    color: #fff;
    font-size: 1.6rem;
  }
  .global-nav__list a[target=_blank]::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M10 0H2C.9 0 0 .9 0 2v8c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V2c0-1.1-.9-2-2-2zM9 7H7v2H5V7H3V5h2V3h2v2h2v2z' fill='%23ffffff'/%3E%3C/svg%3E");
  }
}

.global-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.global-nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.site-footer {
  padding: 30px 40px;
  text-align: right;
}
.site-footer__copy {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #3D3A36;
}
@media (max-width: 1029px) {
  .site-footer {
    padding: 30px 20px;
  }
}

.top-slideshow {
  width: 100%;
  height: calc(100svh - var(--wp-admin--admin-bar--height, 0px));
  position: relative;
  overflow: hidden;
}
@supports not (height: 100svh) {
  .top-slideshow {
    height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
  }
}
@media (max-width: 1029px) {
  .top-slideshow {
    height: calc(100svh - 60px);
  }
  @supports not (height: 100svh) {
    .top-slideshow {
      height: calc(100vh - 60px);
    }
  }
}
.top-slideshow .swiper,
.top-slideshow .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.top-slideshow .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-slideshow .swiper-pagination {
  bottom: 24px;
  z-index: 10;
}
.top-slideshow .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: background-color 0.3s, transform 0.3s;
}
.top-slideshow .swiper-pagination-bullet-active {
  background-color: #fff;
  transform: scale(1.3);
}

.top-description {
  width: 100%;
  margin: 0 auto;
  padding: 120px 0 110px;
  background-image: url(../images/front-page/bg-description.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.top-description__inner {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.top-description__inner .section-title {
  margin-bottom: 30px;
}
.top-description__inner p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
@media (max-width: 1029px) {
  .top-description {
    padding: 60px 25px;
  }
  .top-description__inner {
    width: 100%;
  }
}

.top-works {
  max-width: 1030px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.top-works__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  border-bottom: 1px solid #3D3A36;
  padding-bottom: 16px;
}
.top-works__more a {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #3D3A36;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.top-works__more a:hover {
  opacity: 0.6;
}
@media (max-width: 1029px) {
  .top-works {
    width: calc(100% - 50px);
    max-width: none;
    padding: 60px 0;
  }
}

.top-library {
  background-color: #F4EED3;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.top-library__inner {
  width: 740px;
  margin: 0 auto;
}
.top-library__image {
  width: 100%;
}
.top-library__image img {
  width: 100%;
  height: auto;
  border-radius: 25px 25px 0 0;
}
.top-library__content {
  width: 100%;
  padding: 60px 100px;
  border-radius: 0 0 25px 25px;
  background-color: white;
}
.top-library__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  line-height: 1.6;
}
.top-library__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
}
.top-library .nenpyo {
  margin: 30px 0 45px;
}
@media (max-width: 1029px) {
  .top-library {
    padding: 40px 25px;
  }
  .top-library__content {
    width: 100%;
    padding: 40px;
    border-radius: 0 0 20px 20px;
  }
  .top-library__image img {
    border-radius: 20px 20px 0 0;
  }
  .top-library__content {
    padding: 40px;
    border-radius: 0 0 20px 20px;
  }
  .top-library .btn {
    display: inline-block;
  }
}

.profile-page__title {
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .profile-page__title {
    font-size: 2rem;
  }
}

.profile-section__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .profile-section__title {
    font-size: 1.8rem;
  }
}
.profile-section__title {
  margin-bottom: 10px;
}
.profile-section__subtitle {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .profile-section__subtitle {
    font-size: 1.4rem;
  }
}
.profile-section__subtitle {
  font-weight: 700;
  margin-bottom: 30px;
}

.profile-section {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media (max-width: 1029px) {
  .profile-section {
    display: block;
  }
}
.profile-section-content {
  width: 480px;
}
@media (max-width: 1029px) {
  .profile-section-content {
    width: 100%;
  }
  .profile-section-content + .profile-section-content {
    margin-top: 80px;
  }
}
.profile-section__image {
  margin-bottom: 30px;
}
.profile-section__content p {
  margin: 0 0 5px;
}
.profile-section__content ul {
  margin: 0 0 20px;
  padding-left: 0;
}
.profile-section__content ul li {
  padding-left: 1.2em;
  position: relative;
}
.profile-section__content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.blog-page {
  padding-bottom: 80px;
}
.blog-page .blog-entry {
  border-bottom: 1px solid #3D3A36;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.blog-page .blog-entry .entry-title a {
  transition: opacity 0.2s;
}
.blog-page .blog-entry .entry-title a:hover {
  opacity: 0.6;
}

.meguru-archive-header {
  padding: 0;
  margin: 0 0 80px;
}
.meguru-archive-header__illust {
  width: 217px;
  margin: 0 auto 80px;
}
.meguru-archive-header__illust img {
  width: 100%;
  height: auto;
}
.meguru-archive-header__catchcopy {
  margin-bottom: 80px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 2em;
}
.meguru-archive-header__catchcopy p {
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 1029px) {
  .meguru-archive-header {
    padding: 0;
  }
  .meguru-archive-header__illust {
    width: 200px;
    margin-bottom: 40px;
  }
  .meguru-archive-header__illust img {
    max-width: 240px;
  }
  .meguru-archive-header__catchcopy {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5em;
  }
  .meguru-archive-header__catchcopy p {
    writing-mode: horizontal-tb;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 2;
  }
}

.single-works-page .entry-title,
.single-meguru-page .entry-title,
.single-blog-page .entry-title,
.blog-page .entry-title {
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .single-works-page .entry-title,
  .single-meguru-page .entry-title,
  .single-blog-page .entry-title,
  .blog-page .entry-title {
    font-size: 2rem;
  }
}
.single-works-page .entry-title,
.single-meguru-page .entry-title,
.single-blog-page .entry-title,
.blog-page .entry-title {
  margin-bottom: 10px;
}
.single-works-page .entry-meta,
.single-meguru-page .entry-meta,
.single-blog-page .entry-meta,
.blog-page .entry-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}
.single-works-page .entry-meta a,
.single-meguru-page .entry-meta a,
.single-blog-page .entry-meta a,
.blog-page .entry-meta a {
  transition: opacity 0.2s;
}
.single-works-page .entry-meta a:hover,
.single-meguru-page .entry-meta a:hover,
.single-blog-page .entry-meta a:hover,
.blog-page .entry-meta a:hover {
  opacity: 0.6;
}
.single-works-page .entry-cats,
.single-meguru-page .entry-cats,
.single-blog-page .entry-cats,
.blog-page .entry-cats {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.single-works-page .entry-content p,
.single-meguru-page .entry-content p,
.single-blog-page .entry-content p,
.blog-page .entry-content p {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 1.5em;
}
.single-works-page .entry-content img,
.single-meguru-page .entry-content img,
.single-blog-page .entry-content img,
.blog-page .entry-content img {
  width: 100%;
  height: auto;
  margin: 10px 0;
}

.single-works-page .entry-footer,
.single-meguru-page .entry-footer,
.single-blog-page .entry-footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.single-blog-page .entry-content,
.blog-page .entry-content {
  margin-bottom: 60px;
}
.single-blog-page .entry-content h2,
.blog-page .entry-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 2em 0 1em;
  padding-bottom: 8px;
  border-bottom: 1px solid #3D3A36;
}
.single-blog-page .entry-content h3,
.blog-page .entry-content h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 1.5em 0 0.8em;
}

.single-works-page,
.single-meguru-page {
  padding-bottom: 80px;
}
.single-works-page .breadcrumb,
.single-meguru-page .breadcrumb {
  margin-bottom: 15px;
}
.single-works-page .entry-content,
.single-meguru-page .entry-content {
  margin-bottom: 60px;
}
.single-works-page .entry-footer,
.single-meguru-page .entry-footer {
  margin-top: 60px;
}

.single-blog-page {
  padding-bottom: 80px;
}
.single-blog-page .entry-footer {
  margin-top: 60px;
}

.qa-page {
  padding-bottom: 80px;
}
.qa-page__title {
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .qa-page__title {
    font-size: 2rem;
  }
}
.qa-page__lead {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.qa-pdf-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-page {
  padding-bottom: 80px;
}
.contact-page__title {
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .contact-page__title {
    font-size: 2rem;
  }
}

.wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wpcf7 .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wpcf7 .form-row label {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.wpcf7 .form-row label .req {
  color: #c0392b;
  margin-left: 4px;
  font-size: 1.1rem;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #3D3A36;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.5rem;
  color: #3D3A36;
  background-color: #fafafa;
  transition: border-color 0.2s;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #77A9AA;
  background-color: #fff;
}
.wpcf7 textarea {
  min-height: 200px;
  resize: vertical;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  color: #b94040;
  margin-top: 4px;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 24px;
  padding: 14px 20px;
  font-size: 1.3rem;
  border-radius: 4px;
  border: none;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: rgba(168, 202, 203, 0.15);
  color: #3D3A36;
  border-left: 3px solid #A8CACB;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .wpcf7 .wpcf7-response-output.wpcf7-spam-blocked, .wpcf7 .wpcf7-response-output.wpcf7-acceptance-missing {
  background-color: #fdf0f0;
  color: #b94040;
  border-left: 3px solid #b94040;
}

.privacy-page {
  padding-bottom: 80px;
}
.privacy-page__title {
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1029px) {
  .privacy-page__title {
    font-size: 2rem;
  }
}
.privacy-page .entry-content {
  font-size: 1.5rem;
  line-height: 2;
}
.privacy-page .entry-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2em 0 1em;
}
.privacy-page .entry-content p {
  margin-bottom: 1.5em;
}

.drawer {
  position: fixed;
  bottom: 0;
  left: 125px;
  right: 0;
  height: 380px;
  background-color: #F4EED3;
  z-index: 120;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  padding: 40px 60px;
  overflow-y: auto;
}
.drawer.is-open {
  transform: translateY(0);
}
.drawer__close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.drawer__close:hover {
  opacity: 0.6;
}
.drawer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.drawer__section-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.drawer__list {
  overflow-y: auto;
  max-height: 100%;
}
.drawer__list > li {
  font-size: 1.4rem;
  padding: 6px 0;
  border-bottom: 1px dotted #ccc;
  white-space: nowrap;
  overflow-x: hidden;
}
.drawer__list .children {
  margin-top: 4px;
  padding-left: 1em;
  list-style: disc;
}
.drawer__list .children li {
  font-size: 1.4rem;
  padding: 4px 0;
  white-space: nowrap;
  list-style: disc;
}
.drawer__list a {
  transition: opacity 0.2s;
  display: inline;
  padding: 4px 0;
  text-decoration: none;
}
.drawer__list a:hover {
  opacity: 0.6;
}
@media (max-width: 1029px) {
  .drawer {
    left: 0;
    height: 60vh;
    padding: 40px 20px 20px;
  }
  .drawer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.nav-btn {
  position: fixed;
  bottom: 0;
  left: calc(50% + 62.5px);
  transform: translateX(-50%);
  z-index: 100;
}
.nav-btn__item {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background: #F4EED3;
  color: #3D3A36;
  border: none;
  border-radius: 3px 3px 0 0;
  padding: 8px 28px 9px;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  transition: opacity 0.3s ease;
}
.nav-btn__item svg {
  margin-left: 10px;
  flex-shrink: 0;
}
.nav-btn__item:hover {
  opacity: 0.7;
}
@media (max-width: 1029px) {
  .nav-btn {
    left: 50%;
    transform: translateX(-50%);
  }
}

.drawer__list .cat-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
.drawer__list .cat-item > a {
  display: inline;
  padding-right: 0;
}
.drawer__list .cat-item > .drawer__cat-toggle {
  margin-left: auto;
  background: none;
  border: none;
  padding: 0;
  width: 1.4em;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.65em;
  color: #3D3A36;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform-origin: center center;
}
.drawer__list .cat-item > .drawer__cat-toggle.is-open {
  transform: rotate(180deg);
}
.drawer__list .cat-item > .children {
  display: none !important;
  flex-basis: 100%;
}
.drawer__list .cat-item.is-open > .children {
  display: block !important;
}