@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #484848;
  background: #fffdfa;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body p {
  font-feature-settings: "palt";
  line-height: 2.0;
}
body h1, body h2 {
  font-feature-settings: "kern"1;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body h3, body h4 {
  font-feature-settings: "palt";
}
/* ローディング画面全体 */
#loading-screen {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fffdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease;
  opacity: 1;
  pointer-events: none;
}
.loading-logo {
  width: 80px;
  height: 80px;
  animation: spin 1.5s linear infinite;
  transition: opacity 0.6s ease;
  opacity: 1;
}
.loading-text {
  margin-top: 20px;
  font-size: 1.6rem;
  color: #484848;
  letter-spacing: 1px;
  transition: opacity 0.6s ease;
  opacity: 1;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
.leftAnime {
  opacity: 0;
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.fadeUpTrigger {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lazy-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.lazy-fade.loaded {
  opacity: 1;
  transform: translateY(0);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.header-icon {
  width: 32px;
  height: 32px;
  padding: 16px;
  position: relative;
  z-index: 1100;
  cursor: pointer;
}
.header-icon:hover {
  transition: transform 1s;
  transform: rotate(90deg);
}
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  cursor: pointer;
  padding: 24px 16px 16px;
  z-index: 999;
  position: relative;
}
.line {
  height: 2px;
  background-color: #484848;
  ;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.line-top {
  width: 28px;
}
.line-bottom {
  width: 20px;
}
.hamburger.active .line-top {
  transform: rotate(45deg) translate(5px, 5px);
  width: 24px;
}
.hamburger.active .line-bottom {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 24px;
}
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  z-index: 100;
}
.nav-menu.open {
  transform: translateY(0);
}
.nav-menu ul {
  list-style: none;
  padding: 0;
}
.nav-menu li {
  text-align: center;
  margin: 24px 0;
}
.nav-menu li:last-child {
  margin-top: 60px;
}
.nav-menu a {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  color: #484848;
  text-decoration: none;
  padding: 24px 40px;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}
.nav-menu a:hover {
  color: #8cafa4;
}
.contact-btn {
  padding: 12px 40px 14px;
  background-color: #8cafa4;
  border-radius: 30px;
  color: #fffdfa;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  text-shadow: none;
}
.contact-btn:hover {
  background-color: #fffdfa;
  color: #8cafa4;
  border: 1px solid #8cafa4;
}
@media (min-width:1025px) {
  .header {
    height: 100px;
  }
  .header-icon {
    width: 40px;
    height: 40px;
  }
  .hamburger {
    display: none;
  }
  .nav-menu {
    position: static;
    transform: none;
    background: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    width: auto;
    display: flex !important;
    z-index: auto;
  }
  .nav-menu ul {
    display: flex;
    gap: 32px;
  }
  .nav-menu li {
    margin: 0;
  }
  .nav-menu li:last-child {
    margin-top: 0;
  }
  .nav-menu a {
    font-size: 2.4rem;
    text-decoration: none;
  }
}
.footer {
  background: #8cafa4;
  color: #fffdfa;
}
.footer-title {
  display: flex;
  align-items: center;
  padding-top: 24px;
  margin-bottom: 40px;
}
.footer a {
  text-decoration: none;
}
.footer-icon {
  width: 28px;
  height: 28px;
  padding: 16px;
}
.footer h2 {
  font-size: 2.4rem;
  color: #fffdfa;
}
.footer-contact_wrapper {
  background-color: #FFFDFA;
  padding: 24px 48px;
  width: fit-content;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: block;
  margin: 0 auto 40px;
  text-decoration: none;
  cursor: pointer;
}
.footer-contact_content {
  text-align: center;
}
.footer-contact {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #8cafa4;
  font-size: 3.2rem;
  display: inline-block;
  position: relative;
  padding: 0 20px;
  outline: none;
  line-height: 1;
}
.footer-contact::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 40%;
  width: 16%;
  height: 1px;
  transform: rotate(90deg);
  background: #8cafa4;
  transition: all .3s;
}
.footer-contact:hover::before {
  top: 60px;
}
.footer-mail_content {
  text-align: center;
  margin-top: 32px;
}
.footer-mail {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #8cafa4;
  font-size: 2.4rem;
}
.footer ul {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.footer ul li {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.0rem;
}
.footer ul li a {
  text-decoration: none;
  color: #fffdfa;
  padding: 12px 24px;
  cursor: pointer;
}
.footer ul li a:hover {
  color: #484848;
}
.footer small {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  padding-bottom: 32px;
}
@media (min-width: 1025px) {
  .footer-wrapper {
    max-width: 1025px;
    margin: 0 auto;
  }
  .footer-contact_content__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 0 20px;
  }
  .footer-contact::before {
    top: 50px;
    left: 42%;
  }
  .footer-contact_wrapper:hover .footer-contact::before {
    top: 62px;
  }
  .footer-icon {
    width: 40px;
    height: 40px;
  }
  .footer h2 {
    font-size: 3.2rem;
  }
  .footer-contact_wrapper {
    margin: 0 12% 50px 0;
  }
  .footer-contact {
    font-size: 4.0rem;
  }
  .footer-mail {
    font-size: 3.2rem;
  }
  .footer ul {
    margin-bottom: 50px;
  }
  .footer ul li {
    margin: 0 8px;
  }
  .footer ul li a {
    font-size: 2.4rem;
    padding: 24px 40px;
  }
  .footer small {
    text-align: left;
    margin-left: 23px;
  }
}