@charset "UTF-8";
@import url("subpage.css");
@font-face {
  font-family: "raged";
  src: url("/assets/raged.ttf") format("truetype");
}
html {
  height: 100%;
}

main {
  position: relative;
}

body {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  height: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  border-radius: 20px;
}

p {
  margin-bottom: 10px;
}

.main_wrap {
  max-width: 1345px;
  margin: auto;
  padding: 0 10px;
  overflow-x: clip;
}
@media (min-width: 1480px) {
  .main_wrap {
    overflow-x: visible;
  }
}

.btn1 {
  text-decoration: none;
  border: 1px solid;
  padding: 10px 40px;
  border-radius: 30px;
  color: black;
}

.btn2::after {
  background-image: url(/images/btn_arrow.svg);
  content: "";
  width: 30px;
  display: inline-block;
  height: 30px;
  background-size: contain;
  position: relative;
  top: 10px;
  margin-left: 10px;
}

.headline2 .en {
  font-size: 40px;
  margin-right: 30px;
}
.headline2 .ja {
  font-size: 30px;
}

.ita_en {
  font-family: "raged";
  transform: rotate(346deg);
}

.main_visual {
  max-width: 1800px;
  position: relative;
  margin: 100px auto 240px;
  padding: 0px 30px;
  position: relative;
  overflow-x: clip;
}
@media (min-width: 1801px) {
  .main_visual {
    overflow-x: visible;
  }
}
.main_visual::before {
  content: "";
  background-image: url(/images/paint_2.svg);
  width: 190px;
  display: block;
  height: 100px;
  background-size: contain;
  z-index: 1;
  position: absolute;
  top: -50px;
  left: -30px;
}
.main_visual::after {
  content: "";
  background-image: url(/images/paint_1.svg);
  width: 400px;
  display: block;
  height: 190px;
  background-size: contain;
  z-index: 1;
  position: absolute;
  bottom: -80px;
  right: -50px;
  opacity: 0.5;
}
.main_visual .mv_text {
  font-size: 130px;
  position: absolute;
  z-index: 2;
  bottom: -139px;
}
.main_visual img {
  width: 100%;
  border-radius: 0;
}

.top_main_wrap section {
  margin-bottom: 100px;
}
.top_main_wrap img {
  width: 100%;
}

.top_about .about_head {
  display: flex;
}
.top_about .about_head .title .italic_title .ja {
  font-size: 50px;
}
.top_about .about_head .title .italic_title .en {
  display: inline-block;
  position: relative;
  z-index: -1;
  color: #b8b8b8;
  font-size: 90px;
  right: -360px;
  bottom: 60px;
  filter: opacity(0.5);
}
.top_about .about_foot {
  display: flex;
}
.top_about .about_foot .text {
  width: 500px;
}
.top_about .about_foot .text p {
  margin-bottom: 30px;
}

.top_bd .video_content,
.top_bd .web_content {
  max-width: 1080px;
  margin-left: 250px;
  position: relative;
}
.top_bd .video_content .image,
.top_bd .web_content .image {
  position: relative;
}
.top_bd .video_content .en_title,
.top_bd .web_content .en_title {
  font-size: 113px;
  left: -250px;
  bottom: 90px;
  position: absolute;
  color: #aedf36;
}
.top_bd .video_content h3,
.top_bd .web_content h3 {
  font-size: 50px;
}
.top_bd .video_content {
  margin-bottom: 100px;
}
.top_bd .video_content .image::before {
  content: "";
  background-image: url(/images/paint_4.svg);
  width: 400px;
  display: block;
  height: 190px;
  background-size: contain;
  z-index: 1;
  position: absolute;
  top: -80px;
  right: -70px;
}
.top_bd .web_content .image::before {
  content: "";
  background-image: url(/images/paint_5.svg);
  width: 400px;
  display: block;
  height: 190px;
  background-size: contain;
  z-index: 1;
  position: absolute;
  top: 0px;
  left: -110px;
}

.btn_animation {
  position: absolute;
  display: block;
  width: 120px;
  height: 120px;
  z-index: 1;
  bottom: 30px;
  right: 30px;
}
.btn_animation span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_animation span::before, .btn_animation span::after {
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.btn_animation span::before {
  width: 28px;
  height: 28px;
  background-image: url(/images/btn_arrow.svg);
  z-index: 1;
  position: relative;
}
.btn_animation span::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/images/clicl.svg);
  animation: rotating 10s linear infinite;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.top_works .works_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_works .works_main ul {
  display: flex;
  flex-wrap: wrap;
}
.top_works .works_main ul li {
  width: 33.3333333333%;
  padding: 50px 20px;
}
.top_works .works_main ul li:nth-child(odd) {
  background-color: #ebf4d5;
}
.top_works .works_main ul li:nth-child(even) {
  background-color: #fbfbfb;
}
.top_works .works_main ul li .image {
  position: relative;
}
.top_works .works_main ul li .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 5/3;
}
.top_works .works_main ul li .image .ita_en {
  width: -moz-fit-content;
  width: fit-content;
  transform: rotate(28deg);
  font-size: 60px;
  position: absolute;
  bottom: -5px;
  left: -10px;
}
.top_works .works_main ul li .image .mv {
  color: #aedf36;
}
.top_works .works_main ul li .image .web {
  color: #01b8fb;
}

.category-movie {
  color: #01b8fb !important;
}

.category-website {
  color: #aedf36 !important;
}

.category-design {
  color: #fea864 !important;
}

.top_news .btn2 {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin-left: auto;
}

.news_list a {
  display: flex;
}
.news_list a time {
  width: 150px;
}
.news_list a p {
  width: calc(100% - 150px);
}
.news_list .news_item_wrap {
  display: flex;
}

footer {
  background-color: #49bcd0;
  position: sticky;
  top: 100vh;
  width: 100%;
}
footer .main_wrap {
  padding: 100px 0 80px;
}
footer img {
  border-radius: 0;
}
footer .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
footer .main ul {
  display: flex;
  gap: 40px;
}
footer .main ul a {
  color: #fff;
}
footer .bottom {
  text-align: center;
}
footer small {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #218091;
}

.hamburger {
  margin: 20px auto 0;
  padding: 0 10px;
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
}

.logo img {
  border-radius: 0;
}

.hamburger .btn-gNav {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
}
.hamburger .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #000;
  border-radius: 10px;
  transition: all 400ms;
}
.hamburger .btn-gNav span:nth-child(1) {
  top: 0;
}
.hamburger .btn-gNav span:nth-child(2) {
  top: 10px;
}
.hamburger .btn-gNav span:nth-child(3) {
  top: 20px;
}
.hamburger .btn-gNav.open span:nth-child(1) {
  background: #ffffff;
  top: 6px;
  transform: rotate(-45deg);
}
.hamburger .btn-gNav.open span:nth-child(2), .hamburger .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #ffffff;
  transform: rotate(45deg);
}

.btn-gNav {
  display: none;
}

.gNav .gNav-menu {
  display: flex;
  justify-content: space-between;
}
.gNav .gNav-menu li {
  margin: 0 auto;
  padding: 0 15px;
}
.gNav .gNav-menu li a {
  color: #000;
}

@media screen and (max-width: 600px) {
  .btn-gNav {
    display: block;
  }
  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 3;
    padding-top: 50px;
    transition: 0.3s;
  }
  .gNav.open {
    right: 0;
  }
  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
    /*justify-content: center;*/
  }
  .gNav .gNav-menu li {
    width: 86%;
    padding: 15px;
    border-bottom: #525252 1px solid;
  }
  .gNav .gNav-menu li a {
    color: #fff;
  }
  .open2.btn-gNav span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .open2.btn-gNav span:nth-child(2) {
    background: #ffffff;
    top: 6px;
    opacity: 0; /* 第2スパンを非表示にする */
  }
  .open2.btn-gNav span:nth-child(3) {
    background: #ffffff;
    top: 20px;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  .hamburger .logo {
    z-index: 2;
    position: relative;
  }
  .hamburger .logo img {
    width: 100px;
    padding: 0 10px;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide_image {
  height: 200px !important;
}
@media (max-width: 600px) {
  .slide_image {
    height: 100px !important;
  }
}

.spnobr {
  display: block;
}

.spbr {
  display: none;
}

#lottie {
  position: absolute;
  top: -23%;
  display: block;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
  z-index: 2;
}
@media (max-width: 600px) {
  #lottie {
    top: 100px;
    width: 480px;
    left: -10px;
    opacity: 1;
    z-index: 2;
  }
}

@media (max-width: 1200px) {
  .spnobr {
    display: none;
  }
  .main_visual {
    margin: 100px auto 180px;
  }
  .main_visual .mv_text {
    font-size: 73px;
  }
  .top_about .about_head .title .italic_title {
    line-height: 47px;
  }
  .top_about .about_head .title .italic_title .ja {
    font-size: 30px;
  }
  .top_about .about_head .title .italic_title .en {
    right: -30px;
    bottom: -20px;
  }
  .top_bd .video_content,
  .top_bd .web_content {
    max-width: 1080px;
    margin-left: 100px;
    position: relative;
  }
  .top_bd .video_content .en_title,
  .top_bd .web_content .en_title {
    font-size: 50px;
    left: -90px;
    bottom: 30px;
  }
  .top_bd .video_content h3,
  .top_bd .web_content h3 {
    font-size: 40px;
  }
  .top_bd .video_content {
    margin-bottom: 100px;
  }
  .top_bd .video_content .image::before {
    width: 190px;
    height: 100px;
    top: -20px;
    right: -70px;
  }
  .top_bd .web_content .image::before {
    width: 240px;
    display: block;
    height: 160px;
  }
}
@media (max-width: 600px) {
  .spbr {
    display: block;
  }
  .headline2 {
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .headline2 .en {
    font-size: 30px;
  }
  .headline2 .ja {
    font-size: 20px;
    display: block;
  }
  .sub_headline2 {
    font-size: 27px;
    margin-bottom: -20px;
  }
  .main_visual {
    margin: 30px auto 60px;
  }
  .main_visual .mv_text {
    font-size: 43px;
  }
  .main_visual::after {
    width: 260px;
  }
  .top_main_wrap section {
    margin-bottom: 50px;
  }
  .top_about .about_head {
    flex-wrap: wrap;
  }
  .top_about .about_head .title .italic_title .ja {
    font-size: 27px;
  }
  .top_about .about_head .title .italic_title .en {
    font-size: 60px;
    bottom: 40px;
    right: 0px;
    z-index: -1;
  }
  .top_about .about_foot {
    flex-direction: column;
    gap: 30px;
  }
  .top_about .about_foot .text {
    width: 100%;
  }
  .top_bd .video_content,
  .top_bd .web_content {
    margin-left: 40px;
  }
  .top_bd .video_content .en_title,
  .top_bd .web_content .en_title {
    font-size: 30px;
    left: -40px;
    bottom: 20px;
  }
  .top_bd .video_content h3,
  .top_bd .web_content h3 {
    font-size: 30px;
  }
  .top_bd .video_content {
    margin-bottom: 100px;
  }
  .top_bd .video_content .image::before {
    width: 190px;
    height: 100px;
    top: -20px;
    right: -70px;
  }
  .top_bd .web_content .image::before {
    width: 240px;
    display: block;
    height: 160px;
  }
  .btn_animation {
    width: 80px;
    height: 70px;
    z-index: 1;
    bottom: -20px;
    right: 0px;
  }
  .top_works .works_main ul li {
    width: 100%;
  }
  footer .head {
    flex-direction: column;
    align-items: center;
  }
  footer .main ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */