@charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

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

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}


@font-face {
  font-family: 'Moonlite';
  src: url(/font/MoonliteSolid.otf);
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

h2 {
  font-size: 4.7rem;
}

@media screen and (max-width: 1079px) {
  h2 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.4rem;
}

@media screen and (max-width: 1079px) {
  h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.8rem;
  }
}

/* }

section {
  padding-top: 8rem;
  padding-bottom: 9rem;
}

@media screen and (max-width: 1079px) {
  section {
    padding: 5rem 5rem 6rem 5rem;
  }
}

@media screen and (max-width: 767px) {
  section {
    padding: 2.5rem 1.5rem 3rem 1.5rem;
  }
} */

img {
  width: 100%;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
    filter: grayscale(0%);
    transition: all 0.3s ease-in;
  }

  img:hover {
    filter: grayscale(0%);
  }
}

@media screen and (max-width: 1079px) {
  .inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  /* background: #F5F5F2; */
  background: #8e8e8e;
}

.-name {
  font-size: 3.5rem;
}

.-bold {
  font-weight: 700;
}

.-semibold {
  font-weight: 600;
}

.-medium {
  font-weight: 500;
}

.-light {
  font-weight: 300;
}

.-exlight {
  font-weight: 200;
  font-style: italic;
}

.-white {
  color: #fff;
}

.-ja {
  font-family: "Noto Sans JP", sans-serif;
}

.-en {
  font-family: "changeling-neo", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-weight: normal;
}

.-en-title {
  font-family: "good-times", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.-right {
  text-align: right;
  margin-top: 4rem;
  margin-right: 5rem;
}

.-center {
  text-align: center;
}

@media screen and (max-width: 1079px) {
  .-right {
    margin-right: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .-right {
    margin-right: 5rem;
  }
}

.page-title {
  /* font-size: 4.7rem; */
  font-size: 8rem;
  color: #06285f;
  /* color: #2A5CAA; */
  letter-spacing: 2.5px;
}

@media screen and (max-width: 1079px) {
  .page-title {
    font-size: 8rem;
    /* font-size: 3.6rem; */
  }
}

@media screen and (max-width: 767px) {
  .page-title {
    font-size: 8rem;
    /* font-size: 2.4rem; */
  }
}

.util-title {
  margin-bottom: 1.7rem;
}

@media screen and (max-width: 767px) {
  .util-title {
    margin-bottom: 1rem;
  }
}

/* アニメーション前 */
.u-fade-type-up {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
}

.u-fade-type-up-slow {
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 下からフェードイン */
.u-fade-type-up.is-active {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.u-fade-type-up-slow.is-active {
  -webkit-transition: 1.6s;
  transition: 1.6s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* アニメーション前 */
.u-fade-type-left {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-left.is-active {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

/* アニメーション前 */
.u-fade-type-right {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-right.is-active {
  -webkit-transition: .6s;
  transition: .6s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

header {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 20;
}

@media screen and (max-width: 1079px) {
  header {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .header__inner {
    padding: 10px 0;
  }
}

.header__logo {
  max-width: 80px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 60px;
    margin-left: 10px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  font-family: 'Moonlite', sans-serif;
  letter-spacing: 1.8px;
  font-size: 2.2rem;
  color: #06285f;

}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav__li:not(:first-child) {
  margin-left: 5rem;
}

.header__nav__li a {
  position: relative;
}

.header__nav__li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.header__nav__li a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.drawer__icon {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 300;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block;
    top: 25px;
    right: 15px;
  }
}

.drawer__icon.is-active {
  /* -webkit-transform: translateX(-300px);
          transform: translateX(-300px); */
}

.drawer__icon.is-active .drawer__icon-bar1 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 8px;
  background: #fff;
}

.drawer__icon.is-active .drawer__icon-bar2 {
  display: none;
}

.drawer__icon.is-active .drawer__icon-bar3 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 8px;
  background: #fff;
}

.drawer__icon-bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
  border-radius: 999px;
}

.drawer__icon-bars:hover {
  cursor: pointer;
}

.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  width: 26px;
  height: 2px;
  background: #06285f;
  top: 0;
  left: 0;
  border-radius: 999px;
  z-index: 41;
}

.drawer__icon-bar1 {
  top: 0;
}

.drawer__icon-bar2 {
  top: 8px;
}

.drawer__icon-bar3 {
  top: 16px;
}

.drawer__content {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  padding-top: 161px;
  z-index: 299;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer__content.is-active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drawer__content-items {
  z-index: 40;
  font-family: 'Moonlite', sans-serif;
}

.drawer__content-item p {
  text-align: center;
}

.drawer__content-item a {
  display: block;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 400;
  padding-bottom: 32px;
  text-align: center;
}

.drawer__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #06285f;
  opacity: 0.7;
  z-index: 39;
  display: none;
}

.drawer__background.is-active {
  display: block;
}

footer {
  /* background: #191B1F; */
  background: #000e24;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  footer {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.footer__inner {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    margin-bottom: 30px;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
}

.footer__logo {
  max-width: 120px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__logo:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 60px;
    margin-left: 10px;
    max-width: 100px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-family: 'Moonlite', sans-serif;
  letter-spacing: 1.8px;
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
  }
}

.footer__nav__li:not(:first-child) {
  margin-left: 5rem;
}

@media screen and (max-width: 767px) {
  .footer__nav__li:not(:first-child) {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.footer__nav__li a {
  position: relative;
}

.footer__nav__li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.footer__nav__li a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.footer__copy {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-size: 1.3rem;
}


.footer__contact {
  background-color: white;
  border-radius: 30px;
  padding: 10px 0px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}


.footer__contact:hover {
  color: white;
}

.footer__contact:hover::after {
  transform: scale(1, 1);
}

.footer__contact a {
  padding: 25px;
}

.side__copy {
  position: fixed;
  right: 32px;
  font-size: 10px;
  top: 45%;
  font-family: "changeling-neo", sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-transform: rotate(-90deg) translateX(50%);
  transform: rotate(-90deg) translateX(50%);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: 11;
  color: #ffffff;
  opacity: 0.8;
  /* text-shadow: 1px 1px 2px #FFF; */
}

@media screen and (max-width: 767px) {
  .side__copy {
    right: 20px;
  }
}


/* FV */

.fv {
  display: flex;
  flex-direction: row;
}

.fv_left {
  background: #1F1E27;
  width: 50%;
}

.fv .inner {
  max-width: 540px;
}

.fv_right {
  background: #4A4951;
  width: 50%;
  height: 100vh;
  position: -webkit-sticky;
  /*Safari用*/
  position: sticky;
  top: 0;
}


.fv_right .inner {
  width: 100%;
  height: 100vh;
  position: relative;
}

.fv_right img {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fv_ttl {
  margin-top: 45vh;
  margin-bottom: 20vh;
}

.fv_sub_ttl {
  font-size: 45px;
  line-height: 7rem;
  margin-bottom: 20vh;
}

.fv_message {
  font-size: 12px;
  font-weight: 100;
  line-height: 3rem;
  margin-bottom: 20vh;
}


@media screen and (max-width: 1079px) {
  .inner {
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    display: flex;
    flex-direction: column-reverse;
  }

  .fv_left {
    background: #1F1E27;
    width: 100%;
  }

  .fv_right {
    display: none;
  }
}


/* SERVICE */

.service {
  background-color: #B1B1B1;
}

.service_upper {
  background: #1F1E27;
  /* margin-top: 20px; */
  padding-top: 100px;
  padding-bottom: 100px;
}


.sec_ttl_area {
  margin-top: 30px;
}

.sec_ttl_en {
  font-size: 45px;
  line-height: 7rem;
}

.sec_ttl_jp {
  font-size: 16px;
}

.sec_sub_ttl {
  margin: 80px 0 60px;
  font-size: 28px;
}


.service_row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}

.item_box {
  width: 250px;
  height: 200px;
}

.item_box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  filter: grayscale(80%);
  transition: all 0.3s ease-in;
}

img:hover {
  filter: grayscale(0%);

}

.item_ttl {
  margin-top: 30px;
  font-weight: 800;
}

.service_lower {
  background: #4A4951;
  padding: 50px 0 100px;
}

.view_works {
  margin-top: 60px;
  margin-left: 70%;
  margin-right: 0;
  font-size: 12px;
}

.view_works a {
  position: relative;
}

.view_works a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -65%;
  width: 36px;
  height: 1px;
  background: #ffffff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.view_works a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: -65%;
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.view_works a:hover::before {
  right: -75%;
}

.view_works a:hover::after {
  right: -75%;
}

.view_works a span {
  position: absolute;
  top: -40%;
  right: -80%;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.view_works a:hover span {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -55%;
  right: -86%;
  opacity: 0;
}

@media screen and (max-width: 1079px) {
  .service_row {
    width: 100%;
    flex-wrap: wrap;
  }

  .item_box {
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 100px;
  }

}

@media screen and (max-width: 767px) {
  .service_row {
    display: flex;
    flex-direction: column;
  }

  .item_box {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 60px;
  }

  .item_box img {
    filter: grayscale(0%);
  }

  .view_works {
    margin-top: 0px;
    margin-left: 50%;
    margin-right: 0;
    font-size: 12px;
  }
}

/* Works */

.works {
  background-color: #1F1E27;
  padding-top: 100px;
  padding-bottom: 100px;
}

.works_area {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.work_box {
  width: 25%;
  margin-right: 20px;
  margin-bottom: 60px;
}

.work_box img {
  width: 100%;
  object-fit: cover;
}

.work_box_category {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 14px;
}

.work_box_ttl {
  font-size: 20px;
}

@media screen and (max-width: 1079px) {

  .works_area {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

@media screen and (max-width: 767px) {
  .work_box {
    width: 35%;
    margin-right: 20px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 500px) {
  .works_area {
    flex-direction: column;
    align-items: center;
  }

  .work_box {
    width: 80%;
    margin-right: 0px;
    margin-bottom: 60px;
  }
}


/* Company Info */

.company {
  padding-top: 100px;
  background-color: #4A4951;
}

.company_info_table {
  width: 90%;
  /* background: #FFFFFF; */
  padding: 30px auto;
  margin: 0px auto;
}

table {
  width: 90%;
  margin: 80px auto;
  line-height: 3rem;

}

.table_inner {
  margin-bottom: 0;
}

td {
  padding: 30px 0px 30px 50px;
}

th {
  width: 5em;
  border-bottom: 2px solid #181c4f;
}

tr {
  border-bottom: 0.3px solid #ffffff;
}

tr:first-child td {
  padding-top: 80px;
}

.table_margin_bottom {
  height: 80px;
}

tr:last-child {
  border-bottom: none;
}

@media screen and (max-width: 1079px) {
  .company_info_table {
    width: 100%;
  }

  table {
    width: 90%;
    margin: 80px auto;

  }
}

@media screen and (max-width: 767px) {

  .company_info_table {
    width: 98%;
  }

  .table_inner {
    margin-top: 0;
  }

  td {
    padding: 30px 0px 30px 20px;
  }

}

.contact{
  background: #1F1E27;
  padding-top: 100px;
  padding-bottom: 160px;;
}


.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: auto;
  margin-top: 100px;
}

.contact input {
  background-color: #ffffff48;
  width: 700px;
  margin: 0 auto 0;
  height: 50px;

  padding: 5px;
  margin-bottom: 20px;

  font-size: 14px;
}

.contact textarea {
  background-color: #ffffff48;
  width: 700px;
  font-size: 14px;
}

::placeholder {
  color: white;
  text-align: center;
}

#submit_btn {
  margin-top: 30px;
  width: 180px;
  text-align: center;
  font-size: 16px;
  background-color: #40a2c2;
  border: none;
  border-radius: 50px;
  color: #fff;
}



@media screen and (max-width: 767px) {

  /* CONTACT */

  .contact_ttl {
    margin-top: 100px;
    font-size: 60px;
    margin-bottom: 50px;
  }

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: auto;
    margin-top: 60px;
  }

.contact input {
    background-color: #ffffff48;
    width: 90%;
    margin: 0 auto 0;
    height: 50px;

    padding: 5px;
    margin-bottom: 20px;

    font-size: 14px;
  }

.contact textarea {
    background-color: #ffffff48;
    width: 90%;
    font-size: 14px;
  }

  ::placeholder {
    color: white;
    text-align: center;
  }

  #submit_btn {
    margin-top: 30px;
    width: 130px;
    text-align: center;
    font-size: 16px;
  }

}