.js-fadein-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-fadein-scroll.is-fadein-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadein-scroll.fade-only {
  transform: translateY(0);
}

.js-fadein-delay-1 {
  transition-delay: 0.2s;
}

.js-fadein-delay-2 {
  transition-delay: 0.4s;
}

.js-fadein-scroll.duration-1s {
  transition-duration: 1s;
}

body.no-scroll {
  overflow: hidden;
}
body.l-body {
  background: #f3f0e9;
  color: #000;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

/* Header */
.l-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  top: 0;
  z-index: 50;
  width: 100%;
}
@media (min-width: 768px) {
  .l-header {
    align-items: start;
  }
}
.l-header__left {
  width: 103px;
  height: 51px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f0e9;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .l-header__left {
    width: 170px;
    height: 68px;
  }
}
.l-header__logo {
  width: 91px;
  height: 42px;
}
@media (min-width: 768px) {
  .l-header__logo {
    width: 123px;
    height: 57px;
  }
}
.l-header__nav {
  display: none;
  font-size: 16px;
  width: 527px;
  height: 47px;
  background: #f3f0e9;
  border-radius: 15px;
  justify-content: space-around;
  padding: 0.5rem 0;
}
.l-header__nav a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .l-header__nav {
    display: flex;
  }
}
.l-header__hamburger {
  position: absolute;
  right: 15px;
  width: 32px;
  height: 20px;
  z-index: 10001;
  margin-top: -5px;
}
.l-header__hamburger div {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-header__hamburger div span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fa9422;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-header__hamburger div span:nth-child(1) {
  top: 0;
}
.l-header__hamburger div span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__hamburger div span:nth-child(3) {
  bottom: 0;
}
.l-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}
@media (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}

.global-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
@media (min-width: 768px) {
  .global-nav-overlay {
    display: none;
  }
}
.global-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.global-nav-overlay__inner {
  padding: 50px 30px;
  width: 100%;
  text-align: center;
}
.global-nav-overlay__inner nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.global-nav-overlay__inner nav ul li {
  margin-bottom: 20px;
  border-bottom: 1px solid #6b4f4f;
  padding-bottom: 15px;
}
.global-nav-overlay__inner nav ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.global-nav-overlay__inner nav ul li a {
  text-decoration: none;
  font-size: 1.2em;
  display: block;
  padding: 5px 0;
}

/* Main Visual */
.l-mainvisual {
  position: relative;
}
.l-mainvisual__img {
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.9);
}
@media (min-width: 768px) {
  .l-mainvisual__img {
    height: 687px;
  }
}
.l-mainvisual__copy {
  position: absolute;
  left: 0;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.8);
  padding: 11px;
  max-width: 335px;
  font-size: 36px;
  font-weight: 600;
  color: #6b4f4f;
  border-radius: 15px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.l-mainvisual__copy.is-fadein {
  opacity: 1;
  transform: translateX(0);
}
@media (min-width: 768px) {
  .l-mainvisual__copy {
    font-size: 48px;
    padding: 20px 30px;
    bottom: 87px;
    max-width: 780px;
    border-radius: 8px;
  }
}

/* Service */
.p-service {
  max-width: calc(100% - 60px);
  margin: 50px auto;
}
@media (min-width: 768px) {
  .p-service {
    max-width: 1200px;
    margin: 80px auto;
  }
}
.p-service__title {
  font-size: 48px;
  font-weight: 700;
  color: #6b4f4f;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-service__title {
    margin-bottom: 80px;
  }
}
.p-service__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .p-service__list {
    display: grid;
    grid-template-columns: repeat(2, 589px);
    gap: 20px;
  }
}
.p-service__card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  .p-service__card {
    width: 589px;
    height: 406px;
  }
}
.p-service__card:hover .p-service__card-img img {
  opacity: 0.3;
}
.p-service__card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-service__card-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.p-service__card-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  z-index: 1;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .p-service__card-img::after {
    opacity: 0.2;
  }
}
.p-service__card-body {
  padding: 30px 20px 50px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.p-service__card-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .p-service__card-title {
    margin-bottom: 40px;
  }
}
.p-service__card-desc {
  font-size: 16px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-service__card-desc {
    line-height: 1.5;
  }
}

/* Philosophy */
.p-philosophy {
  position: relative;
  margin-top: 2rem;
  width: 100%;
  height: 422px;
}
@media (min-width: 768px) {
  .p-philosophy {
    height: 524px;
  }
}
.p-philosophy__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-philosophy__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0.3;
}
.p-philosophy__body {
  max-width: calc(100% - 60px);
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
}
.p-philosophy__body .title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #6b4f4f;
}
@media (min-width: 768px) {
  .p-philosophy__body .title {
    font-size: 48px;
  }
}
.p-philosophy__body .desc {
  font-size: 16px;
  margin-top: 0.4rem;
  text-align: center;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 768px) {
  .p-philosophy__body .desc {
    max-width: 800px;
  }
}

/* Recruit */
.p-recruit {
  max-width: calc(100% - 60px);
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: solid 1px #212121;
}
@media (min-width: 768px) {
  .p-recruit {
    max-width: 1200px;
    padding: 100px 0;
  }
}
.p-recruit__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 70px;
  color: #6b4f4f;
}
@media (min-width: 768px) {
  .p-recruit__title {
    margin-bottom: 50px;
  }
}
.p-recruit__list {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-recruit__list {
    width: 1050px;
  }
}
.p-recruit__list div {
  display: flex;
  flex-direction: column;
  border-bottom: #fa9422 1px solid;
}
.p-recruit__list div:first-of-type {
  border-top: #fa9422 1px solid;
}
@media (min-width: 768px) {
  .p-recruit__list div {
    border-bottom: 0px;
    flex-direction: row;
  }
  .p-recruit__list div:first-of-type {
    border-top: 0px;
  }
  .p-recruit__list div:first-of-type dt {
    border-top: #fa9422 2px solid;
  }
  .p-recruit__list div:first-of-type dd {
    border-top: #5b5b5b 2px solid;
  }
}
@media (min-width: 768px) {
  .p-recruit__list div dt,
  .p-recruit__list div dd {
    padding: 40px 20px;
  }
}
.p-recruit__list div dt {
  width: 100%;
  min-width: 80px;
  border-bottom: #5b5b5b 1px solid;
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .p-recruit__list div dt {
    border-bottom: #fa9422 2px solid;
    width: 200px;
  }
}
.p-recruit__list div dd {
  flex: 1;
  padding: 20px 10px 40px;
}
.p-recruit__list div dd li {
  list-style: inside;
  list-style-position: inside;
}
.p-recruit__list div dd li::marker {
  margin-right: 0;
}
@media (min-width: 768px) {
  .p-recruit__list div dd {
    border-bottom: #5b5b5b 2px solid;
    flex: 1;
  }
}

/* Company */
.p-company {
  background-color: #fff;
}
.p-company__wrapper {
  margin: 0 auto;
  padding: 100px 0;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: solid 1px #212121;
}
@media (min-width: 768px) {
  .p-company__wrapper {
    max-width: 1200px;
  }
}
.p-company__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #6b4f4f;
}
.p-company__wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .p-company__wrap {
    padding: 0 20px;
    flex-direction: row;
    gap: 100px;
  }
}
.p-company__map {
  background: #ece8df;
  color: #888;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 7px;
}
@media (min-width: 768px) {
  .p-company__map {
    width: 45%;
    height: 370px;
  }
}
.p-company__table {
  flex: 1;
  font-size: 16px;
}
@media (min-width: 768px) {
  .p-company__table {
    border-collapse: collapse;
  }
}
.p-company__table:first-of-type {
  border-top: #fa9422 1px solid;
}
@media (min-width: 768px) {
  .p-company__table:first-of-type {
    border-top: #fa9422 2px solid;
  }
}
.p-company__table tr {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-company__table tr {
    flex-direction: row;
  }
}
.p-company__table th,
.p-company__table td {
  border-bottom: #fa9422 1px solid;
  padding: 20px 10px;
}
@media (min-width: 768px) {
  .p-company__table th,
  .p-company__table td {
    border-bottom: #fa9422 2px solid;
    padding: 40px 20px;
  }
}
.p-company__table th {
  text-align: left;
  color: #6b4f4f;
  font-weight: bold;
  vertical-align: top;
  width: 100%;
}
@media (min-width: 768px) {
  .p-company__table th {
    width: 150px;
    padding: 20px 10px 40px;
  }
}
.p-company__table td {
  flex: 1;
  padding: 20px 10px 40px;
}

/* Contact */
.p-contact__wrapper {
  margin: 0 auto;
  padding: 100px 1rem;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  padding: 50px 0;
  border-bottom: solid 1px #212121;
}
@media (min-width: 768px) {
  .p-contact__wrapper {
    max-width: 1200px;
    padding: 80px 0;
  }
}
.p-contact__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #6b4f4f;
}
@media (min-width: 768px) {
  .p-contact__title {
    font-size: 48px;
    margin-bottom: 50px;
  }
}
.p-contact__inner {
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #6b4f4f;
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .p-contact__inner {
    max-width: 1000px;
    padding: 40px 100px;
  }
}
.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.p-contact__form > p {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-contact__form {
    gap: 35px;
  }
}
.p-contact__item > p {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}
.p-contact__item > p > br {
  display: none;
}
.p-contact__item > p > span {
  flex: 1;
}
.p-contact__item > p > span input,
.p-contact__item > p > span textarea {
  width: 100%;
}
@media (min-width: 768px) {
  .p-contact__item > p {
    gap: 100px;
  }
}
.p-contact__label {
  width: 100%;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-contact__label {
    width: 155px;
    line-height: 40px;
  }
}
.p-contact__required {
  color: #ff0000;
  margin-left: 5px;
}
.p-contact__input,
.p-contact__textarea {
  flex-grow: 1;
  padding: 10px 15px;
  border: 1px solid #6b4f4f;
  border-radius: 3px;
  font-size: 16px;
  height: 45px;
  box-sizing: border-box;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .p-contact__input,
  .p-contact__textarea {
    border: 2px solid #6b4f4f;
    height: 40px;
  }
}
.p-contact__input:focus,
.p-contact__textarea:focus {
  outline: none;
  border-color: rgb(165.8536585366, 147.5, 129.1463414634);
}
.p-contact__textarea {
  height: 205px;
  resize: vertical;
}
@media (min-width: 768px) {
  .p-contact__textarea {
    height: 150px;
  }
}
.p-contact__submit-button {
  align-self: center;
  border: 2px solid #6b4f4f;
  border-radius: 30px;
  font-size: 24px;
  color: #594a3a;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  min-width: 208px;
  text-align: center;
  padding: 30px 55px;
}
@media (min-width: 768px) {
  .p-contact__submit-button {
    padding: 30px 50px;
    min-width: 520px;
    font-size: 18px;
  }
}
.p-contact__submit-button:hover {
  background-color: #f3f0e9;
}

/* Footer */
.l-footer {
  background: #fff;
  border-top: 1px solid #ece8df;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
}
.l-footer__content {
  width: calc(100% - 60px);
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media (min-width: 768px) {
  .l-footer__content {
    gap: 1.2rem;
    width: 1200px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.l-footer__info {
  width: 100%;
  display: flex;
  text-align: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .l-footer__info {
    width: 60%;
    text-align: left;
  }
}
.l-footer__logo {
  width: 106px;
  height: 49px;
}
@media (min-width: 768px) {
  .l-footer__logo {
    width: 123px;
    height: 57px;
  }
}
.l-footer__company {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  gap: 20px;
}
.l-footer__company div {
  text-align: left;
}
.l-footer__links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  text-align: center;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .l-footer__links {
    flex: 1;
    gap: 0.8rem;
    grid-template-columns: repeat(3, 150px);
  }
}
.l-footer__links div {
  padding: 0 20px 10px;
}
.l-footer__links a {
  text-decoration: none;
}
.l-footer__copyright {
  font-size: 12px;
  text-align: center;
  margin-bottom: 0.7em;
  color: #aaa;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    font-size: 16px;
  }
} /*# sourceMappingURL=style.css.map */
