@charset "UTF-8";
:root {
  --color-primary: #000;
  --color-background: #fff;
  --color-section-gray: #f7f7f7;
  --color-accent: #00AC11;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-body: "Shippori Mincho", serif;
  --radius-base: 8px;
  --section-heading-padding: 2em;
  --section-heading-overlap: 2em;
  --section-heading-sticky-top: 1.5rem;
  --section-mobile-heading-gap: 1.25rem;
  --section-mobile-content-inset: 0.5rem;
  --section-mobile-heading-parallax: -500px;
  --wp--preset--font-size--small: clamp(1.2rem, 3.2vw, 1.4rem);
  --wp--preset--font-size--medium: clamp(1.4rem, 3.73vw, 1.6rem);
  --wp--preset--font-size--large: clamp(1.6rem, 4.266666666666667vw, 2rem);
  --wp--preset--font-size--x-large: clamp(2rem, 5.333333333333334vw, 2.4rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-primary);
  background-color: var(--color-background);
}

/* ----- MB（1600pxワイヤー想定） ----- */
@media screen and (max-width: 768px) {
  html, body {
    font-size: 2.6666666667vw;
  }
  .no-mb {
    display: none !important;
  }
}
@-webkit-keyframes section-mobile-heading-parallax {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(var(--section-mobile-heading-parallax));
            transform: translateY(var(--section-mobile-heading-parallax));
  }
}
@keyframes section-mobile-heading-parallax {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(var(--section-mobile-heading-parallax));
            transform: translateY(var(--section-mobile-heading-parallax));
  }
}
/* ----- PC（1600pxワイヤー想定） ----- */
@media screen and (min-width: 769px) {
  html, body {
    font-size: 0.625vw;
  }
  .no-pc {
    display: none !important;
  }
}
.arrow-link {
  margin-top: 48px !important;
}
.arrow-link a {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #c2c2c2;
  text-decoration: none;
}
.arrow-link a::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 1em;
  background: url(../imgs/icon-arrow.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .arrow-link {
    margin-top: 64px !important;
  }
  .arrow-link a {
    padding-bottom: 28px;
  }
}

.arrow-link-large {
  margin-top: 48px !important;
}
.arrow-link-large a {
  font-weight: 700;
  font-size: clamp(1.6rem, 6.4vw, 3.2rem);
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #c2c2c2;
  text-decoration: none;
}
.arrow-link-large a::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 1em;
  background: url(../imgs/icon-arrow.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .arrow-link-large {
    margin-top: 64px !important;
  }
  .arrow-link-large a {
    padding-bottom: 28px;
  }
}

main,
aside {
  max-width: 100%;
}
main a,
aside a {
  text-decoration: underline;
  color: var(--color-primary);
}
main a[target=_blank],
aside a[target=_blank] {
  border: 0;
  padding: 0;
}
main a[target=_blank]::after,
aside a[target=_blank]::after {
  font-family: "bootstrap-icons";
  content: "\f1c5"; /* bi-box-arrow-up-right */
  display: inline-block;
  margin-left: 0.35em;
  font-size: 0.85em;
  line-height: 1;
  background: none;
}

.section-cta {
  text-align: center;
  margin: 0 0 10rem 0;
}
@media screen and (min-width: 769px) {
  .section-cta {
    margin: 0 0 20rem 0;
  }
}
.section-cta .section-cta__lead {
  font-family: var(--font-family-body);
  font-size: var(--wp--preset--font-size--large);
}
.section-cta .section-cta__link {
  font-family: var(--font-family-base);
}

.has-small-font-size {
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
}

.has-medium-font-size {
  font-size: clamp(1.4rem, 3.73vw, 1.6rem);
}

.has-large-font-size {
  font-size: clamp(1.6rem, 4.2666666667vw, 2rem);
}

.has-x-large-font-size {
  font-size: clamp(2rem, 5.3333333333vw, 2.4rem);
}

.wp-block-list {
  font-size: clamp(0.875rem, 4.26vw, 2.25rem);
  font-family: var(--font-family-body);
  line-height: 2;
  padding-left: 1em;
}
@media screen and (min-width: 769px) {
  .wp-block-list {
    font-size: clamp(1.6rem, 1.25vw, 2rem);
  }
}

mark.has-inline-color[style*="#E9FFD8"] {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #E9FFD8)) !important;
  background: linear-gradient(transparent 60%, #E9FFD8 60%) !important;
  padding: 0 0.1em;
}

h1 {
  font-size: clamp(2rem, 9.6vw, 3.6rem);
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  h1 {
    font-size: clamp(3.6rem, 3.25vw, 5.2rem);
  }
}

h2 {
  font-size: clamp(2rem, 5.3333333333vw, 3.2rem);
}

h3 {
  font-size: clamp(1.8rem, 1.625vw, 2.6rem);
}

/* ----- Header ----- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 2.1rem 2.5rem 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .header {
    padding: 0rem 3.375vw 0;
    background: url(../imgs/line-vertical.svg) no-repeat top center;
  }
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14rem;
  pointer-events: auto;
}
.header__logo {
  display: block;
  width: 80px;
}
@media screen and (min-width: 769px) {
  .header__logo {
    width: 8vw;
    padding-top: 2.8rem;
  }
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.header__navigation {
  display: none;
}
@media screen and (min-width: 769px) {
  .header__navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__navigation-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
  font-size: 1.6rem;
}
.header__navigation-link {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.header__navigation-link:hover {
  opacity: 0.6;
}

/* ----- Footer ----- */
.footer {
  background-color: var(--color-background);
  padding: 2.65rem 2.2rem 2.2rem;
  text-align: center;
  border-top: 1px solid #333;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 3.85rem 3rem 6.8rem;
  }
}
.footer__navigation-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem 2.7rem;
  font-size: 1.6rem;
  margin-bottom: 4.8rem;
}
@media screen and (min-width: 769px) {
  .footer__navigation-list {
    gap: 6rem;
    margin-bottom: 6.4rem;
  }
}
.footer__navigation-link {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.footer__navigation-link:hover {
  opacity: 0.6;
}
.footer__copyright {
  font-size: 1rem;
  font-family: var(--font-family-body);
  /* opacity: 0.7; */
  margin-top: 4.8rem;
}
@media screen and (min-width: 769px) {
  .footer__copyright {
    margin-top: 6.4rem;
  }
}
.footer__logo {
  display: block;
  width: 80px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .footer__logo {
    width: 128px;
  }
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-button {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 20;
  width: 13.33vw;
  height: 13.33vw;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@supports (height: 100svh) {
  .menu-button {
    bottom: auto;
    top: calc(100svh - 50px - 12px);
  }
}
@media screen and (min-width: 769px) {
  .menu-button {
    max-width: 50px;
    max-height: 50px;
  }
}

.site-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.1);
}
.site-menu__inner {
  padding: 2.1rem 2.5rem 2.2rem;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .site-menu__inner {
    max-width: 375px;
    min-width: 375px;
  }
}
.site-menu__logo {
  display: block;
  width: 34.1vw;
  max-width: 128px;
}
.site-menu__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-menu__navigation {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-menu__list {
  text-align: center;
  font-size: 2rem;
  margin: 120px 0;
}
.site-menu__item + .site-menu__item {
  margin-top: 4rem;
}
.site-menu__link {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.site-menu__link:hover {
  opacity: 0.6;
}
.site-menu__item-small {
  font-size: 1.2rem;
}
.site-menu__close {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  width: 13.33vw;
  height: 13.33vw;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@supports (height: 100svh) {
  .site-menu__close {
    bottom: auto;
    top: calc(100svh - 50px - 12px);
  }
}
@media screen and (min-width: 769px) {
  .site-menu__close {
    max-width: 50px;
    max-height: 50px;
  }
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open .site-menu {
  display: block;
}
body.is-menu-open .menu-button {
  visibility: hidden;
}

.page-top {
  position: -webkit-sticky;
  position: sticky;
  bottom: 10px;
  left: 93.9vw;
  z-index: 10;
  width: 3.75vw;
}
.page-top img {
  width: 100%;
}

.home a {
  font-family: var(--font-family-base);
}
.home {
  /* ----- Hero ----- */
}
.home .hero {
  position: relative;
  background-color: var(--color-background);
  padding: 14.8rem 0 19rem;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .home .hero {
    min-height: 100vh;
  }
}
@media screen and (min-width: 769px) {
  .home .hero {
    min-height: 70vh;
    padding: 8.3rem 0 9.2rem;
    margin: 0 auto;
  }
  .home .hero .section__inner {
    min-height: 87.5vh;
  }
}
.home .hero__intro {
  font-family: var(--font-family-body);
  font-size: clamp(1.6rem, 4.26vw, 2.4rem);
  line-height: 2;
  margin-bottom: 8.7rem;
  grid-column: 1/span 4;
}
@media screen and (min-width: 769px) {
  .home .hero__intro {
    grid-column: 2/span 2;
    grid-row: 1/-1;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    max-width: none;
    margin-bottom: 0;
    align-self: start;
    margin-right: auto;
  }
}
.home .hero__title {
  font-size: clamp(3.6rem, 9.6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.7777777778;
  grid-column: 1/span 4;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .home .hero__title {
    grid-column: 5/span 7;
    grid-row: 1;
    align-self: end;
    line-height: 2;
  }
}
.home .hero__scroll-hint {
  display: none;
}
@media screen and (min-width: 769px) {
  .home .hero__scroll-hint {
    display: block;
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-base);
    position: relative;
  }
  .home .hero__scroll-hint::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 45%;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.home {
  /* ----- About CTA ----- */
}
.home .about-cta {
  padding: 4rem 0 9.8rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .home .about-cta {
    padding: 5rem 0 0;
  }
}
.home .about-cta::after {
  content: "";
  display: block;
  position: absolute;
  width: 89.8vw;
  left: -21.3vw;
  bottom: 98px;
  background: url(../imgs/img-about-01.png) no-repeat top left;
  background-size: contain;
  aspect-ratio: 638/185;
}
@media screen and (min-width: 769px) {
  .home .about-cta::after {
    width: 39.875vw;
    left: -6vw;
    bottom: 108px;
  }
}
.home .about-cta .section__content {
  text-align: left;
  grid-column: 2/span 4;
}
@media screen and (min-width: 769px) {
  .home .about-cta .section__content {
    grid-column: 7/span 5;
  }
}
.home .about-cta__text {
  font-size: 1.6rem;
  font-size: clamp(1.6rem, 1.25vw, 2rem);
  font-family: var(--font-family-body);
  line-height: 2;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
  .home .about-cta__text {
    margin-bottom: 2.5rem;
  }
}
.home .about-cta__link {
  font-size: clamp(1.6rem, 6.4vw, 3.2rem);
  font-weight: 700;
}
.home .section__content {
  padding: 15.2rem 0;
}
@media screen and (min-width: 769px) {
  .home .section__content {
    padding: 20rem 0;
  }
}
.home .section--heading-left .section__heading-cell {
  padding-right: var(--section-mobile-heading-gap);
  grid-column: 1;
  grid-row: 1;
}
@media screen and (min-width: 769px) {
  .home .section--heading-left .section__heading-cell {
    grid-column: 2/span 2;
  }
}
.home .section--heading-left .section__content {
  grid-column: 2/span 3;
  grid-row: 1;
}
@media screen and (min-width: 769px) {
  .home .section--heading-left .section__content {
    padding-left: 0;
    grid-column: 4/span 8;
  }
}
@media screen and (min-width: 769px) {
  .home .section--heading-right .section__heading-sticky {
    margin-left: auto;
  }
}
.home .section--heading-right .section__heading-cell {
  grid-column: 4;
  grid-row: 1;
}
@media screen and (min-width: 769px) {
  .home .section--heading-right .section__heading-cell {
    grid-column: 10/span 2;
  }
}
.home .section--heading-right .section__content {
  grid-column: 1/span 3;
  grid-row: 1;
}
@media screen and (min-width: 769px) {
  .home .section--heading-right .section__content {
    padding-right: 0;
    grid-column: 2/span 8;
  }
}
.home .section--heading-right .section__heading-cell {
  padding-left: var(--section-mobile-heading-gap);
}
.home .section__heading-cell {
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  overflow: visible;
  padding-top: 0;
}
@media screen and (min-width: 769px) {
  .home .section__heading-cell {
    padding-left: 0;
    padding-right: 0;
  }
}
.home .section__heading {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(2.2rem, 9.6vw, 3.6rem);
  font-weight: 500;
  margin-top: calc(-1 * var(--section-heading-overlap));
  padding: 2rem 0;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .home .section__heading {
    white-space: nowrap;
  }
}
@media screen and (min-width: 769px) {
  .home .section__heading {
    font-size: clamp(3.6rem, 3.25vw, 5.2rem);
  }
}
.home .section.section-home-1::before {
  content: "";
  width: 63.2vw;
  right: 0;
  top: -14px;
  display: block;
  position: absolute;
  background: url(../imgs/img-top-01.png) no-repeat top left;
  background-size: contain;
  aspect-ratio: 524/158;
}
@media screen and (min-width: 769px) {
  .home .section.section-home-1::before {
    width: 32.75vw;
    right: 0;
    top: -2.3125vw;
  }
}
.home .section.section-home-2::before {
  content: "";
  display: block;
  position: absolute;
  width: 60.8vw;
  left: 0;
  top: -22px;
  background: url(../imgs/img-top-02.png) no-repeat top left;
  background-size: contain;
  aspect-ratio: 475/249;
}
@media screen and (min-width: 769px) {
  .home .section.section-home-2::before {
    width: 29.6875vw;
    left: 0;
    top: -4.25vw;
  }
}
.home .section.section-home-3::before {
  content: "";
  width: 61.86vw;
  right: 0;
  top: -34px;
  display: block;
  position: absolute;
  background: url(../imgs/img-top-03.png) no-repeat top left;
  background-size: contain;
  aspect-ratio: 498/136;
}
@media screen and (min-width: 769px) {
  .home .section.section-home-3::before {
    width: 31.125vw;
    right: 0;
    top: -48px;
  }
}

.page-about .section {
  padding-top: 10rem;
}
@media screen and (min-width: 769px) {
  .page-about .section {
    padding-top: 16rem;
  }
}
.page-about .section__heading {
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 769px) {
  .page-about .section__heading {
    margin-bottom: 5.4rem;
  }
}
.page-about .page-hero-section {
  padding-top: 0;
}
.page-about .page-hero-section .section__inner::after {
  content: "";
  grid-column: 1/span 4;
  display: block;
  height: 1px;
  background: #333;
  margin-top: 8rem;
}
@media screen and (min-width: 769px) {
  .page-about .page-hero-section .section__inner::after {
    grid-column: 2/span 10;
    margin-top: 20rem;
  }
}
.page-about .page-hero-section .section__heading {
  margin-bottom: 5.4rem;
}
.page-about .about-company {
  padding: 6rem 0 0 0;
}
@media screen and (min-width: 769px) {
  .page-about .about-company {
    padding-top: 12rem;
  }
}
.page-about .about-company .section__heading {
  margin-bottom: 1rem;
}
.page-about .about-company .section__content {
  padding-top: 0;
}
.page-about .about-company .about-company__grid {
  font-family: var(--font-family-body);
  font-size: 1.6em;
}
.page-about .about-company .about-company__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--color-primary);
  padding: 2.4rem 0;
}
@media screen and (min-width: 769px) {
  .page-about .about-company .about-company__row {
    grid-template-columns: repeat(7, 1fr);
    gap: 4.4rem;
    padding: 5rem 0;
  }
}
.page-about .about-company .about-company__label {
  grid-column: 1/span 1;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .page-about .about-company .about-company__label {
    grid-column: 1/span 2;
  }
}
.page-about .about-company .about-company__value {
  grid-column: 2/span 3;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .page-about .about-company .about-company__value {
    grid-column: 3/span 5;
  }
}
@media screen and (min-width: 769px) {
  .page-about .about-company .section__heading-cell {
    grid-column: 2/span 2;
  }
  .page-about .about-company .section__content {
    grid-column: 5/span 7;
    grid-row: 1;
  }
  .page-about .about-company .about-company__grid {
    gap: 1.5rem;
  }
  .page-about .about-company .about-company__row {
    padding: 2rem 0;
  }
}
.page-about .about-representative {
  padding-bottom: 20rem;
  position: relative;
}
.page-about .about-representative::before {
  content: "";
  display: block;
  position: absolute;
  width: 89.8vw;
  left: 0;
  bottom: 60px;
  background: url(../imgs/img-about-01.png) no-repeat top left;
  background-size: contain;
  aspect-ratio: 638/185;
}
@media screen and (min-width: 769px) {
  .page-about .about-representative::before {
    width: 39.875vw;
    left: -9.3125vw;
    bottom: 84px;
  }
}
@media screen and (min-width: 769px) {
  .page-about .about-representative {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
}
.page-about .about-representative .section__content {
  padding-top: 0;
}
.page-about .about-representative .section__content strong {
  font-weight: 500;
  font-size: clamp(2rem, 5.3333333333vw, 2.4rem);
}
.page-about .about-representative .section__content .hr-border {
  margin-bottom: 2.8rem;
}
.page-about .about-representative .section__content .hr-border::after {
  content: "";
  margin-top: 1.6rem;
  width: 3.2rem;
  height: 1px;
  background: #333;
  display: block;
}
@media screen and (min-width: 769px) {
  .page-about .about-representative .section__heading-cell {
    grid-column: 2/span 3;
  }
  .page-about .about-representative .section__content {
    grid-column: 5/span 7;
    grid-row: 1;
  }
}

.works-hero .section__heading-cell {
  padding-top: 9.6rem;
  grid-column: 1/span 4;
  grid-row: 1;
}
@media screen and (min-width: 769px) {
  .works-hero .section__heading-cell {
    padding-top: 12rem;
    grid-column: 2/span 1;
  }
}
.works-hero h1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0 auto;
}
.works-hero .section__content {
  padding-top: 12rem;
  grid-column: 1/span 4;
}
.works-hero h2 {
  margin-bottom: 4rem;
}
.works-hero h3 {
  margin-bottom: 13.4rem;
}

.works-item {
  border-bottom: 1px solid var(--color-primary);
  position: relative;
}
.works-item__link {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none !important;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 2.4rem;
}
.works-item__link::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 1em;
  background: url(../imgs/icon-arrow.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .works-item__link {
    font-size: 3.2rem;
  }
}

.page-works {
  padding-bottom: 10rem;
}
@media screen and (min-width: 769px) {
  .page-works {
    padding-bottom: 20rem;
  }
}
@media screen and (min-width: 769px) {
  .page-works .page-hero-section {
    margin-bottom: 20rem;
  }
}
.page-works .section__content {
  padding: 0;
  grid-column: 1/span 4;
}
.page-works .works-hero .section__heading-cell {
  padding-top: 0;
}
@media screen and (min-width: 769px) {
  .page-works .works-hero .section__heading-cell {
    grid-column: 2/span 1 !important;
  }
}
.page-works .works-hero .section__content {
  grid-row: 2;
  padding: 10rem 0;
}
@media screen and (min-width: 769px) {
  .page-works .works-hero .section__content {
    padding-top: 17rem !important;
    padding-bottom: 0;
  }
}
.page-works .works-hero h2 {
  margin-bottom: 4rem;
}
.page-works .works-item {
  grid-column: 1/span 4;
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 769px) {
  .page-works .works-item {
    padding-bottom: 3.5rem;
    margin-bottom: 12rem;
  }
  .page-works .works-item:nth-child(3n-2) {
    grid-column: 2/span 6;
  }
  .page-works .works-item:nth-child(3n-1) {
    grid-column: 4/span 6;
  }
  .page-works .works-item:nth-child(3n) {
    grid-column: 6/span 6;
  }
}
.page-works .works-item__meta {
  margin-top: 1.2rem;
}
@media screen and (min-width: 769px) {
  .page-works .works-item__meta {
    margin-top: 2.6rem;
  }
}
.page-works .works-item__excerpt {
  margin-top: 1rem;
}
@media screen and (min-width: 769px) {
  .page-works .works-item__excerpt {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 769px) {
  .works-list-section .section__content {
    grid-column: 4/span 6;
  }
}

.single-works .section {
  margin-bottom: 8rem;
}
@media screen and (min-width: 769px) {
  .single-works .section {
    margin-bottom: 12rem;
  }
}
.single-works .section__content {
  grid-row: 2;
}
@media screen and (min-width: 769px) {
  .single-works .section__content {
    grid-column: 1/span 12;
  }
}
@media screen and (min-width: 769px) {
  .single-works .section__content p {
    grid-column: 4/span 6;
  }
}
.single-works .works-hero h3 {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .single-works .works-hero .section__content {
    grid-row: 1;
    grid-column: 4/span 6;
    padding: 28.5rem 0 0 0;
  }
}
.single-works .works-lead-section .section__content {
  background: url(../imgs/line-vertical.png) no-repeat bottom left;
  background-size: auto 100%;
}
@media screen and (min-width: 769px) {
  .single-works .works-lead-section .section__content {
    grid-column: 4/span 6;
  }
}
.single-works .works-lead-section .section__content > .lazyblock-inner-blocks {
  display: block !important;
}
.single-works .works-lead-section .section__content p {
  font-family: var(--font-family-base);
  padding-left: 4.5rem;
}
.single-works .works-single-section .section__heading-cell {
  grid-column: 1/span 4;
  grid-row: 1;
  margin-bottom: 4rem;
}
@media screen and (min-width: 769px) {
  .single-works .works-single-section .section__heading-cell {
    grid-column: 4/span 6;
  }
}
@media screen and (min-width: 769px) {
  .single-works .works-single-section .section__content > .lazyblock-inner-blocks {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 4.4rem;
       -moz-column-gap: 4.4rem;
            column-gap: 4.4rem;
  }
}
.single-works .works-single-section .works-single__notion {
  grid-column: 1/span 4;
  font-size: clamp(1.2rem, 3.2vw, 1.2rem);
}
@media screen and (min-width: 769px) {
  .single-works .works-single-section .works-single__notion {
    grid-column: 4/span 6;
  }
}
.single-works .wp-block-image {
  margin: 0 -2.4rem;
  margin-top: 4.8rem;
}
@media screen and (min-width: 769px) {
  .single-works .wp-block-image {
    grid-column: 2/span 10;
    margin: 6rem 0 0 0;
  }
}
.single-works .wp-block-image img {
  width: 100%;
}

.aside {
  margin-top: 10rem;
}
@media screen and (min-width: 769px) {
  .aside {
    margin-top: 20rem;
  }
}
.aside h2 {
  grid-column: 1/span 4;
  margin-bottom: 4rem;
}
@media screen and (min-width: 769px) {
  .aside h2 {
    grid-column: 2/span 10;
    margin-bottom: 10rem;
  }
}
.aside .works-list-section {
  grid-row: 2;
  grid-column: 1/span 4;
}
@media screen and (min-width: 769px) {
  .aside .works-list-section {
    grid-column: 2/span 10;
  }
}
@media screen and (min-width: 769px) {
  .aside .works-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8rem 4.4rem;
  }
}
.aside .works-item {
  grid-column: span 5;
  position: relative;
  border-bottom: 1px solid #000;
  padding-bottom: 3.5rem;
  margin-bottom: 4rem;
}
.aside .works-item__label {
  background: #EBEBEB;
  border-radius: 4px;
  font-size: clamp(1.2rem, 1.125vw, 1.8rem);
  font-weight: 700;
  padding: 9px 12px;
  line-height: 1;
  display: inline-block;
}
.aside .works-item__meta {
  font-size: clamp(1.4rem, 1.25vw, 2rem);
  font-family: var(--font-family-body);
}
.aside .works-item__link {
  color: var(--color-primary);
  font-size: clamp(1.4rem, 1.25vw, 2rem);
  text-decoration: none;
  position: absolute;
  bottom: 2.4rem;
  right: 0;
}

.page-contact .section {
  border-bottom: 1px solid #333333;
}
.page-contact .section__inner {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.page-contact .page-hero-section .section__heading {
  margin-bottom: 8.8rem;
}
.page-contact .page-hero-section .wp-block-heading {
  margin-top: 0;
}
.page-contact .icon-tel {
  background: url(/wordpress/wp-content/themes/neghi2026/imgs/icon-tel.svg) no-repeat center left;
  background-size: 15.125vw auto;
  padding: 0.5vw 0 0.5vw 17.25vw;
  margin-left: -4.125vw;
  font-family: var(--font-family-base);
}
@media screen and (min-width: 769px) {
  .page-contact .icon-tel {
    background-size: 9.125vw auto;
    padding: 0.5vw 0 0.5vw 10.25vw;
    margin-left: -4.125vw;
  }
}

.page-sales-contact .page-hero-section .section__heading {
  margin-bottom: 8.8rem;
}
.page-sales-contact .page-hero-section .wp-block-heading {
  margin-top: 0;
}

.is-smf-input .no-input {
  display: none !important;
}

.is-smf-confirm .no-confirm {
  display: none !important;
}

.is-smf-complete .no-complete {
  display: none !important;
}

.snow-monkey-form {
  --_global--border-radius: 4px;
  margin-bottom: 8rem;
  margin-top: 8rem;
}
@media screen and (min-width: 769px) {
  .snow-monkey-form {
    margin-bottom: 16rem;
    margin-top: 20rem;
  }
}
.snow-monkey-form .smf-form--letter .smf-item {
  padding: 1.6rem 0;
}
.snow-monkey-form .smf-item__col {
  font-size: var(--wp--preset--font-size--large);
}
.snow-monkey-form .smf-item__label {
  font-family: var(--font-family-body);
}
.snow-monkey-form .smf-form-control::-webkit-input-placeholder, .snow-monkey-form .smf-text-control__control::-webkit-input-placeholder, .snow-monkey-form .smf-textarea-control__control::-webkit-input-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.snow-monkey-form .smf-form-control::-moz-placeholder, .snow-monkey-form .smf-text-control__control::-moz-placeholder, .snow-monkey-form .smf-textarea-control__control::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.snow-monkey-form .smf-form-control:-ms-input-placeholder, .snow-monkey-form .smf-text-control__control:-ms-input-placeholder, .snow-monkey-form .smf-textarea-control__control:-ms-input-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.snow-monkey-form .smf-form-control::-ms-input-placeholder, .snow-monkey-form .smf-text-control__control::-ms-input-placeholder, .snow-monkey-form .smf-textarea-control__control::-ms-input-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.snow-monkey-form .smf-form-control::placeholder,
.snow-monkey-form .smf-text-control__control::placeholder,
.snow-monkey-form .smf-textarea-control__control::placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.snow-monkey-form .smf-form-control,
.snow-monkey-form .smf-text-control__control,
.snow-monkey-form .smf-textarea-control__control {
  padding: 1.2rem 1.5rem !important;
}
.snow-monkey-form .smf-checkbox-control__label {
  font-size: var(--wp--preset--font-size--medium);
}
.snow-monkey-form .smf-form--letter + .smf-action {
  text-align: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.snow-monkey-form .smf-action .smf-button-control__control {
  margin-top: 48px !important;
  background-color: inherit;
  background-image: none;
  border: 0;
  border-radius: 0;
  font-size: var(--wp--preset--font-size--large);
  font-weight: 700;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #c2c2c2;
}
.snow-monkey-form .smf-action .smf-button-control__control::after {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 1em;
  background: url(../imgs/icon-arrow.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
}
.snow-monkey-form .smf-action .smf-button-control__control[data-action=back]::before {
  content: "";
  width: 1em;
  height: 1em;
  margin-right: 1em;
  background: url(../imgs/icon-arrow-left.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
}
.snow-monkey-form .smf-action .smf-button-control__control[data-action=back]::after {
  display: none;
}
@media screen and (min-width: 769px) {
  .snow-monkey-form .smf-action .smf-button-control__control {
    margin-top: 64px !important;
    padding-bottom: 28px;
  }
}
.snow-monkey-form .smf-checkbox-control {
  font-family: var(--font-family-body);
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.section {
  position: relative;
  overflow: visible;
}
.section.no-border {
  border: 0;
}
.section--gray {
  background-color: var(--color-section-gray);
}
.section--white {
  background-color: var(--color-background);
}
.section__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 2.4rem;
  overflow: visible;
  position: relative;
}
@media screen and (min-width: 769px) {
  .section__inner {
    grid-template-columns: repeat(12, 1fr);
    -webkit-column-gap: 4.4rem;
       -moz-column-gap: 4.4rem;
            column-gap: 4.4rem;
    margin: 0 5.4rem 0;
    margin-left: auto;
    margin-right: auto;
  }
}
.section__content {
  grid-column: 1/span 4;
  grid-row: 2;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.section__content p {
  font-size: clamp(0.875rem, 4.26vw, 2.25rem);
  font-family: var(--font-family-body);
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .section__content p {
    font-size: clamp(1.6rem, 1.25vw, 2rem);
  }
}
.section__content p + p {
  margin-top: 1.5rem;
}
.section__heading-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: var(--section-heading-sticky-top);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: visible;
  z-index: 2;
}
.section__heading {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .section__heading br {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  main.page .page-hero-section .section__content {
    grid-column: 4/span 8;
    padding-top: 12.3rem;
    grid-row: 1;
  }
}
main.page .section__heading-cell {
  grid-column: 1/span 4;
  grid-row: 1;
}
@media screen and (min-width: 769px) {
  main.page .section__heading-cell {
    grid-column: 4/span 6;
  }
}
main.page .section__content {
  grid-column: 1/span 4;
}
@media screen and (min-width: 769px) {
  main.page .section__content {
    grid-column: 4/span 6;
  }
}
main.page .page__title {
  margin-bottom: 3.2rem;
}
main.page .wp-block-heading {
  margin-top: 4rem;
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 769px) {
  main.page .wp-block-heading {
    margin-top: 8rem;
  }
}

main.page-simple {
  padding-top: 10.8rem;
  padding-bottom: 8rem;
}
@media screen and (min-width: 769px) {
  main.page-simple {
    padding: 20rem 0;
  }
}

.page-hero-section .section__inner {
  margin: 8rem 2.4rem 0rem;
}
@media screen and (min-width: 769px) {
  .page-hero-section .section__inner {
    margin: 12rem 0 0;
    grid-template-rows: auto;
  }
}
.page-hero-section .section__heading-cell {
  padding-top: 0;
}
@media screen and (min-width: 769px) {
  .page-hero-section .section__heading-cell {
    grid-column: 2/span 1 !important;
  }
}
.page-hero-section h1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0 auto;
}
.page-hero-section .section__body {
  margin-bottom: 2rem;
}/*# sourceMappingURL=style.css.map */