@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body.no_scroll {
  overflow: hidden;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media (max-width: 599px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
a[href*="tel:"] {
  pointer-events: none;
}

@media only screen and (max-width: 599px) {
  a[href*="tel:"] {
    pointer-events: initial;
  }
}
a {
  color: #333;
  text-decoration: none;
}
a.action {
  display: block;
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: 0.8s;
  z-index: 1;
}
a.action::before {
  content: "";
  width: 150%;
  height: 60px;
  background: #e60012;
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: -1;
  transform: translate(-100%, -50%);
  transition: transform ease 0.5s;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
}
a.action:hover {
  color: #fff;
  background: transparent;
}
a.action:hover::before {
  transform: translate(25%, -50%);
}
a.more_btn {
  display: block;
  width: 8em;
  text-align: center;
  border: 1px solid #333;
  margin: 0.5em auto;
  padding: 0.5em 1.5em;
  line-height: 1em;
}
a.more_btn:hover {
  border-color: #fff;
}

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

ul, ol {
  padding: 0;
}

section {
  position: relative;
}
section .accent_word {
  opacity: 0.1;
  color: #aaa;
  mix-blend-mode: multiply;
  font-weight: bold;
  font-size: calc(120px + 30 * (100vw - 990px) / 450);
  line-height: 1;
  position: absolute;
  top: 0.1em;
  left: 3%;
  z-index: -1;
}
section .accent_word.center {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
section .rb_border {
  font-size: 200%;
  text-align: center;
  margin: 0 0 0.5em 0;
  padding: 0 0 0.5em 0;
  position: relative;
}
section .rb_border::after, section .rb_border::before {
  content: "";
  display: block;
  width: 6em;
  height: 2px;
  background: #e60012;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
section .rb_border::after {
  width: 2em;
  background: #333;
}

header {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 0 1em;
  position: fixed;
  z-index: 10;
  top: 0;
}
header .sp_header_container {
  display: none;
}
header .logo {
  width: 20%;
  max-width: 150px;
  min-width: 100px;
  z-index: 999;
}
header nav {
  display: flex;
  align-items: center;
}
header nav .mainmenu {
  display: flex;
  text-align: center;
  padding: 0;
}
header nav .mainmenu li {
  width: 100%;
  min-width: 80px;
  margin: 0 0.5em 0 0;
  line-height: 1em;
}
header nav .mainmenu li a {
  display: block;
  color: #fff;
  padding: 0.25em;
  transition: 0.2s;
}
header nav .mainmenu li a span {
  font-size: 50%;
  transition: 0.5s;
}
header nav .mainmenu li a:hover {
  transform: translate(0px, 3px);
}
header nav .mainmenu li a:hover span {
  color: #e60012;
}
header nav .contact_btn {
  display: inline-block;
  background: #fff;
  margin: 0 0 0 1em;
  padding: 0.25em 1.5em 0.25em 2em;
  border-radius: 1em;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: 0.8s;
}
header nav .contact_btn::before {
  content: "";
  width: 150%;
  height: 50px;
  background: #e60012;
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: -1;
  transform: translate(-100%, -50%);
  transition: transform ease 0.5s;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
}
header nav .contact_btn:hover {
  color: #fff;
  background: transparent;
}
header nav .contact_btn:hover::before {
  transform: translate(25%, -50%);
}
header nav .contact_btn i {
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translate(0, -50%);
}

@media print, screen and (max-width: 800px) {
  header {
    justify-content: space-between;
    padding: 0 1em;
  }
  header nav {
    display: none;
  }
  header .sp_header_container {
    margin: 0;
    position: relative;
    display: block;
    height: 100px;
    background: #FFF;
  }
  header .sp_header_container::before {
    content: "";
    position: absolute;
    display: block;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 110px;
    background: url(../img/header_line.png) top left no-repeat;
    background-size: 150%;
    z-index: 11;
  }
  header .sp_header_container::after {
    content: "";
    position: absolute;
    display: block;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 110px;
    background: url(../img/header_bg.png) top left no-repeat;
    background-size: 100%;
  }
  header .sp_header_container .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background: transparent;
    border-radius: 5px;
  }
  header .sp_header_container .menu-btn span,
  header .sp_header_container .menu-btn span:before,
  header .sp_header_container .menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #FFF;
    position: absolute;
  }
  header .sp_header_container .menu-btn span:before {
    bottom: 8px;
    transition: all 0.5s;
  }
  header .sp_header_container .menu-btn span:after {
    top: 8px;
    transition: all 0.5s;
  }
  header #menu-btn-check:checked ~ .menu-btn span {
    background: rgba(255, 255, 255, 0);
  }
  header #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(225deg);
  }
  header #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-225deg);
  }
  header #menu-btn-check {
    display: none;
  }
  header .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.5s; /*アニメーション設定*/
  }
  header .menu-content ul {
    padding: 70px 10px 0;
  }
  header .menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
  }
  header .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  header .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
  }
  header .menu-content ul li a span::after {
    content: "―";
    margin: 0 0.5em;
  }
  header #menu-btn-check:checked ~ .menu-content {
    left: 0; /*メニューを画面内へ*/
  }
  header .close-content {
    width: 100%;
    height: 100%;
  }
}
main {
  margin: 0;
}

.tworks {
  background: linear-gradient(to right, rgba(255, 160, 0, 0.1), rgba(230, 0, 18, 0.1));
  position: relative;
  overflow: hidden;
  padding: 5% 0;
}
.tworks .tworks_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
  position: relative;
}
.tworks .tworks_wrap .tworks_comment {
  width: 30%;
  padding: 0 1em;
  position: absolute;
  top: auto;
  bottom: auto;
  left: 0;
}
.tworks .tworks_wrap .tworks_comment .accent_word {
  left: 0;
  transform: translate(0, -25%);
}
.tworks .tworks_slider {
  width: 65vw;
  margin: 0 -5vw 0 auto;
}
.tworks .tworks_slider .swiper-wrapper {
  transition-timing-function: linear;
}
.tworks .works_list .works_photo {
  margin: 0 0 0.5em 0;
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  transition: 0.5s;
}
.tworks .works_list .works_photo img {
  position: absolute;
  top: 3%;
  left: 50%;
  width: 94%;
  transform: translate(-50%, 0);
  transition: all 5s ease-in-out;
}
.tworks .works_list .works_photo:hover img {
  transform: translate(-50%, -500px);
}
.tworks .works_list .works_photo::after {
  content: "";
  background: url(../img/top/pc_mockup.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.tworks .works_list dt {
  margin-bottom: 0.5em;
  font-weight: bold;
  border-bottom: 1px solid #999;
}
.tworks .works_list .category_tag {
  display: flex;
  flex-wrap: wrap;
}
.tworks .works_list .category_tag li {
  font-size: 0.6rem;
  border: 1px solid #333;
  margin: 0 0.5em 0.4em 0;
  padding: 0.2em 1em;
  border-radius: 1em;
  display: flex;
  align-items: center;
}

@media print, screen and (max-width: 599px) {
  .tworks {
    padding: 5% 0;
    display: flex;
    flex-direction: column;
  }
  .tworks .tworks_wrap {
    padding: 0 1em;
  }
  .tworks .tworks_wrap .tworks_comment {
    width: 90%;
    padding: 0;
    margin: 2em auto;
    position: relative;
    left: auto;
  }
  .tworks .tworks_slider {
    width: 100%;
    margin: 0 auto;
  }
}
.tservice {
  overflow: hidden;
  padding: 15% 5% 10% 5%;
  position: relative;
}
.tservice::after, .tservice::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
}
.tservice::after {
  background: url(../img/top/create_ss.jpg) center;
  opacity: 0.1;
  z-index: -2;
}
.tservice::before {
  background: rgba(0, 0, 0, 0.1);
  background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  opacity: 0.2;
  z-index: -1;
}
.tservice .tservice_comment {
  position: relative;
}
.tservice .tservice_comment .accent_word {
  position: absolute;
  transform: translate(-50%, -75%);
  opacity: 0.2;
}
.tservice .tservice_content_wrap {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1000px;
  margin: 2em auto 1em auto;
  padding: 1em;
  display: flex;
  justify-content: space-around;
}
.tservice .tservice_content_wrap .tservice_content {
  width: 28%;
  position: relative;
  padding: 0 0 4em 0;
}
.tservice .tservice_content_wrap .tservice_content > div {
  padding: 10%;
  padding-bottom: 0;
}
.tservice .tservice_content_wrap .tservice_content dt {
  text-align: center;
  margin: 1em 1em 0.5em;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1em;
}
.tservice .tservice_content_wrap .tservice_content dt .en {
  font-size: 1rem;
  font-weight: normal;
  color: #e60012;
}
.tservice .tservice_content_wrap .tservice_content dd:last-child {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
.tservice .tservice_content_wrap .tservice_content .service_logo {
  margin: 0;
  padding: 0;
  text-align: center;
}
.tservice .tservice_content_wrap .tservice_content .service_logo img {
  width: auto;
  height: 20px;
  margin: 0;
  display: inline-block;
}

@media print, screen and (max-width: 599px) {
  .tservice {
    padding-top: 25%;
  }
  .tservice .tservice_content_wrap {
    width: 100%;
    flex-direction: column;
  }
  .tservice .tservice_content_wrap .tservice_content {
    width: 90%;
    position: relative;
    padding: 0 0 4em 0;
    margin: 0 auto 2em auto;
  }
  .tservice .tservice_content_wrap .tservice_content img {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
}
footer {
  background: #333;
}
footer * {
  color: #fff;
}
footer article {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
footer article .company_data {
  width: 20%;
}
footer article .company_data dt {
  font-size: 1.5em;
  font-weight: bold;
}
footer article .company_data dd {
  font-size: 0.8em;
}
footer article .footer_navi {
  width: 55%;
  display: flex;
  justify-content: space-around;
}
footer article .footer_navi li {
  width: 16.6666666667%;
  text-align: center;
  font-size: 0.8em;
  font-weight: bold;
}
footer article .footer_navi li + li::before {
  content: "";
  display: block;
  height: 1em;
  border-left: 2px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
footer article .logo_copy {
  width: 20%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-size: 0.7rem;
}
footer article .logo_copy img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1.5em;
}
footer article a.pagetop {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  padding: 0 0 0 2em;
  align-items: center;
  font-size: 0.75rem;
  font-weight: bold;
  transform: translate(calc(50% - 0.75em), 0) rotate(90deg);
  transition: 0.5s;
}
footer article a.pagetop i {
  margin-right: 0.25em;
  transition: 0.5s;
}
footer article a.pagetop:hover {
  color: #e60012;
  padding: 0 2em 0 0;
}
footer article a.pagetop:hover i {
  color: #e60012;
}

@media print, screen and (max-width: 599px) {
  footer article {
    flex-direction: column;
  }
  footer article .company_data {
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
  }
  footer article .footer_navi {
    display: none;
  }
  footer article .logo_copy {
    width: 80%;
  }
  footer article .logo_copy > img {
    width: 40%;
    display: block;
    margin: 2em 30%;
  }
  footer article a.pagetop {
    position: absolute;
    top: auto;
    bottom: 20%;
    right: 0;
    display: flex;
    padding: 0;
    transform: inherit;
    transform: rotate(90deg);
    transition: 0;
  }
  footer article a.pagetop i {
    margin-right: 0;
    transition: 0;
  }
  footer article a.pagetop:hover {
    color: #FFF;
    padding: 0;
  }
  footer article a.pagetop:hover i {
    color: #FFF;
  }
}
.tcontact {
  position: relative;
  background: linear-gradient(to right, rgba(255, 160, 0, 0.1), rgba(230, 0, 18, 0.1));
  width: 100%;
  height: 40vh;
  border-top: 25px solid #333;
  font-weight: bold;
}
.tcontact::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 40vh;
  background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  opacity: 0.1;
  z-index: -1;
}
.tcontact .tcontact_wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  text-align: center;
}
.tcontact .tcontact_wrap .tcontact_content {
  padding: 3em;
  width: 60%;
}
.tcontact .tcontact_wrap .tcontact_content p {
  padding: 1rem 0;
  line-height: 2em;
  text-align: left;
}
.tcontact .tcontact_wrap .contact_data {
  padding: 1em;
  width: 40%;
  box-sizing: border-box;
  text-align: center;
}
.tcontact .tcontact_wrap .contact_data a {
  display: block;
  background: #FFF;
  position: relative;
  z-index: 2;
  border-radius: 3em;
  text-align: center;
  padding: 0.4em 0;
  font-size: 1.5em;
  font-weight: bold;
  margin: 1em 0;
  overflow: hidden;
  transition: 0.8s;
}
.tcontact .tcontact_wrap .contact_data a i {
  position: absolute;
  left: 0.5em;
  top: 50%;
  transform: translate(0, -50%);
}
.tcontact .tcontact_wrap .contact_data a::before {
  content: "";
  width: 150%;
  height: 60px;
  background: #e60012;
  position: absolute;
  top: 50%;
  right: 0px;
  z-index: -1;
  transform: translate(-100%, -50%);
  transition: transform ease 0.5s;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
}
.tcontact .tcontact_wrap .contact_data a:hover {
  color: #fff;
  background: transparent;
}
.tcontact .tcontact_wrap .contact_data a:hover::before {
  transform: translate(25%, -50%);
}
.tcontact .tcontact_wrap .contact_data dl dt {
  font-size: 0.9em;
}
.tcontact .tcontact_wrap .contact_data dl .number {
  font-size: 2em;
}
.tcontact .tcontact_wrap .contact_data dl .number a {
  background: transparent;
  display: inline-block;
  font-size: 1em;
  padding: 0;
  margin: 0;
}
.tcontact .tcontact_wrap .contact_data dl .number a::before {
  content: none;
}
.tcontact .tcontact_wrap .contact_data dl .number a:hover {
  color: #333;
}
.tcontact .tcontact_wrap .contact_data dl .number a i {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
}
.tcontact .tcontact_wrap .contact_data dl dd {
  font-size: 0.9em;
}

@media print, screen and (max-width: 599px) {
  .tcontact {
    height: auto;
    overflow: hidden;
  }
  .tcontact::after {
    height: 100%;
  }
  .tcontact .accent_word {
    font-size: 4.5em;
  }
  .tcontact .tcontact_wrap {
    flex-direction: column;
    height: auto;
  }
  .tcontact .tcontact_wrap .tcontact_content {
    padding: 2em 2em 0 2em;
    width: 100%;
  }
  .tcontact .tcontact_wrap .tcontact_content h2 {
    font-size: 1.5em;
  }
  .tcontact .tcontact_wrap .contact_data {
    padding-top: 0;
    margin-bottom: 3em;
  }
}
#caption {
  margin: 0;
  height: calc(70px + 20vw);
  max-height: 14em;
  background: linear-gradient(to right, rgba(255, 160, 0, 0.1), rgba(230, 0, 18, 0.1));
  position: relative;
  overflow: hidden;
}
#caption h1 {
  font-size: 10em;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(120px + 30 * (100vw - 990px) / 450);
}
#caption h1 i.en {
  font-style: normal;
  opacity: 0.3;
  color: #aaa;
  mix-blend-mode: multiply;
}
#caption h1 span {
  font-size: 3rem;
  color: #333;
  display: block;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.3em;
  white-space: nowrap;
}

#copy {
  padding: 0;
}
#copy .child_mv {
  width: 100vw;
  height: 30vw;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#copy .box {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 600px;
  margin: -10em auto 5em;
  padding: 2em;
  box-sizing: border-box;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
#copy .box .copy1 {
  font-size: 2em;
  margin: 0 0 0.5em 0;
  border-bottom: 2px solid #333;
}
#copy .box .copy2 {
  font-size: 1em;
  font-weight: normal;
  line-height: 2em;
}

@media print, screen and (max-width: 599px) {
  #caption {
    margin: 0;
    padding-top: 150px;
  }
  #copy .child_mv {
    width: 100vw;
    height: 45vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #copy .box {
    width: 75%;
    padding: 1em;
    transform: translate(0, -5em);
    margin-bottom: 0em;
  }
  #copy .box .copy1 {
    font-size: 4vw;
  }
  #copy .box .copy2 {
    font-size: 0.8rem;
  }
}