@charset "utf-8";


/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */

#mv {
  position: relative;
  overflow: hidden;
}
.mv_img {
  position: relative;
  z-index: 2;
}
.mv_img img {
  width: 100%;
  border-radius: 0 0 14rem 0;
}

.mv_copy {
  font-weight: bold;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  z-index: 5;
}
.mv_obi {
  position: absolute;
  width: 200%;
  bottom: 0;
  left: -50%;
  right: -50%;
  z-index: 3;
}
.mv_obi_inner {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding:0 2%;
  overflow: hidden;
}
.mv_obi_inner .mv_flowing {
  white-space: nowrap;
}
.mv_obi_inner .mv_flowing p {
  display: inline-block;
}
#mv .mv_scroll_down {
    position  : absolute;
    /*font-size : 13px;*/
    right : 5%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-weight: 700;
    z-index: 5;
}
#mv .mv_scroll_down::before {
    content : '';
    display : inline-block;
    position : absolute;
    background-color: #212121;
    right : 50%;
    bottom : 0;
    transform : translateX(-50%);
    width : 1px;
    height : 15rem;
    z-index: 1;
    animation: scroll 2s infinite;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}

@media only screen and ( max-width : 767px ) {
  #mv {
    padding-bottom: 4rem;
  }
  #mv:after {
    content: "";
    background: url(../img/bg_dot.png) no-repeat center / 100%;
    position: absolute;
    z-index: -1;
    width: 20rem;
    height: 20rem;
    left: 10%;
    bottom: 3%;
    opacity: .4;
  }
  .mv_obi_inner .mv_flowing img {
    max-width: 120rem;
    width: 120rem;
  }
  .mv_obi_inner .mv_flowing p {
    margin-right: 1rem;
  }
  #mv .mv_scroll_down {
    font-size: 1.6rem;
    bottom: 0;
    padding-bottom: 9.4rem;
    padding-right: 2em;
    right: 0;
  }
  #mv .mv_scroll_down::before {
    height: 15rem;
  }
  .mv_copy {
    position: relative;
    font-size: 2.8rem;
    padding: 3rem 2.5rem;
  }
}
@media only screen and (max-width: 767px) and (min-height: 740px) {

}
@media print, screen and ( min-width : 768px ) {
  #mv {
    background: url(../img/top/mv_bg.png) no-repeat top left / 100%;
    padding-bottom: 17vw;
  }
  .mv_img {
    width: 77.2%;
  }
  .mv_copy {
    font-size: 2.6vw;
    right: 8vw;
    top: 11vw;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
  }
  #mv .mv_obi {
    bottom: 8vw;
  }
  .mv_obi_inner .mv_flowing img {
    width: 388.4rem;
  }
  .mv_obi_inner .mv_flowing p {
    margin-right: 3.66vw;
  }
  #mv .mv_scroll_down {
    font-size: 1.4vw;
    bottom: 8vw;
    padding-bottom: 6.5vw;
    padding-right: 2em;
    right: 2%;
  }
  #mv .mv_scroll_down::before {
    height: 11.4vw;
  }
}

/* ---------------------------------------------------------------------------------------------

　   PICKUP

--------------------------------------------------------------------------------------------- */
#pickup {
  overflow: hidden;
}
/*#pickup .slick-list {
  overflow: visible;
}*/
.pickup_content {
  position: relative;
}


#pickup .slick-prev,
#pickup .slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    display: block;

    padding: 0;

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 99;
    top: auto;
}
#pickup .slick-prev:hover,
#pickup .slick-prev:focus,
#pickup .slick-next:hover,
#pickup .slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
#pickup .slick-prev:hover:before,
#pickup .slick-prev:focus:before,
#pickup .slick-next:hover:before,
#pickup .slick-next:focus:before
{
    opacity: 1;
}
#pickup .slick-prev.slick-disabled:before,
#pickup .slick-next.slick-disabled:before
{
    opacity: .25;
}

#pickup .slick-prev:before,
#pickup .slick-next:before
{
    content: "";
    opacity: .75;
    color: #577565;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    text-align: center;
}


#pickup .slick-prev:before
{
    background: url(../img/prev.svg) no-repeat center / 100%;
}

#pickup .slick-next:before
{
    background: url(../img/next.svg) no-repeat center / 100%;
}
#pickup .top-slide__item {
  background: #fff;
  border-radius: 2rem;
}
#pickup .top-slide__fig {
  position: relative;
  border-radius: 2rem 2rem 0 0;
}

#pickup .top-slide__fig .pickup-category {
  position: absolute;
  z-index: 2;
}

#pickup .pickup_date {
  text-align: right;
}
#pickup .slick-track {
  display: flex;
}
#pickup .slick-slide {
  height: auto !important;
}

@media only screen and ( max-width : 767px ) {
  .pickup_title .btn {
    display: none;
  }
  .pickup__list_txt {
    padding: 3rem 2rem;
  }
  #pickup .slick-list {
    overflow: visible;
  }
  #pickup .top-slide__item {
    margin: 0 1rem;
  }
  #pickup .top-slide__fig .pickup-category {
    top: 2rem;
    left: 2rem;
  }
  #pickup .top-slide__fig {
    height: 18rem;
  }
  .pickup_content .btn {
    margin: 4.5rem auto 0;
  }
  #pickup .slick-prev,
  #pickup .slick-next
  {
      width: 4rem;
      height: 4rem;
      top: -7rem;
  }
  #pickup .slick-prev:before,
  #pickup .slick-next:before
  {
      width: 4rem;
      height: 4rem;
  }
  #pickup .slick-prev {
      right: 5rem;
      left: auto;
  }

  #pickup .slick-next {
      right: 0;
  }
  #pickup .container {
    position: relative;
  }
  #pickup .container:before {
    content: "";
    background: url(../img/bg_dot.png) no-repeat center / 100%;
    position: absolute;
    z-index: -1;
    width: 20rem;
    height: 20rem;
    bottom: -5rem;
    left: -10rem;
    filter: blur(30px);
  }
}
@media print, screen and ( min-width : 768px ) {
  #pickup {
    margin-top: 0;
  }
  .pickup_title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6rem;
  }
  .pickup_title .heading {
    margin-bottom: 0;
  }
  .pickup_content {
    /*max-width: 90rem;*/
    padding-left: 14rem;
    margin-right: calc(50% - 50vw);
  }
  #pickup .top-slide__item {
    margin: 0 4rem;
    width: 35rem;
  }
  .pickup__list_txt {
    padding: 4.5rem 2.5rem;
  }
  #pickup .top-slide__fig {
    height: 21.2rem;
  }
  #pickup .top-slide__fig .pickup-category {
    top: 3rem;
    left: 3rem;
  }
  .pickup_content .btn {
    display: none;
  }
  #pickup .slick-prev,
  #pickup .slick-next
  {
      width: 4.8rem;
      height: 4.8rem;
      left: 0;
  }
  #pickup .slick-prev:before,
  #pickup .slick-next:before
  {
      width: 4.8rem;
      height: 4.8rem;
  }
  #pickup .slick-prev {
      bottom: 6rem;
  }

  #pickup .slick-next {
      bottom: 0;
  }
  #pickup .slick-prev,
  #pickup .slick-next {
    left: -14rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   VISION

--------------------------------------------------------------------------------------------- */
#vision,
.vision_wrapper {
  position: relative;
}

.vision_wrapper {
  position: 10;
}

#vision .container {
  position: relative;
}
#vision .container:before {
  content: "";
  background: url(../img/bg_dot.png) no-repeat center / 100%;
  position: absolute;
  z-index: -1;
  -webkit-animation:buruburu 0.1s infinite linear alternate;
  animation:buruburu 0.1s infinite linear alternate;
}
#vision .sec-lead__txt {
  font-weight: 700;
}
.vision_txt {
  line-height: 2.2em;
}
.vision_ph {
  position: relative;
}
#vision .vision_ph:before {
  content: "";
  background: url(../img/bg_dot.png) no-repeat center / 100%;
  position: absolute;
  z-index: -1;
}
.vision_ph02 {
  position: absolute;
}
.vision_ph img,
.vision_ph02 img {
  border-radius: 2rem;
}
#vision .mv_obi {
  z-index: -1;
}
@media only screen and ( max-width : 767px ) {
  #vision {
    padding-top: 20rem;
  }
  #vision .container:before {
    width: 30rem;
    height: 30rem;
    top: -10rem;
    right: -10rem;
    filter: blur(30px);
  }
  .vision_ph02 {
    display: none;
  }
  .vision_ph {
    position: absolute;
    width: 26rem;
    right: 0;
    top: -15.5rem;
    z-index: 1;
  }
  .vision_content {
    position: relative;
    z-index: 2;
  }
  #vision .sec-lead__txt {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .vision_txt {
    margin-bottom: 4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #vision {
    padding-bottom: 22rem;
  }
  .vision_content {
    padding-left: 18rem;
    width: 52%;
    margin-top: 12rem;
  }
  .vision_ph {
    width: 35%;
  }
  #vision .sec-lead__txt {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
  .vision_txt {
    margin-bottom: 6rem;
  }
  .vision_ph02 {
    top: 40rem;
    left: -22%;
    width: 30.8%;
  }
  #vision .mv_obi {
    bottom: 0;
  }
  #vision .container:before {
    width: 36rem;
    height: 36rem;
    left: -16rem;
    top: -28rem;
  }
  #vision .vision_ph:before {
    width: 65rem;
    height: 65rem;
    right: -20rem;
    bottom: -7rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   SERVICE

--------------------------------------------------------------------------------------------- */
.service_box {
  background: #fff;
  border-radius: 2rem;
}
.service_box:last-child {
  margin-bottom: 0;
}
.service_txt p {
  line-height: 2em;
}
#service .container {
  position: relative;
}
#service .container:before {
  content: "";
  background: url(../img/bg_dot.png) no-repeat center / 100%;
  position: absolute;
  z-index: -1;
}
@media only screen and ( max-width : 767px ) {
  .service_box {
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .service_img {
    margin-bottom: 2rem;
  }
  .service_txt h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  .service_txt .link {
    margin-top: 2rem;
  }
  #service .container:before {
    filter: blur(30px);
    width: 22rem;
    height: 22rem;
    left: -8rem;
    top: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  #service .heading {
    flex-direction: row-reverse;
    width: 12rem;
  }
  #service .heading-en {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  #service .heading-en:before {
    right: 0;
    left: auto;
    transform: rotate(90deg);
    top: -2rem;
  }
  #service .heading-jp {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .service_content {
    width: calc(100% - (12rem + 9rem));
  }
  .service_box {
    padding: 4.5rem;
    margin-bottom: 4rem;
  }
  .service_img {
    width: 38%;
  }
  .service_txt {
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .service_txt h3 {
    font-size: 3.6rem;
    margin-bottom: 2.5rem;
  }
  #service .container:before {
    width: 45rem;
    height: 45rem;
    left: -20rem;
    bottom: 17rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   WORKS

--------------------------------------------------------------------------------------------- */
#works {
  background: #fff;
}
#works .container {
  position: relative;
}
#works .slick-list {
  overflow: visible;
}
.works__slide {
  margin: 0 calc((100vw - 100%) / 2 * -1) 0;
  overflow: hidden;
}
#works .top-slide__item {
  height: 80vw;
  margin: 0 1rem;
  overflow: hidden;
  position: relative;
  width: 20rem;
  width: 53.3vw;
  border-radius: 2rem;
}
#works .top-slide__item .top-slide__fig {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#works .top-slide__item:hover .top-slide__fig {
  transform: scale(1.1);
}
#works .top-slide__item.slick-current .top-slide__fig {
  -webkit-filter: blur(0px);
          filter: blur(0px);
  opacity: 1;
}

#works .top-slide__item.slick-current .top-slide__fig:before,
#works .top-slide__item.slick-current .top-slide__fig:after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
}

#works .top-slide__item.slick-current .top-slide__fig:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  height: 60%;
  opacity: .85;
  width: 100%;
  z-index: 2;
}

/*#works .top-slide__item.slick-current .top-slide__fig:after {
  -webkit-animation: width 4.5s linear 0s 1 normal forwards;
          animation: width 4.5s linear 0s 1 normal forwards;
  background: #e0c844;
  height: 3px;
  width: 0;
  z-index: 3;
}*/

#works .top-slide__item.slick-current .top-slide__works--content {
  display: block;
}

#works .top-slide__item:focus {
  outline: none;
}

#works .top-slide__link {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 6;
}

#works .top-slide__fig {
  background: center / cover no-repeat;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
#pickup .top-slide__fig {
  overflow: hidden;
}
#pickup a .top-slide__fig img {
  transition:0.5s;
}
#pickup a:hover {
  opacity: 1;
}
#pickup a:hover .top-slide__fig img {
  transform:scale(1.1);
}

.top-slide__works--content {
  bottom: 0;
  color: #fff;
  display: none;
  left:0;
  line-height: 1;
  position: absolute;
  z-index: 5;
}

#works .top-slide--other {
  font-size: 1.2rem;
}
.works__lead_txt {
  font-weight: 700;
}
.works__txt {
  line-height: 2em;
}


@-webkit-keyframes width {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes width {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.top-slide__title {
  font-weight: 700;
}


@media only screen and ( max-width : 767px ) {
  #works {
    padding: 4rem 0;
  }
  .works__main {
    margin-bottom: 4rem;
  }
  .works__lead_txt {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .works__txt {
    margin-bottom: 3rem;
  }
  .top-slide__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .top-slide__works--content {
    padding: 1.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #works {
    padding: 4rem 0;
  }
  #works .container {
    padding: 0;
    min-height: 60rem;
  }
  #works .top-slide__item {
    height: 52.1vw;
    max-height: 75rem;
    max-width: 50rem;
    width: 34.7vw;
  }
  #works .slick-list {
    -webkit-transform: translateX(13.4vw) !important;
    transform: translateX(13.4vw) !important;
  }
  .noworks {
    display: flex;
    align-items: center;
    min-height: 60rem;
  }

  .works__main {
    display: flex;
    justify-content: center;
    background: #fff;
    flex-direction: column;
    height: 100%;
    left: 2rem;
    max-width: 50rem;
    position: absolute;
    z-index: 1;
    width: 35.5vw;
    top: 0;
    margin: 0 1rem;
    padding: 6rem;
  }
  .works__lead_txt {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
  .works__txt {
    margin-bottom: 6rem;
  }
  .top-slide__title {
    font-size: 2rem;
    margin-bottom: 1.4rem;
  }
  .top-slide__works--content {
    padding: 2.4rem 3rem;
  }
}

@media print, screen and ( min-width : 1440px ) {
  #works .container {
    padding: 0 2rem;
  }
  #works .slick-list {
    -webkit-transform: translateX(25.7rem) !important;
    transform: translateX(25.7rem) !important;
  }
  .works__main {
    left: 6rem;
    width: 34.7vw;
  }
}
/* ---------------------------------------------------------------------------------------------

　   RECRUIT

--------------------------------------------------------------------------------------------- */
.recruit__img img {
  border-radius: 2rem;
}
#recruit .sec-lead__txt {
  font-weight: 700;
  line-height: 2em;
}
.recruit_txt {
  line-height: 2em;
}

#recruit .container {
  position: relative;
}
#recruit .container:before,
#recruit .container:after {
  content: "";
  background: url(../img/bg_dot.png) no-repeat center / 100%;
  position: absolute;
  z-index: -1;
}
@media only screen and ( max-width : 767px ) {
  #recruit {
    padding-bottom: 0;
  }
  .recruit__img {
    margin-top: 4rem;
  }
  .recruit_txt {
    margin-bottom: 4rem;
  }
  #recruit .sec-lead__txt {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #recruit .container:before {
    filter: blur(30px);
    width: 22rem;
    height: 22rem;
    top: -15rem;
    right: -8rem;
  }
  #recruit .container:after {
    filter: blur(30px);
    width: 22rem;
    height: 22rem;
    bottom: -15rem;
    left: -8rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .recruit__img {
    width: 50%;
  }
  .recruit__main {
    width: 42%;
  }
  #recruit .sec-lead__txt {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .recruit_txt {
    margin-bottom: 6rem;
  }
  #recruit .container:before {
    width: 44rem;
    height: 44rem;
    right: -10rem;
    top: -34rem;
  }
  #recruit .container:after {
    width: 44rem;
    height: 44rem;
    left: -10rem;
    bottom: -34rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　    NEWS

--------------------------------------------------------------------------------------------- */

.service_box {
  background: #fff;
  border-radius: 2rem;
}
.service_box:last-child {
  margin-bottom: 0;
}
.service_txt p {
  line-height: 2em;
}

#news .mv_obi {
  z-index: -1;
}
@media only screen and ( max-width : 767px ) {
  .news__list {
    margin-bottom: 4rem;
  }
  #news .mv_obi {
    bottom: 0;
  }
  #news .container {
    position: relative;
  }
  #news .container:before {
    content: "";
    background: url(../img/bg_dot.png) no-repeat center / 100%;
    position: absolute;
    z-index: -1;
    filter: blur(30px);
    width: 22rem;
    height: 22rem;
    bottom: -15rem;
    right: -8rem;

    /*-webkit-animation:buruburu 0.1s infinite linear alternate;
    animation:buruburu 0.1s infinite linear alternate;*/
  }
}
@media print, screen and ( min-width : 768px ) {
  #news .heading {
    flex-direction: row-reverse;
    width: 12rem;
  }
  #news .heading-en {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  #news .heading-en:before {
    right: 0;
    left: auto;
    transform: rotate(90deg);
    top: -2rem;
  }
  #news .heading-jp {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .news__list {
    margin-bottom: 6rem;
  }
  .news__main {
    width: calc(100% - (12rem + 9rem));
  }
  #news .mv_obi {
    bottom: 0;
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

