@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
* {
  font-family: "Noto Serif JP", serif;
  color: #1a1a1a;
  font-weight: 300;
  line-height: 100%;
  margin: 0;
}

span,
a,
p,
label,
li {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  text-decoration: none;
}

body {
  background-color: #ededed;
}

@media (max-width: 1024px) {
  span,
  a,
  p,
  label,
  li {
    font-size: 14px;
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
}
.l-header__logo {
  position: absolute;
  top: 10px;
  left: 30px;
}
.l-header__logo > img {
  height: 60px;
  object-fit: cover;
}
.l-header__menu {
  position: fixed;
  top: 17px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 200;
  cursor: pointer;
}
.l-header__menu.active hr:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.l-header__menu.active hr:nth-child(2) {
  opacity: 0;
  transform: translateX(100%);
}
.l-header__menu.active hr:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.l-header__menu__hamburger {
  width: 40px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.l-header__menu__hamburger > hr {
  width: 100%;
  height: 1px;
  outline: none;
  border: none;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.l-header__menu__text {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.l-footer {
  width: 100%;
  padding: 100px 0 50px;
  background-color: #deb887;
}
.l-footer__contact {
  width: 80%;
  max-width: 1300px;
  margin: auto;
  padding-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.l-footer__contact__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.l-footer__contact__text__title {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}
.l-footer__contact__text__title__span {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
}
.l-footer__contact__text__text {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  line-height: 150%;
}
.l-footer__contact__form {
  margin-top: 40px;
  padding: 20px 50px;
  border: 1px solid #fff;
  color: #fff;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.l-footer__contact__form:hover {
  background-color: #fff;
  color: #1a1a1a;
}
.l-footer__company {
  width: 80%;
  max-width: 1300px;
  margin: auto;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 50px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.l-footer__company__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
.l-footer__company__text__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.l-footer__company__text__logo__img {
  height: 60px;
}
.l-footer__company__text__logo__text {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.l-footer__company__text__address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.l-footer__company__text__address__text {
  font-size: 16px;
  color: #fff;
}
.l-footer__company__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.l-footer__company__nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__company__nav__list > li {
  margin-bottom: 50px;
}
.l-footer__company__nav__list > li > a {
  text-decoration: none;
  color: #fff;
}
.l-footer__copyright {
  width: 80%;
  max-width: 1300px;
  margin: auto;
  padding: 20px 0;
}
.l-footer__copyright__text {
  font-size: 16px;
  color: #fff;
  text-align: right;
}

@media (max-width: 1024px) {
  .l-footer__contact {
    flex-direction: column;
  }
  .l-footer__contact__text__title {
    font-size: 30px;
  }
  .l-footer__contact__text__text {
    font-size: 14px;
  }
  .l-footer__contact__form {
    margin-top: 0;
  }
  .l-footer__company {
    flex-direction: column;
    align-items: center;
  }
  .l-footer__company__text__address__text {
    text-align: center;
    font-size: 14px;
  }
  .l-footer__company__nav {
    display: none;
  }
  .l-footer__copyright__text {
    text-align: center;
  }
}
.l-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
}
.l-menu-container.active {
  opacity: 1;
  pointer-events: auto;
}

.l-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 500px;
  height: 100%;
  background-color: #deb887;
  padding-top: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: all 1s ease-in-out;
}
.l-menu.active {
  opacity: 1;
  pointer-events: auto;
  right: 0;
}
.l-menu__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.l-menu__nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-menu__nav__list > li {
  margin-bottom: 50px;
}
.l-menu__nav__list > li > a {
  text-decoration: none;
  color: #fff;
}
.l-menu__logo {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 100px 0;
  border-top: 1px solid #fff;
}
.l-menu__logo__img {
  height: 60px;
}
.l-menu__logo__text {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 1024px) {
  .l-menu {
    width: 100%;
  }
}
.c-contents-title {
  text-align: center;
  font-size: 40px;
}

@media (max-width: 1024px) {
  .c-contents-title {
    font-size: 34px;
  }
}
.c-page-big-title {
  width: 100%;
  height: 500px;
  display: grid;
  place-items: center;
}

.c-part-title {
  width: 100%;
  height: 200px;
  position: relative;
}
.c-part-title__en {
  font-size: 60px;
  font-weight: bold;
  color: rgba(26, 26, 26, 0.3);
  line-height: 200px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.2em;
}
.c-part-title__ja {
  height: 200px;
  font-size: 40px;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  white-space: nowrap;
  color: rgba(26, 26, 26, 0.8);
}

@media (max-width: 1024px) {
  .c-part-title {
    height: 170px;
  }
  .c-part-title__en {
    font-size: 40px;
    line-height: 170px;
  }
  .c-part-title__ja {
    height: 170px;
    font-size: 24px;
    line-height: 150%;
  }
}
.c-page-link {
  display: block;
  margin: auto;
  width: fit-content;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
.c-page-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1a1a1a;
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
.c-page-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1a1a1a;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out 0.3s;
}
.c-page-link:hover::before {
  transform: translateX(100%);
}
.c-page-link:hover::after {
  transform: scale(1);
}

.l-front-page__hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 1s ease-in-out;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.l-front-page__hero.active {
  opacity: 1;
}
.l-front-page__hero__text {
  font-size: 24px;
  line-height: 300%;
  font-weight: bold;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.l-front-page__hero__text > span {
  font-size: 24px;
  line-height: 300%;
  font-weight: bold;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.l-front-page__hero__scroll {
  position: absolute;
  bottom: 30px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.l-front-page__hero__scroll__text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}
.l-front-page__hero__scroll > hr {
  width: 1px;
  height: 100px;
  outline: none;
  border: none;
  background-color: #fff;
}
.l-front-page__about {
  width: 100%;
  padding-bottom: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.l-front-page__about__container {
  width: 80%;
  max-width: 1300px;
  margin: auto;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.l-front-page__about__container__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 200%;
  letter-spacing: 0.1em;
  text-align: center;
}
.l-front-page__about__container__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
.l-front-page__about__container__text__text {
  font-size: 16px;
  line-height: 200%;
  letter-spacing: 0.1em;
}
.l-front-page__about__link {
  display: block;
  margin: auto;
  width: fit-content;
  position: relative;
  padding: 10px;
}
.l-front-page__about__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1a1a1a;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
.l-front-page__about__link:hover::before {
  transform: scaleX(1);
}
.l-front-page__service {
  width: 100%;
  padding-top: 150px;
}
.l-front-page__service__text {
  margin: 30px 0 100px;
  font-size: 16px;
  line-height: 200%;
  text-align: center;
}
.l-front-page__service__link {
  display: block;
  margin: 50px auto 0;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.l-front-page__service__link__wrapper {
  width: 100%;
  height: 600px;
  position: relative;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
}
.l-front-page__service__link__wrapper:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}
.l-front-page__service__link__wrapper:hover > .l-front-page__service__link__wrapper__title {
  opacity: 0;
}
.l-front-page__service__link__wrapper:hover > .l-front-page__service__link__wrapper__container {
  opacity: 1;
}
.l-front-page__service__link__wrapper__title {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 100px;
  left: 100px;
  transition: opacity 0.3s ease-in-out;
}
.l-front-page__service__link__wrapper__container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: absolute;
  bottom: 100px;
  right: 100px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.l-front-page__service__link__wrapper__container__title {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
.l-front-page__service__link__wrapper__container__hr {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-front-page__service__link__wrapper__container__hr > hr {
  width: 50px;
  height: 1px;
  outline: none;
  border: none;
  background-color: #fff;
}
.l-front-page__service__link__wrapper__container__hr__span {
  font-size: 16px;
  color: #fff;
}
.l-front-page__service__link__wrapper__container__text {
  font-size: 16px;
  line-height: 200%;
  color: #fff;
  text-align: justify;
}
.l-front-page__service__link__wrapper__container__span {
  font-size: 16px;
  color: #fff;
  text-align: right;
  padding-bottom: 5px;
  position: relative;
}
.l-front-page__service__link__wrapper__container__span::before {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  animation: slide-in 2s ease-in-out infinite;
  transform-origin: left;
}
.l-front-page__achivement {
  width: 100%;
  padding: 150px 0;
}
.l-front-page__achivement__text {
  margin: 30px 0 100px;
  font-size: 16px;
  line-height: 200%;
  text-align: center;
}
.l-front-page__achivement__achivement {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 80px;
}
.l-front-page__achivement__achivement__button {
  width: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.l-front-page__achivement__achivement__button .swiper-button-next,
.l-front-page__achivement__achivement__button .swiper-button-prev {
  background-color: transparent;
  width: 60px;
  height: 60px;
}
.l-front-page__achivement__achivement__button .swiper-button-next svg,
.l-front-page__achivement__achivement__button .swiper-button-prev svg {
  width: 60px;
  height: 60px;
}
.l-front-page__achivement__achivement__wrapper__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-front-page__achivement__achivement__wrapper__slide__img {
  width: 100%;
  height: auto;
}
.l-front-page__achivement__achivement .swiper-pagination {
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 10;
}
.l-front-page__achivement__achivement .swiper-pagination-bar {
  width: 100px;
  height: 5px;
  background-color: #ccc;
  border-radius: 5px;
  position: relative;
}
.l-front-page__achivement__achivement .swiper-pagination-bar.active {
  background-color: #007bff;
}

@keyframes slide-in {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@media (max-width: 1024px) {
  .l-front-page__hero__text {
    font-size: 24px;
  }
  .l-front-page__hero__scroll {
    display: none;
  }
  .l-front-page__about {
    height: auto;
    padding: 50px 0;
  }
  .l-front-page__about__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  .l-front-page__about__container__title {
    font-size: 20px;
  }
  .l-front-page__about__container__text {
    padding-top: 0;
    gap: 15px;
  }
  .l-front-page__about__container__text__text {
    font-size: 14px;
  }
  .l-front-page__service__text {
    font-size: 14px;
  }
  .l-front-page__service__link__wrapper:hover {
    transform: scale(1);
  }
  .l-front-page__service__link__wrapper:hover > .l-front-page__service__link__wrapper__title {
    opacity: 1;
  }
  .l-front-page__service__link__wrapper__title {
    left: 30px;
    font-size: 24px;
  }
  .l-front-page__service__link__wrapper__container {
    bottom: auto;
    right: auto;
    top: 150px;
    left: 90px;
    width: calc(100% - 140px);
    opacity: 1;
  }
  .l-front-page__service__link__wrapper__container__title {
    font-size: 16px;
  }
  .l-front-page__service__link__wrapper__container__hr > hr {
    width: 30px;
  }
  .l-front-page__service__link__wrapper__container__hr__span {
    font-size: 14px;
  }
  .l-front-page__service__link__wrapper__container__text {
    font-size: 14px;
  }
  .l-front-page__achivement__text {
    font-size: 14px;
  }
  .l-front-page__achivement__achivement__button .swiper-button-next,
  .l-front-page__achivement__achivement__button .swiper-button-prev {
    background-color: transparent;
    width: 40px;
    height: 40px;
  }
  .l-front-page__achivement__achivement__button .swiper-button-next svg,
  .l-front-page__achivement__achivement__button .swiper-button-prev svg {
    width: 40px;
    height: 40px;
  }
}
.l-page-about__intro {
  width: 100%;
  height: 100vh;
  position: relative;
}
.l-page-about__intro__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(https://picsum.photos/1920/1080);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.l-page-about__intro__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
.l-page-about__intro__text__title {
  font-size: 5vw;
  font-weight: bold;
}
.l-page-about__intro__text__list {
  list-style: none;
  position: relative;
}
.l-page-about__intro__text__list::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 15px;
  left: 0;
}
.l-page-about__intro__text__list > li > p {
  font-size: 24px;
  font-weight: bold;
  line-height: 150%;
}
.l-page-about__intro__text__text {
  line-height: 200%;
  letter-spacing: 0.3em;
}
.l-page-about__service {
  padding: 100px 5%;
  width: 100%;
}
.l-page-about__service__list {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.l-page-about__service__list__item {
  display: block;
  width: calc(50% - 25px);
  height: 300px;
  overflow: hidden;
}
.l-page-about__service__list__item:hover > .l-page-about__service__list__item__wrapper {
  background-color: rgba(0, 0, 0, 0.5);
}
.l-page-about__service__list__item:hover > .l-page-about__service__list__item__wrapper > .l-page-about__service__list__item__wrapper__link {
  opacity: 1;
}
.l-page-about__service__list__item__wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: background-color 0.3s ease-in-out;
}
.l-page-about__service__list__item__wrapper__title {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  line-height: 150%;
  opacity: 1;
}
.l-page-about__service__list__item__wrapper__title > span {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
}
.l-page-about__service__list__item__wrapper__link {
  position: absolute;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.l-page-about__service__list__item__wrapper__link__text {
  font-size: 16px;
  color: #fff;
  text-align: right;
  padding-bottom: 5px;
  position: relative;
}
.l-page-about__service__list__item__wrapper__link__text::before {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  animation: slide-in 2s ease-in-out infinite;
  transform-origin: left;
}
.l-page-about__service__text {
  margin-top: 50px;
  font-weight: bold;
  text-align: center;
}
.l-page-about__service__link {
  margin: 50px auto 0;
  width: 800px;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #deb887;
}
.l-page-about__service__link__ja {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.l-page-about__service__link__en {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
}
.l-page-about__advantage {
  padding: 100px 0;
  background-color: #ebdac4;
}
.l-page-about__advantage__list {
  margin-top: 50px;
}
.l-page-about__advantage__list__item {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
}
.l-page-about__advantage__list__item:nth-child(even) {
  flex-direction: row-reverse;
}
.l-page-about__advantage__list__item > img {
  width: 50%;
  height: 100%;
}
.l-page-about__advantage__list__item__content {
  width: 50%;
  padding: 0 5%;
}
.l-page-about__advantage__list__item__content__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 200%;
}
.l-page-about__advantage__list__item__content__text {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.3em;
  line-height: 200%;
}
.l-page-about__logo {
  padding: 100px 0;
}
.l-page-about__logo__content {
  margin: 50px auto 0;
  max-width: 1000px;
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-page-about__logo__content__text {
  width: 90%;
  margin: 50px auto 0;
  text-align: justify;
  line-height: 200%;
}
.l-page-about__logo__list {
  margin-top: 100px;
}
.l-page-about__logo__list__item {
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.l-page-about__logo__list__item::before {
  position: absolute;
  content: "";
  display: block;
  width: 150%;
  height: 100%;
  background: rgba(91, 47, 44, 0.9);
  top: 0;
  left: 35%;
  transform: skewX(-45deg);
}
.l-page-about__logo__list__item:nth-child(even)::before {
  left: auto;
  right: 35%;
  transform: skewX(45deg);
}
.l-page-about__logo__list__item:nth-child(even) > .l-page-about__logo__list__item__content {
  left: 3%;
  right: auto;
  padding-right: 5%;
  padding-left: 0;
}
.l-page-about__logo__list__item__content {
  position: absolute;
  top: 50%;
  left: auto;
  right: 3%;
  transform: translateY(-50%);
  width: 50%;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}
.l-page-about__logo__list__item__content__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 200%;
  color: #fff;
}
.l-page-about__logo__list__item__content__title > span {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
}
.l-page-about__logo__list__item__content__text {
  font-size: 14px;
  letter-spacing: 0.3em;
  line-height: 200%;
  color: #fff;
  text-align: justify;
}

@media (max-width: 1024px) {
  .l-page-about__intro {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .l-page-about__intro__content {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .l-page-about__intro__text {
    position: static;
    padding: 80px 10%;
    width: 100%;
    height: auto;
    background-color: #fff;
  }
  .l-page-about__intro__text__title {
    font-size: 10vw;
    line-height: 150%;
  }
  .l-page-about__intro__text__list {
    list-style: none;
  }
  .l-page-about__intro__text__list > li > p {
    font-size: 18px;
  }
  .l-page-about__service__list__item:hover > .l-page-about__service__list__item__wrapper {
    background-color: auto;
  }
  .l-page-about__service__list__item__wrapper__title {
    font-size: 18px;
  }
  .l-page-about__service__list__item__wrapper__title > span {
    font-size: 12px;
  }
  .l-page-about__service__list__item__wrapper__link {
    opacity: 1;
  }
  .l-page-about__service__link {
    width: 80%;
    height: 100px;
  }
  .l-page-about__service__link__ja {
    font-size: 18px;
  }
  .l-page-about__service__link__en {
    font-size: 12px;
  }
  .l-page-about__advantage {
    padding: 100px 0 50px;
  }
  .l-page-about__advantage__list__item {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .l-page-about__advantage__list__item:nth-child(even) {
    flex-direction: column;
  }
  .l-page-about__advantage__list__item > img {
    width: 100%;
  }
  .l-page-about__advantage__list__item__content {
    width: 100%;
    padding: 5%;
  }
  .l-page-about__advantage__list__item__content__title {
    font-size: 18px;
  }
  .l-page-about__advantage__list__item__content__text {
    font-size: 12px;
  }
  .l-page-about__logo {
    padding: 100px 0;
  }
  .l-page-about__logo__content {
    margin: 50px auto 0;
    max-width: 1000px;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .l-page-about__logo__content__text {
    width: 90%;
    margin: 50px auto 0;
    text-align: justify;
    line-height: 200%;
  }
  .l-page-about__logo__list {
    margin-top: 100px;
  }
  .l-page-about__logo__list__item {
    margin-top: 50px;
    height: 500px;
  }
  .l-page-about__logo__list__item::before {
    top: 0;
    left: 0;
    transform: skewX(0);
  }
  .l-page-about__logo__list__item:nth-child(even)::before {
    left: auto;
    right: 0;
    transform: skewX(0);
  }
  .l-page-about__logo__list__item:nth-child(even) > .l-page-about__logo__list__item__content {
    left: 50%;
    right: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .l-page-about__logo__list__item__content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    padding-left: 0;
  }
  .l-page-about__logo__list__item__content__title {
    font-size: 24px;
  }
  .l-page-about__logo__list__item__content__text {
    font-size: 12px;
  }
}
.l-page-access__map__content {
  margin: 100px auto;
  max-width: 1100px;
  width: 80%;
}
.l-page-access__map__content iframe {
  max-width: 1100px;
  width: 100%;
  aspect-ratio: 16/9;
}

.l-page-company__message {
  padding: 100px 0;
}
.l-page-company__message__content {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 5%;
  padding: 0 5%;
}
.l-page-company__message__content__text {
  width: 48.5%;
}
.l-page-company__message__content__text__message {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 200%;
}
.l-page-company__message__content__text__name {
  margin-top: 50px;
  font-size: 40px;
  font-weight: bold;
}
.l-page-company__message__content__text__name > span {
  font-size: 18px;
}
.l-page-company__message__content__text__text {
  width: 48.5%;
  letter-spacing: 0.1em;
  line-height: 200%;
  text-align: justify;
}
.l-page-company__message__profile {
  margin: 100px auto 0;
  width: 90%;
  padding: 2% 5%;
  border: 1px solid #1a1a1a;
  position: relative;
}
.l-page-company__message__profile::before {
  content: "代表プロフィール";
  position: absolute;
  top: -10px;
  left: 5%;
  background-color: #ededed;
  padding: 0 2%;
  font-size: 18px;
  font-weight: bold;
}
.l-page-company__message__profile__text {
  letter-spacing: 0.1em;
  line-height: 200%;
  text-align: justify;
}
.l-page-company__profile {
  margin: 100px auto;
  width: 100%;
  padding: 100px 10%;
  background-color: #ebdac4;
}
.l-page-company__profile__table {
  margin-top: 100px;
  width: 100%;
  border-collapse: collapse;
}
.l-page-company__profile__table tr:first-child th::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 1px;
  background-color: #1a1a1a;
}
.l-page-company__profile__table tr:first-child td {
  border-top: 1px solid rgba(26, 26, 26, 0.3);
}
.l-page-company__profile__table th {
  width: 20%;
  letter-spacing: 0.03em;
  padding: 30px;
  position: relative;
}
.l-page-company__profile__table th::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 1px;
  background-color: #1a1a1a;
}
.l-page-company__profile__table td {
  width: 80%;
  margin-left: 10px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  padding: 30px;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .l-page-company__message__content {
    flex-direction: column;
    gap: 50px;
  }
  .l-page-company__message__content__text {
    width: 100%;
    display: contents;
  }
  .l-page-company__message__content__text__message {
    font-size: 18px;
    text-align: center;
    order: 1;
  }
  .l-page-company__message__content__text__name {
    font-size: 24px;
    text-align: right;
    order: 3;
  }
  .l-page-company__message__content__text__text {
    width: 100%;
    font-size: 14px;
    order: 2;
  }
  .l-page-company__profile__table tr:first-child th::after {
    height: 0px;
  }
  .l-page-company__profile__table tr:first-child td {
    border-top: 0;
  }
  .l-page-company__profile__table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .l-page-company__profile__table tr th {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    padding: 15px;
  }
  .l-page-company__profile__table tr th::before {
    width: 100%;
  }
  .l-page-company__profile__table tr td {
    width: 100%;
    font-size: 14px;
    margin-left: 0;
    padding: 15px;
  }
  .l-page-company__profile__table tr td::before {
    width: 100%;
  }
}
.l-page-contact__content__title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
}
.l-page-contact__content__tel {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.l-page-contact__content__tel span {
  font-size: 40px;
  font-weight: bold;
  color: #deb887;
}
.l-page-contact__content__tel-time {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.5);
  text-align: center;
}
.l-page-contact__content__form {
  margin: 100px auto;
  max-width: 1000px;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.l-page-contact__content__form > .wpcf7 {
  width: 100%;
}
.l-page-contact__content__form .form-row {
  padding: 50px 0;
  width: 100%;
  border-top: 1px solid rgba(26, 26, 26, 0.3);
}
.l-page-contact__content__form .form-row > p {
  display: flex;
  align-items: center;
}
.l-page-contact__content__form .form-row > p > .form-label {
  width: 200px;
}
.l-page-contact__content__form .form-row > p > .form-label > .require {
  margin-left: 10px;
  font-size: 12px;
  font-weight: bold;
  color: #deb887;
}
.l-page-contact__content__form .form-row > p > .wpcf7-form-control-wrap {
  width: calc(100% - 200px);
}
.l-page-contact__content__form .form-row > p > .wpcf7-form-control-wrap > input {
  width: 100%;
  outline: none;
  border: none;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
}
.l-page-contact__content__form .form-row > p > .wpcf7-form-control-wrap > textarea {
  width: 100%;
  height: 300px;
  outline: none;
  border: none;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
  resize: none;
}
.l-page-contact__content__form .form-row > p > .wpcf7-form-control-wrap > .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.l-page-contact__content__form form > p {
  text-align: center;
}
.l-page-contact__content__form .wpcf7-submit {
  width: 200px;
  height: 50px;
  background-color: #deb887;
  color: #fff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .l-page-contact__content__title {
    margin: 0 auto;
    width: 90%;
    font-size: 20px;
  }
  .l-page-contact__content__tel {
    font-size: 26px;
  }
  .l-page-contact__content__tel-time {
    font-size: 12px;
  }
  .l-page-contact__content__form .form-row {
    padding: 50px 0;
    width: 100%;
    border-top: 1px solid rgba(26, 26, 26, 0.3);
  }
  .l-page-contact__content__form .form-row > p {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .l-page-contact__content__form .form-row > p > .form-label {
    width: 100%;
  }
  .l-page-contact__content__form .form-row > p > .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.l-page-project__list__title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
}
.l-page-project__list__items {
  margin: 100px auto;
  max-width: 1200px;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.l-page-project__list__items__item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.l-page-project__list__items__item__image:nth-child(even) {
  margin-top: 80px;
}
.l-page-project__list__items__item__image img {
  width: 500px;
  height: 350px;
}
.l-page-project__list__items__item__image__caption {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-page-project__list__items__item__image__caption span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #1a1a1a;
}
.l-page-project__list__items__item__image__caption p {
  font-size: 20px;
  font-weight: bold;
}
.l-page-project__list__items__item__image__address {
  margin: 20px 0 0 30px;
  font-size: 14px;
  color: rgba(26, 26, 26, 0.5);
}

@media (max-width: 1024px) {
  .l-page-project__list__title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .l-page-project__list__items__item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .l-page-project__list__items__item__image:nth-child(even) {
    margin-top: 0;
  }
  .l-page-project__list__items__item__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.l-page-recruit__requirement {
  margin: 100px auto;
  width: 100%;
  padding: 100px 10%;
  background-color: #ebdac4;
}
.l-page-recruit__requirement__table {
  margin-top: 100px;
  width: 100%;
  border-collapse: collapse;
}
.l-page-recruit__requirement__table tr::first-child th::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 1px;
  background-color: #1a1a1a;
}
.l-page-recruit__requirement__table tr::first-child td {
  border-top: 1px solid rgba(26, 26, 26, 0.3);
}
.l-page-recruit__requirement__table th {
  width: 20%;
  letter-spacing: 0.03em;
  padding: 30px;
  position: relative;
}
.l-page-recruit__requirement__table th::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 1px;
  background-color: #1a1a1a;
}
.l-page-recruit__requirement__table td {
  width: 80%;
  margin-left: 10px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
  padding: 30px;
  line-height: 150%;
}

@media (max-width: 1024px) {
  .l-page-recruit__requirement__table tr:first-child th::after {
    height: 0px;
  }
  .l-page-recruit__requirement__table tr:first-child td {
    border-top: 0;
  }
  .l-page-recruit__requirement__table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .l-page-recruit__requirement__table tr th {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    padding: 15px;
  }
  .l-page-recruit__requirement__table tr th::before {
    width: 100%;
  }
  .l-page-recruit__requirement__table tr td {
    width: 100%;
    font-size: 14px;
    margin-left: 0;
    padding: 15px;
  }
  .l-page-recruit__requirement__table tr td::before {
    width: 100%;
  }
}
.l-page-service__content {
  margin-bottom: 200px;
}
.l-page-service__content__item {
  position: relative;
  background-color: #d78923;
  height: 300px;
}
.l-page-service__content__item:nth-child(even) {
  margin-top: 45vw;
  margin-bottom: 10vw;
}
.l-page-service__content__item:nth-child(even) img {
  bottom: 60px;
  right: 0;
}
.l-page-service__content__item:nth-child(even) > .l-page-service__content__item__text {
  right: 65%;
}
.l-page-service__content__item:nth-child(odd) {
  margin-bottom: 45vw;
}
.l-page-service__content__item:nth-child(odd):last-child {
  margin-bottom: 20vw;
}
.l-page-service__content__item:nth-child(odd) img {
  top: 60px;
  left: 0;
}
.l-page-service__content__item:nth-child(odd) > .l-page-service__content__item__text {
  left: 65%;
}
.l-page-service__content__item img {
  position: absolute;
  width: 60%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.l-page-service__content__item__text {
  position: absolute;
  width: 30%;
  top: 50%;
  transform: translateY(-50%);
}
.l-page-service__content__item__text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.l-page-service__content__item__text p {
  margin-top: 20px;
  line-height: 150%;
  text-align: justify;
  color: #fff;
}

@media (max-width: 1024px) {
  .l-page-service__content {
    margin-bottom: 100px;
  }
  .l-page-service__content__item {
    position: static;
    display: flex;
    flex-direction: column-reverse;
    height: auto;
    margin: 0;
  }
  .l-page-service__content__item:nth-child(even) {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .l-page-service__content__item:nth-child(odd) {
    margin-bottom: 50px;
  }
  .l-page-service__content__item img {
    position: static;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  .l-page-service__content__item__text {
    position: static;
    width: 100%;
    margin-top: 0;
    text-align: center;
    transform: translateY(0);
    padding: 50px 0;
  }
}/*# sourceMappingURL=style.css.map */