/*
	base
*/
html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 10px; }

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

body {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #fff; }

input, textarea, select {
  color: inherit;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none; }

input::-webkit-input-placeholder {
  color: #ccc; }

input:-ms-input-placeholder {
  color: #ccc; }

input::-ms-input-placeholder {
  color: #ccc; }

input::placeholder {
  color: #ccc; }

textarea::-webkit-input-placeholder {
  color: #ccc; }

textarea:-ms-input-placeholder {
  color: #ccc; }

textarea::-ms-input-placeholder {
  color: #ccc; }

textarea::placeholder {
  color: #ccc; }

/* IE */
input:-ms-input-placeholder {
  color: #ccc; }

/* Edge */
input::-ms-input-placeholder {
  color: #ccc; }

a {
  cursor: pointer; }
  a:link, a:visited {
    color: #333;
    text-decoration: underline; }
  a:hover, a:active {
    color: #c6444d;
    text-decoration: underline; }

img, video {
  border: 0;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
  height: auto; }

small {
  font-size: 75%; }

i {
  font-style: normal; }

/*
	header
*/
.header {
  position: absolute;
  z-index: 100;
  width: 100%; }
  .header-logo {
    position: absolute;
    left: 5%;
    top: 45px;
    width: 200px;
    height: 215px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s; }
  .header .nav {
    position: fixed;
    right: 0;
    top: 0;
    background: #fff;
    padding-right: 5%; }
    .header .nav-logo {
      display: none;
      position: absolute;
      left: 70px;
      top: 45px;
      width: 200px;
      height: 215px; }
    .header .nav ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 60px 0 20px; }
      .header .nav ul li {
        margin-left: 3em;
        font-family: 'Karla', sans-serif;
        font-size: 16px;
        letter-spacing: .05em; }
        .header .nav ul li a {
          display: block;
          position: relative;
          text-decoration: none;
          -webkit-transition: all .2s;
          -o-transition: all .2s;
          transition: all .2s;
          background-image: -webkit-gradient(linear, left top, left bottom, color-stop(90%, rgba(255, 255, 255, 0)), color-stop(10%, #444444));
          background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 90%, #444444 10%);
          background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0) 90%, #444444 10%);
          background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, #444444 10%);
          background-position: calc(-100% + 1px) 0;
          background-size: 200% auto;
          padding: 0 .3em;
          padding-bottom: 10px;
          background-repeat: no-repeat; }
          .header .nav ul li a:hover {
            background-position: 0 0;
            color: #000; }
        .header .nav ul li.new a::before {
          content: "new";
          display: block;
          position: absolute;
          top: -36px;
          right: -1.8em;
          padding: 0 1.2em;
          color: #fff;
          font-family: 'Karla', sans-serif;
          font-size: 15px;
          line-height: 20px;
          letter-spacing: 0;
          background-color: #c6444d;
          border-radius: 10px; }
        .header .nav ul li.new a::after {
          content: "";
          display: block;
          position: absolute;
          top: -16px;
          right: .7em;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 8px 4px 0 4px;
          border-color: #c6444d transparent transparent transparent;
          -webkit-transform: skewX(-40deg);
          -ms-transform: skewX(-40deg);
          transform: skewX(-40deg); }
  @media screen and (max-width: 1180px) {
    .header-logo {
      left: 1%; }
    .header .nav {
      padding-right: 2%; } }
  @media screen and (max-width: 1000px) {
    .header .nav {
      overflow-y: scroll;
      position: fixed;
      z-index: 9001;
      right: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all .4s;
      -o-transition: all .4s;
      transition: all .4s; }
      .header .nav-logo {
        display: block;
        z-index: 9002; }
      .header .nav ul {
        display: block;
        position: absolute;
        z-index: 9003;
        left: 70px;
        bottom: 20px; }
        .header .nav ul li {
          margin-left: 0;
          margin-bottom: 1.5em;
          font-size: 32px; }
          .header .nav ul li.new a {
            position: relative;
            display: inline-block; }
            .header .nav ul li.new a::before {
              right: -122px;
              top: 0;
              bottom: 0;
              margin: auto;
              font-size: 22px;
              line-height: 32px;
              border-radius: 16px; }
            .header .nav ul li.new a::after {
              right: -30px;
              top: 0;
              bottom: 0;
              width: 0;
              height: 0;
              margin: auto;
              border-width: 4px 10px 4px 0;
              border-color: transparent #c6444d transparent transparent;
              -webkit-transform: none;
              -ms-transform: none;
              transform: none; }
      .header .nav-overlay {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s; } }
  @media screen and (max-width: 640px) {
    .header-logo {
      left: 6.25vw;
      top: 6.25vw;
      width: 31.25vw;
      height: 33.59375vw; }
    .header .nav-logo {
      left: 6.25vw;
      top: 6.25vw;
      width: 31.25vw;
      height: 33.59375vw; }
    .header .nav ul {
      left: 7.8125vw;
      bottom: 3.125vw; }
      .header .nav ul li {
        font-size: 5vw; }
        .header .nav ul li.new a::before {
          right: -19.0625vw;
          font-size: 3.4375vw;
          line-height: 5vw;
          border-radius: 2.5vw; }
        .header .nav ul li.new a::after {
          right: -4.6875vw;
          border-width: 0.625vw 1.5625vw 0.625vw 0; } }
  @media print {
    .header .nav {
      display: none !important; } }

/*
	nav-open
*/
.nav-open {
  display: none; }
  @media screen and (max-width: 1000px) {
    .nav-open {
      display: block;
      overflow: hidden;
      position: fixed;
      z-index: 9999;
      right: 35px;
      top: 35px;
      width: 100px;
      height: 100px;
      padding: 0;
      line-height: 1;
      border: 0;
      outline: 0;
      background-color: #f0f0f0;
      background-image: none;
      border-radius: 50%;
      cursor: pointer; }
      .nav-open .bars {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        height: 34px;
        margin: auto;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s; }
      .nav-open .bar {
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: #000; }
        .nav-open .bar.b1 {
          margin: 0 0 0 0;
          -webkit-transition: all .15s;
          -o-transition: all .15s;
          transition: all .15s; }
        .nav-open .bar.b2 {
          margin: 16px 0 0 0;
          -webkit-transition: all .3s;
          -o-transition: all .3s;
          transition: all .3s; }
        .nav-open .bar.b3 {
          margin: 32px 0 0 0;
          -webkit-transition: all .15s;
          -o-transition: all .15s;
          transition: all .15s; }
        .nav-open .bar.b4 {
          margin: 16px 0 0 0;
          -webkit-transition: all .3s;
          -o-transition: all .3s;
          transition: all .3s; } }
  @media screen and (max-width: 640px) {
    .nav-open {
      right: 4.6875vw;
      top: 4.6875vw;
      width: 15.625vw;
      height: 15.625vw; }
      .nav-open .bars {
        width: 6.25vw;
        height: 5.3125vw; }
      .nav-open .bar {
        width: 6.25vw;
        height: 0.3125vw;
        background-color: #000; }
        .nav-open .bar.b2 {
          margin: 2.5vw 0 0 0; }
        .nav-open .bar.b3 {
          margin: 5vw 0 0 0; }
        .nav-open .bar.b4 {
          margin: 2.5vw 0 0 0; } }
  @media print {
    .nav-open {
      display: none !important; } }
  .nav-open:hover {
    background-color: #eee;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s; }

/*
	nav-opened
*/
.nav-opened {
  overflow: hidden; }
  .nav-opened .header .nav {
    right: 0;
    opacity: 1;
    visibility: visible; }
    .nav-opened .header .nav-overlay {
      opacity: 1;
      visibility: visible; }
  .nav-opened .nav-open .bar.b1 {
    opacity: 0;
    margin: 16px 0 0 -6px; }
  .nav-opened .nav-open .bar.b2 {
    margin: 16px 0 0 -6px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 52px;
    height: 2px; }
  .nav-opened .nav-open .bar.b3 {
    opacity: 0;
    margin: 16px 0 0 -6px; }
  .nav-opened .nav-open .bar.b4 {
    margin: 16px 0 0 -6px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 52px;
    height: 2px; }
  @media screen and (max-width: 640px) {
    .nav-opened .nav-open .bar.b2 {
      margin: 2.5vw 0 0 -0.9375vw;
      width: 8.125vw; }
    .nav-opened .nav-open .bar.b4 {
      margin: 2.5vw 0 0 -0.9375vw;
      width: 8.125vw; } }

/*
	footer
*/
.footer {
  padding: 160px 0 180px;
  text-align: center; }
  .footer .logo {
    width: 200px;
    height: 215px;
    margin: 0 auto 70px; }
  .footer .copyright {
    font-family: 'Karla', sans-serif;
    font-size: 14px;
    letter-spacing: .1em; }
  .footer #pagetop {
    position: fixed;
    right: 3%;
    bottom: -200px;
    background-image: url(../images/scroll3.png);
    background-position: center bottom; }
    .footer #pagetop:hover {
      background-image: url(../images/scroll4.png);
      background-position: center top; }
    .footer #pagetop.is-show {
      bottom: 40px; }
  @media screen and (max-width: 640px) {
    .footer {
      padding: 18.75vw 0; }
      .footer .logo {
        width: 30.9375vw;
        height: auto;
        margin-bottom: 7.8125vw; }
        .footer .logo img {
          width: 100%; }
      .footer .copyright {
        font-size: 3.4375vw; }
      .footer #pagetop {
        display: none !important; } }
  @media print {
    .footer #pagetop {
      display: none !important; } }

/*
	main
*/
main {
  font-size: 14px; }
  main p {
    line-height: 1.5; }
  @media screen and (max-width: 640px) {
    main {
      font-size: 3.75vw; } }

/*
	wrapper
*/
.wrapper {
  overflow: hidden; }
  @media screen and (max-width: 640px) {
    .wrapper {
      min-width: 0; } }

/*
	container
*/
.container {
  position: relative;
  max-width: 1180px;
  margin: auto;
  padding: 0 20px; }
  @media screen and (max-width: 640px) {
    .container {
      padding: 0 6.25vw; } }

/*
	section
*/
.section {
  padding-top: 10px;
  margin-bottom: 140px; }
  .section-header {
    margin-bottom: 40px; }
    .section-header h2 {
      display: inline-block;
      position: relative; }
      .section-header h2::after {
        content: "";
        display: block;
        position: absolute;
        right: -115px;
        bottom: 6px;
        width: 102px;
        height: 52px;
        background: url(../images/img_heading1.png) 0 0/contain no-repeat; }
    .section-header span {
      display: block; }
    .section-header .en {
      margin-bottom: .2em;
      font-size: 38px; }
    .section-header .ja {
      font-size: 13px;
      letter-spacing: .1em; }
  @media screen and (max-width: 640px) {
    .section {
      padding-top: 1.5625vw;
      margin-bottom: 21.875vw; }
      .section-header {
        margin-bottom: 9.375vw; }
        .section-header h2::after {
          right: -19.53125vw;
          bottom: 1.5625vw;
          width: 15.9375vw;
          height: 8.125vw; }
        .section-header .en {
          font-size: 10vw; }
        .section-header .ja {
          font-size: 3.75vw; } }

/*
	mv
*/
.mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  min-height: 740px;
  max-height: 1000px;
  padding-top: calc(50vh - 320px);
  position: relative; }
  .mv-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: auto; }
    .mv-text h2 {
      position: relative;
      margin-right: 5vw;
      padding-left: 5vw;
      font-size: 32px;
      line-height: 1.8;
      letter-spacing: .2em;
      white-space: nowrap;
      -ms-writing-mode: tb-rl;
      writing-mode: tb-rl;
      -webkit-writing-mode: vertical-rl;
      -webkit-transition: all .4s;
      -o-transition: all .4s;
      transition: all .4s; }
      .mv-text h2 figure {
        position: absolute; }
        .mv-text h2 figure:nth-of-type(1) {
          left: 200px;
          top: -56px;
          width: 56px;
          height: 56px; }
        .mv-text h2 figure:nth-of-type(2), .mv-text h2 figure:nth-of-type(3) {
          display: none; }
    .mv-text p {
      padding: calc(15vh - 90px) 0 80px;
      font-size: 18px;
      line-height: 2.4;
      letter-spacing: .05em;
      white-space: nowrap; }
    .mv-text > figure {
      position: absolute; }
      .mv-text > figure:nth-of-type(1) {
        right: 0;
        bottom: 0;
        width: 71px;
        height: 68px; }
      .mv-text > figure:nth-of-type(2) {
        right: -5vw;
        bottom: -90px;
        width: 121px;
        height: 113px; }
  .mv-scroll a {
    overflow: hidden;
    position: absolute;
    left: 3%;
    bottom: 8vh;
    width: 16px;
    height: 174px;
    background-image: url(../images/scroll1.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -9999px;
    white-space: nowrap;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all; }
    .mv-scroll a:hover {
      background-image: url(../images/scroll2.png);
      background-position: center bottom; }
  @media screen and (max-width: 1180px) {
    .mv-text h2 {
      margin-right: 5%;
      padding-left: 100px; } }
  @media print, screen and (max-width: 1000px) {
    .mv {
      height: auto;
      min-height: auto;
      padding: 160px 0 80px; }
      .mv-text {
        display: block;
        padding: 0 20px; }
        .mv-text h2 {
          float: right;
          margin: 0 0 120px;
          padding: 0 80px 0; }
          .mv-text h2 figure:nth-of-type(1) {
            display: none; }
          .mv-text h2 figure:nth-of-type(2) {
            display: block;
            left: -20px;
            bottom: 20px;
            width: 71px;
            height: 68px; }
          .mv-text h2 figure:nth-of-type(3) {
            display: block;
            right: 50px;
            bottom: -60px;
            width: 109px;
            height: 102px;
            -webkit-transform: rotate(-10deg);
            -ms-transform: rotate(-10deg);
            transform: rotate(-10deg); }
        .mv-text p {
          clear: both;
          padding: 0;
          white-space: normal; }
        .mv-text > figure:nth-of-type(1), .mv-text > figure:nth-of-type(2) {
          display: none; }
      .mv-scroll {
        display: none; } }
  @media screen and (max-width: 640px) {
    .mv {
      max-height: none;
      padding: 30.3125vw 0 23.4375vw; }
      .mv-text {
        margin: 0;
        padding: 0; }
        .mv-text h2 {
          margin: 0 0 28.125vw auto;
          padding: 0 1em 0;
          font-size: 6.875vw;
          line-height: 1.5; }
          .mv-text h2 figure:nth-of-type(2) {
            left: -6.25vw;
            bottom: 3.90625vw;
            width: 11.09375vw;
            height: 10.625vw; }
          .mv-text h2 figure:nth-of-type(3) {
            display: block;
            right: 4.6875vw;
            bottom: -10.9375vw;
            width: 17.03125vw;
            height: 15.9375vw; }
        .mv-text p {
          padding: 0;
          font-size: 4.375vw; } }

/*
	post
*/
.post-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px; }

.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px; }
  .post-list .post-item {
    margin-bottom: 75px; }

.post-item {
  position: relative;
  width: 33.3333%;
  padding: 0 15px; }
  .post-item > *:last-child {
    margin-bottom: 0; }
  .post-item.new::before {
    content: "new";
    display: block;
    position: absolute;
    z-index: 10;
    top: -16px;
    right: 25px;
    padding: 0 1.2em;
    color: #fff;
    font-family: 'Karla', sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    background-color: #c6444d;
    border-radius: 13px; }
  .post-item.new::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    top: 9px;
    right: 50px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #c6444d transparent transparent transparent;
    -webkit-transform: skewX(-40deg);
    -ms-transform: skewX(-40deg);
    transform: skewX(-40deg); }

.post-image {
  margin-bottom: 26px;
  background-color: #f0f0f0; }
  .post-image a {
    display: block;
    overflow: hidden; }
    .post-image a img {
      width: 100%;
      -webkit-transition: .8s transform;
      -o-transition: .8s transform;
      transition: .8s transform; }
    .post-image a:hover img {
      -webkit-transform: scale(1.16);
      -ms-transform: scale(1.16);
      transform: scale(1.16); }

.post-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
  color: #999;
  line-height: 22px; }

.post-label {
  margin-right: 1em; }
  .post-label span {
    display: inline-block;
    padding: 0 .8em;
    color: #fff;
    font-size: 13px;
    letter-spacing: .05em;
    background-color: #444; }

.post-category a {
  text-decoration: none; }

.post-date {
  position: relative;
  margin-left: .8em;
  padding-left: .9em;
  font-family: 'Karla', sans-serif; }
  .post-date::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 13px;
    margin: auto;
    background-color: #999; }

.post-title {
  margin-bottom: .8em;
  font-size: 18px;
  line-height: 1.4; }
  .post-title a {
    text-decoration: none; }

.post-desc {
  line-height: 1.6; }
  .post-desc a {
    text-decoration: none; }
    .post-desc a:link, .post-desc a:visited {
      color: #666; }
    .post-desc a:hover, .post-desc a:active {
      color: #c6444d; }

.post-link {
  margin-top: 1.5em; }
  .post-link li {
    line-height: 1.8; }
    .post-link li + li {
      margin-top: .2em; }
    .post-link li a {
      display: inline-block;
      position: relative;
      padding-left: 24px; }
      .post-link li a i {
        position: absolute;
        left: 0;
        width: 16px;
        height: 24px; }
        .post-link li a i svg {
          width: 16px;
          height: 24px;
          fill: #999; }
      .post-link li a:hover i svg {
        fill: #c6444d; }

.post-more {
  position: relative;
  top: -45px;
  width: 100%;
  padding: 0 15px;
  text-align: right;
  letter-spacing: .05em; }
  .post-more a {
    display: inline-block;
    position: relative;
    padding-right: 48px;
    text-decoration: none; }
    .post-more a::after {
      content: "";
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 30px;
      height: 8px;
      margin: auto;
      background: url(../images/arrow1.png) 0 0/contain no-repeat; }
    .post-more a:hover::after {
      background-image: url(../images/arrow2.png); }

@media screen and (max-width: 768px) {
  .post-item {
    width: 50%; } }

@media screen and (max-width: 640px) {
  .post-carousel {
    margin: 0;
    padding-bottom: 9.375vw; }
    .post-carousel-wrapper {
      position: relative;
      width: 75vw; }
    .post-carousel .post-item {
      padding: 0 15.625vw 0 0; }
      .post-carousel .post-item.new::before {
        right: 17.1875vw; }
      .post-carousel .post-item.new::after {
        right: 25.78125vw; }
  .post-list {
    margin: 0 -3.125vw -9.375vw; }
    .post-list .post-item {
      margin-bottom: 9.375vw; }
  .post-item {
    padding: 0 3.125vw; }
    .post-item.new::before {
      top: -3.125vw;
      right: 4.6875vw;
      padding: 0 1.2em;
      font-size: 3.4375vw;
      line-height: 5.3125vw;
      border-radius: 2.65625vw; }
    .post-item.new::after {
      top: 1.875vw;
      right: 13.28125vw;
      border-width: 2.1875vw 1.09375vw 0 1.09375vw; }
  .post-image {
    margin-bottom: 3.125vw; }
  .post-info {
    margin-bottom: 1em;
    font-size: 3.4375vw;
    line-height: 3.4375vw; }
  .post-info {
    margin-bottom: 1em;
    font-size: 3.4375vw;
    line-height: 3.4375vw; }
  .post-label {
    width: 100%;
    margin-right: 0;
    margin-bottom: .8em; }
    .post-label span {
      font-size: 3.125vw;
      line-height: 5vw; }
  .post-date::before {
    height: 3.4375vw; }
  .post-title {
    margin-bottom: .5em;
    font-size: 4.0625vw; }
    .post-title a {
      text-decoration: none; }
  .post-desc {
    font-size: 3.125vw; }
  .post-link {
    margin-top: 1em; }
    .post-link li {
      font-size: 3.4375vw; }
      .post-link li a {
        padding-left: 5vw; }
        .post-link li a i {
          top: .2em;
          width: 3.125vw;
          height: 4.6875vw; }
          .post-link li a i svg {
            width: 3.125vw;
            height: 4.6875vw; }
  .post-more {
    top: -3.125vw;
    padding: 0 3.125vw; }
    .post-more a {
      padding-right: 9.375vw; }
      .post-more a::after {
        width: 7.03125vw;
        height: 1.875vw; } }

/*
	news
*/
.news .section-header h2::after {
  right: -120px;
  bottom: -10px;
  width: 95px;
  height: 40px;
  background: url(../images/img_heading2.png) 0 0/contain no-repeat; }

@media screen and (max-width: 640px) {
  .news .section-header h2::after {
    right: -18.75vw;
    bottom: 0.78125vw;
    width: 14.84375vw;
    height: 6.25vw; } }

/*
	works
*/
.works-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 60px; }
  .works-row .post-list {
    width: 68.421%; }
  .works-row .post-item {
    width: 50%; }

.works-text {
  position: relative;
  width: 29%;
  padding: 50px 0 0 55px; }
  .works-text i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 76px;
    height: 76px;
    background-color: #f0f0f0;
    border-radius: 50%; }
    .works-text i svg {
      width: 76px;
      height: 76px; }
  .works-text h3 {
    position: relative;
    z-index: 10;
    margin-bottom: 1.4em;
    padding-bottom: 1.5em;
    font-size: 18px;
    line-height: 1.5;
    background: url(../images/line.png) left bottom no-repeat; }
    .works-text h3 span {
      display: block;
      margin-top: .3em;
      color: #666;
      font-size: 14px; }
  .works-text p {
    color: #666;
    line-height: 1.8; }

@media screen and (max-width: 768px) {
  .works-row {
    display: block; }
    .works-row .post-list {
      width: auto; }
  .works-text {
    width: auto;
    margin-bottom: 2em;
    padding-left: 0; }
    .works-text i {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: absolute;
      left: 0;
      top: 0;
      width: 76px;
      height: 76px;
      background-color: #f0f0f0;
      border-radius: 50%; }
      .works-text i svg {
        width: 76px;
        height: 76px; }
    .works-text h3 {
      padding-left: 55px; } }

@media screen and (max-width: 640px) {
  .works-row {
    margin-bottom: 18.75vw; }
  .works-text {
    padding-top: 7.03125vw; }
    .works-text i {
      width: 13.4375vw;
      height: 13.4375vw; }
      .works-text i svg {
        width: 13.4375vw;
        height: 13.4375vw; }
    .works-text h3 {
      padding-left: 11.25vw;
      font-size: 4.375vw; }
      .works-text h3 span {
        font-size: 3.125vw; } }

/*
	member
*/
.member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0; }

.member-item {
  position: relative;
  width: 50%;
  padding: 0 7.456%; }
  .member-item > *:last-child {
    margin-bottom: 0; }

.member-image {
  margin-bottom: 30px;
  padding: 0 12.5%; }

.member-name {
  margin-bottom: 1.2em;
  font-size: 20px;
  line-height: 1.2;
  text-align: center; }
  .member-name span {
    font-size: 14px; }

.member-desc {
  margin-bottom: 1.2em;
  line-height: 2; }

@media screen and (max-width: 640px) {
  .member-list {
    display: block; }
  .member-item {
    width: auto;
    margin-bottom: 9.375vw;
    padding: 0; }
    .member-item > *:last-child {
      margin-bottom: 0; }
  .member-image {
    margin-bottom: 4.6875vw;
    padding: 0 11.71875vw; }
  .member-name {
    margin-bottom: .5em;
    font-size: 5.3125vw; }
    .member-name span {
      font-size: 3.75vw; }
  .member-desc {
    line-height: 1.6; } }

/*
	sns
*/
.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px; }
  .sns li {
    padding: 0 15px; }
    .sns li a svg {
      -webkit-transition: all .4s;
      -o-transition: all .4s;
      transition: all .4s; }
    .sns li a:hover svg {
      fill: #c6444d; }
  .sns .fb svg {
    width: 12px;
    height: 24px; }
  .sns .insta svg {
    width: 20px;
    height: 24px; }
  .sns .link svg {
    width: 16px;
    height: 24px; }
  .sns .twitter svg {
    width: 22px;
    height: 24px; }
  @media screen and (max-width: 640px) {
    .sns {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .sns li {
        padding: 0 4.6875vw; }
      .sns .fb svg {
        width: 3.75vw;
        height: 7.5vw; }
      .sns .insta svg {
        width: 6.25vw;
        height: 7.5vw; }
      .sns .link svg {
        width: 5vw;
        height: 7.5vw; }
      .sns .twitter svg {
        width: 7.8125vw;
        height: 7.5vw; } }

/*
	contact
*/
.contact {
  margin-bottom: 0;
  padding: 120px 0;
  background-color: #f7f7f7; }
  .contact .section-header {
    text-align: center; }
    .contact .section-header h2::after {
      right: -130px;
      top: -10px; }
    .contact .section-header h2::before {
      content: "";
      display: block;
      position: absolute;
      left: -130px;
      top: -10px;
      width: 102px;
      height: 52px;
      background: url(../images/img_heading1.png) 0 0/contain no-repeat;
      -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
      transform: scaleX(-1); }
  .contact-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 780px;
    margin: auto;
    letter-spacing: .1em; }
    .contact-table-header {
      width: 140px;
      margin-bottom: 60px;
      font-family: 'Nothing You Could Do', cursive;
      font-size: 21px;
      line-height: 46px; }
      .contact-table-header:last-of-type {
        margin-top: -30px; }
    .contact-table-data {
      width: calc(100% - 140px);
      margin-bottom: 60px; }
      .contact-table-data:last-of-type {
        margin-top: -30px;
        line-height: 24px; }
      .contact-table-data input[type="text"], .contact-table-data input[type="email"], .contact-table-data textarea {
        width: 100%;
        letter-spacing: .05em;
        background-color: transparent;
        padding: 1em; }
        .contact-table-data input[type="text"]::-webkit-input-placeholder, .contact-table-data input[type="email"]::-webkit-input-placeholder, .contact-table-data textarea::-webkit-input-placeholder {
          color: #666; }
        .contact-table-data input[type="text"]:-ms-input-placeholder, .contact-table-data input[type="email"]:-ms-input-placeholder, .contact-table-data textarea:-ms-input-placeholder {
          color: #666; }
        .contact-table-data input[type="text"]::-ms-input-placeholder, .contact-table-data input[type="email"]::-ms-input-placeholder, .contact-table-data textarea::-ms-input-placeholder {
          color: #666; }
        .contact-table-data input[type="text"]::placeholder, .contact-table-data input[type="email"]::placeholder, .contact-table-data textarea::placeholder {
          color: #666; }
      .contact-table-data input[type="text"], .contact-table-data input[type="email"] {
        height: 46px;
        line-height: 46px;
        border: none;
        border-bottom: 1px solid #000; }
      .contact-table-data textarea {
        padding: 1em;
        border: 1px solid #000; }
      .contact-table-data input[type="checkbox"] {
        opacity: 0;
        height: 1px;
        width: 0;
        position: absolute; }
      .contact-table-data .checkbox {
        display: inline-block;
        position: relative;
        padding: 0 0 0 36px;
        vertical-align: top;
        cursor: pointer; }
      .contact-table-data .checkbox::before {
        content: '';
        display: block;
        position: absolute;
        width: 24px;
        height: 24px;
        left: 0;
        top: 0;
        background: #fff;
        border: 1px solid #000; }
      .contact-table-data .checkbox::after {
        content: '';
        display: block;
        position: absolute;
        left: 8px;
        top: 0;
        width: 7px;
        height: 11px;
        margin-top: 5px;
        border-right: 3px solid #000;
        border-bottom: 3px solid #000;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0; }
      .contact-table-data input[type="checkbox"]:checked + .checkbox::after {
        opacity: 1; }
    .contact-table-submit {
      width: 100%;
      margin-bottom: 35px;
      text-align: center; }
      .contact-table-submit input[type="button"] {
        width: 434px;
        height: 60px;
        margin: 0;
        font-size: 16px;
        letter-spacing: .1em;
        background-color: transparent;
        border: 1px solid #000;
        cursor: pointer;
        background: url(../images/arrow1.png) right 20px center/30px 8px no-repeat;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s; }
        .contact-table-submit input[type="button"]:hover {
          color: #c6444d;
          border-color: #c6444d;
          background-image: url(../images/arrow2.png);
          background-color: #fff; }
  .contact .note {
    color: #666;
    letter-spacing: .1em;
    text-align: center;
    margin-top: 60px; }
    .contact .note a:link, .contact .note a:visited {
      color: #666; }
    .contact .note a:hover, .contact .note a:active {
      color: #c6444d; }
  .contact label.error {
    display: block;
    color: #c6444d;
    margin-top: 1rem; }
  .contact h3 {
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 22px;
    line-height: 1.5; }
  .contact p {
    color: #666;
    line-height: 1.8; }
  .contact .complate {
    width: 600px;
    margin: 0 auto 30px;
    text-align: center; }
  @media screen and (max-width: 640px) {
    .contact {
      padding: 18.75vw 0; }
      .contact .section-header h2::after {
        right: -20.3125vw;
        top: 0.78125vw; }
      .contact .section-header h2::before {
        left: -20.3125vw;
        top: 0.78125vw;
        width: 15.9375vw;
        height: 8.125vw; }
      .contact-table {
        display: block; }
        .contact-table-header {
          width: auto;
          margin-bottom: .5em;
          font-size: 5.9375vw; }
          .contact-table-header:last-of-type {
            margin-top: 0; }
        .contact-table-data {
          width: auto;
          margin-bottom: 9.375vw; }
          .contact-table-data:last-of-type {
            margin-top: -1.5625vw;
            line-height: 5.625vw; }
          .contact-table-data input[type="text"], .contact-table-data input[type="email"], .contact-table-data textarea {
            font-size: 3.75vw; }
          .contact-table-data input[type="text"], .contact-table-data input[type="email"] {
            height: 14.0625vw;
            line-height: 14.0625vw; }
          .contact-table-data textarea {
            height: 54.6875vw; }
          .contact-table-data .checkbox {
            padding: 0 0 0 8.75vw; }
          .contact-table-data .checkbox::before {
            width: 5.625vw;
            height: 5.625vw; }
          .contact-table-data .checkbox::after {
            left: 1.71875vw;
            top: 0.46875vw;
            width: 2.1875vw;
            height: 3.4375vw;
            margin-top: 0;
            border-right: 0.625vw solid #000;
            border-bottom: 0.625vw solid #000; }
        .contact-table-submit {
          width: 100%;
          margin-bottom: 5.46875vw; }
          .contact-table-submit input[type="button"] {
            width: 100%;
            height: 13.4375vw;
            font-size: 3.75vw;
            background-size: 9.375vw 2.5vw; }
      .contact .complate {
        width: 100%; }
      .contact .note {
        color: #666;
        letter-spacing: .1em;
        text-align: center; } }

/*
	svg
*/
.svg-symbol {
  display: none; }

/*
	display
*/
.only-sm {
  display: none; }
  @media screen and (max-width: 640px) {
    .only-sm {
      display: block; } }

@media screen and (max-width: 1000px) {
  .only-lg {
    display: none; } }

/*
	font
*/
.ja {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif; }

.en {
  font-family: 'Nothing You Could Do', cursive; }

.karla {
  font-family: 'Karla', sans-serif; }

/*
	align
*/
.tal {
  text-align: left !important; }

.tac {
  text-align: center !important; }

.tar {
  text-align: right !important; }

.vat {
  vertical-align: top !important; }

.vac {
  vertical-align: center !important; }

.vab {
  vertical-align: bottom !important; }

/*
	margin
*/
.mb-0 {
  margin-bottom: 0 !important; }

.mb-5 {
  margin-bottom: 5px !important; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-1em {
  margin-bottom: 1em !important; }

.mt-0 {
  margin-top: 0 !important; }

.mt-5 {
  margin-top: 5px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-15 {
  margin-top: 15px !important; }

.mt-1em {
  margin-top: 1em !important; }

/*
    slick
*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  /*overflow: hidden;*/
  overflow: visible;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: -56px;
  display: block;
  width: 60px;
  height: 16px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none; }
  @media screen and (max-width: 640px) {
    .slick-prev,
    .slick-next {
      width: 12.5vw;
      height: 3.125vw;
      top: auto;
      bottom: 0; } }

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: .5;
  cursor: default; }

.slick-prev:before,
.slick-next:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/arrow1.png); }

.slick-prev:not(.slick-disabled):hover:before,
.slick-next:not(.slick-disabled):hover:before {
  background-image: url(../images/arrow2.png); }

.slick-prev {
  right: 105px; }
  @media screen and (max-width: 640px) {
    .slick-prev {
      right: 6.25vw; } }

.slick-prev:before {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.slick-next {
  right: 15px; }
  @media screen and (max-width: 640px) {
    .slick-next {
      right: -12.5vw; } }

/*
	inview
*/
.fadein {
  opacity: 0;
  -webkit-transition: opacity 2.4s;
  -o-transition: opacity 2.4s;
  transition: opacity 2.4s; }
  .fadein.is-show {
    opacity: 1; }

.fadein-slideup {
  opacity: 0;
  -webkit-transition: opacity 1.4s, -webkit-transform 1.4s;
  transition: opacity 1.4s, -webkit-transform 1.4s;
  -o-transition: opacity 1.4s, transform 1.4s;
  transition: opacity 1.4s, transform 1.4s;
  transition: opacity 1.4s, transform 1.4s, -webkit-transform 1.4s; }
  .fadein-slideup.is-show {
    -webkit-animation: view-slideup 1s ease both;
    animation: view-slideup 1s ease both;
    opacity: 1; }

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 45px);
    transform: translate(0, 45px); }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 45px);
    transform: translate(0, 45px); }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

.fadein-slidedown {
  opacity: 0;
  -webkit-transition: opacity 1.4s, -webkit-transform 1.4s;
  transition: opacity 1.4s, -webkit-transform 1.4s;
  -o-transition: opacity 1.4s, transform 1.4s;
  transition: opacity 1.4s, transform 1.4s;
  transition: opacity 1.4s, transform 1.4s, -webkit-transform 1.4s; }
  .fadein-slidedown.is-show {
    -webkit-animation: view-slidedown 1s ease both;
    animation: view-slidedown 1s ease both;
    opacity: 1; }

@-webkit-keyframes view-slidedown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -45px);
    transform: translate(0, -45px); }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@keyframes view-slidedown {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -45px);
    transform: translate(0, -45px); }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }
