html {
  font-family: "Noto Sans", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: 16px;
  background-color: #fefefe;
  max-width: 1920px;
  position: relative;
}

.section__title {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0.5em;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  color: #000000;
  padding: 8px;
  position: relative;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 835px) {
  .section__title {
    font-size: 1.5rem;
  }
}
.section__title span {
  letter-spacing: 0;
}
.section__title::before {
  content: "";
  height: 4px;
  width: 0;
  left: 0;
  transform: translateX(-50%);
  background-color: #000000;
  position: absolute;
  top: 6px;
  transition: 1s;
}
@media screen and (max-width: 480px) {
  .section__title::before {
    max-width: 320px;
  }
}

.section__title--active::before {
  content: "";
  height: 4px;
  width: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  position: absolute;
  top: 6px;
}

.section__subtitle {
  font-size: 2.25rem;
  font-weight: bold;
  color: #000000;
  padding: 8px;
  display: block;
  text-align: left;
  width: 0;
  border-bottom: 2px solid #000000;
  transition: 1s;
}
@media screen and (max-width: 835px) {
  .section__subtitle {
    font-size: 1.5rem;
    padding: 4px;
    text-align: center;
  }
}
.section__subtitle--active {
  width: 100%;
}

.section__subtitle--work {
  font-size: 2.25rem;
  font-weight: bold;
  color: #000000;
  padding: 8px;
  display: block;
  text-align: left;
  width: 100%;
  border-bottom: 2px solid #000000;
  transition: 1s;
}
@media screen and (max-width: 835px) {
  .section__subtitle--work {
    font-size: 1.5rem;
    padding: 4px;
    text-align: center;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 835px) {
  .sp-br {
    display: block;
  }
}

.text--animation {
  opacity: 0;
  visibility: hidden;
}

.button1 {
  padding: 16px 40px;
  background-color: #000000;
  color: #fefefe;
  border: 1px solid #ececec;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: inline-block;
  font-weight: bold;
  font-size: 1.5rem;
  position: relative;
}
@media screen and (max-width: 835px) {
  .button1 {
    font-size: 1rem;
    padding: 8px 32px;
  }
}
.button1::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ececec;
  transform: scaleY(0);
  transition: all 0.5s ease;
}
.button1:hover {
  color: #000000;
}
.button1:hover::before {
  transform: scaleY(1);
}
.button1__text {
  position: relative;
}

.button2 {
  padding: 16px 40px;
  background-color: #fefefe;
  color: #000000;
  border: 1px solid #eee200;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: inline-block;
  font-weight: bold;
  font-size: 1.5rem;
  position: relative;
}
@media screen and (max-width: 835px) {
  .button2 {
    font-size: 1rem;
    padding: 8px 32px;
  }
}
.button2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  transform: scaleY(0);
  transition: all 0.5s ease;
}
.button2:hover {
  color: #fefefe;
}
.button2:hover::before {
  transform: scaleY(1);
}
.button2__text {
  position: relative;
}

.button__wrap {
  padding: 24px;
  text-align: center;
}

.header {
  width: 100%;
  max-width: 1920px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fefefe;
}
.header__inner {
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner .header__icon {
  max-width: 60px;
  max-height: 60px;
}
.header__inner .header__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 835px) {
  .header__inner .header__icon img {
    width: 48px;
    height: 48px;
  }
}
.header__inner .header__icon:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.header__inner nav {
  width: 100%;
}
@media screen and (max-width: 835px) {
  .header__inner nav {
    display: none;
  }
}
.header__menu {
  gap: 64px;
  font-size: 1rem;
  letter-spacing: 0.5em;
  display: flex;
  justify-content: end;
  padding: 0 104px;
}
.header__menu__item {
  position: relative;
}
.header__menu__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 4px;
  background-color: #eee200;
  width: 0%;
  transition: 0.3s;
}
.header__menu__item:hover {
  opacity: 0.5;
  transition: 0.2s 0.1s;
}
.header__menu__item:hover::after {
  width: 100%;
  opacity: 1;
}
.header__hamburgerButton {
  position: relative;
  max-width: 60px;
  height: 60px;
  padding: 8px;
  width: 100%;
  text-align: center;
}
.header__hamburgerButton:hover {
  cursor: pointer;
}
@media screen and (max-width: 835px) {
  .header__hamburgerButton {
    max-width: 48px;
    height: 48px;
  }
}
.header__hamburgerButton span {
  width: 100%;
  position: absolute;
  transition: 0.5s;
}
.header__hamburgerButton span:nth-child(1) {
  top: 12px;
  left: 0;
  background-color: #000000;
  height: 4px;
}
@media screen and (max-width: 835px) {
  .header__hamburgerButton span:nth-child(1) {
    top: 0;
  }
}
.header__hamburgerButton span:nth-child(2) {
  top: 50%;
  left: 0;
  background-color: #000000;
  height: 4px;
}
@media screen and (max-width: 835px) {
  .header__hamburgerButton span:nth-child(2) {
    top: 28px;
  }
}
.header__hamburgerButton span:nth-child(3) {
  top: 40px;
  left: 0;
}
@media screen and (max-width: 835px) {
  .header__hamburgerButton span:nth-child(3) {
    display: none;
  }
}
.header__hamburgerButton--active {
  z-index: 12;
}
.header__hamburgerButton--active span {
  transition: 0.3s;
}
.header__hamburgerButton--active span:nth-child(1) {
  background-color: #fefefe;
  transform: translateY(12px) rotate(45deg);
}
@media screen and (max-width: 835px) {
  .header__hamburgerButton--active span:nth-child(1) {
    transform: translateY(18px) rotate(45deg);
  }
}
.header__hamburgerButton--active span:nth-child(2) {
  background-color: #fefefe;
  transform: translateY(-6px) rotate(-45deg);
}
@media screen and (max-width: 835px) {
  .header__hamburgerButton--active span:nth-child(2) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.header__hamburgerButton--active span:nth-child(3) {
  opacity: 0;
}

.mask {
  width: 100%;
  background-color: #000000;
  height: 100vh;
  position: absolute;
  z-index: 10;
  left: 0;
  opacity: 0;
  top: 100vh;
  visibility: hidden;
  transition: 0.4s 0.1s;
}
.mask--active {
  opacity: 0.9;
  visibility: visible;
  top: 0;
  transition: 0.3s;
}
.mask .hamburger__menu {
  color: #ececec;
  font-weight: bold;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 64px;
  letter-spacing: 0.5em;
  justify-content: center;
  text-align: center;
  height: 100vh;
}

.mainView {
  width: 100%;
  display: flex;
  margin: 80px 0 64px;
  height: 512px;
}
@media screen and (max-width: 835px) {
  .mainView {
    flex-direction: column;
    margin: 72px 0 32px;
  }
}
.mainView__left {
  width: 12%;
  padding: 12px;
  position: relative;
}
.mainView__left::before {
  content: "+++";
  position: absolute;
  bottom: 0;
  font-size: 1.5rem;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 835px) {
  .mainView__left {
    display: none;
  }
}
.mainView__center {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 835px) {
  .mainView__center {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.mainView__right {
  width: 28%;
  background-color: #ececec;
  position: relative;
}
@media screen and (max-width: 835px) {
  .mainView__right {
    display: none;
  }
}

.mainlogo {
  width: 60%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 835px) {
  .mainlogo {
    margin-bottom: 64px;
    padding: 0 4px 0 0;
    width: 60%;
  }
}
.mainlogo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 835px) {
  .mainlogo img {
    height: auto;
  }
}

.swiper {
  width: 100%;
  max-width: 480px;
  position: absolute;
  z-index: 1;
  top: 25%;
  right: -30%;
}
@media screen and (max-width: 1025px) {
  .swiper {
    max-width: 344px;
  }
}
@media screen and (max-width: 835px) {
  .swiper {
    top: 100%;
    left: 0;
    right: 0;
    max-width: 424px;
  }
}
@media screen and (max-width: 480px) {
  .swiper {
    top: 100%;
    left: 0;
    right: 0;
  }
}

.swiper-slide {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.slide__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-pagination {
  font-weight: 900;
  padding: 0 12px;
  font-size: 2.25rem;
  text-align: end;
}
@media screen and (max-width: 835px) {
  .swiper-pagination {
    display: none;
  }
}

.slide__img__sp {
  display: none;
}

.contents__wrap1 {
  padding: 64px 0;
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1025px) {
  .contents__wrap1 {
    padding: 24px 0;
    width: 824px;
  }
}
@media screen and (max-width: 835px) {
  .contents__wrap1 {
    padding: 24px 0;
    width: 736px;
  }
}
@media screen and (max-width: 480px) {
  .contents__wrap1 {
    padding: 32px 0;
    width: 351px;
  }
}

.contents__wrap2 {
  padding: 64px 0;
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1025px) {
  .contents__wrap2 {
    padding: 24px 0;
    width: 824px;
  }
}
@media screen and (max-width: 835px) {
  .contents__wrap2 {
    padding: 24px 0;
    width: 736px;
  }
}
@media screen and (max-width: 480px) {
  .contents__wrap2 {
    padding: 32px 0;
    width: 351px;
  }
}

.page {
  margin-top: 100px;
}
@media screen and (max-width: 835px) {
  .page {
    margin-top: 72px;
  }
}

.about {
  text-align: center;
  margin-bottom: 112px;
  position: relative;
}
@media screen and (max-width: 835px) {
  .about {
    margin-bottom: 16px;
    margin-top: 240px;
  }
}
@media screen and (max-width: 480px) {
  .about {
    margin-bottom: 16px;
    margin-top: 32px;
  }
}
.about::after {
  content: "";
  display: block;
  background-image: url("/img/section__about.png");
  background-size: contain;
  width: 240px;
  height: 100%;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.about__contents {
  display: flex;
  gap: 24px;
  width: 100%;
  padding: 64px 0;
}
@media screen and (max-width: 835px) {
  .about__contents {
    flex-direction: column;
    padding: 24px 0;
  }
}
.about__imgContainer {
  overflow: hidden;
  max-width: 50%;
}
@media screen and (max-width: 835px) {
  .about__imgContainer {
    max-width: 100%;
  }
}
.about__imgContainer img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.about__textContainer {
  max-height: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__title {
  padding: 8px;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 835px) {
  .about__title {
    gap: 0;
  }
}
.about__title__name {
  font-weight: 900;
  font-size: 1.5rem;
}
@media screen and (max-width: 835px) {
  .about__title__name {
    font-size: 1.25rem;
  }
}
.about__title__job {
  font-weight: bold;
  font-size: 1.25rem;
}
@media screen and (max-width: 835px) {
  .about__title__job {
    font-size: 1rem;
  }
}
.about__text {
  padding: 8px;
  text-align: start;
}
@media screen and (max-width: 835px) {
  .about__text {
    font-size: 0.875rem;
  }
}

.works {
  text-align: center;
  margin-bottom: 112px;
  position: relative;
}
@media screen and (max-width: 835px) {
  .works {
    margin-bottom: 16px;
  }
}
.works::after {
  content: "";
  display: block;
  background-image: url("/img/section__works.png");
  background-size: contain;
  width: 240px;
  height: 100%;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.works__list {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.works__item {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 64px 0;
  max-width: 60%;
  width: 100%;
  gap: 48px;
}
@media screen and (max-width: 835px) {
  .works__item {
    max-width: 100%;
    padding: 24px 0;
    gap: 24px;
  }
}
.works__item:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.works__item--right {
  align-self: flex-end;
}
.works__item__link {
  display: inline-block;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 4 10 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
}
.works__item__link--left {
  transform: translate(-100px);
}
.works__item__link--right {
  transform: translate(100px);
  opacity: 0;
}
.works__item__link img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 240px;
  display: block;
}
.works__item__textarea {
  width: 100%;
  text-align: center;
}
.works__item__name {
  font-size: 1.5rem;
  font-weight: 900;
}
@media screen and (max-width: 835px) {
  .works__item__name {
    font-size: 1.25rem;
  }
}
.works__item__category {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 835px) {
  .works__item__category {
    font-size: 1rem;
  }
}
.works__item2 {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.contact {
  text-align: center;
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 835px) {
  .contact {
    margin-bottom: 0;
  }
}
.contact::after {
  content: "";
  display: block;
  background-image: url("/img/section__contact.png");
  background-size: contain;
  width: 240px;
  height: 100%;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.contact__text {
  font-size: 1.25rem;
  padding: 8px;
  margin-bottom: 56px;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 835px) {
  .contact__text {
    font-size: 0.75rem;
    margin-bottom: 0;
    padding: 16px 24px;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}
@media screen and (max-width: 835px) {
  .contact__form {
    gap: 24px;
  }
}
.contact__form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  width: 100%;
}
.contact__form__label {
  font-size: 1.25rem;
  width: 100%;
  text-align: start;
}
@media screen and (max-width: 835px) {
  .contact__form__label {
    font-size: 1rem;
  }
}
.contact__form__input {
  font-size: 1.25rem;
  background-color: #fefefe;
  width: 100%;
  border: 1px solid #000000;
  text-align: start;
  vertical-align: top;
  padding: 8px;
}
@media screen and (max-width: 835px) {
  .contact__form__input {
    font-size: 1rem;
  }
}
.contact__form__input textarea {
  width: 100%;
  display: block;
  box-sizing: border-box;
}
.contact__form__input input {
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.footer {
  width: 100%;
  background-color: #000000;
}
.footer__list {
  display: flex;
  gap: 56px;
  padding: 64px;
  justify-content: center;
}
@media screen and (max-width: 835px) {
  .footer__list {
    gap: 32px;
    padding: 24px;
  }
}
.footer__item {
  max-width: 48px;
  max-height: 48px;
}
@media screen and (max-width: 835px) {
  .footer__item {
    max-width: 32px;
    max-height: 32px;
  }
}
.footer__item:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.footer__item img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.footer__copyright {
  display: block;
  color: #fefefe;
  text-align: center;
  font-size: 0.75rem;
  padding: 16px;
}

.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 64px;
  padding: 64px 0;
}
@media screen and (max-width: 835px) {
  .service__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 0;
  }
}
.service__item {
  display: flex;
  flex-direction: column;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
@media screen and (max-width: 835px) {
  .service__item {
    gap: 8px;
  }
}
.service__item__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__item__text {
  font-size: 1.5rem;
  font-weight: 900;
}
@media screen and (max-width: 835px) {
  .service__item__text {
    font-size: 1rem;
  }
}

.career__contents {
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 835px) {
  .career__contents {
    padding: 24px 8px;
    gap: 24px;
  }
}
.career__field {
  display: flex;
  gap: 8px;
  text-align: start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
@media screen and (max-width: 835px) {
  .career__field {
    flex-direction: column;
    gap: 16px;
  }
}
.career__field__year {
  width: 30%;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 835px) {
  .career__field__year {
    width: 100%;
    font-size: 1rem;
  }
}
.career__field__year::after {
  content: "";
  height: 2px;
  width: 100%;
  max-width: 130px;
  min-width: 130px;
  background-color: #eee200;
  position: absolute;
  left: 0;
  top: 36px;
}
@media screen and (max-width: 835px) {
  .career__field__year::after {
    width: 30%;
    top: 24px;
  }
}
.career__field__description {
  font-size: 1rem;
  width: 70%;
}
@media screen and (max-width: 835px) {
  .career__field__description {
    width: 100%;
    font-size: 0.75rem;
  }
}

.works--detail__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
@media screen and (max-width: 835px) {
  .works--detail__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 24px;
  }
}
.works--detail__item {
  padding: 64px 0;
  width: 100%;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
@media screen and (max-width: 835px) {
  .works--detail__item {
    max-width: 100%;
    padding: 24px 0;
    gap: 24px;
  }
}
.works--detail__item:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.works--detail__item__link {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 4 10 0 rgba(0, 0, 0, 0.25);
}
.works--detail__item__link img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.works--detail__item__textarea {
  width: 100%;
  text-align: center;
}
.works--detail__item__name {
  font-size: 1.5rem;
  font-weight: 900;
}
@media screen and (max-width: 835px) {
  .works--detail__item__name {
    font-size: 1.25rem;
  }
}

.work {
  text-align: center;
  position: relative;
}

.workDetail {
  padding: 64px 0;
}
@media screen and (max-width: 835px) {
  .workDetail {
    padding: 24px 0;
  }
}
.workDetail__contents {
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 835px) {
  .workDetail__contents {
    padding: 24px 8px;
    gap: 24px;
  }
}
.workDetail__field {
  display: flex;
  gap: 64px;
  text-align: start;
  opacity: 0;
  align-items: center;
  visibility: hidden;
  transform: translateX(-100px);
}
@media screen and (max-width: 835px) {
  .workDetail__field {
    flex-direction: column;
    gap: 16px;
  }
}
.workDetail__field__category {
  width: 20%;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 835px) {
  .workDetail__field__category {
    width: 100%;
    font-size: 1rem;
  }
}
.workDetail__field__category::after {
  content: "";
  height: 2px;
  width: 89%;
  background-color: #eee200;
  position: absolute;
  left: 0;
  top: 36px;
}
@media screen and (max-width: 835px) {
  .workDetail__field__category::after {
    width: 16%;
    top: 24px;
  }
}
.workDetail__field__description {
  font-size: 1rem;
  width: 80%;
}
@media screen and (max-width: 835px) {
  .workDetail__field__description {
    width: 100%;
    font-size: 0.75rem;
  }
}

.workImage__background {
  width: 100%;
  background-color: #ececec;
  padding: 64px 320px;
}
@media screen and (max-width: 835px) {
  .workImage__background {
    padding: 24px 12px;
  }
}
.workImage__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 835px) {
  .workImage__list {
    gap: 24px;
  }
}
.workImage__item {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
.workImage__img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.wpcf7-spinner {
  display: none;
}/*# sourceMappingURL=style.css.map */