@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Gothic", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: #1c1c1c;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-open {
  overflow: hidden;
}

.fv.fade {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.fv.fade.active {
  opacity: 1;
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1230px;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 60px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
}
.header.is-dark .header__title {
  color: #1c1c1c;
}
.header.is-dark .header-nav__link {
  color: #1c1c1c;
}
.header.is-dark .hamburger__line {
  background-color: #1c1c1c;
}
.header.is-dark .header-nav__link--instagram path {
  fill: #1c1c1c;
}
.header.is-open .header__title {
  color: #1c1c1c;
}
.header.is-open .hamburger__line {
  background-color: #1c1c1c;
}
.header.subpage-header .header-nav__link {
  color: #1c1c1c;
}
.header.subpage-header .header__title {
  color: #1c1c1c;
}
.header.subpage-header .header-nav__link--instagram path {
  fill: #1c1c1c;
}
.header.subpage-header .hamburger__line {
  background-color: #1c1c1c;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

.header__title {
  color: #ffffff;
  font-size: 2rem;
  -webkit-transition: opacity 0.3s ease, color 0.5s ease;
  transition: opacity 0.3s ease, color 0.5s ease;
  font-family: tt-commons-pro, sans-serif;
}
@media screen and (min-width: 768px) {
  .header__title {
    font-size: 2.8rem;
  }
}
.header__title a {
  letter-spacing: 0.07em;
  font-weight: 300;
}

.header-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header-nav {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__item {
    font-family: tt-commons-pro, sans-serif;
  }
  .header-nav__item a {
    font-weight: 300;
    letter-spacing: 0.07em;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__item:nth-child(6) {
    line-height: 0;
  }
}

.header-nav__link {
  color: #ffffff;
  -webkit-transition: opacity 0.3s ease, color 0.5s ease;
  transition: opacity 0.3s ease, color 0.5s ease;
}
@media screen and (min-width: 1024px) {
  .header-nav__link:hover {
    opacity: 0.6;
  }
}

.header-nav__link--instagram {
  display: none;
}
.header-nav__link--instagram path {
  -webkit-transition: opacity 0.3s ease, fill 0.5s ease;
  transition: opacity 0.3s ease, fill 0.5s ease;
}
@media screen and (min-width: 768px) {
  .header-nav__link--instagram {
    display: block;
  }
}

.hamburger {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 15px;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger .hamburger__line {
  position: absolute;
  background-color: #ffffff;
  height: 1.5px;
  width: 30px;
  -webkit-transition: background-color 0.3s ease, top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  top: 0;
  left: 0;
}
.hamburger .hamburger__line:nth-child(2) {
  top: auto;
  bottom: 0;
  left: 0;
}
.hamburger.is-open {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
  top: 7.5px;
  -webkit-transform: rotate(45deg) translateY(-1px);
          transform: rotate(45deg) translateY(-1px);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  bottom: 7.5px;
  -webkit-transform: rotate(-45deg) translateY(1px);
          transform: rotate(-45deg) translateY(1px);
}

.header__drawer {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.header__drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-nav {
  padding-top: 100px;
  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;
}

.drawer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
}

.drawer-nav__link {
  font-size: 1.5rem;
  font-family: tt-commons-pro, sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .drawer-nav__link:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 768px) {
  .drawer-nav__link {
    font-size: 1.6rem;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
}

.section-title__en {
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  font-family: "tt-commons-pro-thin", sans-serif;
  font-weight: 100;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 4rem;
  }
}

.section-title__ja {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .section-title__ja {
    font-size: 1.4rem;
    line-height: 33px;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.view-all {
  font-size: 1.4rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  font-family: tt-commons-pro, sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .view-all:hover {
    color: #999;
  }
}

.footer {
  padding-top: 50px;
  padding-bottom: 80px;
  overflow: hidden;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
@media screen and (min-width: 768px) {
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: auto;
  }
}

.footer__title {
  font-size: 2.4rem;
  font-family: tt-commons-pro, sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer__copyright {
  font-family: tt-commons-pro, sans-serif;
  font-size: 0.7rem;
  margin-top: 15px;
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .footer-nav__list {
    gap: 25px;
  }
}

.footer-nav__link {
  font-size: 1.1rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: tt-commons-pro, sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .footer-nav__link {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer-nav__link:hover {
    opacity: 0.6;
  }
}

.footer-nav__link--instagram {
  width: 17px;
  height: auto;
  display: block;
  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;
}
.footer-nav__link--instagram svg {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer-nav__link--instagram {
    width: 25px;
  }
}

.pagination-container {
  margin-top: 60px;
}

.page-numbers {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.page-numbers a {
  width: 20px;
  height: 20px;
  font-size: 2rem;
}
@media (any-hover: hover) {
  .page-numbers a:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
.page-numbers span {
  width: 20px;
  height: 20px;
  font-size: 2rem;
}

.prev.page-numbers::before {
  display: block;
  content: "<";
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

.next.page-numbers::before {
  display: block;
  content: ">";
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

.fv {
  height: 100vh;
  width: 100%;
  background-attachment: scroll;
  overflow: hidden;
}
.fv__scroll {
  position: absolute;
  text-align: center;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  z-index: 1;
}

.fv__img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fv__img img {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 のショートハンド */
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0; /* 最初は全て非表示（JSで1枚目だけ表示に） */
  will-change: opacity;
  pointer-events: none; /* クリックは下の要素に通す（必要なら） */
  /* 動きが苦手なユーザー配慮 */
}
@media (prefers-reduced-motion: reduce) {
  .fv__img img .fv__img img {
    opacity: 1 !important;
  }
}

main {
  z-index: 2;
  background-color: #ffffff;
}

.news {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.news__container {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .news__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 70px;
  }
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-top: 60px;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .news__list {
    width: 600px;
    max-width: 600px;
    gap: 45px;
    margin-top: 0;
  }
}

.news__item {
  border-bottom: solid 0.5px #1c1c1c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding-bottom: 30px;
}

.news-item__wrapper {
  display: block;
}
@media screen and (min-width: 1024px) {
  .news-item__wrapper:hover .news-item__link span {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .news-item__wrapper:hover .news-item__head {
    opacity: 0.6;
  }
}

.news-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .news-item__head {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.news-item__time {
  font-size: 1.1rem;
  font-family: tt-commons-pro, sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .news-item__time {
    min-width: 85px;
  }
}

.news-time__title {
  font-size: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .news-time__title {
    font-size: 1.6rem;
  }
}

.news-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: tt-commons-pro, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 25px;
  color: rgba(28, 28, 28, 0.5);
}
.news-item__link span {
  line-height: 0;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-left: 10px;
}

.works {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .works {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

.works__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .works__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .works__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.works-item,
.top-works-item {
  aspect-ratio: 1/1;
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .works-item:hover img,
  .top-works-item:hover img {
    opacity: 0.6;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.works-item img,
.top-works-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, transform 0.5s ease;
  transition: opacity 0.3s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.works__link {
  text-align: center;
  margin-top: 45px;
}
@media screen and (min-width: 1024px) {
  .works__link {
    margin-top: 70px;
  }
}

.blog {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .blog {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

.blog__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .blog__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .blog__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-item,
.top-blog-item {
  aspect-ratio: 1/1;
  cursor: pointer;
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .blog-item:hover img,
  .top-blog-item:hover img {
    opacity: 0.6;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.blog-item img,
.top-blog-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, transform 0.5s ease;
  transition: opacity 0.3s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.blog__link {
  text-align: center;
  margin-top: 45px;
}
@media screen and (min-width: 1024px) {
  .blog__link {
    margin-top: 70px;
  }
}

.contact {
  padding-top: 80px;
  padding-bottom: 80px;
}
.contact .seciton-title {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__inner {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.contact__read {
  font-size: 1.5rem;
  margin-top: 60px;
  line-height: 28px; /* 233.333% */
}
@media screen and (min-width: 768px) {
  .contact__read {
    font-size: 1.6rem;
  }
}

.contact__container {
  margin-top: 40px;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.contact-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.contact-form__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contact-form__label {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact-form__label {
    font-size: 1.6rem;
  }
}

.contact-form__tag {
  display: inline-block;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 7px;
  background: #f45555;
  color: #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form__input {
  height: 40px;
  width: 100%;
  font-size: 1.2rem;
  padding: 10px;
}
@media screen and (min-width: 1024px) {
  .contact-form__input {
    font-size: 1.4rem;
  }
}

.contact-form__textarea {
  height: 270px;
  width: 100%;
  padding: 10px;
}
.contact-form__submit {
  margin-top: 20px;
  text-align: center;
}

.wpcf7-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1c1c1c;
  color: #ffffff;
  border: none;
  letter-spacing: 0.7px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .wpcf7-submit:hover {
    opacity: 0.8;
  }
}

.contact-form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1c1c1c;
  color: #ffffff;
  border: none;
  letter-spacing: 0.7px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .contact-form__button:hover {
    opacity: 0.8;
  }
}

.page-works .works {
  padding-top: 140px;
}
@media screen and (min-width: 768px) {
  .page-works .works {
    padding-top: 180px;
  }
}
.page-works .works-page__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .page-works .works-page__categories {
    margin-top: 100px;
    gap: 70px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page-works .works-page__categories .works-page__category {
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-family: tt-commons-pro, sans-serif;
  font-weight: 300;
  padding-bottom: 0.5em;
  opacity: 0; /* autoAlpha: 0 に対応 */
  visibility: hidden; /* autoAlpha: 0 に対応 */
  -webkit-transform: translateY(100px);
          transform: translateY(100px); /* y: 100 に対応 */
  -webkit-filter: blur(30px);
          filter: blur(30px); /* 初期はぼかし */
  color: rgba(28, 28, 28, 0.6);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.page-works .works-page__categories .works-page__category::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .page-works .works-page__categories .works-page__category:hover {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    color: #1c1c1c;
  }
  .page-works .works-page__categories .works-page__category:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.page-works .works-page__categories .works-page__category.active {
  opacity: 1;
  color: #1c1c1c;
}
.page-works .works-page__categories .works-page__category.active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media screen and (min-width: 768px) {
  .page-works .works-page__categories .works-page__category {
    font-size: 2rem;
  }
}
.page-works .works__items {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .page-works .works__items {
    margin-top: 100px;
  }
}

.page-blog .blog {
  padding-top: 140px;
}
@media screen and (min-width: 768px) {
  .page-blog .blog {
    padding-top: 180px;
  }
}
.page-blog .blog__items {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .page-blog .blog__items {
    margin-top: 100px;
  }
}

:where(dialog) {
  width: unset;
  max-width: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  outline: none; /* ← これを追加 */
  -webkit-box-shadow: none;
          box-shadow: none; /* ← これを追加 */
  overflow: unset;
}

body:has(dialog[open]) {
  overflow: hidden;
}

.blog-modal {
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.blog-modal::-ms-backdrop {
  opacity: 0;
  -ms-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.blog-modal::backdrop {
  opacity: 0;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.blog-modal.js-show.modal__content {
  opacity: 1;
}
.blog-modal.js-show::-ms-backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(28, 28, 28, 0.8);
  backdrop-filter: blur(6px);
}
.blog-modal.js-show::backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(28, 28, 28, 0.8);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.blog-modal[data-modal-index="0"] .modal-prev {
  display: none;
}

.blog-modal[data-modal-index="59"] .modal-next {
  display: none;
}

.modal__close-button {
  position: fixed;
  display: grid;
  place-items: center;
  top: 5%;
  right: 3%;
  width: 50px;
  height: 50px;
}
.modal__close-button::before, .modal__close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 2.5px;
  background-color: #ffffff;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.modal__close-button::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.blog-modal__inner {
  width: 85%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .blog-modal__inner {
    padding-inline: 60px;
  }
}

.blog-modal__img {
  text-align: center;
  max-width: 500px;
  margin-inline: auto;
}
.blog-modal__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-modal__title {
  text-align: center;
  margin-top: 20px;
  color: #ffffff;
  max-width: 500px;
  width: 100%;
  font-size: 1.6rem;
  margin-right: auto;
  margin-left: auto;
}

.modal-prev {
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  font-size: 0;
  cursor: pointer;
  width: auto;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .modal-prev {
    left: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .modal-prev {
    left: 20px;
  }
}
.modal-prev::before {
  content: "《";
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #ffffff;
  font-weight: 300;
}

.modal-next {
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  color: #ffffff;
  font-size: 0;
  cursor: pointer;
  width: auto;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .modal-next {
    right: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .modal-next {
    right: 20px;
  }
}
.modal-next::before {
  content: "》";
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #ffffff;
  font-weight: 300;
}

.page-news .news {
  padding-top: 140px;
}
@media screen and (min-width: 768px) {
  .page-news .news {
    padding-top: 180px;
  }
}
.page-news .news-item {
  display: grid;
  grid-template-rows: auto auto minmax(52px, auto) auto;
  gap: 0;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: solid 1px rgba(28, 28, 28, 0.5);
}
@media screen and (min-width: 1024px) {
  .page-news .news-item:hover {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0.6;
  }
  .page-news .news-item:hover .news-item__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .page-news .news-item:hover .news-item__link span {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.page-news .news__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .page-news .news__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .page-news .news__items {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
.page-news .news-item__img {
  width: 100%;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.page-news .news-item__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.page-news .news-item__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  font-weight: 300;
  gap: 10px;
  margin-top: 20px;
}
.page-news .news-item__time {
  font-size: 1.4rem;
  font-weight: 300;
}
.page-news .news-item__category {
  font-size: 1.4rem;
  font-family: tt-commons-pro, sans-serif;
  font-weight: 300;
}
.page-news .news-item__title {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.page-news .news-item__link {
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
  .page-about .about__inner {
    max-width: calc(830px + 6%);
    padding-right: 3%;
    padding-left: 3%;
  }
}
.page-about .about {
  padding-top: 140px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .page-about .about {
    padding-top: 180px;
    padding-bottom: 120px;
  }
}
.page-about .about__content {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .page-about .about__content {
    margin-top: 74px;
  }
}
.page-about .about__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .page-about .about__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page-about .about__pic {
  max-width: 100%;
  width: 322px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-about .about__pic img {
  aspect-ratio: 322/419;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
}
.page-about .about__text {
  max-width: 500px;
  width: 100%;
}
.page-about .about__text p {
  font-size: 1.4rem;
  color: #1c1c1c;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.28px;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .page-about .about__text p {
    font-size: 1.5rem;
    line-height: 35px; /* 214.286% */
  }
}
.page-about .about__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.page-about .about__name--ja {
  font-size: 2.6rem;
}
@media screen and (min-width: 768px) {
  .page-about .about__name--ja {
    font-size: 2.8rem;
  }
}
.page-about .about__name--en {
  font-size: 1.5rem;
  font-family: tt-commons-pro, sans-serif;
  font-weight: 200;
  letter-spacing: 0.05em;
}
.page-about .about__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .page-about .about__icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
    margin-top: 28px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.page-about .about__inst {
  width: 32px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.page-about .about__inst svg {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1024px) {
  .page-about .about__inst:hover {
    opacity: 0.6;
  }
}
.page-about .about__pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .page-about .about__pdf {
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .page-about .about__pdf:hover {
    opacity: 0.6;
  }
}
.page-about .about__pdf--icon {
  width: 42px;
  height: auto;
}
.page-about .about__pdf--icon svg {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-about .about__pdf--icon {
    width: 58px;
  }
}
.page-about .about__pdf--text {
  color: #cf211a;
  font-family: "Yu Gothic";
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.26px;
}
@media screen and (min-width: 768px) {
  .page-about .about__pdf--text {
    font-size: 1.5rem;
  }
}

.about__bottom {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .about__bottom {
    margin-top: 64px;
  }
}

.about__career {
  max-width: 500px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .about__career {
    max-width: 100%;
  }
}

.career__title {
  font-size: 2.3rem;
}

.career__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .career__list {
    margin-top: 28px;
  }
}

.career__item {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .career__item {
    font-size: 1.5rem;
  }
}

.page-contact .contact {
  padding-top: 140px;
}
@media screen and (min-width: 768px) {
  .page-contact .contact {
    padding-top: 180px;
  }
}

.page-news-single .news-single__inner {
  max-width: 880px;
  padding-top: 140px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .page-news-single .news-single__inner {
    padding-top: 180px;
  }
}
.page-news-single .news-single__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.page-news-single .news-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  line-height: 1.5;
}
.page-news-single .news-single__date {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-news-single .news-single__date {
    font-size: 1.6rem;
  }
}
.page-news-single .news-single__categroy {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-news-single .news-single__categroy {
    font-size: 1.6rem;
  }
}
.page-news-single .news-single__title {
  font-size: 2.3rem;
  line-height: 1.5;
}
.page-news-single .news-single__img {
  width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
.page-news-single .news-single__img img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
}
.page-news-single .news-single__text {
  margin-top: 40px;
}
.page-news-single .news-single__text p {
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .page-news-single .news-single__text p {
    font-size: 1.6rem;
  }
}

.works-single__inner {
  max-width: 880px;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .works-single__inner {
    padding-top: 180px;
  }
}

.works-single__head {
  position: relative;
}

.works-single__body {
  margin-top: 60px;
  font-size: 1.4rem;
}

.works-single__meta {
  margin-top: 10px;
}

.works-single__title {
  font-size: 2.1rem;
  text-align: center;
}

.works-single__description {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.works-single__category {
  display: inline-block;
  font-family: tt-commons-pro, sans-serif;
  font-weight: 100;
}

.works-single__link {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: tt-commons-pro, sans-serif;
  letter-spacing: 0.05em;
  margin-top: 25px;
  color: rgba(28, 28, 28, 0.5);
  line-height: normal;
  font-weight: 600;
  margin-right: auto;
  margin-left: auto;
}
.works-single__link span {
  line-height: 0;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-left: 10px;
}
@media screen and (min-width: 1024px) {
  .works-single__link:hover span {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}

.single-button {
  font-size: 14px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.works-swiper__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.works-swiper__overlay {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  pointer-events: none; /* 透過クリックにして… */
}

.works-swiper__pagination {
  bottom: auto !important;
  margin-top: 10px;
}
.works-swiper__pagination span {
  background-color: rgba(28, 28, 28, 0.8);
}

.works-swiper__prev {
  left: -3.90625vw !important;
  color: rgba(28, 28, 28, 0.8);
  z-index: 5;
  pointer-events: auto;
  display: none;
}
@media screen and (min-width: 768px) {
  .works-swiper__prev {
    display: block;
  }
}

.works-swiper__next {
  right: -3.90625vw !important;
  color: rgba(28, 28, 28, 0.8);
  z-index: 5;
  pointer-events: auto;
  display: none;
}
@media screen and (min-width: 768px) {
  .works-swiper__next {
    display: block;
  }
}