img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

section {
  margin: 100px auto;
}
@media screen and (min-width: 600px) {
  section {
    margin: 150px auto;
  }
}

.global-container {
  transform: translateY(0);
  transition: all 1s ease;
  transition-delay: 3s;
}
.global-container.passive {
  display: none;
  transform: translateY(-100px);
}

.text, .works-grid__inner, .works-grid__title, .works-top__link, .skil-list__item, .section__text, .hero__sub-title, .header__link {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 200%;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 600px) {
  .text, .works-grid__inner, .works-grid__title, .works-top__link, .skil-list__item, .section__text, .hero__sub-title, .header__link {
    font-size: 1rem;
  }
}

.section-title, .contact__title, .header-mobile__title > h2, .top-contact__link, .section__title, .hero__title {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #333;
  text-transform: uppercase;
  font-family: "Roboto Serif", serif;
}
@media screen and (min-width: 600px) {
  .section-title, .contact__title, .header-mobile__title > h2, .top-contact__link, .section__title, .hero__title {
    font-size: 2rem;
  }
}

.js-title {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
  transition-delay: 0.1s;
}

.section {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease;
  transform: translateY(100px);
}
.section.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.section.show > .section__container > .js-title {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header {
  width: 100%;
  height: 60px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
@media screen and (min-width: 600px) {
  .header {
    height: 80px;
  }
}
.header.passive {
  display: none;
}
.header__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0 30px;
}
@media screen and (min-width: 600px) {
  .header__container {
    padding: 0;
  }
}
.header__btn {
  display: none;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 600px) {
  .header__btn {
    display: block;
    background: #ff7c3c;
    border: none;
    padding: 0.5rem 2rem;
    margin-left: 30px;
  }
}
.header__btn:hover {
  opacity: 0.7;
}
.header__link {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-family: "Roboto Serif", serif;
}

.header-nav__btn {
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  cursor: pointer;
}
.header-nav__btn > span {
  position: relative;
  display: block;
  width: 15px;
  height: 1px;
  background: #333;
}
@media screen and (min-width: 600px) {
  .header-nav__btn > span {
    width: 20px;
  }
}
.header-nav__btn > span::before, .header-nav__btn > span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #333;
}
.header-nav__btn > span::before {
  top: -5px;
}
@media screen and (min-width: 600px) {
  .header-nav__btn > span::before {
    top: -7px;
  }
}
.header-nav__btn > span::after {
  bottom: -5px;
}
@media screen and (min-width: 600px) {
  .header-nav__btn > span::after {
    bottom: -7px;
  }
}

.hero {
  max-width: 960px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-top: 100px;
}
.hero__container {
  position: relative;
  display: inline-block;
}
.hero__svg {
  width: 300px;
  margin-left: 15%;
}
@media screen and (min-width: 600px) {
  .hero__svg {
    width: 500px;
  }
}
.hero__inner {
  text-align: center;
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.hero__title {
  font-weight: 400;
}
.section {
  display: flex;
  justify-content: center;
  max-width: 960px;
}
.section__container {
  position: relative;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 10% 5%;
  background: #f5f5f5;
}
.section__title {
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .section__title::after {
    position: absolute;
    content: "";
    display: block;
    width: 7em;
    height: 1px;
    background: #333;
  }
}
.section__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85%;
  background: #EBEDF0;
  z-index: -1;
}
.section__text > span {
  display: block;
}

@media screen and (min-width: 600px) {
  .section--right {
    justify-content: end;
  }
}

.section__title--right {
  transform: translateX(-100px);
}
@media screen and (min-width: 600px) {
  .section__title--right {
    position: absolute;
    top: 5%;
    left: -50%;
  }
  .section__title--right::after {
    top: 50%;
    left: 110%;
  }
}

.section__inner--right::after {
  top: 22%;
  right: 20%;
}

@media screen and (min-width: 600px) {
  .section--left {
    justify-content: start;
  }
}

.section__title--left {
  transform: translateX(100px);
}
@media screen and (min-width: 600px) {
  .section__title--left {
    position: absolute;
    top: 5%;
    right: -50%;
  }
  .section__title--left::after {
    top: 50%;
    right: 110%;
  }
}

.section__inner--left::after {
  top: 22%;
  left: 20%;
}

.skil-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
}
@media screen and (min-width: 600px) {
  .skil-list {
    gap: 30px;
  }
}
.skil-list__item {
  position: relative;
  font-family: "Noto Serif JP", serif;
}
.skil-list__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
}
.skil-list__item > span {
  display: block;
}
@media screen and (min-width: 600px) {
  .skil-list__item > span {
    display: inline;
  }
}

.works-top__grid {
  display: grid;
  gap: 30px;
}
.works-top__btn {
  position: relative;
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: 70px;
  border: none;
  background: transparent;
  transition: transform 0.8s;
}
.works-top__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -70%;
  display: block;
  width: 30px;
  height: 5px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  animation-name: kf-allow;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 600px) {
  .works-top__btn {
    margin-right: 100px;
  }
}
.works-top__btn:hover {
  transform: scale(1.2);
  opacity: 0.8;
}
.works-top__link {
  text-decoration: none;
  font-family: "Roboto Serif", serif;
}

@keyframes kf-allow {
  0%, 100% {
    transform: translateX(0) skew(45deg);
  }
  50% {
    transform: translateX(15px) skew(45deg);
  }
}
.top-contact {
  width: 100%;
  height: 300px;
  background: #000;
}
.top-contact__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.top-contact__title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5%;
}
.top-contact__link {
  color: #fff;
  font-family: "Roboto Serif", serif;
  font-weight: 400;
  text-decoration: none;
}

.header-mobile {
  display: none;
}
.header-mobile.active {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  align-items: center;
}
.header-mobile__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d9d9d9;
  position: relative;
}
@media screen and (min-width: 600px) {
  .header-mobile__btn {
    display: none;
  }
}
.header-mobile__btn > span {
  width: 60%;
  height: 2px;
  background-color: black;
  border-radius: 5px;
  display: block;
  position: absolute;
  transition: all 0.5s ease;
}
.header-mobile__btn > span:nth-child(1) {
  transform: translateY(-7px);
}
.header-mobile__btn > span:nth-child(3) {
  transform: translateY(7px);
}
.header-mobile__btn.open > span:nth-child(1) {
  transform: rotate(135deg);
}
.header-mobile__btn.open > span:nth-child(2) {
  opacity: 0;
}
.header-mobile__btn.open > span:nth-child(3) {
  transform: rotate(-135deg);
}
.header-mobile__title {
  display: flex;
  flex-basis: 40%;
  width: 100%;
  height: 50%;
  justify-content: center;
  align-items: center;
  border-left: 3px solid #EBEDF0;
  transform: translateY(-65px);
}
.header-mobile__title > h2 {
  font-weight: 400;
}
.header-mobile__list-area {
  bottom: 0;
  flex-basis: 60%;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
  transform: translate(-100%, 100%);
  animation-name: header-mobile;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.header-mobile__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #EBEDF0;
  border-radius: 50%;
}
.header-mobile__close::before, .header-mobile__close::after {
  content: "";
  position: absolute;
  display: block;
  top: 24px;
  left: 24px;
  width: 30px;
  height: 4px;
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
}
.header-mobile__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header-mobile__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-mobile__nav {
  position: absolute;
  top: 40%;
  left: -100px;
  transform: translateY(-40%);
  width: 200px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 600px) {
  .header-mobile__nav {
    width: 300px;
    left: -150px;
  }
}
.header-mobile__list {
  width: calc(var(--r) * 2px);
  height: calc(var(--r) * 2px);
  border: 1px solid black;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  --r: 100;
  animation-name: menu;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 600px) {
  .header-mobile__list {
    --r: 150;
  }
}
.header-mobile__item {
  position: absolute;
  --a2: calc(var(--a) * 1deg - 90deg);
  --x: calc(cos(var(--a2)) * (var(--r)) * 1px);
  --y: calc(sin(var(--a2)) * (var(--r)) * 1px);
  translate: var(--x) var(--y);
  background: transparent;
  transition: 0.5s;
  list-style: none;
}
.header-mobile__item > a {
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Roboto Serif", serif;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  background: #fff;
}
.header-mobile__item:hover {
  transform: scale(1.3);
}

@keyframes menu {
  0% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes header-mobile {
  100% {
    transform: translate(0);
  }
}
@keyframes nav-top {
  0% {
    transform: translateX(101%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-101%);
  }
}
@keyframes nav-bottom {
  0% {
    transform: translateX(-101%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(101%);
  }
}
.contact {
  max-width: 960px;
  margin: 150px auto 0;
}
@media screen and (min-width: 600px) {
  .contact__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.contact__title {
  text-align: center;
  display: block;
}
.contact__title > h2 {
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .contact__title {
    display: flex;
    align-items: center;
    order: 2;
    padding-right: 5%;
  }
}
.contact__form {
  width: 90%;
  max-width: 300px;
  min-width: 200px;
  margin: 0 auto;
  padding: 30px;
  background-color: #EBEDF0;
}
@media screen and (min-width: 960px) {
  .contact__form {
    flex-basis: 50%;
    order: 1;
    margin: auto;
    max-width: 400px;
  }
}

.wpcf7-form-control-wrap > input, .wpcf7-form-control-wrap > textarea {
  width: 100%;
  margin-top: 5px;
  border: none;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 960px) {
  .wpcf7-form-control-wrap > input, .wpcf7-form-control-wrap > textarea {
    margin-top: 10px;
  }
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 960px) {
  .wpcf7-form {
    gap: 30px;
  }
}
.wpcf7-form > p:last-of-type {
  text-align: center;
}

.form__label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  display: block;
}
@media screen and (min-width: 960px) {
  .form__label {
    font-size: 1rem;
  }
}
.form__label-btn {
  display: inline-block;
  background: red;
  color: #fff;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  border-radius: 15px;
  margin-left: 10px;
  width: 40px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .form__label-btn {
    font-size: 0.75rem;
  }
}
.form__label-btn--any {
  background: #777;
}
.form__submit {
  display: block;
  margin: 0 auto;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  width: 140px;
  height: 40px;
  border: none;
  font-size: 0.75em;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin: 10px auto;
  cursor: pointer;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
@media screen and (min-width: 960px) {
  .form__submit {
    width: 200px;
    height: 50px;
    font-size: 1rem;
  }
}
.form__submit:hover {
  transform: translate(5px, 5px);
  box-shadow: none;
}
.form .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}
.form .wpcf7-response-output {
  margin: 0 auto 30px !important;
  border-color: red !important;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 960px) {
  .form .wpcf7-response-output {
    font-size: 1rem;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: calc(100vh + 100px);
  background: #fff;
}
.loader.hidden {
  display: none;
}
.loader__title {
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Roboto Serif", serif;
  color: #333;
  font-size: 2rem;
  font-weight: 400;
}
.loader__title::after {
  content: "";
  border-right: 1px solid #333;
  margin-left: 2px;
  animation: flashing 1s linear infinite;
  opacity: 0;
}

@keyframes flashing {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.works {
  max-width: 960px;
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  .works {
    padding-bottom: 100px;
  }
}
.works__container {
  width: 90%;
  margin: 0 auto;
  background: #fff;
}
.works__title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Roboto Serif", serif;
  letter-spacing: 0.05em;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (min-width: 600px) {
  .works__title {
    font-size: 2rem;
    margin-bottom: 60px;
  }
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 600px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.works-grid__item {
  padding: 5%;
  background: #f5f5f5;
}
.works-grid__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 5%;
  font-family: "Roboto Serif", serif;
}
.works-grid__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.works-grid__title {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.works-grid__time {
  font-family: "Noto Serif JP", serif;
}
.works-grid__lang > span {
  font-family: "Noto Serif JP", serif;
}
.works-grid__link {
  color: #333;
  text-decoration: none;
}

/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=main.css.map */