@charset "UTF-8";
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
@-webkit-keyframes fade-in-copy {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 70px) rotate(40deg);
            transform: translate(-50%, 70px) rotate(40deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
}
@keyframes fade-in-copy {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 70px) rotate(40deg);
            transform: translate(-50%, 70px) rotate(40deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0) rotate(0deg);
            transform: translate(-50%, 0) rotate(0deg);
  }
}
@-webkit-keyframes fade-in-copy-sp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 40px);
            transform: translate(-50%, 40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
}
@keyframes fade-in-copy-sp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 40px);
            transform: translate(-50%, 40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
}
@-webkit-keyframes scroll {
  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;
  }
  36% {
    -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 scroll {
  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;
  }
  36% {
    -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%;
  }
}
@-webkit-keyframes slide-in-lead {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes slide-in-lead {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.header {
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header > .right > .pages > .page > .link.page-top:before {
  height: 40px;
}
.header > .right > .pages > .page > .link.page-top.english:before {
  height: 1px;
}
.header > .sp-menu > .container > .pages > .page > .link.page-top:before {
  right: 66px;
  width: 91px;
}
.header.show {
  opacity: 1;
}

.top-page > .section-mv {
  height: 100vh;
}
.top-page > .section-mv > .container {
  position: relative;
  width: 100%;
  height: 100%;
}
.top-page > .section-mv > .container > .contents {
  position: absolute;
  top: 58%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 480px) {
  .top-page > .section-mv > .container > .contents {
    top: 56%;
  }
}
.top-page > .section-mv > .container > .contents > .logo {
  width: 244px;
  height: 139px;
  margin-bottom: 128px;
}
@media screen and (max-width: 480px) {
  .top-page > .section-mv > .container > .contents > .logo {
    margin-bottom: 60px;
  }
}
.top-page > .section-mv > .container > .contents > .copy {
  max-width: 541px;
  width: 100%;
  margin-bottom: 134px;
}
.top-page > .section-mv > .container > .contents > .copy > .img {
  position: absolute;
  top: 62%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 540px;
  opacity: 0;
}
@media screen and (max-width: 897px) {
  .top-page > .section-mv > .container > .contents > .copy > .img {
    top: 58%;
    width: 228px;
  }
}
.top-page > .section-mv > .container > .contents > .copy > .img.fade-in.is-pc {
  -webkit-animation: fade-in-copy-sp 0.8s linear 0.2s forwards;
          animation: fade-in-copy-sp 0.8s linear 0.2s forwards;
}
.top-page > .section-mv > .container > .contents > .copy > .img.fade-in.is-sp.first {
  -webkit-animation: fade-in-copy-sp 0.8s linear 0.2s forwards;
          animation: fade-in-copy-sp 0.8s linear 0.2s forwards;
}
.top-page > .section-mv > .container > .contents > .copy > .img.fade-in.is-sp.second {
  -webkit-animation: fade-in-copy-sp 0.8s linear 0.5s forwards;
          animation: fade-in-copy-sp 0.8s linear 0.5s forwards;
}
.top-page > .section-mv > .container > .scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  background-color: #000000;
  width: 1px;
  height: 60px;
  display: inline-block;
  opacity: 0;
  -webkit-animation: scroll 2s cubic-bezier(0.3, 0.4, 0.1, 1) 0.9s infinite;
          animation: scroll 2s cubic-bezier(0.3, 0.4, 0.1, 1) 0.9s infinite;
}
.top-page > .section-mv > .container > .scroll.fade-in {
  opacity: 1;
}
.top-page > .section-lead {
  padding-top: 82px;
  margin-bottom: 174px;
}
@media screen and (max-width: 640px) {
  .top-page > .section-lead {
    padding-top: 112px;
  }
}
.top-page > .section-lead > .container {
  max-width: 446px;
}
@media screen and (max-width: 640px) {
  .top-page > .section-lead > .container {
    max-width: 327px;
  }
}
.top-page > .section-lead > .container > .title,
.top-page > .section-lead > .container > .text {
  opacity: 0;
}
.top-page > .section-lead > .container > .title.fade-in,
.top-page > .section-lead > .container > .text.fade-in {
  -webkit-animation: slide-in-lead 1.2s linear 0.5s forwards;
          animation: slide-in-lead 1.2s linear 0.5s forwards;
}
.top-page > .section-lead > .container > .title {
  max-width: 439px;
  width: 100%;
  margin-bottom: 68px;
}
@media screen and (max-width: 640px) {
  .top-page > .section-lead > .container > .title {
    max-width: 323px;
    margin: 0 auto;
    margin-bottom: 38px;
  }
}
.top-page > .section-lead > .container > .title > .img {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .top-page > .section-lead > .container > .title > .img.english {
    width: 80%;
  }
}
.top-page > .section-lead > .container > .text {
  line-height: 200%;
  margin-bottom: 48px;
}
@media screen and (max-width: 640px) {
  .top-page > .section-lead > .container > .text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .top-page > .section-lead > .container > .text > .img {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .top-page > .section-lead > .container > .text > .img.first {
    width: 101%;
  }
}
@media screen and (max-width: 480px) {
  .top-page > .section-lead > .container > .text > .img.first {
    width: 95%;
  }
}
@media screen and (max-width: 480px) {
  .top-page > .section-lead > .container > .text > .img.first.english {
    width: 89%;
  }
}
@media screen and (max-width: 640px) {
  .top-page > .section-lead > .container > .text > .img.second {
    width: 46%;
  }
}
@media screen and (max-width: 480px) {
  .top-page > .section-lead > .container > .text > .img.second {
    width: 42%;
  }
}
@media screen and (max-width: 480px) {
  .top-page > .section-lead > .container > .text > .img.second.english {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .top-page > .section-lead > .container > .text > .img.third {
    width: 89%;
  }
}
@media screen and (max-width: 480px) {
  .top-page > .section-lead > .container > .text > .img.third {
    width: 83%;
  }
}
@media screen and (max-width: 480px) {
  .top-page > .section-lead > .container > .text > .img.third.english {
    width: 98%;
  }
}
@media screen and (max-width: 640px) {
  .top-page > .section-lead > .container > .text > .img.forth {
    width: 105%;
  }
}
@media screen and (max-width: 480px) {
  .top-page > .section-lead > .container > .text > .img.forth {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .top-page > .section-lead > .container > .text > .img.forth.english {
    width: 65%;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container,
  .top-page > .section-recruit > .container,
  .top-page > .section-blog > .container {
    display: block;
  }
}
.top-page > .section-works > .container > .left,
.top-page > .section-recruit > .container > .left,
.top-page > .section-blog > .container > .left {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.7em;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .left,
  .top-page > .section-recruit > .container > .left,
  .top-page > .section-blog > .container > .left {
    font-size: 12px;
    letter-spacing: 0.5em;
  }
}
.top-page > .section-works > .container > .left.english,
.top-page > .section-recruit > .container > .left.english,
.top-page > .section-blog > .container > .left.english {
  letter-spacing: 0.2em;
}
.top-page > .section-works > .container > .left:before,
.top-page > .section-recruit > .container > .left:before,
.top-page > .section-blog > .container > .left:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  width: 240px;
  height: 1px;
  background-color: #808080;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .left:before,
  .top-page > .section-recruit > .container > .left:before,
  .top-page > .section-blog > .container > .left:before {
    width: 1px;
    height: 40px;
    top: -48px;
  }
}
.top-page > .section-works > .container > .right,
.top-page > .section-recruit > .container > .right,
.top-page > .section-blog > .container > .right {
  width: 100%;
}
.top-page > .section-works > .container > .right > .copy,
.top-page > .section-works > .container > .right > .text,
.top-page > .section-recruit > .container > .right > .copy,
.top-page > .section-recruit > .container > .right > .text,
.top-page > .section-blog > .container > .right > .copy,
.top-page > .section-blog > .container > .right > .text {
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .copy,
  .top-page > .section-works > .container > .right > .text,
  .top-page > .section-recruit > .container > .right > .copy,
  .top-page > .section-recruit > .container > .right > .text,
  .top-page > .section-blog > .container > .right > .copy,
  .top-page > .section-blog > .container > .right > .text {
    line-height: 1.52;
  }
}
.top-page > .section-works > .container > .right > .copy,
.top-page > .section-recruit > .container > .right > .copy,
.top-page > .section-blog > .container > .right > .copy {
  font-size: 24px;
  margin-top: -9px;
  margin-bottom: 24px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .copy,
  .top-page > .section-recruit > .container > .right > .copy,
  .top-page > .section-blog > .container > .right > .copy {
    font-size: 18px;
    margin-top: 0;
  }
}
.top-page > .section-works > .container > .right > .copy > .block,
.top-page > .section-recruit > .container > .right > .copy > .block,
.top-page > .section-blog > .container > .right > .copy > .block {
  display: inline-block;
}
.top-page > .section-works > .container > .right > .text,
.top-page > .section-recruit > .container > .right > .text,
.top-page > .section-blog > .container > .right > .text {
  font-size: 14px;
  margin-bottom: 80px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .text,
  .top-page > .section-recruit > .container > .right > .text,
  .top-page > .section-blog > .container > .right > .text {
    font-size: 13px;
  }
}
.top-page > .section-works > .container > .right > .link,
.top-page > .section-recruit > .container > .right > .link,
.top-page > .section-blog > .container > .right > .link {
  position: relative;
  display: block;
  color: #000000;
  width: 200px;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: right;
  margin: 0 0 0 auto;
  padding-right: 100px;
}
@media screen and (max-width: 950px) {
  .top-page > .section-works > .container > .right > .link,
  .top-page > .section-recruit > .container > .right > .link,
  .top-page > .section-blog > .container > .right > .link {
    padding-right: 110px;
    width: 210px;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .link,
  .top-page > .section-recruit > .container > .right > .link,
  .top-page > .section-blog > .container > .right > .link {
    font-size: 13px;
    line-height: 1.52;
    text-align: center;
    margin: 0 auto;
  }
}
.top-page > .section-works > .container > .right > .link:before, .top-page > .section-works > .container > .right > .link:after,
.top-page > .section-recruit > .container > .right > .link:before,
.top-page > .section-recruit > .container > .right > .link:after,
.top-page > .section-blog > .container > .right > .link:before,
.top-page > .section-blog > .container > .right > .link:after {
  content: "";
  position: absolute;
  top: 10px;
  height: 1px;
  -webkit-transition: all 0.24s ease;
  transition: all 0.24s ease;
}
@media screen and (max-width: 950px) {
  .top-page > .section-works > .container > .right > .link:before, .top-page > .section-works > .container > .right > .link:after,
  .top-page > .section-recruit > .container > .right > .link:before,
  .top-page > .section-recruit > .container > .right > .link:after,
  .top-page > .section-blog > .container > .right > .link:before,
  .top-page > .section-blog > .container > .right > .link:after {
    right: 10px;
  }
}
.top-page > .section-works > .container > .right > .link:before,
.top-page > .section-recruit > .container > .right > .link:before,
.top-page > .section-blog > .container > .right > .link:before {
  background-color: #808080;
}
.top-page > .section-works > .container > .right > .link:after,
.top-page > .section-recruit > .container > .right > .link:after,
.top-page > .section-blog > .container > .right > .link:after {
  background-color: #FFFFFF;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
.top-page > .section-works > .container > .right > .link:hover:after,
.top-page > .section-recruit > .container > .right > .link:hover:after,
.top-page > .section-blog > .container > .right > .link:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.top-page > .section-works > .container > .right > .link:hover > .icon,
.top-page > .section-recruit > .container > .right > .link:hover > .icon,
.top-page > .section-blog > .container > .right > .link:hover > .icon {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.top-page > .section-works > .container > .left,
.top-page > .section-recruit > .container > .left {
  width: 30px;
  margin-right: 90px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .left,
  .top-page > .section-recruit > .container > .left {
    width: 20px;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.top-page > .section-works > .container > .left:before,
.top-page > .section-recruit > .container > .left:before {
  content: "";
  right: 100%;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .left:before,
  .top-page > .section-recruit > .container > .left:before {
    right: 58%;
  }
}
.top-page > .section-works {
  margin-bottom: 177px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works {
    margin-bottom: 204px;
  }
}
.top-page > .section-works > .container > .right > .flex {
  margin-bottom: 72px;
}
@media screen and (max-width: 640px) {
  .top-page > .section-works > .container > .right > .flex {
    display: block;
    margin-bottom: 40px;
  }
}
.top-page > .section-works > .container > .right > .flex > .text {
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .flex > .text {
    font-size: 13px;
  }
}
@media screen and (max-width: 640px) {
  .top-page > .section-works > .container > .right > .flex > .text {
    margin-bottom: 24px;
  }
}
.top-page > .section-works > .container > .right > .flex > .img {
  width: 300px;
  margin-left: 31px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 640px) {
  .top-page > .section-works > .container > .right > .flex > .img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .top-page > .section-works > .container > .right > .flex > .img {
    width: 80%;
    margin: 0 20px;
  }
}
.top-page > .section-works > .container > .right > .small-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 11px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .small-title {
    font-size: 12px;
    line-height: 1.52;
    margin-bottom: 9px;
  }
}
.top-page > .section-works > .container > .right > .works {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .works {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (max-width: 640px) {
  .top-page > .section-works > .container > .right > .works {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% + 48px);
    -webkit-transform: translateX(-24px);
            transform: translateX(-24px);
  }
}
.top-page > .section-works > .container > .right > .works > .work {
  max-width: 390px;
  width: 100%;
}
@media screen and (max-width: 950px) {
  .top-page > .section-works > .container > .right > .works > .work {
    max-width: 365px;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .works > .work {
    max-width: 402px;
  }
}
.top-page > .section-works > .container > .right > .works > .work > .img {
  width: 100%;
  margin-bottom: 6px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .works > .work > .img {
    margin-bottom: 8px;
  }
}
.top-page > .section-works > .container > .right > .works > .work > .category,
.top-page > .section-works > .container > .right > .works > .work > .title {
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .works > .work > .category,
  .top-page > .section-works > .container > .right > .works > .work > .title {
    line-height: 1.52;
  }
}
@media screen and (max-width: 640px) {
  .top-page > .section-works > .container > .right > .works > .work > .category,
  .top-page > .section-works > .container > .right > .works > .work > .title {
    padding: 0 24px;
  }
}
@media screen and (max-width: 640px) {
  .top-page > .section-works > .container > .right > .works > .work > .category.second,
  .top-page > .section-works > .container > .right > .works > .work > .title.second {
    padding: 0 24px 0 10px;
  }
}
.top-page > .section-works > .container > .right > .works > .work > .category {
  color: #808080;
  font-size: 10px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .works > .work > .category {
    font-size: 9px;
  }
}
.top-page > .section-works > .container > .right > .works > .work > .title {
  font-size: 14px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .works > .work > .title {
    font-size: 10px;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .link {
    width: 150px;
    padding-right: 30px;
  }
}
.top-page > .section-works > .container > .right > .link:before, .top-page > .section-works > .container > .right > .link:after {
  width: 85px;
  right: 10px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-works > .container > .right > .link:before, .top-page > .section-works > .container > .right > .link:after {
    top: 9px;
    right: 12px;
    width: 35px;
  }
}
.top-page > .section-recruit {
  margin-bottom: 176px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-recruit {
    margin-bottom: 204px;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-recruit > .container > .right > .link {
    width: 170px;
    padding-right: 35px;
  }
}
.top-page > .section-recruit > .container > .right > .link:before, .top-page > .section-recruit > .container > .right > .link:after {
  right: 17px;
  width: 76px;
}
@media screen and (max-width: 950px) {
  .top-page > .section-recruit > .container > .right > .link:before, .top-page > .section-recruit > .container > .right > .link:after {
    right: 10px;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-recruit > .container > .right > .link:before, .top-page > .section-recruit > .container > .right > .link:after {
    width: 35px;
    top: 9px;
    right: 23px;
  }
}
.top-page > .section-blog {
  margin-bottom: 120px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-blog {
    margin-bottom: 80px;
  }
}
.top-page > .section-blog > .container {
  max-width: 1020px;
}
.top-page > .section-blog > .container > .left {
  width: 60px;
  margin-right: 70px;
}
@media screen and (max-width: 950px) {
  .top-page > .section-blog > .container > .left {
    width: 30px;
    margin-right: 90px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-blog > .container > .left {
    width: 20px;
  }
}
.top-page > .section-blog > .container > .left:before {
  right: 60%;
}
@media screen and (max-width: 950px) {
  .top-page > .section-blog > .container > .left:before {
    right: 100%;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-blog > .container > .left:before {
    right: 58%;
  }
}
.top-page > .section-blog > .container > .right > .copy {
  padding-left: 30px;
  margin-bottom: 48px;
}
@media screen and (max-width: 950px) {
  .top-page > .section-blog > .container > .right > .copy {
    padding-left: 0;
    margin-bottom: 24px;
  }
}
.top-page > .section-blog > .container > .right > .articles {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-page > .section-blog > .container > .right > .articles > .article {
  width: calc((100% - 180px) / 3);
  margin: 0 30px 80px;
}
@media screen and (max-width: 950px) {
  .top-page > .section-blog > .container > .right > .articles > .article {
    width: calc((100% - 80px) / 3);
    margin: 0 0 80px;
  }
}
.top-page > .section-blog > .container > .right > .articles > .article > .link > .img {
  width: 100%;
}
.top-page > .section-blog > .container > .right > .articles > .article > .link > .img > .thumbnail {
  width: 100%;
  height: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 66.7%;
}
.top-page > .section-blog > .container > .right > .articles > .article > .link > .info {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-page > .section-blog > .container > .right > .articles > .article > .link > .info > .date {
  color: #808080;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 2px;
}
.top-page > .section-blog > .container > .right > .articles > .article > .link > .info > .title {
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.top-page > .section-blog > .container > .right > .articles > .article > .link:hover > .img > .thumbnail {
  opacity: 0.5;
}
.top-page > .section-blog > .container > .right > .articles > .article > .link:hover > .info {
  opacity: 0.5;
}
.top-page > .section-blog > .container > .right > .articles.slick-slider {
  display: none !important;
}
@media screen and (max-width: 897px) {
  .top-page > .section-blog > .container > .right > .articles.slick-slider {
    display: block !important;
  }
}
.top-page > .section-blog > .container > .right > .articles.is-sp {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: 88px;
}
@media screen and (max-width: 640px) {
  .top-page > .section-blog > .container > .right > .articles.is-sp {
    max-width: calc(100% + 48px);
    width: calc(100% + 48px);
    -webkit-transform: translateX(-24px);
            transform: translateX(-24px);
  }
}
.top-page > .section-blog > .container > .right > .articles.is-sp > .slick-list > .slick-track > .article {
  padding: 0px 10px;
}
.top-page > .section-blog > .container > .right > .articles.is-sp > .slick-list > .slick-track > .article > .link > .img {
  width: 100%;
}
.top-page > .section-blog > .container > .right > .articles.is-sp > .slick-list > .slick-track > .article > .link > .img > .thumbnail {
  width: 100%;
  height: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 66.7%;
}
.top-page > .section-blog > .container > .right > .articles.is-sp > .slick-list > .slick-track > .article > .link > .info {
  margin-top: 8px;
  color: #000000;
}
.top-page > .section-blog > .container > .right > .articles.is-sp > .slick-list > .slick-track > .article > .link > .info > .date {
  color: #808080;
  font-size: 9px;
  line-height: 1.52;
  margin-bottom: 2px;
}
.top-page > .section-blog > .container > .right > .articles.is-sp > .slick-list > .slick-track > .article > .link > .info > .title {
  color: #000000;
  font-size: 10px;
  line-height: 1.52;
}
.top-page > .section-blog > .container > .right > .link {
  margin: 0 30px 0 auto;
}
@media screen and (max-width: 950px) {
  .top-page > .section-blog > .container > .right > .link {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-blog > .container > .right > .link {
    width: 160px;
    margin: 0 auto;
    padding-right: 40px;
  }
}
.top-page > .section-blog > .container > .right > .link:before, .top-page > .section-blog > .container > .right > .link:after {
  width: 85px;
  right: 10px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-blog > .container > .right > .link:before, .top-page > .section-blog > .container > .right > .link:after {
    width: 35px;
    top: 9px;
    right: 27px;
  }
}
@media screen and (max-width: 897px) {
  .top-page > .section-blog > .container > .right > .link:after:before, .top-page > .section-blog > .container > .right > .link:after:after {
    right: 29px;
  }
}
.top-page > .section-button {
  margin-bottom: 120px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-button {
    margin-bottom: 80px;
  }
}
.top-page > .section-button > .button {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 897px) {
  .top-page > .section-button > .button {
    max-width: 211px;
  }
}
.top-page > .section-button > .button > .link {
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #000000;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px 19px 20px 34px;
}
@media screen and (max-width: 897px) {
  .top-page > .section-button > .button > .link {
    font-size: 12px;
    letter-spacing: -0.05em;
    padding: 20px 17px 20px 22px;
  }
}
.top-page > .section-button > .button > .link:before, .top-page > .section-button > .button > .link:after {
  content: "";
  position: absolute;
  top: 31px;
  right: 30px;
  width: 75px;
  height: 1px;
  -webkit-transition: all 0.24s ease;
  transition: all 0.24s ease;
}
@media screen and (max-width: 897px) {
  .top-page > .section-button > .button > .link:before, .top-page > .section-button > .button > .link:after {
    top: 32px;
    width: 47px;
    right: 19px;
  }
}
.top-page > .section-button > .button > .link:before {
  background-color: #FFFFFF;
}
.top-page > .section-button > .button > .link:after {
  background-color: #FFFFFF;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
.top-page > .section-button > .button > .link:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.top-page > .section-button > .button > .link:hover:before {
  background-color: #000000;
}
.top-page > .section-button > .button > .link:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.top-page > .section-button > .button > .link:hover > .icon {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .top-page > .section-mv > .container > .contents > .copy > .img {
    height: 21px;
  }
}
@media all and (max-width: 1200px) and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .top-page > .section-mv > .container > .contents > .copy > .img {
    height: 50px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-works .container .right .flex .img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-works .container .left {
    width: 40px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-recruit .container .left {
    width: 40px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-blog > .container > .right > .articles > .article > .link > .img {
    margin-bottom: 2px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .top-page > .section-works > .container > .right > .link::before {
    top: 9px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .top-page > .section-works > .container > .right > .link::after {
    top: 9px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .top-page > .section-recruit > .container > .right > .link::before {
    top: 9px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .top-page > .section-recruit > .container > .right > .link::after {
    top: 9px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .top-page > .section-blog > .container > .right > .link::before {
    top: 9px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .top-page > .section-blog > .container > .right > .link::after {
    top: 9px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .top-page > .section-button > .button > .link {
    padding: 21px 19px 16px 34px;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header > .right > .pages > .page > .link::before {
    left: 55%;
  }
}