@charset "UTF-8";
/*---------------------------------------
 * マウスカーソル
---------------------------------------*/
.cursor,
.follower {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .cursor,
  .follower {
    display: none !important;
  }
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: #000;
  z-index: 1001;
}

.follower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(204, 204, 204, 0.5);
  z-index: 1000;
  -webkit-transition: -webkit-transform ease .1s;
  transition: -webkit-transform ease .1s;
  transition: transform ease .1s;
  transition: transform ease .1s, -webkit-transform ease .1s;
  text-align: center;
}

.follower span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.follower.is-active {
  -webkit-transform: scale(2);
          transform: scale(2);
}

/*---------------------------------------
 * 共通部分
---------------------------------------*/
html {
  cursor: none;
}

@media screen and (max-width: 768px) {
  html {
    cursor: default;
  }
}

html a:hover {
  cursor: none;
}

@media screen and (max-width: 768px) {
  html a:hover {
    cursor: default;
  }
}

body {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.stop {
  overflow: hidden !important;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  padding: 50px 0 0;
}

@media screen and (max-width: 768px) {
  header {
    padding: 20px 0 0;
  }
}

header .inner {
  width: calc(100% - 100px);
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  header .inner {
    width: calc(100% - 40px);
  }
}

header .inner .logo {
  width: 127px;
}

@media screen and (max-width: 768px) {
  header .inner .logo {
    width: 104px;
  }
}

header .inner .menus {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Animation*/
}

@media screen and (max-width: 768px) {
  header .inner .menus {
    position: fixed;
    top: inherit;
    bottom: 20px;
    right: 20px;
  }
}

header .inner .menus .project-btn {
  width: 24px;
  height: 24px;
  padding: 4px 3px;
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  header .inner .menus .project-btn {
    width: 18px;
    height: 18px;
    padding: 15px;
    background: #000000;
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  header .inner .menus .project-btn.on {
    background: #FFFFFF;
  }
}

header .inner .menus .project-btn.on .project-trigger span {
  background: #FFFFFF;
}

@media screen and (max-width: 768px) {
  header .inner .menus .project-btn.on .project-trigger span {
    background: #000000;
  }
}

header .inner .menus .project-btn img.pc {
  display: inline !important;
}

@media screen and (max-width: 768px) {
  header .inner .menus .project-btn img.pc {
    display: none !important;
  }
}

header .inner .menus .project-btn img.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  header .inner .menus .project-btn img.sp {
    display: inline !important;
  }
}

header .inner .menus .project-btn .project-trigger {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

header .inner .menus .project-btn .project-trigger span {
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 1px;
  background: #000000;
}

@media screen and (max-width: 768px) {
  header .inner .menus .project-btn .project-trigger span {
    width: 4px;
    height: 4px;
    margin: 0 1px;
    background: #FFFFFF;
  }
}

header .inner .menus .menu-btn {
  width: 30px;
  height: 20px;
  padding: 6px 4px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  header .inner .menus .menu-btn {
    width: 14px;
    height: 10px;
    padding: 19px 17px;
    background: #000000;
    margin-left: 0px;
    border-left: 1px solid #666666;
  }
}

@media screen and (max-width: 768px) {
  header .inner .menus .menu-btn.on {
    background: #FFFFFF;
  }
}

@media screen and (max-width: 768px) {
  header .inner .menus .menu-btn.on .menu-trigger span {
    background: #000000;
  }
}

header .inner .menus .menu-trigger,
header .inner .menus .menu-trigger span {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header .inner .menus .menu-trigger {
  position: relative;
  width: 30px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  header .inner .menus .menu-trigger {
    width: 14px;
    height: 10px;
  }
}

header .inner .menus .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000000;
}

@media screen and (max-width: 768px) {
  header .inner .menus .menu-trigger span {
    height: 2px;
    background-color: #FFFFFF;
  }
}

header .inner .menus .menu-trigger.active span {
  background-color: #FFFFFF;
}

header .inner .menus .menu-trigger span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(0) rotate(0);
          transform: translateY(0) rotate(0);
}

header .inner .menus .menu-trigger span:nth-of-type(2) {
  top: 8px;
}

@media screen and (max-width: 768px) {
  header .inner .menus .menu-trigger span:nth-of-type(2) {
    top: 4px;
  }
}

header .inner .menus .menu-trigger span:nth-of-type(3) {
  bottom: 0;
  -webkit-transform: translateY(0) rotate(0);
          transform: translateY(0) rotate(0);
}

header .inner .menus .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}

header .inner .menus .menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

header .inner .menus .menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}

header .inner .head-nav {
  position: absolute;
  top: 3px;
  right: 0;
  font-weight: 400;
}

header .inner .head-nav span {
  display: inline-block;
}

header .inner .head-nav span.contact {
  margin-left: 1em;
}

header .inner .head-nav span a.on {
  font-weight: 700;
}

header.open .head-nav {
  color: #FFFFFF;
}

.menu-wrap {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.menu-wrap .box {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-wrap .box .lang-change-block {
  width: 32%;
  background: #FFFFFF;
  position: relative;
}

@media screen and (max-width: 768px) {
  .menu-wrap .box .lang-change-block {
    display: none;
  }
}

.menu-wrap .box .lang-change-block p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 1px;
}

.menu-wrap .box .lang-change-block p a.on {
  font-weight: 700;
}

.menu-wrap .box .menu-index-block {
  width: 68%;
  background: #4d4c4c;
  color: #FFFFFF;
  position: relative;
}

@media screen and (max-width: 768px) {
  .menu-wrap .box .menu-index-block {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: scroll;
  }
}

.menu-wrap .box .menu-index-block .item {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .menu-wrap .box .menu-index-block .item {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}

.menu-wrap .box .menu-index-block .item .flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .menu-wrap .box .menu-index-block .item .flex-item {
    display: block;
    padding: 85px 0 0 62px;
    margin-bottom: 35px;
  }
}

.menu-wrap .box .menu-index-block .item .flex-item .left {
  margin-right: 80px;
}

.menu-wrap .box .menu-index-block .item .flex-item ul li {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .menu-wrap .box .menu-index-block .item .flex-item ul li {
    margin-bottom: 20px;
  }
}

.menu-wrap .box .menu-index-block .item .flex-item ul li a {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  display: block;
}

.menu-wrap .box .menu-index-block .item .flex-item ul li a.no-hover {
  opacity: .2;
}

@media screen and (max-width: 768px) {
  .menu-wrap .box .menu-index-block .item .flex-item ul li a.no-hover {
    opacity: 1;
  }
}

.menu-wrap .box .menu-index-block .item .flex-item ul li .en {
  font-size: 4rem;
  display: block;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .menu-wrap .box .menu-index-block .item .flex-item ul li .en {
    font-size: 2.7rem;
    margin-bottom: 7px;
  }
}

.menu-wrap .box .menu-index-block .item .flex-item ul li .ja {
  font-size: 1.4rem;
  display: block;
  color: #c9c8c8;
}

@media screen and (max-width: 768px) {
  .menu-wrap .box .menu-index-block .item .flex-item ul li .ja {
    font-size: 1.14rem;
  }
}

.menu-wrap .box .menu-index-block .item p {
  margin-bottom: 30px;
  color: #c9c8c8;
}

.menu-wrap .box .menu-index-block .item p a {
  text-decoration: underline;
}

.menu-wrap .box .menu-index-block .item p a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .menu-wrap .box .menu-index-block .item p {
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding-left: 62px;
    margin-bottom: 20px;
  }
}

.menu-wrap .box .menu-index-block .item p.credit {
  padding-top: 10px;
}

footer small {
  display: block;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 140px 0;
}

@media screen and (max-width: 768px) {
  footer small {
    padding: 50px 0;
  }
}

main {
  padding-top: 220px;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 110px;
  }
}

.top main {
  padding-top: 0;
}

#infscr-loading {
  position: relative;
}

.projects #infscr-loading {
  width: 100%;
}

#infscr-loading img {
  display: block;
  width: 40px;
  margin: 0 auto;
  position: absolute;
  top: -80px;
  left: 50%;
  margin-left: -20px;
}

@media screen and (max-width: 768px) {
  #infscr-loading img {
    top: -40px;
  }
}

.projects #infscr-loading img {
  top: 0;
}

#infscr-loading .load-end {
  width: 100%;
  position: absolute;
  top: -65px;
  left: 0;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #infscr-loading .load-end {
    top: -26px;
    font-size: 1.0rem;
  }
}

.projects #infscr-loading .load-end {
  top: 14px;
}

body {
  -webkit-transition: margin-left .4s ease;
  transition: margin-left .4s ease;
  margin-left: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

body.fadeout::after {
  opacity: 1;
}

body.fadeout {
  margin-left: 1%;
}

/*---------------------------------------
 * TOPページ
---------------------------------------*/
.top header {
  opacity: 0;
}

.top .opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 1000;
}

.top .opening .obj {
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: #434543;
}

.top .opening .obj img {
  opacity: 0;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 160px;
  -webkit-transition: top 1s;
  transition: top 1s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.top .opening .obj img.start {
  width: 130px;
  opacity: 1;
  top: 50%;
}

@-webkit-keyframes passing-bar {
  0% {
    left: 0;
    right: auto;
    width: 0;
  }
  50% {
    left: 0;
    right: auto;
    width: 100%;
  }
  51% {
    left: auto;
    right: 0;
    width: 100%;
  }
  100% {
    left: auto;
    right: 0;
    width: 0;
  }
}

@keyframes passing-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}

@-webkit-keyframes passing-txt {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes passing-txt {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.top .opening .passing {
  width: 100%;
  height: 100%;
}

.top .opening .passing .passing-box {
  display: block;
  text-align: center;
}

.top .opening .passing .passing-bar {
  position: relative;
  display: inline-block;
}

.top .opening .passing .passing-bar:before {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #fff;
}

.top .opening .passing .passing-txt {
  opacity: 1;
}

.top .opening .passing.move .passing-bar:before {
  -webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
  animation: passing-bar 1s ease 0s 1 normal forwards;
}

.top .opening .passing.move .passing-txt {
  -webkit-animation: passing-txt 0s ease 0.5s 1 normal forwards;
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

.top .projects-sec {
  position: relative;
  left: -0.2%;
  opacity: 0;
}

.top .projects-sec #wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.top .projects-sec #contentContainer {
  width: 100%;
}

.top .projects-sec #contentContainer ul,
.top .projects-sec #contentContainer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top .projects-sec #columnContainer {
  position: relative;
  top: 0;
  left: 0;
}

.top .projects-sec #columnContainer .column {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .top .projects-sec #columnContainer .column {
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .top .projects-sec .item-wrap {
    position: relative;
  }
}

.top .projects-sec .box {
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box {
    display: block;
    height: auto;
    padding-bottom: 80vw;
    overflow: auto;
  }
}

.top .projects-sec .box .item {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .item {
    height: auto;
    margin: 0 auto;
    padding: 170px 0 0;
  }
}

.top .projects-sec .box .item .title {
  font-weight: 400;
  position: fixed;
  top: 50.3%;
  left: 13.1771%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s, top 0.3s;
  transition: opacity 0.3s, top 0.3s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .item .title {
    top: 140px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.top .projects-sec .box .item .title a {
  display: block;
}

.top .projects-sec .box .item .title h2 {
  font-size: 6.36rem;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .item .title h2 {
    font-size: 3.1rem;
    letter-spacing: 3px;
  }
}

.top .projects-sec .box .item .title .corporate {
  color: #888888;
  font-size: 2.2rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .item .title .corporate {
    font-size: 1.1rem;
  }
}

.top .projects-sec .box .item.current .title {
  opacity: 1;
  top: 50%;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .item.current .title {
    top: 120px;
  }
}

.top .projects-sec .box .item figure {
  z-index: 0;
}

.top .projects-sec .box .item figure img {
  height: 100%;
  width: auto;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .item figure img {
    width: 100%;
    height: auto;
  }
}

.top .projects-sec .box .pt1 figure.main {
  display: block;
  width: 70vh;
  height: calc(100% - 100px);
  position: absolute;
  top: 50px;
  right: 15%;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt1 figure.main {
    position: static;
    width: calc(100% - 125px);
    height: auto;
    margin: 0 auto;
  }
}

.top .projects-sec .box .pt1 figure.main img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  max-width: inherit;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt1 figure.main img {
    position: static;
    width: 100%;
    height: auto;
    min-width: inherit;
    min-height: inherit;
    -webkit-transform: none;
            transform: none;
  }
}

.top .projects-sec .box .pt2 figure.main {
  height: 60vh;
  width: 79.904vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 15%;
  z-index: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt2 figure.main {
    position: static;
    width: calc(100% - 125px);
    height: auto;
    margin: 0 auto;
    -webkit-transform: none;
            transform: none;
  }
}

.top .projects-sec .box .pt2 figure.main img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  max-width: inherit;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt2 figure.main img {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}

.top .projects-sec .box .pt2 figure.sub {
  height: 26%;
  width: 42.078vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  bottom: 10%;
  right: 8%;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt2 figure.sub {
    position: static;
    width: 32.8vw;
    height: auto;
    margin-top: -40px;
    margin-left: 59.333vw;
  }
}

.top .projects-sec .box .pt2 figure.sub img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  max-width: inherit;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt2 figure.sub img {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}

.top .projects-sec .box .pt3 figure.main {
  height: 100%;
  width: 80.469vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 10%;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt3 figure.main {
    position: static;
    width: 62vw;
    height: auto;
    margin-left: 60px;
  }
}

.top .projects-sec .box .pt3 figure.main img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 100%;
  max-width: inherit;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt3 figure.main img {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: auto;
  }
}

.top .projects-sec .box .pt3 figure.sub {
  height: 40%;
  width: 32.267vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  bottom: 0;
  right: 1%;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt3 figure.sub {
    position: absolute;
    width: 26.667vw;
    height: auto;
    bottom: 0;
    right: 30px;
  }
}

.top .projects-sec .box .pt3 figure.sub img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 100%;
  max-width: inherit;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt3 figure.sub img {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: auto;
  }
}

.top .projects-sec .box .pt4 figure.main {
  height: calc(100% - 214px);
  width: 82vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 107px;
  right: 20%;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt4 figure.main {
    position: static;
    width: calc(100% - 120px);
    margin: 0 auto;
  }
}

.top .projects-sec .box .pt4 figure.main img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 100%;
  max-width: inherit;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: inherit;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt4 figure.main img {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: auto;
  }
}

.top .projects-sec .box .pt5 figure.main {
  height: calc(100% - 120px);
  width: 71.8vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 60px;
  right: 28%;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt5 figure.main {
    position: static;
    width: 49.333vw;
    margin-left: 60px;
  }
}

.top .projects-sec .box .pt5 figure.main img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 100%;
  max-width: inherit;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: inherit;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt5 figure.main img {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: auto;
  }
}

.top .projects-sec .box .pt5 figure.sub {
  height: 40%;
  width: 39.999vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  bottom: 0;
  right: 8%;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt5 figure.sub {
    position: static;
    width: 34.667vw;
    margin-left: 50%;
    margin-top: -28vw;
  }
}

.top .projects-sec .box .pt5 figure.sub img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 100%;
  max-width: inherit;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: inherit;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt5 figure.sub img {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: auto;
  }
}

.top .projects-sec .box .pt6 figure.main {
  height: calc(100% - 272px);
  width: 124vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 136px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt6 figure.main {
    position: static;
    width: calc(100% - 120px);
    margin: 0 auto;
    -webkit-transform: none;
            transform: none;
  }
}

.top .projects-sec .box .pt6 figure.main img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: 100%;
  max-width: inherit;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .top .projects-sec .box .pt6 figure.main img {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: auto;
  }
}

.top .counter {
  opacity: 0;
  position: fixed;
  bottom: 50px;
  left: 50px;
  height: 14px;
  line-height: 14px;
}

@media screen and (max-width: 768px) {
  .top .counter {
    left: inherit;
    right: 0px;
    bottom: 50%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center center 0;
            transform-origin: center center 0;
  }
}

.top .count {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
}

.top .count a {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: default;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .top .count a.current {
    opacity: 1;
  }
}

.top .count .current a {
  opacity: 1;
}

.top .deco {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 1px;
  background: #000000;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .top .deco {
    width: 20px;
    margin: 0;
  }
}

.top .total {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 14px;
  height: 14px;
}

.top .scroll-sign {
  opacity: 0;
  display: none;
}

@media screen and (max-width: 768px) {
  .top .scroll-sign {
    display: block;
  }
}

.top .scroll-sign .arrowWrap {
  position: fixed;
  left: 0;
  top: 280px;
  height: 220px;
}

.top .scroll-sign .arrowInner p {
  font-size: 1.1rem;
  text-align: end;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-top: 30px;
}

.top .scroll-sign .arrow {
  width: 1px;
  height: 80px;
  margin: 80px auto 0;
  background-color: #eee;
  position: relative;
  overflow: hidden;
}

.top .scroll-sign .arrow::before {
  content: '';
  width: 1px;
  height: 80px;
  margin: 0 auto;
  background-color: #000;
  position: absolute;
  top: -80px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 80px, 0);
    transform: translate3d(-50%, 80px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 80px, 0);
    transform: translate3d(-50%, 80px, 0);
  }
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 80px, 0);
    transform: translate3d(-50%, 80px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 80px, 0);
    transform: translate3d(-50%, 80px, 0);
  }
}

.top .pc-lang-change {
  opacity: 0;
  position: fixed;
  right: 50px;
  bottom: 50px;
  letter-spacing: 3px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .top .pc-lang-change {
    display: none;
  }
}

.top .pc-lang-change a {
  display: inline-block;
}

.top .pc-lang-change a.on {
  font-weight: 700;
}

.top .pc-lang-change .contact {
  padding-left: 20px;
}

.top footer {
  display: none;
}

/****************/
/*---------------------------------------
 * ABOUTページ
---------------------------------------*/
.about .pagename-sec {
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .about .pagename-sec {
    margin-bottom: 45px;
  }
}

.about .pagename-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.about .pagename-sec .inner .en {
  display: block;
  font-size: 3.6rem;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .about .pagename-sec .inner .en {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}

.about .pagename-sec .inner .ja {
  font-size: 1.4rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .about .pagename-sec .inner .ja {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}

.about .representative-sec {
  margin-bottom: 190px;
}

@media screen and (max-width: 768px) {
  .about .representative-sec {
    margin-bottom: 70px;
  }
}

.about .representative-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.about .representative-sec .inner figure {
  margin-bottom: 65px;
}

@media screen and (max-width: 768px) {
  .about .representative-sec .inner figure {
    margin-bottom: 32px;
  }
}

.about .representative-sec .inner h3 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .about .representative-sec .inner h3 {
    font-size: 2rem;
    margin-bottom: 17px;
  }
}

.about .representative-sec .inner h3 span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #888888;
}

.about .representative-sec .inner .prof {
  letter-spacing: 2px;
  line-height: 2;
  margin-bottom: 45px;
}

.about .representative-sec .inner .history dl {
  line-height: 2;
  letter-spacing: 2px;
  margin-bottom: 1em;
}

.about .representative-sec .inner .history dl dt {
  font-size: 1.2rem;
}

.about .representative-sec .inner .history dl dd {
  font-size: 1.4rem;
}

.about .studio-sec {
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .about .studio-sec {
    margin-bottom: 0px;
  }
}

.about .studio-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.about .studio-sec .inner h3 {
  letter-spacing: 2px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .about .studio-sec .inner h3 {
    margin-bottom: 36px;
  }
}

.about .studio-sec .inner h3 .en {
  font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
  .about .studio-sec .inner h3 .en {
    font-size: 1.8rem;
  }
}

.about .studio-sec .inner h3 .ja {
  font-size: 1.2rem;
}

.about .studio-sec .inner dl {
  padding: 35px 0;
  line-height: 2;
  margin-bottom: -1px;
  border: 1px solid #dddddd;
  border-left: 0;
  border-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .about .studio-sec .inner dl {
    display: block;
    padding: 22px 0;
  }
}

.about .studio-sec .inner dl dt {
  width: 18.18%;
  max-width: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .about .studio-sec .inner dl dt {
    width: 100%;
    padding-right: 40px;
  }
}

.about .studio-sec .inner dl dd {
  width: 81.81%;
  max-width: 900px;
  padding-left: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .about .studio-sec .inner dl dd {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.about .studio-sec .inner dl dd a {
  color: #bb0000;
  border-bottom: 1px solid #daabaa;
  display: inline;
}

.about .studio-sec .inner dl dd a:hover {
  border-bottom: none;
}

.about .studio-sec .inner dl.yagou .en {
  font-size: 2.2rem;
  display: block;
  line-height: 1.6;
}

.about .studio-sec .inner dl.yagou .ja {
  display: block;
}

.about .access-sec {
  padding-top: 190px;
  margin-bottom: 190px;
}

@media screen and (max-width: 768px) {
  .about .access-sec {
    padding-top: 70px;
    margin-bottom: 70px;
  }
}

.about .access-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.about .access-sec .inner h3 {
  letter-spacing: 2px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .about .access-sec .inner h3 {
    margin-bottom: 36px;
  }
}

.about .access-sec .inner h3 .en {
  font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
  .about .access-sec .inner h3 .en {
    font-size: 1.8rem;
  }
}

.about .access-sec .inner h3 .ja {
  font-size: 1.2rem;
}

.about .access-sec .inner figure {
  margin-bottom: 45px;
}

.about .access-sec .inner .box {
  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) {
  .about .access-sec .inner .box {
    display: block;
  }
}

.about .access-sec .inner .box .text {
  width: 45.45%;
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  .about .access-sec .inner .box .text {
    width: 100%;
    margin-bottom: 40px;
  }
}

.about .access-sec .inner .box .text dl {
  padding: 25px 0;
  line-height: 2;
  margin-bottom: -1px;
  border: 1px solid #dddddd;
  border-left: 0;
  border-right: 0;
}

@media screen and (max-width: 768px) {
  .about .access-sec .inner .box .text dl {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.about .access-sec .inner .box .map {
  width: 45.45%;
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  .about .access-sec .inner .box .map {
    width: 100%;
  }
}

.about .access-sec .inner .box .map iframe {
  width: 100%;
  height: calc(100% - 2.5em);
}

@media screen and (max-width: 768px) {
  .about .access-sec .inner .box .map iframe {
    height: 53.333vw;
  }
}

.about .access-sec .inner .box .map p {
  padding-top: 1.27em;
  letter-spacing: 1px;
}

.about .access-sec .inner .box .map p a {
  color: #bb0000;
  border-bottom: 1px solid #daabaa;
  display: inline;
}

.about .access-sec .inner .box .map p a:hover {
  border-bottom: none;
}

.about .access-sec .inner .box .map p a .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 768px) {
  .about .access-sec .inner .box .map p a {
    padding-top: 1em;
  }
}

.about .recruit-sec {
  margin-bottom: 190px;
}

@media screen and (max-width: 768px) {
  .about .recruit-sec {
    margin-bottom: 70px;
  }
}

.about .recruit-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.about .recruit-sec .inner h3 {
  letter-spacing: 2px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .about .recruit-sec .inner h3 {
    margin-bottom: 36px;
  }
}

.about .recruit-sec .inner h3 .en {
  font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
  .about .recruit-sec .inner h3 .en {
    font-size: 1.8rem;
  }
}

.about .recruit-sec .inner h3 .ja {
  font-size: 1.2rem;
}

.about .recruit-sec .inner dl {
  padding: 35px 0;
  line-height: 2;
  margin-bottom: -1px;
  border: 1px solid #dddddd;
  border-left: 0;
  border-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .about .recruit-sec .inner dl {
    display: block;
  }
}

.about .recruit-sec .inner dl dt {
  width: 18.18%;
  max-width: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .about .recruit-sec .inner dl dt {
    width: 100%;
    padding-right: 40px;
  }
}

.about .recruit-sec .inner dl dd {
  width: 81.81%;
  max-width: 900px;
  padding-left: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .about .recruit-sec .inner dl dd {
    width: 100%;
    padding-left: 0px;
    padding-right: 40px;
  }
}

.about .recruit-sec .inner dl dd a {
  color: #bb0000;
  border-bottom: 1px solid #daabaa;
  display: inline;
}

.about .recruit-sec .inner dl dd a:hover {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .about .slide-sec {
    margin-bottom: 90px;
  }
}

.about .slide-sec h3 {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .about .slide-sec h3 {
    margin-bottom: 36px;
  }
}

.about .slide-sec h3 .en {
  font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
  .about .slide-sec h3 .en {
    font-size: 1.8rem;
  }
}

.about .slide-sec h3 .ja {
  font-size: 1.2rem;
}

.about .slide-sec .slides .slide {
  width: 500px;
}

/*---------------------------------------
 * NEWSページ
---------------------------------------*/
.news .pagename-sec {
  height: 77px;
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .news .pagename-sec {
    height: auto;
    margin-bottom: 45px;
  }
}

.news .pagename-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.news .pagename-sec .inner .floating {
  position: fixed;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .news .pagename-sec .inner .floating {
    position: static;
  }
}

.news .pagename-sec .inner .en {
  display: block;
  font-size: 3.6rem;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .news .pagename-sec .inner .en {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}

.news .pagename-sec .inner .ja {
  font-size: 1.4rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .news .pagename-sec .inner .ja {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}

.news .articles-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .news .articles-sec .inner .box {
    display: block;
    position: relative;
  }
}

.news .articles-sec .inner .box aside {
  width: 27.27%;
  max-width: 300px;
  position: fixed;
}

@media screen and (max-width: 768px) {
  .news .articles-sec .inner .box aside {
    max-width: 80px;
    position: absolute;
    top: -100px;
    right: 0px;
  }
}

.news .articles-sec .inner .box aside .cp_ipselect {
  overflow: hidden;
  width: 150px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .news .articles-sec .inner .box aside .cp_ipselect {
    width: 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.news .articles-sec .inner .box aside .cp_ipselect select {
  width: 100%;
  border: none;
  background: #eeeeee;
  padding: 10px;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.news .articles-sec .inner .box aside .cp_ipselect select::-ms-expand {
  display: none;
}

.news .articles-sec .inner .box aside .cp_ipselect.cp_sl04 {
  position: relative;
  border-radius: 2px;
  border: none;
  background: #eeeeee;
}

.news .articles-sec .inner .box aside .cp_ipselect.cp_sl04::before {
  position: absolute;
  top: 50%;
  right: 0.8em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000000;
  pointer-events: none;
}

.news .articles-sec .inner .box aside .cp_ipselect.cp_sl04 select {
  padding: 8px 38px 8px 8px;
  color: #000000;
}

.news .articles-sec .inner .box .main-body {
  width: 68.18%;
  margin-left: 31.82%;
}

@media screen and (max-width: 768px) {
  .news .articles-sec .inner .box .main-body {
    width: 100%;
    margin-left: 0;
  }
}

.news .articles-sec .inner .box .main-body .article {
  margin-bottom: 130px;
}

@media screen and (max-width: 768px) {
  .news .articles-sec .inner .box .main-body .article {
    margin-bottom: 65px;
  }
}

.news .articles-sec .inner .box .main-body .article .pub-date {
  font-size: 1rem;
  color: #888888;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .news .articles-sec .inner .box .main-body .article .pub-date {
    margin-bottom: 10px;
  }
}

.news .articles-sec .inner .box .main-body .article .post-title {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 25px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .news .articles-sec .inner .box .main-body .article .post-title {
    width: calc(100% + 40px);
    font-size: 2rem;
    line-height: 1.4;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .news .articles-sec .inner .box .main-body .article .post-title span {
    padding-right: 40px;
    display: inline-block;
  }
}

.news .articles-sec .inner .box .main-body .article .post {
  line-height: 2;
  letter-spacing: 1px;
}

.news .articles-sec .inner .box .main-body .article .post .column1 {
  margin: 10px 0;
}

.news .articles-sec .inner .box .main-body .article .post .column2 {
  margin: 10px 0;
  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) {
  .news .articles-sec .inner .box .main-body .article .post .column2 {
    display: block;
  }
}

.news .articles-sec .inner .box .main-body .article .post .column2 div {
  display: block;
  width: calc(50% - 5px);
}

@media screen and (max-width: 768px) {
  .news .articles-sec .inner .box .main-body .article .post .column2 div {
    width: 100%;
    margin: 10px 0;
  }
}

.news .articles-sec .inner .box .main-body .article .post .column2 div img {
  width: 100%;
}

.news .articles-sec .inner .box .main-body .article .post a {
  color: #bb0000;
  border-bottom: 1px solid #daabaa;
  display: inline;
}

.news .articles-sec .inner .box .main-body .article .post a:hover {
  border-bottom: none;
}

.news .articles-sec .inner .box .main-body .article .post li {
  list-style-type: none;
}

.news .articles-sec .inner .box .main-body .article .share {
  text-align: right;
  color: #888888;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-top: 20px;
}

.news .articles-sec .inner .box .main-body .article .share a {
  color: #bb0000;
  border-bottom: 1px solid #daabaa;
  display: inline;
  display: inline-block;
  margin-left: 10px;
}

.news .articles-sec .inner .box .main-body .article .share a:hover {
  border-bottom: none;
}

@media screen and (min-width: 769px) {
  .news .post img {
    width: inherit;
    max-width: 100%;
    height: auto;
  }
  .news .post .alignnone {
    margin: 15px 0;
    display: block;
  }
  .news .post .aligncenter {
    margin: 15px auto;
    display: block;
  }
  .news .post ul li {
    list-style: disc;
    margin-left: 1.5em;
  }
  .news .post ol li {
    list-style: decimal;
    margin-left: 1.5em;
  }
  .news .post h1 {
    font-size: 16px;
    line-height: 1.13;
    letter-spacing: 1.9px;
    margin: 10px 0 46px;
  }
  .news .post h2 {
    font-size: 15px;
    line-height: 1.13;
    letter-spacing: 1.9px;
    margin: 10px 0 46px;
  }
  .news .post h3 {
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 1.42;
    margin: 10px 0;
  }
  .news .post h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 1.42;
    margin: 10px 0;
  }
  .news .post h5 {
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 1.42;
    margin: 10px 0;
  }
  .news .post h6 {
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 1.42;
    margin: 10px 0;
  }
  .news .post li {
    list-style: disc;
    margin-left: 1em;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .news {
    /*
		.post h2, 
		.post h3, 
		.post p {
			padding: 0px 3.3%;
		}
		*/
  }
  .news .post h2 {
    font-size: 1.3rem;
    line-height: 1.6;
    letter-spacing: 0.3rem;
    margin: 10px 0 10px;
  }
  .news .post h3 {
    font-size: 1.1rem;
    letter-spacing: 0.25rem;
    line-height: 1.55;
    margin: 10px 0 10px;
  }
  .news .post p {
    margin: 0 0 10px;
  }
  .news .post img {
    /*
			margin: 0px 0 4vw -3.3%;
			width: 106.6%;
			*/
    width: 100%;
    height: auto;
  }
  .news .post .alignnone {
    margin: 15px 0;
  }
  .news .post .aligncenter {
    margin: 15px 0 15px -3.3%;
    display: block;
    width: 100%;
    max-width: none;
  }
  .news .post img.alignleft {
    width: 50%;
    margin: 0px 20px 5px 0;
    display: inline;
    float: left;
  }
  .news .post .alignright {
    width: 50%;
    margin: 0px 0 5px 20px;
    display: inline;
    float: right;
  }
  .news .post a {
    text-decoration: underline;
    color: #736357;
  }
}

/*---------------------------------------
 * PUBLICITYページ
---------------------------------------*/
.publicity .pagename-sec {
  height: 77px;
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .publicity .pagename-sec {
    height: auto;
    margin-bottom: 45px;
  }
}

.publicity .pagename-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.publicity .pagename-sec .inner .floating {
  position: fixed;
  opacity: 1;
  -webkit-transition: margin-left 0.3s ease-out, opacity 0.2s ease-out;
  transition: margin-left 0.3s ease-out, opacity 0.2s ease-out;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .publicity .pagename-sec .inner .floating {
    position: static !important;
  }
}

.publicity .pagename-sec .inner .floating.off {
  margin-left: 30px;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .publicity .pagename-sec .inner .floating.off {
    margin-left: 0;
    opacity: 1;
  }
}

.publicity .pagename-sec .inner .en {
  display: block;
  font-size: 3.6rem;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .publicity .pagename-sec .inner .en {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}

.publicity .pagename-sec .inner .ja {
  font-size: 1.4rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .publicity .pagename-sec .inner .ja {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}

.publicity .content-sec {
  margin-bottom: 130px;
}

@media screen and (max-width: 768px) {
  .publicity .content-sec {
    margin-bottom: 100px;
  }
}

.publicity .content-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 19.4123%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .publicity .content-sec .inner {
    padding-left: 0;
  }
}

.publicity .content-sec .inner .block {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 30px;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .publicity .content-sec .inner .block {
    width: calc(100% + 40px);
    margin-bottom: 50px;
  }
}

.publicity .content-sec .inner .block .year {
  font-size: 3.6rem;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .publicity .content-sec .inner .block .year {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.publicity .content-sec .inner .block .post {
  line-height: 1.8;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .publicity .content-sec .inner .block .post {
    padding-right: 40px;
  }
}

.publicity .content-sec .inner .block .post p {
  margin-bottom: 10px;
}

.publicity .content-sec .inner .block .post a {
  color: #bb0000;
  border-bottom: 1px solid #daabaa;
  display: inline;
}

.publicity .content-sec .inner .block .post a:hover {
  border-bottom: none;
}

.publicity .projectlink-sec {
  background: #ffffff;
}

.publicity .projectlink-sec .inner {
  display: block;
  padding: 150px 0;
  position: relative;
  background: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
  .publicity .projectlink-sec .inner {
    padding: 80px 0;
  }
}

.publicity .projectlink-sec .inner p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 4.2rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 500;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .publicity .projectlink-sec .inner p {
    font-size: 2.1rem;
    letter-spacing: 1px;
  }
}

.publicity .projectlink-sec .inner figure {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.publicity .projectlink-sec .inner figure .hover-obj {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0.3;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .publicity .projectlink-sec .inner figure .hover-obj {
    opacity: 1;
  }
}

.publicity .projectlink-sec .inner figure:hover .hover-obj {
  opacity: 1;
}

/*---------------------------------------
 * PROJECTSページ
---------------------------------------*/
.projects .pagename-sec {
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .projects .pagename-sec {
    margin-bottom: 45px;
  }
}

.projects .pagename-sec .inner {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.projects .pagename-sec .inner .en {
  display: block;
  font-size: 3.6rem;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .projects .pagename-sec .inner .en {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}

.projects .pagename-sec .inner .ja {
  font-size: 1.4rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .projects .pagename-sec .inner .ja {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}

.projects .content-sec .inner {
  width: calc(100% - 80px);
  max-width: 1140px;
  margin: 0 auto;
}

.projects .content-sec .inner .grid-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content {
    display: block;
  }
}

.projects .content-sec .inner .grid-content li {
  width: 29.825%;
  margin: 0 1.7541%;
  /*1.8125%*/
  margin-bottom: 3.625%;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li {
    width: 100%;
    margin: 0 0 25px;
  }
}

.projects .content-sec .inner .grid-content li:nth-of-type(4), .projects .content-sec .inner .grid-content li:nth-of-type(10n + 4), .projects .content-sec .inner .grid-content li:nth-of-type(10n) {
  width: 63.1582%;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li:nth-of-type(4), .projects .content-sec .inner .grid-content li:nth-of-type(10n + 4), .projects .content-sec .inner .grid-content li:nth-of-type(10n) {
    width: 100%;
  }
}

.projects .content-sec .inner .grid-content li:nth-of-type(4) figure,
.projects .content-sec .inner .grid-content li:nth-of-type(4) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(10n + 4) figure,
.projects .content-sec .inner .grid-content li:nth-of-type(10n + 4) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(10n) figure,
.projects .content-sec .inner .grid-content li:nth-of-type(10n) figure img {
  height: 31.113vw;
  max-height: 425px;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li:nth-of-type(4) figure,
  .projects .content-sec .inner .grid-content li:nth-of-type(4) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(10n + 4) figure,
  .projects .content-sec .inner .grid-content li:nth-of-type(10n + 4) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(10n) figure,
  .projects .content-sec .inner .grid-content li:nth-of-type(10n) figure img {
    height: auto;
    max-height: none;
  }
}

.projects .content-sec .inner .grid-content li:nth-of-type(5) figure,
.projects .content-sec .inner .grid-content li:nth-of-type(5) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(9) figure,
.projects .content-sec .inner .grid-content li:nth-of-type(9) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(10n + 5) figure,
.projects .content-sec .inner .grid-content li:nth-of-type(10n + 5) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(10n + 9) figure,
.projects .content-sec .inner .grid-content li:nth-of-type(10n + 9) figure img {
  height: 31.113vw;
  max-height: 425px;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li:nth-of-type(5) figure,
  .projects .content-sec .inner .grid-content li:nth-of-type(5) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(9) figure,
  .projects .content-sec .inner .grid-content li:nth-of-type(9) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(10n + 5) figure,
  .projects .content-sec .inner .grid-content li:nth-of-type(10n + 5) figure img, .projects .content-sec .inner .grid-content li:nth-of-type(10n + 9) figure,
  .projects .content-sec .inner .grid-content li:nth-of-type(10n + 9) figure img {
    height: auto;
    max-height: none;
  }
}

.projects .content-sec .inner .grid-content li figure,
.projects .content-sec .inner .grid-content li figure img {
  overflow: hidden;
  margin-bottom: 15px;
  height: 17.57vw;
  max-height: 240px;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li figure,
  .projects .content-sec .inner .grid-content li figure img {
    height: auto;
    max-height: none;
    margin-bottom: 10px;
  }
}

.projects .content-sec .inner .grid-content li figure div {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li figure div {
    background: none;
    background-size: 0;
  }
}

.projects .content-sec .inner .grid-content li figure div img {
  display: none;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li figure div img {
    display: inline;
    line-height: 1;
  }
}

@media screen and (min-width: 769px) {
  .projects .content-sec .inner .grid-content li figure div:hover {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    -webkit-transition: 1s all;
    transition: 1s all;
  }
}

.projects .content-sec .inner .grid-content li .caption {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li .caption {
    line-height: 1.4;
  }
}

.projects .content-sec .inner .grid-content li .caption .project-name {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li .caption .project-name {
    font-size: 1.5rem;
  }
}

.projects .content-sec .inner .grid-content li .caption .corporate {
  font-size: 1.4rem;
  color: #888888;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .projects .content-sec .inner .grid-content li .caption .corporate {
    font-size: 1.1rem;
  }
}

/*---------------------------------------
 * PROJECT詳細ページ
---------------------------------------*/
.project-single main {
  padding-top: 0;
}

.project-single .infinitie-box::nth-of-type(2 + n) .cover-sec {
  display: none;
}

.project-single .cover-sec {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .project-single .cover-sec {
    overflow: hidden;
    height: 87.733vw;
    position: relative;
  }
  .project-single .cover-sec figure img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.project-single .project-data-sec {
  background: #f8f8f8;
  padding: 90px 0;
}

@media screen and (max-width: 768px) {
  .project-single .project-data-sec {
    padding: 45px 0;
  }
}

.project-single .project-data-sec .inner {
  width: calc(100% - 80px);
  max-width: 1000px;
  margin: 0 auto;
}

.project-single .project-data-sec .inner .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .project-single .project-data-sec .inner .box {
    display: block;
  }
}

.project-single .project-data-sec .inner .box .left {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .project-single .project-data-sec .inner .box .left {
    width: 100%;
    position: relative;
    margin-bottom: 60px;
  }
}

.project-single .project-data-sec .inner .box .right {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .project-single .project-data-sec .inner .box .right {
    width: 100%;
  }
}

.project-single .project-data-sec .inner .project-name {
  font-size: 3.6rem;
  letter-spacing: 2px;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .project-single .project-data-sec .inner .project-name {
    font-size: 2.6rem;
    line-height: 1.4;
    margin-bottom: 5px;
  }
}

.project-single .project-data-sec .inner .corporate {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #888888;
}

@media screen and (max-width: 768px) {
  .project-single .project-data-sec .inner .corporate {
    font-size: 1.2rem;
  }
}

.project-single .project-data-sec .inner .share {
  margin-top: 60px;
  color: #888888;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .project-single .project-data-sec .inner .share {
    position: absolute;
    top: 170px;
    right: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

.project-single .project-data-sec .inner .share a {
  color: #bb0000;
  border-bottom: 1px solid #daabaa;
  display: inline;
  display: inline-block;
  margin-left: 8px;
}

.project-single .project-data-sec .inner .share a:hover {
  border-bottom: none;
}

.project-single .project-data-sec .inner .item {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.project-single .project-data-sec .inner .item:last-of-type {
  margin-bottom: 0;
}

.project-single .project-data-sec .inner .item .komidashi {
  color: #888888;
  font-weight: 400;
}

.project-single .project-data-sec .inner .item a {
  font-weight: 400;
  color: #bb0000;
  border-bottom: 1px solid #daabaa;
  display: inline;
}

.project-single .project-data-sec .inner .item a:hover {
  border-bottom: none;
}

.project-single .article-sec {
  padding: 55px 0 65px;
}

.project-single .article-sec .inner {
  width: calc(100% - 80px);
  max-width: 1000px;
  margin: 0 auto;
}

.project-single .article-sec .inner .post {
  line-height: 2.6;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .project-single .article-sec .inner .post {
    line-height: 2;
  }
}

.project-single .article-sec .inner .post .midashi {
  font-size: 2.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .project-single .article-sec .inner .post .midashi {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
}

.project-single .article-sec .inner .post figure {
  margin: 40px 0;
}

@media screen and (max-width: 768px) {
  .project-single .article-sec .inner .post figure {
    margin-left: -40px;
    width: calc(100% + 80px);
  }
}

.project-single .next-sec {
  width: 100%;
}

.project-single .next-sec .next-img {
  position: relative;
}

.project-single .next-sec .next-img .content {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.project-single .next-sec .next-img .content .bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.project-single .next-sec .next-img .content .text {
  width: calc(100% - 40px);
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.project-single .next-sec .next-img .content .text span {
  display: block;
  line-height: 1.6;
}

.project-single .next-sec .next-img .content .text span.midashi {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .project-single .next-sec .next-img .content .text span.midashi {
    font-size: 1.1rem;
  }
}

.project-single .next-sec .next-img .content .text span.title {
  font-size: 4.8rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .project-single .next-sec .next-img .content .text span.title {
    font-size: 2.4rem;
  }
}

.project-single .next-sec .next-img .content .text span.guide {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.project-single .next-sec .next-img .content .text span.guide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
}

.project-single .next-sec .next-img .content .text span.guide::after {
  -webkit-animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  70%, 100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  35.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  70%, 100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

.project-single .next-sec .next-img .content figure {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .project-single .next-sec .next-img .content figure {
    overflow: hidden;
    height: 87.733vw;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .project-single .next-sec .next-img .content figure img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.project-single .next-sec .next-img .content .back {
  position: absolute;
  top: 20px;
  right: 100px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .project-single .next-sec .next-img .content .back {
    top: 20px;
    right: 10px;
  }
}

.project-single .next-sec .next-img .content .back a {
  vertical-align: middle;
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 30px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .project-single .next-sec .next-img .content .back a {
    font-size: 1.1rem;
    line-height: 20px;
  }
}

.project-single .next-sec .next-img .content .back a .icon {
  display: inline-block;
  width: 30px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .project-single .next-sec .next-img .content .back a .icon {
    width: 20px;
    position: relative;
    top: -1px;
    margin-left: 5px;
  }
}

.project-single .next-sec.load-complete .content .bg {
  opacity: 0;
}

.project-single .next-sec.load-complete .content .text {
  opacity: 0;
}

.project-single .next-sec.load-complete .content .back {
  display: none;
}
