@charset "UTF-8";

/*
  scssでカスタマイズしています。
  css編集するときはscssから変更するか、cssファイルを直接編集する場合は
  編集以降はcssのみ編集してください。
*/

/*---------------	リセットcss	---------------*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  font-style: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-y: scroll;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

input,
textarea,
button {
  border: none;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
}

/* ========================================
	Component(共通利用の部品。幅とか色は持たせない)
	命名規則: .c-
========================================= */

.c-container {
  width: 100%;
  max-width: 1240px;
  height: auto;
  margin: 0 auto;
  padding: 0 20PX;
}

/*----- レスポンシブ表示切り替え -----*/

.c-pc_only {
  display: block !important;
}

.c-pc_only--flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.c-sp_only {
  display: none !important;
}

.c-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 1.25rem 1.25rem 0 1.25rem;
}

.c-header__logo {
  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: 9.5rem;
  height: auto;
}

.c-header__logo svg {
  width: 100%;
}

.top .c-header__logo {
  -webkit-transition: .3s;
  transition: .3s;
  fill: #fff;
  opacity: 0;
  visibility: hidden;
}

.top .c-header__logo.js-active {
  opacity: 1;
  visibility: visible;
}

.c-header__navToggle {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 4000;
  width: 28px;
  height: 12px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.c-header__navToggle.js-colorchange {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.top .c-header__navToggle {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}

.top .c-header__navToggle.js-active {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes spGlobalNavOpen {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }

  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes spGlobalNavOpen {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }

  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@-webkit-keyframes spGlobalNavClose {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }

  100% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes spGlobalNavClose {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }

  100% {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
  }
}

.c-header__menu_container .c-header__logo {
  display: none;
}

.c-header__menu_container .c-header__logo svg {
  fill: #fff;
}

.c-header__menus {
  font-family: "Be Vietnam Pro", sans-serif;
  text-align: right;
}

.top .c-header__menus {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}

.top .c-header__menus.js-active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.c-header__menu:not(:first-child) {
  margin-top: 1.25rem;
}

.c-header__menu {
  display: block;
  line-height: 1;
}

.c-header__menu.u-icon a {
  width: 1.125rem;
  margin-left: auto;
}

.c-header__menu a {
  display: block;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 200;
  color: #fff;
  line-height: 1;
  letter-spacing: .025em;
}

.recruit .c-header__menu a,
.archive .c-header__menu a,
.single-works .c-header__menu a {
  color: #ccc;
}

.recruit .c-header__menu.u-active a,
.archive .c-header__menu.u-active a,
.single-works .c-header__menu.u-active a {
  color: #000;
}

.c-linkarea {
  position: relative;
  z-index: 2;
  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: 100%;
  height: auto;
  margin-top: -1px;
  padding: 10.625rem 0;
  background-color: #f7f7f7;
}

.c-link {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  font-size: 3.75rem;
  font-weight: 100;
  font-family: "Be Vietnam Pro", sans-serif;
  color: #000;
  line-height: 1;
  letter-spacing: .025em;
}

.c-link:hover {
  opacity: .3;
}

.c-link__icon {
  position: absolute;
  top: 50%;
  left: -1.5625rem;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  width: 2.5rem;
  height: auto;
}

.c-footer {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  padding: 14.25rem 0 0;
  color: #b2b2b2;
}

.c-footer__slider {
  padding-left: 1rem;
}

.c-footer__slider:nth-child(odd) {
  color: #fff;
}

.c-footer__slider:nth-child(even) {
  color: #89847f;
}

.c-footer__slider__text {
  font-size: 17.25rem;
  font-weight: 100;
  font-family: "Be Vietnam Pro", sans-serif;
  line-height: 1;
}

.c-footer__text {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: .05em;
}

.c-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 14.25rem;
  border-top: 1px solid #4e4e4e;
  padding: 1.375rem 0 1.5rem 0;
}

.c-footer__copyright {
  font-size: .75rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: .025em;
}

.c-footer__icon {
  width: auto;
  height: 1.25rem;
  padding: 0 10px;
  -webkit-transition: .3s;
  transition: .3s;
}

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

.c-footer__icon:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  opacity: 1;
}

.c-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
}

.c-bg__sliders {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.c-bg__slider__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.5);
  transform: translate(-50%, -50%) scale(1.5);
  width: 100%;
  height: 100%;
  -webkit-transition: 10s ease 0s;
  transition: 10s ease 0s;
}

.c-bg__slider__bg.slide1 {
  background: url(../images/common/img-bg_slider1.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.c-bg__slider__bg.slide2 {
  background: url(../images/common/img-bg_slider2.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.c-bg__slider__bg.slide3 {
  background: url(../images/common/img-bg_slider3.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.c-bg__slider__bg.slide4 {
  background: url(../images/common/img-bg_slider4.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.c-bg__slider__bg.slide5 {
  background: url(../images/common/img-bg_slider5.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.c-bg__slider__bg.slide6 {
  background: url(../images/common/img-bg_slider6.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.c-bg__slider {
  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: 100vw;
  height: 100vh;
  overflow: hidden;
}

.c-bg__slider.slick-current .c-bg__slider__bg {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

/*----- js class -----*/

.c-slideup {
  -webkit-transform: translate3d(0, 3.125rem, 0);
  transform: translate3d(0, 3.125rem, 0);
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  opacity: 0;
}

.c-slideup.js-active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.c-fadeIn,
.c-fadeIn--second,
.c-fadeIn--third,
.c-fadeIn--forth {
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  opacity: 0;
}

.c-fadeIn.js-active,
.c-fadeIn--second.js-active,
.c-fadeIn--third.js-active,
.c-fadeIn--forth.js-active {
  opacity: 1;
}

/* ========================================
	Utility(わずかな調整などを行うための便利要素)
	命名規則: .u-
========================================= */

@media screen and (min-width: 769px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .c-container {
    width: 100%;
  }

  .c-pc_only {
    display: none !important;
  }

  .c-pc_only--flex {
    display: none !important;
  }

  .c-sp_only {
    display: block !important;
  }

  .c-header {
    padding: 1.875rem 1.25rem 0;
  }

  .c-header__logo {
    width: 5.875rem;
  }

  .c-header__menu_container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    background-color: #9e958f;
    overflow: scroll;
  }

  .c-header__menu_container.js-active {
    height: 100vh;
    height: 100dvh;
    -webkit-transition: height 0s linear 0s;
    transition: height 0s linear 0s;
    -webkit-animation: spGlobalNavOpen 1s cubic-bezier(.77, 0, .175, 1) 0s 1 normal both;
    animation: spGlobalNavOpen 1s cubic-bezier(.77, 0, .175, 1) 0s 1 normal both;
  }

  .c-header__menu_container:not(.js-active) {
    height: 0;
    -webkit-transition: height 0s linear 1s;
    transition: height 0s linear 1s;
    -webkit-animation: spGlobalNavClose 1s cubic-bezier(.19, 1, .22, 1) 0s 1 normal both;
    animation: spGlobalNavClose 1s cubic-bezier(.19, 1, .22, 1) 0s 1 normal both;
  }

  .c-header__menu_container .c-header__logo {
    position: absolute;
    top: 1.875rem;
    left: 1.25rem;
    display: block;
    width: 9.8125rem;
    opacity: 1;
    visibility: visible;
  }

  .c-header__menu_container .c-header__navToggle {
    position: absolute;
    top: 1.875rem;
    right: 1.25rem;
    width: 1.25rem;
    height: auto;
    border: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }

  .c-header__menus {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: left;
  }

  .top .c-header__menus {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .top .c-header__menus.js-active {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .c-header__menu:not(:first-child) {
    margin: 2.3125rem auto 0;
  }

  .c-header__menu.u-icon a {
    width: 2rem;
    margin-right: auto;
    margin-left: 0;
  }

  .c-header__menu {
    width: 14.6875rem;
    margin: 0 auto;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    visibility: visible;
  }

  .c-header__menu.js-display {
    opacity: 1;
    visibility: visible;
  }

  .c-header__menu a {
    font-size: 2.5rem;
    font-weight: 100;
    letter-spacing: .125em;
  }

  .recruit .c-header__menu a,
  .archive .c-header__menu a,
  .single-works .c-header__menu a {
    color: #fff;
  }

  .recruit .c-header__menu.u-active a,
  .archive .c-header__menu.u-active a,
  .single-works .c-header__menu.u-active a {
    color: #fff;
  }

  .c-linkarea {
    padding: 5.375rem 0;
  }

  .c-link {
    font-size: 1.875rem;
  }

  .c-link__icon {
    left: -.8125rem;
    width: 1.25rem;
  }

  .c-footer {
    padding: 12.1875rem 0 0;
  }

  .c-footer__slider {
    padding-left: .1875rem;
  }

  .c-footer__slider__text {
    font-size: 8.625rem;
  }

  .c-footer__text {
    margin-top: 1.0625rem;
    font-size: .6875rem;
    text-align: center;
    line-height: calc(42 / 22);
  }

  .c-footer__bottom {
    margin-top: 12.1875rem;
    padding: .8125rem 0 .8125rem 0;
  }

  .c-footer__copyright {
    font-size: .625rem;
  }

  .c-footer__icon {
    height: .8125rem;
    padding: 0 6px;
  }

  .c-bg__slider__bg.slide1 {
    background: url(../images/common/img-bg_slider1_sp.jpg) 50% 50% no-repeat;
    background-size: cover;
  }

  .c-bg__slider__bg.slide2 {
    background: url(../images/common/img-bg_slider2_sp.jpg) 50% 50% no-repeat;
    background-size: cover;
  }

  .c-bg__slider__bg.slide3 {
    background: url(../images/common/img-bg_slider3_sp.jpg) 50% 50% no-repeat;
    background-size: cover;
  }

  .c-bg__slider__bg.slide4 {
    background: url(../images/common/img-bg_slider4_sp.jpg) 50% 50% no-repeat;
    background-size: cover;
  }

  .c-bg__slider__bg.slide5 {
    background: url(../images/common/img-bg_slider5_sp.jpg) 50% 50% no-repeat;
    background-size: cover;
  }

  .c-bg__slider__bg.slide6 {
    background: url(../images/common/img-bg_slider6_sp.jpg) 50% 50% no-repeat;
    background-size: cover;
  }
}

@media screen and (max-width: 360px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1400px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1300px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 800px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 421px) and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
}