@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
  font-size: 62.5%;
}

.fv {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.fv__canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fv__fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.fv__fb__left {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-between;
  padding: 0 30px;
}
.fv__fb__left__btn {
  color: white;
  margin-top: 100px;
  margin-bottom: 60px;
  padding: 20px 40px;
  background: transparent;
  border: 1px solid white;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.4s;
  position: relative;
}
.fv__fb__left__btn::before {
  content: "⇩";
  color: white;
  font-size: 3rem;
  display: none;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.fv__fb__left__btn::after {
  content: "Scroll";
  color: white;
  font-size: 1.5rem;
  display: none;
  position: absolute;
  bottom: -35px;
  left: 55%;
}
.fv__fb__left__btn:hover {
  background: white;
  color: black;
  border: 1px solid black;
}
.fv__fb__left__btn:hover::before {
  display: block;
}
.fv__fb__left__btn:hover::after {
  display: block;
}
.fv__fb__right {
  width: 50%;
  height: 100vh;
  background: rgba(158, 158, 158, 0.27);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 30px;
  transform: translateX(100%);
  -webkit-animation: fv_right 1.5s ease-in-out forwards;
          animation: fv_right 1.5s ease-in-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.fv__fb__right__intro {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
.fv__fb__right__intro__imgBox {
  width: 50%;
  text-align: center;
}
.fv__fb__right__intro__imgBox img {
  width: 150px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.fv__fb__right__intro__name {
  width: 50%;
  text-align: left;
  font-size: 2.5rem;
  font-weight: 500;
}
.fv__fb__right__des {
  font-size: 1.4rem;
}
.fv__fb__right__des--ttl {
  font-size: 1.8rem;
  font-weight: 500;
  text-shadow: 0 0 5px black;
  margin-top: 20px;
  margin-bottom: 3px;
}
.fv__fb__right__des--sub {
  font-size: 1.4rem;
  font-weight: 400;
}
.fv__fb__right__des--sub span {
  display: inline-block;
  align-content: center;
}
.fv__fb__right__des--sub--span1 {
  font-size: 1.2rem;
  width: 150px;
}
.fv__fb__right__des--sub--span2 {
  font-size: 1.4rem;
  width: calc(100% - 150px);
}

@media screen and (max-width: 768px) {
  .fv__fb__left {
    display: none;
  }
  .fv__fb__right {
    width: 100%;
    transform: translateX(0);
    -webkit-animation: none;
            animation: none;
  }
}
@media screen and (max-width: 480px) {
  .fv__canvas {
    width: 100%;
  }
  .fv__fb__right__intro__imgBox img {
    width: 150px;
    height: 180px;
  }
  .fv__fb__right__intro__name {
    font-size: 2.5rem;
  }
  .fv__fb__right__des {
    font-size: 1.2rem;
  }
  .fv__fb__right__des--ttl {
    font-size: 1.6rem;
    text-shadow: 0 0 5px black;
  }
  .fv__fb__right__des--sub {
    font-size: 1.2rem;
  }
  .fv__fb__right__des--sub--span1 {
    font-size: 1rem;
    width: 120px;
  }
  .fv__fb__right__des--sub--span2 {
    font-size: 1.2rem;
    width: calc(100% - 120px);
  }
}
.self {
  padding: 60px 10px;
  background-color: #fff;
}
.self__ttl {
  text-align: center;
  margin-bottom: 40px;
}
.self__ttl__text {
  display: flex;
  justify-content: space-between;
  font-size: 3.5rem;
  font-weight: 500;
  margin-top: 50px;
  margin-left: 30px;
  margin-bottom: 50px;
  text-align: center;
}
.self__content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.self__block__heading {
  font-size: 2rem;
  font-weight: bold;
  color: #4A90E2;
  margin-bottom: 10px;
}
.self__block__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}

@media screen and (max-width: 480px) {
  .self__content {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .self__block__heading {
    font-size: 1.8rem;
    font-weight: bold;
  }
  .self__block__text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #333;
  }
}
.list {
  width: 100%;
  padding: 60px 10px;
}
.list__ttl {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 30px;
}
.list__ttl__text {
  font-size: 3.5rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.list__ttl__search {
  font-size: 1.3rem;
  background-color: #eae7e7;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  min-width: 200px;
  margin-left: 10px;
  margin-right: 20px;
}

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

@keyframes fv_right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes husen {
  0% {
    opacity: 1;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
  }
}
@keyframes husen {
  0% {
    opacity: 1;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
  }
}
@-webkit-keyframes text {
  0% {
    opacity: 0;
    transform: scale(3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes text {
  0% {
    opacity: 0;
    transform: scale(3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.husen-b {
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 100px;
}
.husen-b .husen-img {
  width: 300px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.husen-b .js-scroll {
  -webkit-animation: husen 0.5s linear forwards;
          animation: husen 0.5s linear forwards;
  transform-origin: 0% 0%;
  opacity: 0;
}
.husen-b .js-scroll1 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.husen-b .js-scroll2 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.husen-b .js-scroll3 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.husen-b .husen-shadow {
  width: 350px;
  position: absolute;
  top: 10px;
  left: 0;
}
.husen-b .husen-text {
  width: 300px;
  margin-top: 14.25px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  color: black;
  font-size: 30px;
  letter-spacing: 3px;
}
.husen-b .js-text {
  -webkit-animation: text 0.3s linear forwards;
          animation: text 0.3s linear forwards;
  opacity: 0;
}
.husen-b .js-text1 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.husen-b .js-text2 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
.husen-b .js-text3 {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

#card {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}

.c-card {
  position: relative;
  border: 1px black solid;
  width: 19%;
  height: 150px;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-top: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
}
.c-card__tag {
  position: absolute;
  height: 20px;
  margin-top: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.c-card__tag__name {
  white-space: nowrap;
  background-color: greenyellow;
  border-radius: 15px;
  padding: 5px 10px;
}
.c-card__txt {
  margin-left: 5px;
}
.c-card__txt__name {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 35px;
  margin-bottom: 15px;
}
.c-card__txt__description {
  font-size: 1.2rem;
  padding-left: 5px;
}

@media screen and (max-width: 1000px) {
  .c-card__txt__name {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-card {
    width: 31%;
    margin-left: 1%;
    margin-right: 1%;
  }
  .c-card__tag {
    position: absolute;
    padding: 10px 15px;
    height: 25px;
    border-radius: 12.5px;
    margin: 0;
  }
  .c-card__txt__name {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .c-card__txt__description {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .c-card {
    width: 98%;
  }
  .c-card__tag {
    position: absolute;
    padding: 10px 15px;
    height: 25px;
    border-radius: 12.5px;
    margin: 0;
  }
  .c-card__txt__name {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .c-card__txt__description {
    font-size: 1.4rem;
  }
}
.cardMore {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.cardMore__btn {
  border: 1px black solid;
  font-size: 1.6rem;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
}

.cardPagination {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}
.cardPagination__btn {
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  cursor: pointer;
}
.cardPagination__btn.active {
  background: #333;
  color: white;
  font-weight: bold;
}

.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}
.footer__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.footer__logo {
  margin-bottom: 20px;
}
.footer__logo__text {
  font-size: 2rem;
  font-weight: bold;
}
.footer__nav {
  margin-bottom: 20px;
}
.footer__nav__list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav__item a {
  color: #fff;
  font-size: 1.4rem;
  transition: opacity 0.3s;
}
.footer__nav__item a:hover {
  opacity: 0.6;
}
.footer__copy {
  font-size: 1.2rem;
  color: #aaa;
}/*# sourceMappingURL=style.css.map */