@charset "utf-8";

.pcnone {
  display: none !important;
}

.spnone {
  display: block !important;
}

.clfix::after {
  content: "";
  display: block;
  clear: both;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

a {
  text-decoration: none;
}

img[src$=".svg"] {
  width: auto;
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  letter-spacing: 0.01em;
}

/*-----anime-----*/
#anime {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#anime.active {
  display: none;
}

#anime svg {
  width: auto;
  height: 8%;
}

#anime svg #R {
  width: auto;
  height: 10%;
  /* -webkit-animation: spin 2.0s ease-in-out;
  animation: spin 2.0s ease-in-out; */
}

#R.active {
  animation: spin 2.0s ease-in-out;
  -webkit-animation: spin 2.0s ease-in-out;
}

@-webkit-keyframes spin {
  0% {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    transform-origin: center center;
  }

  50% {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    transform-origin: center center;
  }

  100% {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    transform-origin: center center;
  }
}

@keyframes spin {
  0% {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    transform-origin: center center;
  }

  50% {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    transform-origin: center center;
  }

  100% {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    transform-origin: center center;
  }
}

#all-wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: none;
}

#all-wrap.active {
  display: block;
}

#header {
  width: 100%;
  margin: 0 auto;
  padding: 5% 3% 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, .9);
}

#header-logo {
  height: 25px;
}

#header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.nav-item a {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 30px;
  font-family: 'Avenir Next', 'Corbel', sans-serif;
  font-style: italic;
  -webkit-transition: .3s;
  transition: .3s;
}

.nav-item a:hover {
  color: #e63828;
}

#nav-toggle {
  display: none;
}

/*-----header(works)-----*/
.header-works {
  width: 100%;
  margin: 0 auto;
  padding: 5% 3% 5%;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, .9);
  font-style: italic;
  font-size: 1.5rem;
  font-family: 'Avenir Next',
    'Corbel',
    sans-serif;
}

.header-works h1 {
  margin-bottom: 30px;
}

#header-works .back-to a {
  color: #595757;
  line-height: 1.3;
}

#header-works .back-to a span:nth-of-type(2) {
  color: #808080;
}

/*-----header(more)-----*/
.header-more {
  width: 100%;
  margin: 0 auto;
  padding: 5% 3% 5%;
  position: fixed;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, .9);
  font-style: italic;
  font-size: 1.5rem;
  font-family: 'Avenir Next',
    'Corbel',
    sans-serif;
}

.header-more h1 {
  margin-bottom: 30px;
}

.header-more .back-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.header-more .back-list a {
  color: #595757;
  line-height: 1.3;
}

.header-more .back-list a span {
  display: block;
}

.header-more .back-list a span:nth-of-type(2n) {
  color: #808080;
}

/*-----icon-----*/
.icon {
  display: block;
  position: fixed;
  bottom: 10%;
  left: 0;
  width: 50px;
  -webkit-animation: slideToRight .8s ease-in-out;
  animation: slideToRight .8s ease-in-out;
}

.icon img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes slideToRight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes slideToRight {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

/*-----top-----*/
#top {
  position: relative;
  padding-top: 20%;
  padding-bottom: 250px;
}

.kv {
  width: 45%;
  margin: 0 auto 50px;
}

.kv img {
  width: 100%;
  height: auto;
}

.news {
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 25px;
}

.btn {
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  ;
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
  margin: 0 auto;
  width: 12em;
  background-color: #e63828;
  text-align: center;
  color: #fff;
  line-height: 3.0;
  -webkit-transition: .3s;
  transition: .3s;
}

.btn:hover {
  color: rgb(21, 230, 73);
}

/*-----works-----*/
.sec {
  padding-bottom: 250px;
}

#works .hd2 {
  height: 40px;
  text-align: center;
  margin: 0 auto 50px;
}

#works .hd2 img {
  width: auto;
  height: 100%;
}

.works-list {
  width: 85%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.works-item {
  width: 32%;
  margin-bottom: 80px;
  font-family: 'Avenir Next', 'Corbel', sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.3;
}

.works-item:nth-of-type(n+4) {
  margin-bottom: 0;
}

.works-img {
  display: block;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.works-img img {
  width: 100%;
  height: auto;
  -webkit-transition: .3s;
  transition: .3s;
  vertical-align: bottom;
}

.works-img .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: #e63828;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.works-img:hover .mask {
  mix-blend-mode: darken;
  opacity: 1;
}

/*-----creative-----*/
#creative .hd2 {
  height: 40px;
  text-align: center;
  margin: 0 auto 50px;
}

#creative .hd2 img {
  width: auto;
  height: 100%;
}

.creative-ja {
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  ;
  font-weight: 300;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}

.creative-en {
  font-family: 'Avenir Next', 'Corbel', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.5;
}

.creative-txt {
  width: 15.5em;
  margin: 0 auto;
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  ;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
}

.creative-txt dt {
  float: left;
  width: 10em;
  padding-top: 10px;
  padding-bottom: 10px;
}

.creative-txt dd {
  padding-top: 10px;
  padding-bottom: 10px;
}

.creative-txt dt:last-of-type {
  position: relative;
}

.creative-txt dt:last-of-type::after {
  content: '';
  display: inline-block;
  background-image: url(../img/index/circle.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 6.0em;
  height: 115%;
  position: absolute;
  top: 1px;
  left: -10px
}

/*-----about-----*/
#about .hd2 {
  height: 40px;
  text-align: center;
  margin: 0 auto 30px;
}

#about .hd2 img {
  width: auto;
  height: 100%;
}

#logo2 {
  height: 15px;
  margin-bottom: 80px;
  text-align: center;
}

.ttl {
  font-family: 'Avenir Next', 'Corbel', sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.career-div {
  display: table;
  margin: 0 auto;
  font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  ;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
}

.career-txt dt {
  float: left;
  width: 10em;
  padding-top: 10px;
  padding-bottom: 10px;
}

.career-txt dd {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-left: 10em;
}

/*-----footer-----*/
footer {
  font-family: 'Avenir Next', 'Corbel', sans-serif;
  font-style: italic;
  padding: 0 3% 5%;
  color: #000;
}

.sns {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
  margin-left: -50px;
}

.sns-img {
  display: block;
  margin-left: 50px;
  width: 20px;
}

.sns-img img {
  width: 100%;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-weight: 500;
  margin-left: -50px;
  font-size: 1.3rem;
  font-weight: 300;
  float: left;
}

.footer-nav li a {
  margin-left: 50px;
  display: block;
  color: #000;
}

.footer-nav li a img {
  height: 100%;
  width: auto;
}

small {
  float: right;
  font-weight: 500;
  font-size: 1.4rem;
}

/*----------works（category）----------*/
.works #all-wrap {
  display: block;
  font-family: 'Avenir Next',
    'Corbel',
    sans-serif;
}

.works #main {
  width: 45%;
  margin: 0 auto;
  padding: 30% 0 150px;
}

.works #all-wrap .hd2 {
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 80px;
}

.works .sec-inner {
  width: 100%;
  margin: 0 auto 80px;
  font-family: 'Avenir Next',
    'Corbel',
    sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.3;
}

.works section:last-of-type .sec-inner {
  margin-bottom: 0px;
}

.works .sec-inner .hd3 {
  margin-top: 20px;
  color: #000;
}

.works .sec-inner .hd3-more::after {
  content: "";
  display: inline-block;
  background-image: url(../img/works/works1/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 10px;
  margin-left: 10px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}

.works .sec-inner .hd3-more:hover::after {
  transform: translateX(20px);
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
}

.works .sec-inner img {
  width: 100%;
  height: auto;
}

.works .link {
  color: #000;
}

/*----------more----------*/
.more #all-wrap {
  display: block;
  font-family: 'Avenir Next',
    'Corbel',
    sans-serif;
}

.more #main {
  width: 45%;
  margin: 0 auto;
  padding: 30% 0 150px;
}

.more #all-wrap .hd2 {
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 80px;
}

.more .sec-inner {
  width: 100%;
  margin: 0 auto 80px;
  font-family: 'Avenir Next',
    'Corbel',
    sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.3;
}

.more section:last-of-type .sec-inner {
  margin-bottom: 0px;
}

.more .sec-inner .hd3 {
  margin-top: 20px;
  color: #000;
}

.more .sec-inner img {
  width: 100%;
  height: auto;
}


/*---------------smartphone---------------*/
/*---------------smartphone---------------*/
@media screen and (max-width:767px) {
  .pcnone {
    display: block !important;
  }

  .spnone {
    display: none !important;
  }

  /*メニュー部分*/
  #header-logo {
    display: block;
    position: relative;
    z-index: 9999;
    height: 18px;
  }

  nav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
  }

  #header nav ul {
    display: block;
    position: absolute;
    top: 120px;
    left: 3%;
  }

  .nav-item a {
    display: block;
    margin-left: 0px;
    margin-bottom: 20px;
  }

  /*開閉ボタン*/
  #nav-toggle {
    display: block;
    width: 18px;
    position: relative;
    top: 0px;
    z-index: 9999;
  }

  #nav-toggle div {
    position: relative;
  }

  #nav-toggle span {
    width: 100%;
    display: block;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }

  #nav-toggle span:nth-child(1) {
    top: 0px;
  }

  #nav-toggle span:nth-child(2) {
    top: 8px;
  }

  #nav-toggle span:nth-child(3) {
    top: 16px;
  }

  .open #nav-toggle span:nth-child(1) {
    top: 6px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 6px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .header-works {
    display: block;
  }

  .header-works h1 {
    margin-bottom: 20px;
  }

  .header-more {
    display: block;
  }

  .header-more h1 {
    margin-bottom: 20px;
  }

  /*-----top-----*/
  #top {
    padding-bottom: 150px;
  }

  .kv {
    width: 100%;
    margin: 0 auto 50px;
  }

  /*-----works-----*/
  .sec {
    padding-bottom: 150px;
  }

  #works .hd2 {
    height: 40px;
    margin: 0 auto 40px;
  }

  .works-list {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .works-item {
    width: 100%;
    margin-bottom: 60px;
    font-family: 'Avenir Next', 'Corbel', sans-serif;
    font-style: italic;
    line-height: 1.3
  }

  .works-item:nth-of-type(n+4) {
    margin-bottom: 60px;
  }

  .works-item:last-of-type {
    margin-bottom: 0px;
  }

  .works-item img {
    width: 100%;
    margin-bottom: 10px;
  }

  .works-item p {
    margin-left: 3%;
  }

  .works .link {
    padding-left: 3%;
  }

  /*-----creative-----*/
  #creative .hd2 {
    height: 40px;
    margin: 0 auto 40px;
  }

  .creative-ja {
    text-align: left;
    margin: 0 auto 30px;
    width: 80%;
  }

  .creative-en {
    text-align: left;
    margin: 0 auto 80px;
    width: 80%;
  }

  /*-----about-----*/
  #about {
    width: 85%;
    margin: 0 auto;
  }

  #about .hd2 {
    height: 40px;
    text-align: center;
    margin: 0 auto 30px;
  }

  #about .hd2 img {
    width: auto;
    height: 100%;
  }

  #logo2 {
    height: 15px;
    margin-bottom: 50px;
    text-align: center;
  }

  .ttl {
    margin: 0 auto 30px;
  }

  .career-txt dt {
    float: none;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .career-txt dd {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-left: 0;
  }

  /*-----footer-----*/
  footer {
    font-family: 'Avenir Next', 'Corbel', sans-serif;
    font-style: italic;
    padding: 0 3% 5%;
    color: #000;
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }

  .sns {
    margin-bottom: 30px;
  }

  .sns-img {
    display: block;
    margin-left: 50px;
    width: 25px;
  }

  .sns-img img {
    width: 100%;
    height: auto;
  }

  .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0px;
    margin-bottom: 20px;
    float: none;
  }

  .footer-nav li a {
    margin-left: 0px;
    display: block;
    color: #000;
    font-weight: 500;
  }

  .footer-nav .line {
    width: 1px;
    height: 14px;
    background-color: #000;
    margin: 0 10px 0;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
  }

  footer .btn {
    margin-bottom: 20px;
    line-height: 2;
  }

  small {
    float: none;
    font-weight: 500;
    /* font-size: .75em; */
  }

  /*----------works（category）----------*/
  .works #main {
    width: 100%;
    margin: 20% auto 0;
  }

  .works #all-wrap .hd2 {
    padding-left: 3%;
  }

  .works .sec-inner .hd3 {
    padding-left: 3%;
  }

  /*----------more----------*/
  .more #main {
    width: 100%;
    margin: 20% auto 0;
  }

  .more #all-wrap .hd2 {
    padding-left: 3%;
  }

  .more .sec-inner .hd3 {
    padding-left: 3%;
  }
}

/*smartphone閉じ*\