@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #fff;
  background-color: #000;
  font-size: 1.2vw;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1rem;
  line-height: 1.6;
  font-feature-settings: "palt" 1;
}

.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
}

.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.f_1 {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "wght" 700, "wdth" 90, "slnt" 0;
}

.img_hover {
  overflow: hidden;
}

.img_hover img {
  transition: 0.4s ease-in-out;
}

.img_hover img:hover {
  transform: scale(1.1, 1.1);
}

.yellow {
  color: #ffff00;
}

.site_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.site_nav .nav_wrap {
  max-width: 90vw;
  margin: 0 auto;
}
.site_nav .nav_wrap .nev_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.site_nav .nav_wrap .nev_flex .header_logo {
  width: 15%;
}
.site_nav .nav_wrap nav {
  font-weight: bold;
}
.site_nav .nav_wrap nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site_nav .nav_wrap nav ul li:last-child {
  background-color: yellow;
  border-radius: 50px;
}
.site_nav .nav_wrap nav ul li:last-child a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 1rem 2rem;
}
.site_nav .nav_wrap nav ul li:last-child span {
  font-size: 138%;
  margin-right: 0.5rem;
  vertical-align: -0.3rem;
}
.site_nav .nav_wrap nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.8em 2em;
}

/*ハンバーガーメニュー*/
@media screen and (min-width: 1000px) {
  .checkbox,
  .span_container {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  nav {
    display: none;
  }
  nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    z-index: 50;
    background: #444;
    transition: all 250ms ease-out;
    transform: translateX(-100%);
  }
  nav a {
    font-size: 150%;
    line-height: 3;
    margin-top: 3rem;
  }
  nav a:hover {
    color: salmon;
  }
  .site_nav .nav_wrap nav ul {
    display: block;
    padding: unset;
    width: 80vw;
    text-align: center;
  }
  .site_nav .nav_wrap nav ul li {
    border-bottom: 1px solid #9e9e9e;
  }
  .site_nav .nav_wrap nav ul li :last-child {
    border-bottom: none;
  }
  .checkbox:checked ~ nav {
    transform: translateX(0%);
  }
  .span_container,
  .checkbox {
    width: 10%;
    height: 60%;
    position: absolute;
    right: 5%;
    top: 45%;
    transform: translateY(-50%);
  }
  .checkbox {
    opacity: 0;
    z-index: 100;
  }
  .span_container {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    z-index: 90;
  }
  .span_container span {
    width: 100%;
    height: 3px;
    background: white;
    transition: all 250ms ease-out;
    transform-origin: 0 0;
  }
  .checkbox:checked ~ .span_container span:nth-last-child(1) {
    transform: rotate(-45deg) translate(-1px, 0px);
  }
  .checkbox:checked ~ .span_container span:nth-last-child(2) {
    transform: rotate(0deg) scale(0.2, 0.2);
    opacity: 0;
  }
  .checkbox:checked ~ .span_container span:nth-last-child(3) {
    transform: rotate(45deg) translate(0px, -1px);
  }
  .checkbox:checked ~ nav {
    transform: translateX(0%);
  }
}
/*ハンバーガーメニューend*/
.site_mv {
  max-width: 90vw;
  margin: 0 auto;
  padding: 10vw 0;
  position: relative;
  margin-top: 13vw;
}
.site_mv::after {
  content: "";
  display: block;
  width: 65%;
  height: 92%;
  background-image: url(../img/bg_top.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%) scale(1);
  z-index: -1;
  animation: bgZoom 15s ease-in-out infinite alternate;
}
@keyframes bgZoom {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
  }
}
.site_mv p {
  font-size: 500%;
  line-height: 1;
  margin-bottom: 1rem;
}
.site_mv span {
  font-size: 170%;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.site_mv h2 {
  font-size: 120%;
  margin-top: 3rem;
  text-decoration: underline;
  text-underline-offset: 0.8rem;
}

.message .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 10vw 0;
}
.message .wrap_2 {
  max-width: 90vw;
  margin: 0 auto;
  /*右から左に流れるアニメーション*/
  /*右から左に流れるアニメーションend*/
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.message .wrap_2 .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.message .wrap_2 .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: max-content;
  animation: infinity-scroll-left 80s linear infinite;
}
.message .wrap_2 .scroll-infinity__item {
  flex: 0 0 auto; /* 幅固定化 */
  width: 100vw;
  padding: 3em;
  box-sizing: border-box;
}
.message .wrap_2 .scroll-infinity__item > img {
  width: 100%;
}
.message header {
  text-align: center;
}
.message header .message_bg {
  height: 8rem;
}
.message header .message_ttl {
  background-image: url(../img/bg_message.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.message header .message_ttl .message_ttl_text {
  font-size: 190%;
  margin-bottom: 4rem;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.message header h3 {
  font-size: 500%;
  margin-bottom: 4rem;
  line-height: 1.3;
}
.message header .message_text {
  font-size: 120%;
  text-align: left;
  line-height: 2;
}

.service .wrap {
  max-width: 75vw;
  margin: 0 auto;
  padding: 10vw 0 2vw;
}
.service header {
  text-align: center;
}
.service header .service_bg {
  height: 13rem;
}
.service header .service_ttl {
  background-image: url(../img/bg_service.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.service header .service_ttl .service_ttl_text {
  font-size: 190%;
  margin-bottom: 4rem;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service header h3 {
  font-size: 300%;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.service header .service_text {
  font-size: 110%;
  text-align: center;
  line-height: 2;
  margin-bottom: 6rem;
}
.service .service_box_item {
  display: flex;
  gap: 3em;
  margin-bottom: 3rem;
}
.service .service_box_item figure {
  border: 1px #fff solid;
  border-radius: 1.5rem;
  flex: 0 1 calc((100% - 3em) / 2);
  box-sizing: border-box;
}
.service .service_box_item figure a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 3rem 2rem;
  pointer-events: none;
}
.service .service_box_item figure h3 {
  font-size: 140%;
  margin-bottom: 3rem;
  position: relative;
}
.service .service_box_item figure h3::after {
  content: "";
  position: absolute;
  background-color: #29abe2;
  width: 70px;
  height: 3px;
  bottom: -10px;
  left: 10%;
  transform: translateX(-50%);
}
.service .service_box_item figure div {
  object-fit: cover;
  margin-bottom: 2rem;
}
.service .service_box_item figure p {
  font-size: 100%;
  line-height: 2;
}

.contact .wrap {
  max-width: 90vw;
  margin: 0 auto;
  padding-bottom: 5rem;
}
.contact header {
  text-align: center;
}
.contact header .contact_bg {
  height: 27rem;
}
.contact header .contact_ttl {
  background-image: url(../img/bg_contact.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.contact header .contact_ttl .contact_ttl_text {
  font-size: 360%;
  margin-bottom: 4rem;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact header h3 {
  font-size: 100%;
  margin-bottom: 4rem;
  letter-spacing: 0.2rem;
  position: absolute;
  top: 61%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact .contact_text {
  font-size: 100%;
  text-align: center;
  line-height: 2;
  margin-bottom: 1rem;
}
.contact .contact_btn {
  text-align: center;
  background-color: yellow;
  width: 30%;
  margin: 0 auto;
  border-radius: 50px;
}
.contact .contact_btn a {
  text-decoration: none;
  color: #000;
  font-size: 120%;
  font-weight: bold;
  display: block;
  padding: 1.5rem 2rem;
  transition: transform 0.2s;
}
.contact .contact_btn a:active {
  transform: scale(0.95);
}
.contact .contact_btn span {
  font-size: 135%;
  margin-right: 0.5rem;
  vertical-align: -0.3rem;
}

footer .wrap {
  max-width: 90vw;
  margin: 0 auto;
  padding: 5vw 0;
}
footer .wrap .footer_logo {
  width: 25%;
}
footer .wrap p {
  font-size: 85%;
  line-height: 2;
}
footer .footer_copy {
  margin: 1rem 0;
  border-top: 1px #9e9e9e solid;
}
footer .footer_copy small {
  font-size: 65%;
  margin-left: 4rem;
  display: block;
  margin-top: 1rem;
}

/*company.html*/
.company .wrap {
  max-width: 80vw;
  margin: 0 auto;
  padding: 2vw 0;
  margin-top: 7rem;
}
.company header {
  text-align: center;
}
.company header .company_bg {
  height: 15rem;
}
.company header .company_ttl {
  background-image: url(../img/bg_company.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.company header .company_ttl .company_ttl_text {
  font-size: 190%;
  margin-bottom: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.company header h2 {
  font-size: 300%;
  margin-bottom: 4rem;
  line-height: 1;
}

.company_info .wrap {
  max-width: 60vw;
  margin: 0 auto;
}
.company_info ul li {
  border-bottom: 1px rgba(255, 255, 255, 0.1019607843) solid;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.company_info ul li h3 {
  font-size: 120%;
  margin-bottom: 1rem;
  color: #bdbdbd;
}
.company_info ul li p {
  font-size: 90%;
  line-height: 2;
}

/*faq.html*/
.faq .wrap {
  max-width: 80vw;
  margin: 0 auto;
  padding: 2vw 0;
  margin-top: 7rem;
}
.faq header {
  text-align: center;
}
.faq header .faq_bg {
  height: 15rem;
}
.faq header .faq_ttl {
  background-image: url(../img/bg_faq.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.faq header .faq_ttl .faq_ttl_text {
  font-size: 190%;
  margin-bottom: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq header h2 {
  font-size: 300%;
  margin-bottom: 4rem;
  line-height: 1;
}

.faq_list .wrap {
  max-width: 80vw;
  margin: 0 auto;
}
.faq_list ul li {
  border-bottom: 1px rgba(255, 255, 255, 0.1019607843) solid;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.faq_list ul li h3 {
  font-size: 115%;
  margin-bottom: 1rem;
  color: #000;
  background-color: #eae8e8;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}
.faq_list ul li h3 span {
  font-size: 180%;
  margin-right: 0.5rem;
  vertical-align: -0.4rem;
  color: #00bcd4;
}
.faq_list ul li p {
  line-height: 2;
}

/*works.html*/
.works .wrap {
  max-width: 80vw;
  margin: 0 auto;
  padding: 2vw 0;
  margin-top: 7rem;
}
.works header {
  text-align: center;
}
.works header .works_bg {
  height: 15rem;
}
.works header .works_ttl {
  background-image: url(../img/bg_works.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.works header .works_ttl .works_ttl_text {
  font-size: 190%;
  margin-bottom: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.works header h2 {
  font-size: 300%;
  margin-bottom: 4rem;
  line-height: 1;
}

.works_list .wrap {
  max-width: 70vw;
  margin: 0 auto;
}
.works_list .works_btn {
  display: flex;
  gap: 3em;
  padding-top: 2rem;
  margin-bottom: 5rem;
}
.works_list .works_btn > div {
  flex: 1;
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
}
.works_list .works_btn .works_btn_1 {
  background-color: #29abe2;
}
.works_list .works_btn .works_btn_2 {
  background-color: #ed1e79;
}
.works_list .works_btn .works_btn_3 {
  background-color: #f15a24;
}
.works_list .works_btn a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 1rem 2rem;
  transition: transform 0.2s;
}
.works_list .works_list_box {
  margin: 5rem 0;
}
.works_list .works_list_box h3 {
  font-size: 150%;
  margin-bottom: 1rem;
  position: relative;
}
.works_list .works_list_box h3::after {
  content: "";
  position: absolute;
  background-color: #29abe2;
  width: 8%;
  height: 3px;
  bottom: -10px;
  left: 4%;
  transform: translateX(-50%);
}
.works_list .works_list_box .works_list_flex {
  display: flex;
  gap: 3em;
  padding-top: 2rem;
}
.works_list .works_list_box .works_list_flex p {
  flex: 1;
  box-sizing: border-box;
}
.works_list .works_list_box .works_list_flex small {
  margin-top: 0.4rem;
  display: block;
}

/*contact.html*/
.contact_page .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 2vw 0;
  margin-top: 7rem;
}
.contact_page header {
  text-align: center;
}
.contact_page header .contact_page_bg {
  height: 15rem;
}
.contact_page header .contact_page__ttl {
  background-image: url(../img/bg_contact.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.contact_page header .contact_page__ttl .contact_page_ttl_text {
  font-size: 190%;
  margin-bottom: 4rem;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact_page header h2 {
  font-size: 300%;
  margin-bottom: 4rem;
  line-height: 1;
}
.contact_page .contact_text {
  text-align: center;
  margin-bottom: 5rem;
  line-height: 2;
}

/*PCのみ*/
@media screen and (min-width: 800px) {
  .br_sp {
    display: none;
  }
}
/*SPのみ*/
@media screen and (max-width: 800px) {
  html,
  body {
    font-size: 3.5vw;
  }
  .site_nav .nav_wrap .nev_flex .header_logo {
    width: 40%;
  }
  .site_mv p {
    line-height: 1;
    margin-bottom: 1rem;
  }
  .site_mv::after {
    width: 140%;
    height: 65%;
    top: 50%;
    left: 50%;
  }
  .site_mv h2 {
    font-size: 110%;
    line-height: 2.3;
  }
  /*SP_トップページ*/
  .message .wrap {
    max-width: 90vw;
  }
  .message header h3 {
    font-size: 330%;
    margin-bottom: 2rem;
  }
  .service .wrap {
    max-width: 90vw;
  }
  .service header .service_text {
    margin-bottom: 3rem;
  }
  .service .service_box_item {
    display: block;
  }
  .service .service_box_item figure {
    margin-bottom: 3rem;
  }
  .service .service_box_item figure p {
    font-size: 110%;
  }
  .contact header h3 {
    top: 72%;
    left: 50%;
  }
  .contact header .contact_bg {
    height: 13rem;
  }
  .contact .contact_text {
    margin-top: 1rem;
  }
  .contact .contact_btn {
    width: 100%;
  }
  footer .wrap .footer_logo {
    width: 50%;
    margin: 0 auto;
  }
  footer .wrap {
    text-align: center;
    padding: 0;
  }
  footer .wrap p {
    font-size: 100%;
  }
  footer .footer_copy {
    text-align: center;
  }
  footer .footer_copy small {
    margin-left: unset;
  }
  .message .wrap_2 .scroll-infinity__item {
    width: 200vw;
  }
  /*SP_会社概要*/
  .company .wrap {
    max-width: 90vw;
    padding: 0;
    margin-top: 5rem;
  }
  .company header h2 {
    margin-bottom: 2rem;
  }
  .company_info .wrap {
    max-width: 90vw;
  }
  .company_info .wrap ul {
    padding: 0;
  }
  .company_info ul li p {
    font-size: 100%;
  }
  /*SP_FAQ*/
  .faq .wrap {
    max-width: 90vw;
    padding: 0;
    margin-top: 5rem;
  }
  .faq_list .wrap {
    max-width: 90vw;
  }
  .faq_list .wrap ul {
    padding: 0;
  }
  .faq_list .wrap ul li p {
    font-size: 100%;
  }
  .faq_list ul li h3 {
    padding: 1rem 1.7rem;
  }
  .faq_list ul li h3 span {
    font-size: 150%;
    vertical-align: -0.2rem;
    line-height: 1;
  }
  /*SP_制作実績*/
  .works .wrap {
    max-width: 90vw;
    padding: 0;
    margin-top: 5rem;
  }
  .works_list .wrap {
    max-width: 90vw;
  }
  .works_list .works_btn {
    display: block;
  }
  .works_list .works_btn > div {
    margin-bottom: 1.5rem;
  }
  .works_list .works_btn a {
    font-size: 120%;
  }
  .works_list .works_list_box .works_list_flex {
    display: block;
  }
  .works_list .works_list_box .works_list_flex div {
    margin-bottom: 1.5rem;
  }
  .works_list .works_list_box .works_list_flex small {
    display: block;
    margin-top: 0.5rem;
  }
  /*SP_コンタクトページ*/
  .contact_page .wrap {
    max-width: 90vw;
    padding: 0;
    margin-top: 5rem;
  }
  .contact_page header h2 {
    font-size: 245%;
  }
}
/* スクロールCSS */
.fade_right {
  opacity: 0;
  transform: translate3d(-3em, 0, 0);
}

.fade_right.active {
  opacity: 1;
  transition: all ease 0.5s;
  transform: translate3d(0, 0, 0);
}

.fade_in {
  opacity: 0;
  transform: translate3d(0, 2em, 0);
}

.fade_in.active {
  opacity: 1;
  transition: all ease 0.5s;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.1s;
}

.fade_up {
  opacity: 0;
  transform: translateY(3em);
  /*transition: opacity 1s, transform 0.3s;*/
}

.fade_up.active {
  transition: 0.5s;
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.fade_in_num {
  opacity: 0;
  transition: all 1s;
}

.fade_in_num.active {
  opacity: 1;
}

.fade_in.active > *:nth-child(1) {
  animation-delay: 0.5s;
}

.fade_in.active > *:nth-child(2) {
  animation-delay: 0.6s;
}

.fade_in.active > *:nth-child(3) {
  animation-delay: 0.7s;
}

.fade_in.active > *:nth-child(4) {
  animation-delay: 0.8s;
}

/* スクロールCSS end*//*# sourceMappingURL=style.css.map */