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

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

html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

body {
  color: #000;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}

img {
  width: 100%;
}

header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
}

.header {
  width: 90%;
  max-width: 1920px;
  padding: 25px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header h1 {
  position: relative;
  z-index: 99999;
  width: 50%;
  max-width: 200px;
}

.header__nav__ul {
  display: flex;
  align-items: center;
  gap: 35px;
  letter-spacing: 0.2rem;
  font-weight: 600;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
}

.header__nav__ul__li {
  position: relative;
}

.header__nav__ul__li a {
  display: block;
}

.header__nav__ul__li::after {
  content: "";
  transition: 0.4s;
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #000;
}

.header__nav__ul__li:hover::after {
  width: 100%;
}

.header__nav__ul__liContact {
  position: relative;
  padding: 10px 0;
  width: 180px;
  text-align: center;
  border: solid 1px #000;
  cursor: pointer;
}

.header__nav__ul__liContact a {
  display: block;
  width: 100%;
  padding: 10px 0;
  margin: -10px 0;
}

.header__nav__ul__liContact::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background: #000000;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: 0.4s;
}

.header__nav__ul__liContact:hover::after {
  right: -10px;
}

.menu {
  display: none;
}

.header__nav__sp {
  display: none;
}

.sp,
.tb {
  display: none;
}

.header__nav__ul__liSns {
  display: flex;
  gap: 25px;
}

.header__nav__ul__liSns a {
  display: block;
}

.header__nav__ul__liSns a img {
  height: 30px;
  width: auto;
}

@media (max-width: 1023px) {
  .pc {
    display: none;
  }

  .tb {
    display: block;
  }
}

@media (max-width: 599px) {
  .sp {
    display: block;
  }

  .contact__sp {
    display: none;
  }

  .header {
    padding: 15px 0;
  }
}

@media (max-width: 1180px) {

  .header__nav__ul__liSns {
    margin-top: 50px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 120%;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    z-index: 9999;
    transition: 0.6s;
  }

  .header__nav div {
    padding: 150px 0 150px;
    height: 100%;
    overflow-y: scroll;
  }

  .menu {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    z-index: 99999;
  }

  .menu span {
    display: block;
    position: absolute;
    top: 5px;
    left: 0px;
    width: 30px;
    height: 2px;
    background: #344A32;
    transition: 0.5s;
  }

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

  .menu span:nth-child(3) {
    top: 25px;
  }

  .active span:first-child {
    transform: rotate(45deg) translateY(6px) translateX(6px);
  }

  .active span:nth-child(2) {
    opacity: 0;
  }

  .active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px) translateX(8px);
  }

  .open {
    left: 0;
  }

  .header__nav__ul {
    flex-direction: column;
    margin-bottom: 150px;
  }

  .header__nav__sp {
    display: flex;
    font-size: 1.2rem;
    gap: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }
}


.contact__bottom {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 150px;
}

.contact__bottom__line {
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  margin-bottom: 100px;
}

.contact__bottom p {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.2rem;
  margin-bottom: 100px;
}

.contact__button {
  margin: 0 auto 100px;
}

footer {
  width: 90%;
  padding: 50px 0 150px;
  border-top: solid 1px #000000;
  margin: 0 auto;
  max-width: 1200px;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Century Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
  font-weight: 600;
}

footer nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
}

.topbutton {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-bottom: solid 1px #000000;
  border-right: solid 1px #000000;
  transform: rotate(-135deg);
}

.bottom__link {
  display: inline-block;
  position: relative;
}

.bottom__link::after {
  content: "";
  transition: 0.4s;
  display: block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #000;
}

.bottom__link:hover::after {
  width: 100%;
}

@media (max-width: 599px) {
  footer {
    flex-direction: column-reverse;
    gap: 100px;
  }

  footer nav ul {
    flex-direction: column-reverse;
  }

  .contact__bottom p {
    text-align: left;
  }
}




.fade {
  opacity: 0;
  transform: translateY(40px);
}

.fadeIn {
  animation: fade 1.25s ease-in both;
}

@keyframes fade {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

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