* {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 1.6;
}

body {
  min-width: 320px;
}

.logo__container {
  padding: 16px 0;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .logo__container {
    padding: 8px 0;
  }
}
.logo__container .logo {
  margin: 0 auto;
}
.logo__container img {
  width: 180px;
}
@media screen and (max-width: 1000px) {
  .logo__container img {
    width: 150px;
  }
}

section {
  padding: 60px 0;
}
@media screen and (max-width: 1000px) {
  section {
    padding: 40px 0;
  }
}
section .section__title {
  text-align: center;
  font-size: 32px;
  font-family: "Archivo Black", sans-serif;
  font-weight: bold;
}
section .section__title span {
  font-family: "Archivo Black", sans-serif;
}
section .section__subTitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  font-family: "Archivo Black", sans-serif;
  margin-top: -5px;
}
section .section__subTitle span {
  font-family: "Archivo Black", sans-serif;
}

.content__heading {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0 10px 16px;
}
.content__heading::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 5px;
  height: 100%;
  background-color: #e99840;
}

.content__title {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  padding-left: 25px;
}
.content__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #171717;
}

.btn__wrapper {
  text-align: center;
  margin: 60px auto;
  position: relative;
  width: 210px;
  height: 63px;
}
.btn__wrapper .btn {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 63px;
  font-weight: bold;
  text-align: center;
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #171717;
  z-index: 2;
}
.btn__wrapper::before {
  position: absolute;
  top: calc(50% - 1px);
  left: -26px;
  content: "";
  width: 44px;
  height: 1px;
  background-color: #171717;
  z-index: 3;
}
.btn__wrapper::after {
  position: absolute;
  top: 6px;
  left: 5px;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #6b1895;
  border-radius: 3px;
  z-index: 1;
}

header {
  width: 100%;
  z-index: 10;
  height: 154px;
}
@media screen and (max-width: 1000px) {
  header {
    position: static;
    height: 60px;
  }
}
header .header__nav__container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #171717;
  padding: 0 60px;
}
@media screen and (max-width: 1000px) {
  header .header__nav__container {
    display: none;
  }
}
header .header__nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 20px 0;
}
@media screen and (max-width: 1000px) {
  header .header__nav__list {
    display: none;
  }
}
header .header__nav__item {
  text-align: center;
  margin: 0 16px 2px 16px;
}
@media screen and (max-width: 1000px) {
  header .header__nav__item {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  header .header__nav__item.header__nav__item--mail {
    display: inline-block;
  }
}
header .header__nav__item__title {
  position: relative;
  font-weight: bold;
  color: #ffffff;
}
header .header__nav__item__title.-active::after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  bottom: -3px;
  width: 20px;
  height: 1px;
  background-color: #ffffff;
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header__hamburger {
    display: inline-block;
    /*============
    nav
    =============*/
    /*============
    .toggle_btn
    =============*/
    /*============
    #mask
    =============*/
  }
  .header__hamburger nav {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: 4;
    opacity: 0;
  }
  .header__hamburger .open nav {
    top: 0;
    opacity: 1;
  }
  .header__hamburger nav .inner {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .header__hamburger nav .inner ul {
    width: 100%;
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .header__hamburger nav .inner ul li {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid #CCCCCC;
  }
  .header__hamburger .header__hamburger__logo {
    width: 100%;
    text-align: center;
    padding: 8px 0;
    box-shadow: 0px 7px 14px -10px rgba(165, 165, 165, 0.6);
  }
  .header__hamburger .header__hamburger__logo img {
    width: 144px;
  }
  .header__hamburger .header__humburger__item a {
    display: block;
    color: #171717;
    font-size: 14px;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  .header__hamburger .header__humburger__item a::after {
    position: absolute;
    bottom: -6px;
    left: 32%;
    content: "";
    width: 35%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  .header__hamburger .header__humburger__item a:hover {
    opacity: 0.6;
  }
  .header__hamburger .header__humburger__item__title {
    font-weight: bold;
  }
  .header__hamburger .header__humburger__item__subTitle {
    font-size: 14px;
  }
  .header__hamburger .toggle_btn {
    display: block;
    position: fixed;
    top: 18px;
    right: 10px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 4;
  }
  .header__hamburger .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #171717;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .header__hamburger .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .header__hamburger .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .header__hamburger .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .header__hamburger .open .toggle_btn span {
    background-color: rgb(0, 0, 0);
  }
  .header__hamburger .open .toggle_btn span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  .header__hamburger .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger .open .toggle_btn span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }
  .header__hamburger #mask {
    display: none;
    transition: all 0.5s;
  }
  .header__hamburger .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #171717;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
}

footer .footer__wrapper {
  background-color: #171717;
  color: #ffffff;
}
footer .footer__nav {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 1000px) {
  footer .footer__nav {
    flex-flow: column;
    align-items: center;
  }
}
footer .footer__nav li {
  position: relative;
  margin: 0 20px;
}
@media screen and (max-width: 1000px) {
  footer .footer__nav li {
    margin-top: 16px;
  }
  footer .footer__nav li.-active::before {
    position: absolute;
    top: calc(50% - 1px);
    left: -30px;
    content: "";
    width: 18px;
    height: 1px;
    background-color: #ffffff;
  }
}
footer .twitter {
  text-align: center;
  margin-top: 40px;
}
footer .twitter img {
  width: 30px;
}
footer .copyright {
  margin-top: 20px;
  padding-bottom: 10px;
  text-align: center;
}

.fv {
  position: relative;
  background-image: url(../img/fv.png);
  height: calc(100vh - 154px);
  background-size: cover;
}
.fv .fv__text {
  position: absolute;
  top: 35%;
  left: 2em;
}
.fv .fv__text__title {
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  filter: drop-shadow(2px 2px 3px #182553);
}
@media screen and (max-width: 760px) {
  .fv .fv__text__title {
    font-size: 28px;
  }
}
.fv .fv__text__title .-large {
  color: #fb5a15;
  font-size: 40px;
}
@media screen and (max-width: 760px) {
  .fv .fv__text__title .-large {
    font-size: 30px;
  }
}
.fv .fv__text__title span {
  display: inline-block;
}
.fv .fv__text__subTitle {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 16px;
  filter: drop-shadow(2px 2px 3px #182553);
}
@media screen and (max-width: 760px) {
  .fv .fv__text__subTitle {
    font-size: 16px;
  }
}

.top__about {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.top__about .section__title span,
.top__about .section__subTitle span {
  color: #e99840;
}
.top__about .about__content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .top__about .about__content {
    flex-flow: column;
  }
}
.top__about .about__content__text {
  width: calc(50% - 10px);
  margin: 0 10px 0 0;
}
@media screen and (max-width: 1000px) {
  .top__about .about__content__text {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
.top__about .about__content__text p {
  margin-top: 16px;
}
.top__about .about__content__text p:first-child {
  margin-top: 25px;
}
.top__about .about__content__img {
  position: relative;
  width: calc(50% - 10px);
  margin: 0 10px 0 0;
  text-align: right;
}
@media screen and (max-width: 1000px) {
  .top__about .about__content__img {
    width: 100%;
    margin: 2em 0 0 0;
  }
}
.top__about .about__content__img::after {
  position: absolute;
  top: 30px;
  left: 20%;
  content: "";
  width: 80%;
  height: 100%;
  background-color: rgba(255, 208, 21, 0.1333333333);
  z-index: -1;
  margin-top: -15px;
}
@media screen and (max-width: 1000px) {
  .top__about .about__content__img::after {
    left: 10%;
    width: 90%;
  }
}
.top__about .about__content__img img {
  width: 70%;
  -webkit-clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
  margin-right: 15px;
}
@media screen and (max-width: 1000px) {
  .top__about .about__content__img img {
    width: 80%;
  }
}

.top__service {
  background-color: #f2f2f2;
}
.top__service .section__title span,
.top__service .section__subTitle span {
  color: #6b1895;
}
.top__service .content__heading::before {
  background-color: #6b1895;
}
.top__service .service__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 35px auto 0 auto;
}
@media screen and (max-width: 1000px) {
  .top__service .service__content {
    flex-flow: column;
    margin-top: 0px;
  }
}
.top__service .service__content__item {
  width: calc(50% - 50px);
  background-color: #ffffff;
  margin: 25px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .top__service .service__content__item {
    width: 100%;
    margin: 25px 0 0 0;
  }
}
.top__service .service__content__item img {
  width: 100%;
  height: 250px;
  margin-top: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top__service .service__content__item p {
  margin-top: 16px;
}

.top__works {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.top__works .section__title span,
.top__works .section__subTitle span {
  color: #23a752;
}
.top__works .works__content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .top__works .works__content {
    display: flex;
    margin-top: 15px;
  }
}
.top__works .works__content__item {
  width: calc(33.3333333333% - 40px);
  margin: 20px;
}
@media screen and (max-width: 1000px) {
  .top__works .works__content__item {
    width: 100%;
  }
}
.top__works .works__content__item img {
  width: 100%;
}
.top__works .works__content__item p {
  margin-top: 10px;
}
.top__works .works__item__title__wrapper {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 10px;
}
.top__works .works__item__title__wrapper h4 {
  font-weight: bold;
  /*font-size: 18px;*/
}
.top__works .works__item__title__wrapper .works__item__tag {
  font-size: 14px;
  color: #ffffff;
  padding: 2px 8px;
  margin-left: 5px;
  border-radius: 5px;
}
.top__works .works__item__title__wrapper .works__item__tag.-commissioned {
  background-color: #23a752;
}
.top__works .works__item__title__wrapper .works__item__tag.-personal {
  background-color: #fb5a15;
}
.top__works .btn__wrapper::after {
  background-color: #23a752;
}

.top__contact {
  background: linear-gradient(#dcdcdcc9, #f7f7f75c), url(../img/contact.png);
  background-size: cover;
  background-position: center;
}
.top__contact .section__title span,
.top__contact .section__subTitle span {
  color: #4367e6;
}
.top__contact p {
  text-align: center;
  margin-top: 10px;
}
.top__contact .btn__wrapper {
  margin-bottom: 0;
}
.top__contact .btn__wrapper::after {
  background-color: #4367e6;
}

.service {
  background-color: #f2f2f2;
}
.service .section__title span,
.service .section__subTitle span {
  color: #6b1895;
}
.service .content__heading::before {
  background-color: #6b1895;
}
.service .section__content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.service .section__content__item {
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  height: 380px;
  background-color: #ffffff;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .service .section__content__item {
    flex-flow: column;
    height: inherit;
  }
  .service .section__content__item:nth-child(odd) {
    align-items: flex-start;
  }
  .service .section__content__item:nth-child(even) {
    align-items: flex-end;
  }
}
.service .section__content__item img {
  width: 100%;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 85% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0, 85% 100%, 0% 100%);
  -o-object-fit: cover;
     object-fit: cover;
}
.service .section__content__item.-reverse {
  flex-flow: row-reverse;
}
.service .section__content__item.-reverse img {
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 15% 100%);
          clip-path: polygon(0% 0%, 100% 0, 100% 100%, 15% 100%);
}
@media screen and (max-width: 1000px) {
  .service .section__content__item.-reverse {
    flex-flow: column;
  }
}
.service .service__content__img {
  width: 50%;
  display: flex;
  height: 380px;
}
@media screen and (max-width: 1000px) {
  .service .service__content__img {
    width: 60%;
    height: inherit;
  }
}
@media screen and (max-width: 1000px) and (max-width: 760px) {
  .service .service__content__img {
    width: 80%;
  }
}
.service .service__content__text {
  width: 50%;
  padding: 20px;
}
.service .service__content__text p {
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .service .service__content__text {
    width: 100%;
  }
}

.company {
  background-color: #f2f2f2;
}
.company .section__title span,
.company .section__subTitle span {
  color: #fb5a15;
}
.company .content__heading::before {
  background-color: #fb5a15;
}
.company .section__content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.company .section__content__item {
  /*display: flex;*/
  justify-content: center;
  /*align-items: center;*/
  /*height: 380px;*/
  background-color: #ffffff;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .company .section__content__item {
    flex-flow: column;
    height: inherit;
  }
  .company .section__content__item:nth-child(odd) {
    align-items: flex-start;
  }
  .company .section__content__item:nth-child(even) {
    align-items: flex-end;
  }
}
.company .section__content__item img {
  width: 100%;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 85% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0, 85% 100%, 0% 100%);
  -o-object-fit: cover;
     object-fit: cover;
}
/*.company .section__content__item.-reverse {
  flex-flow: row-reverse;
}
.company .section__content__item.-reverse img {
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 15% 100%);
          clip-path: polygon(0% 0%, 100% 0, 100% 100%, 15% 100%);
}
@media screen and (max-width: 1000px) {
  .company .section__content__item.-reverse {
    flex-flow: column;
  }
}*/
/*.company .company__content__img {
  width: 50%;
  display: flex;
  height: 380px;
}
@media screen and (max-width: 1000px) {
  .company .company__content__img {
    width: 60%;
    height: inherit;
  }
}
@media screen and (max-width: 1000px) and (max-width: 760px) {
  .company .company__content__img {
    width: 80%;
  }
}*/
.company .company__content__text {
  /*width: 50%;*/
  padding: 20px;
}
.company .company__content__text p {
  margin-top: 20px;
}
.company .company__content__text table {
  margin-top: 20px;
  width: 100%;
}
.company .company__content__text table th {
  font-weight: bold;
  padding: 10px;
  border-bottom : 1px solid #f2f2f2;
}
.company .company__content__text table td {
  padding: 8px;
  border-bottom : 1px solid #f2f2f2;
}
@media screen and (max-width: 1000px) {
  .company .company__content__text {
    width: 100%;
  }
}

.works {
  padding-bottom: 0;
}
.works .section__title span,
.works .section__subTitle span {
  color: #23a752;
}
.works .works__content {
  margin-top: 60px;
}
.works .works__content__wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.works .works__content__wrapper.-language {
  width: 100%;
  max-width: inherit;
  background-color: #f2f2f2;
  padding: 60px 0;
  margin-top: 60px;
}
.works .works__content__wrapper.-language .inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.works .works__content__wrapper.-language .inner p {
  padding: 20px;
}
.works .works__content__index {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .works .works__content__index {
    display: block;
  }
}
.works .works__content__item {
  width: calc(50% - 40px);
  margin: 20px;
}
.works .works__content__item img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .works .works__content__item img {
    height: 208px;
    margin-top: 20px;
  }
}
.works .works__content__item .btn__wrapper {
  text-align: left;
  margin: 40px 0 0 20px;
}
@media screen and (max-width: 1000px) {
  .works .works__content__item .btn__wrapper {
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  .works .works__content__item {
    width: auto;
  }
}
.works .works__item__title__wrapper {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 10px;
}
.works .works__item__title__wrapper h5 {
  font-weight: bold;
  font-size: 18px;
}
.works .works__item__title__wrapper .works__item__tag {
  font-size: 14px;
  color: #ffffff;
  padding: 2px 8px;
  margin-left: 5px;
  border-radius: 5px;
}
.works .works__item__title__wrapper .works__item__tag.-commissioned {
  background-color: #23a752;
}
.works .works__item__title__wrapper .works__item__tag.-personal {
  background-color: #fb5a15;
}
.works .works__language__list {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-top: 20px;
}
.works .works__language__list li {
  width: calc(50% - 40px);
  margin: 10px 20px;
}
.works .btn__wrapper::after {
  background-color: #23a752;
}
.works .content__title {
  margin-left: 20px;
}
/*# sourceMappingURL=style.css.map */