@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
  --jp: "Noto Serif JP", serif;
  --en: "Bodoni Moda", serif;
}

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #222222;
  background: #EDF2EC;
  font-family: var(--jp);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  overflow-x: hidden;
}

.bodyHidden {
  height: 100vh;
  overflow: hidden;
}

.en {
  font-family: var(--en);
}

img {
  width: 100%;
}

.image {
  scale: 1.2;
  height: calc(100% + 50px);
  object-fit: cover;
}



.pageMove {
  position: fixed;
  width: 100%;
  height: 100lvh;
  top: 0;
  left: 0;
  background: #C4CEC2;
  z-index: 99998;
  transform-origin: top;
  transform: scaleY(1);
  transition: 1s;
}

.pageMove-after {
  transform: scaleY(0);
}

.pageMove-before {
  animation: 1s before cubic-bezier(0.4, 1, 0.6, 1) both;
}

@keyframes before {
  0% {
    transform: translateY(101%);
  }

  100% {
    transform: translateY(0);
  }
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header__wapper__logo {
  position: fixed;
  top: 5%;
  left: 5%;
  width: 90px;
}

.header__wapper__logo img {
  transition: 0.25s;
}

.header-active .header__wapper__logo img {
  filter: brightness(0);
}

.header__wapper__nav {
  position: fixed;
  top: 5%;
  right: 5%;
}

.header__wapper__nav__ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__wapper__nav__ul__li__a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  line-height: 1;
  font-weight: 400;
  color: #FFFFFF;
  font-family: var(--en);
  transition: 0.25s;
}

.header-active .header__wapper__nav__ul__li__a {
  color: #222222;
}

.header__wapper__nav__ul__li:last-child {
  margin-left: 31px;
  position: relative;
}

/* .header__wapper__nav__ul__li:last-child::after {
  content: "";
  width: 1px;
  height: 120%;
  position: absolute;
  top: -5%;
  left: -30px;
  display: block;
  background: #B5B5B5;
} */

.header__wapper__nav__ul__li__a__img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-top: 3px;
  transition: 0.25s;
}

.header-active .header__wapper__nav__ul__li__a__img {
  filter: brightness(0);
}

.headerSp {
  display: none;
}



@media (max-width: 767px) {

  .headerSp {
    display: block;
  }

  .header__wapper {
    padding-top: 20px;
  }

  .header__wapper__logo {
    width: 55px;
    z-index: 9999;
  }

  .header__wapper__logo img {
    transition: 0.6s;
  }

  .logoActive {
    filter: brightness(0);
  }

  .menu {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 5%;
    right: 5%;
    z-index: 9999;
  }

  .menu span {
    position: absolute;
    top: 20px;
    left: 0;
    background: #FFFFFF;
    width: 100%;
    height: 1px;
    transition: 0.6s;
  }

  .header-active .menu span {
    background: #222222;
  }

  .menu span:nth-child(2) {
    top: 30px;
  }

  .active span {
    background: #222222;
    rotate: 20deg;
    top: 25px;
  }

  .active span:nth-child(2) {
    top: 25px;
    rotate: -20deg;
  }

  .header__wapper__nav {
    position: fixed;
    width: 100%;
    height: 100lvh;
    overflow-y: scroll;
    top: -101vh;
    left: 0;
    background: #EDF2EC;
    z-index: 9998;
    transform-origin: top;
    transition: 0.5s;
    transition-timing-function: cubic-bezier(0.4, 1, 0.6, 1);
  }

  .open {
    top: 0;
  }

  .header__wapper__nav__ul {
    flex-direction: column;
    margin-top: 120px;
  }

  .header__wapper__nav__ul__li__a {
    color: #222222;
  }

  .header__wapper__nav__ul__li__a__img {
    filter: brightness(0);
    width: 25px;
    height: 25px;
  }

  .header__wapper__nav__ul__li {
    opacity: 0;
    transform: translate(-30px);
  }

  .open .header__wapper__nav__ul__li {
    animation: navigation 0.6s ease-out both;
    animation-delay: 0.6s;
  }

  .open .header__wapper__nav__ul__li:nth-child(2) {
    animation-delay: 0.7s;
  }

  .open .header__wapper__nav__ul__li:nth-child(3) {
    animation-delay: 0.8s;
  }

  .open .header__wapper__nav__ul__li:nth-child(4) {
    animation-delay: 0.9s;
  }
   .open .header__wapper__nav__ul__li:nth-child(5) {
    animation-delay: 1s;
  }
   .open .header__wapper__nav__ul__li:nth-child(6) {
    animation-delay: 1.1s;
  }
  .open .header__wapper__nav__ul__li:nth-child(7) {
    animation-delay: 1.2s;
  }
  .header__wapper__nav__ul__li:nth-child(6) {
    margin-left: 0;
    /* margin-top: 60px; */
  }

  .header__wapper__nav__ul__li:nth-child(6)::after {
    content: none;
  }

  .header__wapper__nav__ul__li__a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }

  .header__wapper__nav__ul__li__a span {
    font-size: 1.2rem;
  }

  .header__wapper__nav__bottom {
    width: 90%;
    margin: 50px auto;
    border-top: solid 1px #222222;
    padding-top: 30px;
  }

  .header__wapper__nav__bottom ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 1.2rem;
    opacity: 0;
    transform: translate(-30px);
    transition: 0.6s;
    transition-delay: 1s;
  }

  .open .header__wapper__nav__bottom ul {
    animation: navigation 0.6s ease-out both;
    animation-delay: 1s;
  }

  .header__wapper__nav__bottom ul li:first-child {
    font-size: 1.4rem;
  }

  @keyframes navigation {
    0% {
      transform: translateX(-30px);
      opacity: 0;
    }

    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  .header__wapper__nav__ul__li:last-child{
    margin-left: 0;
  }

}


.contact {
  position: relative;
}

.contact__image {
  height: 400px;
  overflow: hidden;
}

.contact__contents {
  width: 90%;
  max-width: 1600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 9;
  color: #FFFFFF;
}

.contact__contents small {
  font-family: var(--en);
  font-size: 2rem;
  display: block;
  margin-bottom: 25px;
}

.contact__contents h2 {
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0.5rem;
  margin-bottom: 35px;
}

.contact__contents p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.2rem;
  margin-bottom: 75px;
}

.contactSp {
  display: none;
}

@media (max-width:767px) {
  .contact__contents {
    text-align: center !important;
  }

  .contact .link {
    margin: 0 auto;
  }

  .contactSp {
    display: block;
  }
}



.footer {
  background: #EDF2EC;
}

.footer__wapper {
  width: 90%;
  padding: 300px 0 50px;
  margin: 0 auto;
  text-align: right;
}

.footer__wapper__title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer__wapper__address,
.footer__wapper__tel {
  display: block;
  font-size: 1.4rem;
  line-height: 1.75;
}

.footer__wapper__nav {
  margin-top: 30px;
}

.footer__wapper__nav__ul {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: flex-end;
}


@media (max-width: 767px) {

  .footer__wapper {
    padding: 130px 0 60px;
  }

  .footer__wapper__title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .footer__wapper__address,
  .footer__wapper__tel {
    font-size: 1.2rem;
    line-height: 2;
  }

  .footer__wapper__nav {
    margin-top: 40px;
  }

  .footer__wapper__nav__ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
    font-size: 1.2rem;
  }

  .footer__wapper__nav__ul li:first-child {
    font-size: 1.4rem;
  }
}





.common__hover {
  position: relative;
  width: fit-content;
}

.header .common__hover::after {
  background: #FFFFFF;
}

.header-active .common__hover::after {
  background: #222222;
}

.common__hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background: #222222;
  display: block;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .6s;
}

.common__hover:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--en);
  transition: 0.4s;
}

.link:hover {
  opacity: 0.5;
}

.link span {
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 80px;
  height: 2px;
}

.link span img {
  transform: none;
  animation: link 2.5s linear infinite;
}

@keyframes link {
  0% {
    transform: translateX(-100%);
  }

  5% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  95% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(100%);
  }
}


.scrollEffect {
  transition: 0.8s;
  transition-timing-function: ease-out;
  opacity: 0;
  transform: translateY(50px);
}

.scrollEffect-active {
  opacity: 1;
  transform: translateY(0);
}

/* 0331追加 */
.recruit-icon {
  margin-left: 6px;
}

@media (max-width: 767px) {
  .recruit-icon {
    display: none;
  }
}

.header .recruit-icon .icon-line {
  stroke: #fff;
}

.header .recruit-icon .icon-dot {
  fill: #fff;
}

.header.header-active .recruit-icon .icon-line {
  stroke: #000;
}

.header.header-active .recruit-icon .icon-dot {
  fill: #000;
}