@charset "UTF-8";
/* ----- 変数 ----- */
/* ----- mixin ----- */
/* ----- base ----- */
html {
  font-size: 62.5%;
}

html body {
  font-family: "Felix Titling MT", "遊ゴシック体", "YuGothic", "遊ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  height: 100%;
  color: #333333;
  background-color: #ffffff;
}

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

a {
  cursor: pointer;
  text-decoration: none;
}

a:hover,
a:focus {
  -webkit-transition: .2s;
  transition: .2s;
}

button:hover,
button:focus {
  opacity: .8;
  -webkit-transition: .2s;
  transition: .2s;
}

button,
a {
  display: block;
  cursor: pointer;
}

/* ---- common ---- */
.section-titleArea {
  margin-bottom: 50px;
  text-align: center;
}

.section-titleArea .section-title {
  margin-bottom: 15px;
  font-size: 3.6rem;
  letter-spacing: .1em;
  color: #010101;
}

.section-titleArea .section-title__lead {
  font-size: 1.4rem;
  letter-spacing: 0;
  font-weight: 500;
}

.scrollAnime {
  opacity: 0;
}

.downUp {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.fadeInAnime {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

/*----------------*/
/*---- header ----*/
/*----------------*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header .header__wrapper {
  padding-right: 8.33%;
  padding-left: 8.07%;
  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;
}

.header .header__wrapper .header__title {
  padding-top: 15px;
  margin-right: 20px;
}

.header .header__wrapper .header__title .header__title--top {
  display: block;
  margin-bottom: 15px;
  font-family: "Calibri", sans-serif;
  letter-spacing: .05em;
  font-size: 1.2rem;
}

.header .header__wrapper .header__title .header__title--bottom {
  display: block;
  font-size: 3rem;
  letter-spacing: .1em;
  color: #000;
}

@media screen and (max-width: 415px) {
  .header .header__wrapper .header__title .header__title--bottom {
    font-size: 2rem;
  }
}

.header .header__wrapper .header-nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .header .header__wrapper .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #747474;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: .3s;
    transition: .3s;
  }
}

.header .header__wrapper .header-nav .header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .header .header__wrapper .header-nav .header-nav__list {
    display: block;
    margin-top: 140px;
  }
}

@media screen and (max-width: 415px) {
  .header .header__wrapper .header-nav .header-nav__list {
    margin-top: 100px;
  }
}

.header .header__wrapper .header-nav .header-nav__list .header-nav__item {
  font-weight: 500;
  letter-spacing: .05em;
  margin-right: 50px;
}

@media screen and (max-width: 1000px) {
  .header .header__wrapper .header-nav .header-nav__list .header-nav__item {
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .header .header__wrapper .header-nav .header-nav__list .header-nav__item {
    font-size: 4rem;
    text-align: center;
    margin-right: 0;
    margin-bottom: 32px;
  }
}

.header .header__wrapper .header-nav .header-nav__list .header-nav__item:last-child {
  margin-right: 0;
}

.header .header__wrapper .header-nav .header-nav__list .header-nav__item .header-nav__btn {
  position: relative;
  display: inline-block;
}

.header .header__wrapper .header-nav .header-nav__list .header-nav__item .header-nav__btn::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .header .header__wrapper .header-nav .header-nav__list .header-nav__item .header-nav__btn::before {
    content: none;
  }
}

.header .header__wrapper .header-nav .header-nav__list .header-nav__item .header-nav__btn:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header .header__wrapper .header-nav .header-nav__list .header-twitter {
  margin-right: 30px;
}

@media screen and (max-width: 1000px) {
  .header .header__wrapper .header-nav .header-nav__list .header-twitter {
    margin-right: 15px;
  }
}

.header .header__burgerArea {
  display: none;
  width: 30px;
}

@media screen and (max-width: 768px) {
  .header .header__burgerArea {
    display: block;
    position: fixed;
    top: 30px;
    right: 30px;
  }
}

.header .header__burgerArea .header__burger {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 8px;
  background-color: #000;
  -webkit-transition: .2s;
  transition: .2s;
}

.header .header__burgerArea .header__burger:last-child {
  margin-bottom: 0;
}

.header .header__burgerArea.active .header__burger.top {
  -webkit-transform: rotate(45deg) translate(-7px, 17px);
          transform: rotate(45deg) translate(-7px, 17px);
}

.header .header__burgerArea.active .header__burger.bottom {
  -webkit-transform: rotate(-45deg) translate(-11px, -14px);
          transform: rotate(-45deg) translate(-11px, -14px);
}

.header .header__burgerArea.active .header__burger.middle {
  display: none;
}

/*----------------*/
/*------ kv ------*/
/*----------------*/
.kv {
  width: 100%;
  margin-bottom: 163px;
}

@media screen and (max-width: 415px) {
  .kv {
    margin-bottom: 0;
  }
}

.kv .kv__wrapper {
  padding-left: 25%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .kv .kv__wrapper {
    padding-left: 0;
  }
}

.kv .kv__wrapper .kv__title {
  font-size: 6rem;
  letter-spacing: .1em;
  color: #010101;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 8.07%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 415px) {
  .kv .kv__wrapper .kv__title {
    font-size: 4rem;
  }
}

@media screen and (max-width: 415px) {
  .kv .kv__wrapper .kv__title {
    position: absolute;
    top: 40%;
  }
}

.kv .kv__wrapper .kv__title--bottom {
  font-family: "Calibri", sans-serif;
  font-size: 1.6rem;
  letter-spacing: .05em;
  display: block;
  color: #333333;
}

.kv .kv__wrapper .kv__imgArea {
  width: 100%;
  height: 850px;
  overflow: hidden;
  position: relative;
}

.kv .kv__wrapper .kv__imgArea .kv__list {
  width: 400%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.kv .kv__wrapper .kv__imgArea .kv__list .kv__item {
  width: 100%;
}

.kv .kv__wrapper .kv__imgArea .kv__list .kv__item .kv__img {
  height: 850px;
}

@media screen and (max-width: 415px) {
  .kv .kv__wrapper .kv__imgArea .kv__list .kv__item .kv__img {
    display: none;
  }
}

.kv .kv__wrapper .kv__imgArea .kv__list .kv__item .kv__img-mb {
  display: none;
}

@media screen and (max-width: 415px) {
  .kv .kv__wrapper .kv__imgArea .kv__list .kv__item .kv__img-mb {
    display: block;
    height: 640px;
  }
}

.kv .kv__indicator {
  position: absolute;
  top: 820px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 415px) {
  .kv .kv__indicator {
    position: absolute;
    top: 610px;
  }
}

.kv .kv__indicator .kv__indicator-item {
  display: inline-block;
  margin-right: 21px;
  width: 40px;
  height: 1px;
  background-color: #676767;
}

@media screen and (max-width: 415px) {
  .kv .kv__indicator .kv__indicator-item {
    width: 30px;
  }
}

.kv .kv__indicator .kv__indicator-item.active {
  background-color: #fff;
}

.kv .kv__indicator .kv__indicator-item:last-child {
  margin-right: 0;
}

.kv .kv__column {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .05em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  position: absolute;
  bottom: 100px;
  left: 8.07%;
}

@media screen and (max-width: 415px) {
  .kv .kv__column {
    position: absolute;
    bottom: 330px;
  }
}

.kv .kv__column::after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background-color: #333333;
  position: absolute;
  top: 130%;
  left: 70%;
  -webkit-animation: scrollDown 2s linear infinite;
          animation: scrollDown 2s linear infinite;
}

@-webkit-keyframes scrollDown {
  0% {
    height: 0;
  }
  100% {
    height: 80px;
  }
}

@keyframes scrollDown {
  0% {
    height: 0;
  }
  100% {
    height: 80px;
  }
}

.kv .kv__btnTop {
  position: fixed;
  right: 50px;
  bottom: 130px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

@media screen and (max-width: 415px) {
  .kv .kv__btnTop {
    right: 24px;
  }
}

.kv .kv__btnTop .kv__btnTop--return {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: .05em;
  font-weight: 500;
}

.kv .kv__btnTop .kv__btnTop--return::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 5px;
  width: 1px;
  height: 80px;
  background-color: #333333;
}

/*-------------------*/
/*------ about ------*/
/*-------------------*/
.about {
  margin-bottom: 161px;
}

.about .about__wrapper {
  padding-right: 16.666%;
  padding-left: 16.666%;
}

@media screen and (max-width: 1000px) {
  .about .about__wrapper {
    padding-right: 8%;
    padding-left: 8%;
  }
}

.about .about__wrapper .about__body {
  position: relative;
}

.about .about__wrapper .about__body .about__imgArea {
  max-width: 720px;
  width: 100%;
}

@media screen and (max-width: 1440px) {
  .about .about__wrapper .about__body .about__imgArea {
    width: 610px;
  }
}

@media screen and (max-width: 768px) {
  .about .about__wrapper .about__body .about__imgArea {
    width: 100%;
  }
}

.about .about__wrapper .about__body .about__textArea {
  position: absolute;
  top: 20%;
  right: 0%;
  max-width: 640px;
  width: 100%;
  background-color: #fafafa;
}

@media screen and (max-width: 1440px) {
  .about .about__wrapper .about__body .about__textArea {
    width: 540px;
    position: absolute;
    top: 10%;
  }
}

@media screen and (max-width: 768px) {
  .about .about__wrapper .about__body .about__textArea {
    position: static;
    max-width: none;
    width: 100%;
  }
}

.about .about__wrapper .about__body .about__textArea .about__text {
  padding: 52px 52px 20px 49px;
  letter-spacing: 0;
  line-height: 2;
  color: #333333;
}

.about .about__wrapper .about__body .about__textArea .about__text:nth-child(n+2) {
  padding-top: 0;
}

.about .about__wrapper .about__body .about__textArea .about__text:last-child {
  padding-bottom: 40px;
}

/*---------------------*/
/*------ service ------*/
/*---------------------*/
.service {
  margin-bottom: 151px;
}

.service .service__wrapper {
  padding-right: 16.666%;
  padding-left: 16.666%;
}

.service .service__wrapper .service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 415px) {
  .service .service__wrapper .service__list {
    display: block;
  }
}

.service .service__wrapper .service__list .service__item {
  width: calc((100% - 74px) / 3);
  margin-right: 37px;
  text-align: center;
}

@media screen and (max-width: 415px) {
  .service .service__wrapper .service__list .service__item {
    width: 100%;
  }
}

.service .service__wrapper .service__list .service__item:last-child {
  margin-right: 0;
}

.service .service__wrapper .service__list .service__item:first-child .service__item-img {
  margin-bottom: 58px;
}

@media screen and (max-width: 415px) {
  .service .service__wrapper .service__list .service__item:first-child .service__item-img {
    margin-bottom: 40px;
  }
}

.service .service__wrapper .service__list .service__item:nth-child(2) .service__item-img {
  margin-bottom: 50px;
}

@media screen and (max-width: 415px) {
  .service .service__wrapper .service__list .service__item:nth-child(2) .service__item-img {
    margin-bottom: 32px;
  }
}

.service .service__wrapper .service__list .service__item:last-child .service__item-img {
  margin-bottom: 73px;
}

@media screen and (max-width: 415px) {
  .service .service__wrapper .service__list .service__item:last-child .service__item-img {
    margin-bottom: 55px;
  }
}

.service .service__wrapper .service__list .service__item .service__item-title {
  margin-bottom: 64px;
  font-size: 2.8rem;
  letter-spacing: .05em;
  color: #808080;
  font-family: 遊ゴシック体;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.service .service__wrapper .service__list .service__item .service__item-img {
  width: 113px;
}

@media screen and (max-width: 415px) {
  .service .service__wrapper .service__list .service__item .service__item-text {
    margin-bottom: 50px;
    text-align: start;
  }
}

/*-------------------*/
/*------ works ------*/
/*-------------------*/
.works {
  margin-bottom: 321px;
}

.works .works__wrapper {
  padding-right: 16.666%;
  padding-left: 16.666%;
}

.works .works__wrapper .works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 23px;
}

.works .works__wrapper .works__list .works__item {
  width: 32.03%;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .works .works__wrapper .works__list .works__item {
    width: 48%;
  }
}

.works .works__wrapper .works__list .works__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: .8;
}

.works .works__wrapper .works__list .works__item-img {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

/*-------------------*/
/*------ skill ------*/
/*-------------------*/
.skill {
  margin-bottom: 217px;
}

.skill .skill__wrapper {
  padding-left: 33.333%;
  position: relative;
}

.skill .skill__wrapper .skill__section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}

@media screen and (max-width: 415px) {
  .skill .skill__wrapper .skill__section-inner {
    margin-bottom: 40px;
  }
}

.skill .skill__wrapper .skill__section-inner .section-titleArea.col {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin-right: 7.083%;
}

.skill .skill__wrapper .skill__section-inner .section-titleArea.col .section-title {
  display: inline-block;
  vertical-align: -14%;
  margin-bottom: 24px;
}

.skill .skill__wrapper .skill__section-inner .section-titleArea.col .section-title__lead {
  display: inline-block;
}

.skill .section__textArea {
  width: 477px;
}

.skill .section__textArea .section__text {
  letter-spacing: 0;
  line-height: 1.75;
  margin-bottom: 37px;
  font-weight: 500;
}

.skill .section__textArea .section__text:last-child {
  margin-bottom: 0;
}

.skill .skill__imgArea {
  width: 62.5%;
  margin-left: 11.114%;
}

@media screen and (max-width: 415px) {
  .skill .skill__imgArea {
    width: 70%;
  }
}

.skill .skill__body--left {
  width: 25%;
  position: absolute;
  top: -120px;
  left: 0;
}

@media screen and (max-width: 415px) {
  .skill .skill__body--left {
    width: 32%;
  }
}

/*---------------------*/
/*------ contact ------*/
/*---------------------*/
.contact {
  background-color: #e5e5e5;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact .form__list {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .contact .form__list {
    width: 80%;
  }
}

.contact .form__list .form__item {
  margin-bottom: 50px;
}

.contact .form__list .form__item-input {
  background-color: #fff;
  line-height: 72px;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding-left: 21px;
  width: 100%;
  color: #999999;
}

.contact .form__list .form__item .textarea {
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 20px;
  color: #999999;
  background-color: #fff;
}

.contact .contact__error-msg {
  color: red;
  font-size: 1.4rem;
  display: block;
  margin-top: 8px;
}

.contact .form-submit {
  display: block;
  width: 222px;
  padding-top: 25px;
  padding-bottom: 20px;
  background-color: #000;
  color: #fff;
  letter-spacing: .05em;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.contact .form-submit::after {
  width: 36px;
  height: 1px;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
}

/*--------------------*/
/*------ footer ------*/
/*--------------------*/
.footer {
  background-color: #000;
  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;
  height: 80px;
}

.footer .footer__area {
  margin-left: 8.541%;
  font-size: 1.2rem;
  letter-spacing: .05em;
  font-weight: 500;
  color: #fffefe;
}

.footer .footer__iconArea {
  margin-right: 8.385%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer__iconArea .footer__icon {
  width: 26px;
  margin-right: 30px;
}

.footer .footer__iconArea .footer__icon .fa-brands {
  color: #fff;
}

.footer .footer__iconArea .footer__icon:last-child {
  margin-right: 0;
}
/*# sourceMappingURL=style.css.map */