@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  letter-spacing: 0.05em;
  line-height: 160%;
}
body.fixed {
  overflow: hidden;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 7000;
}

.header,
.footer,
section {
  padding: 0 24px;
}
.header > .container,
.footer > .container,
section > .container {
  width: 100%;
  margin: 0 auto;
}

section > .container {
  max-width: 960px;
}

.cover.active {
  background-color: rgba(0, 0, 0, 0.08);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 97;
}

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

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  position: fixed;
  top: 50px;
  max-width: 1320px;
  margin: 0 auto;
}
.header > .container {
  max-width: 64px;
  position: absolute;
  top: 0px;
  left: 60px;
}
@media screen and (max-width: 1100px) {
  .header > .container {
    left: 24px;
  }
}
.header > .container > .left > .link > .logo {
  width: 64px;
  height: 60px;
}
.header > .right {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1320px) {
  .header > .right {
    right: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .header > .right {
    right: 24px;
  }
}
.header > .right > .pages {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header > .right > .pages > .page > .link {
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #000000;
  font-size: 14px;
  letter-spacing: 1em;
  line-height: 120%;
  padding: 0 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header > .right > .pages > .page > .link:hover {
  opacity: 0.5;
}
.header > .right > .pages > .page > .link:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  background-color: #808080;
  width: 1px;
}
.header > .right > .pages > .page > .link.english {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  letter-spacing: 0.2em;
}
.header > .right > .pages > .page > .link.english:before {
  top: 50%;
  left: -28px;
  width: 20px;
}
.header > .right > .languages {
  margin-top: 20px;
}
.header > .right > .languages.japanese {
  text-align: right;
}
.header > .right > .languages > .language > .link {
  position: relative;
  color: #000000;
  font-size: 14px;
  padding: 0 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header > .right > .languages > .language > .link.current {
  color: #818181;
}
.header > .right > .languages > .language > .link.current:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -28px;
  background-color: #808080;
  width: 20px;
  height: 1px;
}
.header > .bars {
  height: 8px;
  width: 24px;
  z-index: 9999999999;
  position: fixed;
  right: 24px;
  top: 24px;
}
.header > .bars > .bar {
  background: #000000;
  display: block;
  height: 1px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
}
.header > .bars > .bar:first-child.active {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header > .bars > .bar:last-child {
  bottom: 0;
}
.header > .bars > .bar:last-child.active {
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header > .sp-menu {
  position: fixed;
  top: 0;
  right: -100%;
  background-color: #FFFFFF;
  height: 100%;
  width: 187px;
  z-index: 98;
  padding: 109px 24px 24px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.header > .sp-menu > .container {
  width: 100%;
}
.header > .sp-menu > .container > .pages > .page {
  margin-bottom: 48px;
  text-align: right;
}
.header > .sp-menu > .container > .pages > .page > .link {
  position: relative;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.52;
}
.header > .sp-menu > .container > .pages > .page > .link:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  background-color: #808080;
  height: 1px;
}
.header > .sp-menu > .container > .pages > .page > .link.page-top:hover:before {
  right: 66px;
  width: 91px;
}
.header > .sp-menu > .container > .pages > .page > .link.page-company:hover:before {
  right: 77px;
  width: 77px;
}
.header > .sp-menu > .container > .pages > .page > .link.page-philosophy:hover:before {
  right: 105px;
  width: 47px;
}
.header > .sp-menu > .container > .pages > .page > .link.page-recruit:hover:before {
  right: 75px;
  width: 77px;
}
.header > .sp-menu > .container > .pages > .page > .link.page-blog:hover:before {
  right: 61px;
  width: 93px;
}
.header > .sp-menu > .container > .pages > .page > .link.page-contact:hover:before {
  right: 104px;
  width: 47px;
}
.header > .sp-menu > .container > .languages > .language {
  text-align: right;
  margin-bottom: 8px;
}
.header > .sp-menu > .container > .languages > .language > .link {
  position: relative;
  color: #000000;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header > .sp-menu > .container > .languages > .language > .link.current {
  color: #818181;
}
.header > .sp-menu > .container > .languages > .language > .link.current:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -28px;
  background-color: #808080;
  width: 20px;
  height: 1px;
}
.header > .sp-menu.active {
  right: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media,
  _:future,
  :root .header .right .pages .page {
    padding: 0 7px;
  }
}
@-moz-document url-prefix() {
  /* ここに書く */
  .header > .right > .pages > .page {
    width: 33px;
  }
}
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  background-color: #F5F5F5;
  padding: 28px 24px 16px;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 30px 24px 18px;
  }
}
.footer > .container > .socials {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4px;
}
.footer > .container > .socials > .social > .link {
  padding: 4px;
}
.footer > .container > .socials > .social > .link > .icon {
  width: 15px;
  height: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer > .container > .socials > .social > .link > .icon.twitter {
  width: 18px;
}
.footer > .container > .socials > .social > .link:hover > .icon {
  opacity: 0.5;
}
.footer > .container > .page,
.footer > .container > .copyright {
  display: block;
  color: #808080;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .footer > .container > .page,
  .footer > .container > .copyright {
    font-size: 10px;
  }
}
.footer > .container > .page {
  margin-bottom: 26px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 480px) {
  .footer > .container > .page {
    margin-bottom: 28px;
  }
}
.footer > .container > .page:hover {
  opacity: 0.5;
}

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

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.post {
  max-width: 300px;
  width: 100%;
  margin-right: 24px;
  margin-bottom: 80px;
}
.post > .page > .thumbnail {
  width: 100%;
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 14px;
}
.post > .page > .date,
.post > .page > .tags > .tag {
  color: #808080;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-right: 8px;
}
.post > .page > .date {
  font-size: 14px;
}
.post > .page > .tags {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post > .page > .tags > .tag {
  font-size: 12px;
}
.post > .page > .title,
.post > .page > .text {
  color: #000000;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 8px;
}
.post > .page > .text {
  font-size: 12px;
}

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

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.part-pagination > .link {
  position: relative;
  font-size: 20px;
}
.part-pagination > .link:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 1px;
  border-radius: 10px;
  width: 0;
  height: 0;
}
.part-pagination > .link.active {
  color: #000000;
}
.part-pagination > .link.active:before {
  width: 11px;
  height: 2px;
}
.part-pagination > .link > .icon {
  fill: none;
  width: 20px;
  height: 20px;
  margin-top: 7px;
}
.part-pagination.prev > .link > .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.part-post_nav {
  background-color: yellow;
}

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

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする

例：
color: $color-font-white;
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.svgs {
  display: none;
}

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

.bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 897px) {
  .is-sp {
    display: block;
  }
}

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

@media screen and (max-width: 897px) {
  .is-pc {
    display: none;
  }
}

.english {
  letter-spacing: 0.2em;
}

h1,
h2,
.page-title {
  font-weight: 400;
}

@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 70px, 0);
            transform: translate3d(0, 70px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 70px, 0);
            transform: translate3d(0, 70px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.fade {
  opacity: 0;
}
.fade.fade-up {
  -webkit-animation: fade-up 1s linear 0.5s forwards;
          animation: fade-up 1s linear 0.5s forwards;
}

.fade-delay {
  opacity: 0;
}
.fade-delay.fade-up {
  -webkit-animation: fade-up 1.2s cubic-bezier(0.27, 0.75, 0.69, 0.95) 0.8s forwards;
          animation: fade-up 1.2s cubic-bezier(0.27, 0.75, 0.69, 0.95) 0.8s forwards;
}

.fade-fast {
  opacity: 0;
}
.fade-fast.fade-up {
  -webkit-animation: fade-up 1.2s cubic-bezier(0.27, 0.75, 0.69, 0.95) 0.5s forwards;
          animation: fade-up 1.2s cubic-bezier(0.27, 0.75, 0.69, 0.95) 0.5s forwards;
}