@charset "UTF-8";
:root {
  /* 背景色 */
  --primary-color: #4B555B;
  /* サブカラー */
  --sub-color: #E05E39;
  /* テキストメインカラー */
  --text-color: #FDEFD8;
}

body {
  font-family: "Anton", "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: var(--primary-color);
  overflow-x: clip;
}

body.no-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

.custom-btn {
  color: var(--sub-color);
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 430px) {
  .custom-btn {
    gap: 2px;
  }
}
.custom-btn:hover .btn-text,
.custom-btn:hover .btn-arrow {
  background-color: var(--sub-color);
  color: var(--text-color);
  transition: 0.3s;
}
.custom-btn .btn-text {
  border: 2px solid var(--sub-color);
  background-color: var(--text-color);
  border-radius: 4px;
  padding: 2px 48px;
  font-size: 20px;
}
@media (max-width: 430px) {
  .custom-btn .btn-text {
    font-size: 14px;
    border: 1px solid var(--sub-color);
    padding: 2px 40px;
    border-radius: 2px;
  }
}
.custom-btn .btn-arrow {
  border: 2px solid var(--sub-color);
  background-color: var(--text-color);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 20px;
}
@media (max-width: 430px) {
  .custom-btn .btn-arrow {
    font-size: 12px;
    border: 1px solid var(--sub-color);
    padding: 4px 6px;
  }
}

.header {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0 24px 0;
}
@media (max-width: 1024px) {
  .header {
    display: block;
    padding: 4px 0 8px 0;
  }
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 40px 0;
  animation: headerFadeIn 1s ease-out 1.8s forwards;
  opacity: 1;
  position: relative;
  z-index: 10001;
  isolation: isolate;
}
.header .header-inner .header-logo {
  width: 11.1111111111vw;
  min-width: 104px;
}
.header .header-inner .header-hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .header .header-inner .header-hamburger {
    display: flex;
    position: relative;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
  }
  .header .header-inner .header-hamburger span {
    width: 100%;
    height: 4px;
    background: var(--text-color);
    transition: 0.3s;
  }
  .header .header-inner .header-hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .header .header-inner .header-hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .header .header-inner .header-hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.header .header-right {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
@media (max-width: 1024px) {
  .header .header-right {
    animation: none;
    opacity: 1;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70vh;
    background: var(--primary-color);
    z-index: 9999;
    transform: translateY(-100%);
    transition: 0.5s;
    border: 4px solid var(--text-color);
    border-radius: 8px;
  }
}
@media (max-width: 1024px) {
  .header .header-right.active {
    transform: translateY(0);
  }
}
.header .header-right .header-nav {
  margin-right: 3.3333333333vw;
}
@media (max-width: 1024px) {
  .header .header-right .header-nav {
    margin-right: 0;
  }
}
.header .header-right .header-nav .header-list {
  display: flex;
  gap: 24px;
}
@media (max-width: 1024px) {
  .header .header-right .header-nav .header-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
.header .header-right .header-nav .header-list li {
  font-size: 32px;
  font-weight: 400;
  color: var(--text-color);
  position: relative;
}
@media (max-width: 1024px) {
  .header .header-right .header-nav .header-list li {
    font-size: 44px;
  }
}
.header .header-right .header-nav .header-list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: var(--text-color);
  transition: width 0.4s ease;
}
.header .header-right .header-nav .header-list li:hover::after {
  width: 100%;
}
.header .header-right .header-sns {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .header .header-right .header-sns {
    margin-top: 24px;
  }
}
.header .header-right .header-sns .header-sns__inst {
  width: 32px;
}
.header .header-right .header-sns .header-sns__inst a :hover {
  opacity: 0.7;
  transition: 0.3s;
}
.header .header-right .header-sns .header-sns__x {
  width: 32px;
}
.header .header-right .header-sns .header-sns__x a :hover {
  opacity: 0.8;
  transition: 0.3s;
}

main {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
}
main .about .about-container__nameblock {
  padding-top: 8.3333333333vw;
  color: var(--text-color);
  font-size: 10.5555555556vw;
  text-align: center;
  position: relative;
  z-index: 10;
}
main .about .about-container__nameblock .about-container__name1 {
  position: absolute;
  left: 17.9166666667vw;
}
main .about .about-container__nameblock .about-container__name2 {
  position: absolute;
  top: 18.8888888889vw;
  right: 12.6388888889vw;
}
main .about .about-container__detail {
  margin: 200px 0 160px 0;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  main .about .about-container__detail {
    flex-direction: column;
    align-items: center;
    margin-top: 160px;
  }
}
@media (max-width: 430px) {
  main .about .about-container__detail {
    margin: 64px 0 64px 0;
  }
}
main .about .about-container__detail .about-container__img {
  max-width: 75vw;
}
@media (max-width: 430px) {
  main .about .about-container__detail .about-container__img {
    max-width: none;
  }
}
main .about .about-container__detail .about-container__text {
  padding: 16.6666666667vw 0 0 56px;
  max-width: 33.3333333333vw;
}
@media (max-width: 1024px) {
  main .about .about-container__detail .about-container__text {
    padding: 0;
    max-width: 58.59375vw;
  }
}
main .about .about-container__detail .about-container__text p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Noto sans JP";
  line-height: 2.6vw;
  letter-spacing: 0.16vw;
  color: var(--text-color);
  margin-bottom: 32px;
}
@media (max-width: 430px) {
  main .about .about-container__detail .about-container__text p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
}
main .about .about-container__detail .about-container__text .custom-btn .btn-text {
  border: none;
}
main .about .about-container__detail .about-container__text .custom-btn .btn-arrow {
  border: none;
}
main .career .career-container {
  margin-bottom: 240px;
}
@media (max-width: 430px) {
  main .career .career-container {
    margin-bottom: 80px;
  }
}
main .career .career-container .career-container__title {
  width: 70.8333333333vw;
  margin-bottom: 120px;
}
@media (max-width: 430px) {
  main .career .career-container .career-container__title {
    margin-bottom: 40px;
  }
}
main .strength {
  margin-bottom: 160px;
}
main .strength .strength-container .strength-container__title {
  width: 81.9444444444vw;
  margin-bottom: 120px;
}
@media (max-width: 430px) {
  main .strength .strength-container .strength-container__title {
    margin-bottom: 40px;
  }
}
main .strength .strength-container .strength-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: var(--sub-color);
  padding: 40px;
  min-height: 720px;
  margin-bottom: 64px;
}
@media (max-width: 1020px) {
  main .strength .strength-container .strength-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    min-height: auto;
    gap: 40px;
  }
}
main .strength .strength-container .strength-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: #fff;
  opacity: 0.8;
}
@media (max-width: 1020px) {
  main .strength .strength-container .strength-card::before {
    display: none;
  }
}
main .strength .strength-container .strength-card .strength-card__en {
  width: 44.3055555556vw;
  padding-right: 40px;
  align-self: flex-start;
}
@media (max-width: 1020px) {
  main .strength .strength-container .strength-card .strength-card__en {
    width: 100%;
    padding-right: 0;
  }
}
main .strength .strength-container .strength-card .strength-txt__container {
  width: 34%;
  align-self: flex-end;
  position: relative;
  padding-top: 120px;
  color: var(--text-color);
}
@media (max-width: 1020px) {
  main .strength .strength-container .strength-card .strength-txt__container {
    width: 100%;
    padding-top: 40px;
  }
  main .strength .strength-container .strength-card .strength-txt__container .strength-txt__container::before {
    top: 40;
    width: 100%;
  }
}
main .strength .strength-container .strength-card .strength-txt__container::before {
  content: "";
  position: absolute;
  top: 80px;
  width: 100%;
  height: 2px;
  background: #fff;
}
@media (max-width: 1020px) {
  main .strength .strength-container .strength-card .strength-txt__container::before {
    top: 0;
  }
}
main .strength .strength-container .strength-card .strength-card__ja {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 430px) {
  main .strength .strength-container .strength-card .strength-card__ja {
    font-size: 20px;
  }
}
main .strength .strength-container .strength-card .strength-card__text {
  line-height: 2;
}
@media (max-width: 1020px) {
  main .strength .strength-container .strength-card .strength-card__text {
    font-size: 28px;
  }
}
@media (max-width: 430px) {
  main .strength .strength-container .strength-card .strength-card__text {
    font-size: 14px;
  }
}
main .like {
  margin-bottom: 240px;
}
@media (max-width: 430px) {
  main .like {
    margin-bottom: 80px;
  }
}
main .like .like-container .like-container__title {
  width: 50vw;
  margin-bottom: 120px;
}
@media (max-width: 430px) {
  main .like .like-container .like-container__title {
    margin-bottom: 64px;
  }
}
main .like .like-container .like-card {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  margin-bottom: 64px;
  height: clamp(240px, 40vw, 508px);
}
@media (max-width: 430px) {
  main .like .like-container .like-card {
    margin-bottom: 32px;
  }
}
main .like .like-container .like-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}
main .like .like-container .like-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
}
main .like .like-container .like-card .like-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
@media (max-width: 430px) {
  main .like .like-container .like-card .like-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
main .like .like-container .like-card .like-card__content h3 {
  font-size: clamp(80px, 16vw, 240px);
  transition: 0.4s;
}
main .like .like-container .like-card .like-card__content p {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s;
  width: 38.8888888889vw;
  text-align: left;
  font-size: 18px;
  letter-spacing: 0.1vw;
  line-height: 2.2vw;
}
@media (max-width: 430px) {
  main .like .like-container .like-card .like-card__content p {
    font-size: 12px;
    width: 70%;
    text-align: center;
    line-height: 3.6vw;
  }
}
main .like .like-container .like-card:hover .like-card__content h3 {
  transform: translateY(-20px);
}
main .like .like-container .like-card:hover .like-card__content p {
  opacity: 1;
  transform: translateY(0);
}
main .like .like-container .like-card__1 {
  background-image: url(../img/about-img/movie.png);
  background-size: cover;
  background-position: center;
}
main .like .like-container .like-card__2 {
  background-image: url(../img/about-img/music.png);
  background-size: cover;
  background-position: center;
}
main .like .like-container .like-card__3 {
  background-image: url(../img/about-img/camp.png);
  background-size: cover;
  background-position: center;
}

.other {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
}
.other .other-title {
  width: 44.4444444444vw;
  margin-bottom: 72px;
}
@media (max-width: 430px) {
  .other .other-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 430px) {
  .other .swiperslide-other {
    overflow: hidden;
  }
}
.other .swiperslide-other .swiper-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .other .swiperslide-other .swiper-wrapper {
    margin-bottom: 24px;
  }
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--text-color);
  padding: 24px 32px 0 32px;
  box-shadow: 4px 4px 4px 0 rgba(46, 46, 46, 0.8);
}
@media (max-width: 430px) {
  .other .swiperslide-other .swiper-wrapper .swiper-slide .works-card {
    padding: 16px 20px 0 16px;
  }
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card.show {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card p {
  color: var(--sub-color);
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card__type {
  font-size: 20px;
  padding-top: 16px;
}
@media (max-width: 430px) {
  .other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card__type {
    font-size: 16px;
    padding-top: 4px;
  }
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card__title {
  font-size: 2.0833333333vw;
  font-weight: 600;
  padding-bottom: 160px;
  font-family: "Noto sans JP";
}
@media (max-width: 430px) {
  .other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .works-card__title {
    font-size: 20px;
    padding-bottom: 80px;
  }
}
.other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .custom-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: auto;
  padding-bottom: 16px;
}
@media (max-width: 430px) {
  .other .swiperslide-other .swiper-wrapper .swiper-slide .works-card .custom-btn {
    padding-bottom: 8px;
  }
}
.other .slide-btn {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  margin-bottom: 160px;
}
@media (max-width: 430px) {
  .other .slide-btn {
    gap: 16px;
    margin-bottom: 80px;
  }
}
.other .slide-btn .swiper-button-prev,
.other .slide-btn .swiper-button-next {
  position: static !important;
  margin: 0;
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
@media (max-width: 430px) {
  .other .slide-btn .swiper-button-prev,
  .other .slide-btn .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.other .slide-btn .swiper-button-prev {
  background-image: url(../img/button-left.svg);
  border-radius: 8px;
}
@media (max-width: 430px) {
  .other .slide-btn .swiper-button-prev {
    border-radius: 4px;
  }
}
.other .slide-btn .swiper-button-prev::after {
  display: none;
}
.other .slide-btn .swiper-button-prev:hover {
  opacity: 0.8;
  transition: 0.4s;
}
.other .slide-btn .swiper-button-next {
  background-image: url(../img/button-right.svg);
  border-radius: 8px;
}
@media (max-width: 430px) {
  .other .slide-btn .swiper-button-next {
    border-radius: 4px;
  }
}
.other .slide-btn .swiper-button-next::after {
  display: none;
}
.other .slide-btn .swiper-button-next:hover {
  opacity: 0.8;
  transition: 0.4s;
}

.footer {
  color: var(--sub-color);
  background-color: var(--text-color);
}
.footer .footer-container {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 64px 0 128px 0;
}
@media (max-width: 430px) {
  .footer .footer-container {
    padding: 24px 0 48px 0;
  }
}
.footer .footer-container .footer-nav .footer-list li {
  font-size: 5vw;
  line-height: 1.6;
}
.footer .footer-container .footer-nav .footer-list li a {
  position: relative;
}
.footer .footer-container .footer-nav .footer-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.6944444444vw;
  width: 0;
  height: 6px;
  background-color: var(--sub-color);
  transition: width 0.4s ease;
}
@media (max-width: 430px) {
  .footer .footer-container .footer-nav .footer-list li a::after {
    height: 2px;
  }
}
.footer .footer-container .footer-nav .footer-list li a:hover::after {
  width: 100%;
}
.footer .footer-container .sns {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .footer-container .sns .sns-block {
  display: flex;
  justify-content: end;
  gap: 32px;
}
@media (max-width: 430px) {
  .footer .footer-container .sns .sns-block {
    gap: 20px;
  }
}
.footer .footer-container .sns .sns-block .sns__inst a :hover {
  opacity: 0.8;
  transition: 0.3s;
}
.footer .footer-container .sns .sns-block .sns__x a :hover {
  opacity: 0.8;
  transition: 0.3s;
}
.footer .footer-container .sns small {
  font-size: 18px;
  line-height: 2.6;
}
@media (max-width: 430px) {
  .footer .footer-container .sns small {
    font-size: 10px;
  }
}
.footer .footer-contact {
  width: 94.4444444444vw;
  max-width: 100%;
  margin: 0 auto;
}
.footer .footer-contact .footer-contact__link:hover {
  opacity: 0.8;
  transition: 0.3s;
}/*# sourceMappingURL=about.css.map */