@charset "UTF-8";
/* ==========================================================================//
//
//　mixin
//
// ========================================================================== */
/* color
---------------------------------------------------------- */
/* media query
---------------------------------------------------------- */
/* font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;700&family=Poppins:wght@100;400;700&display=swap");
/* ==========================================================================//
//
//　TOP
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
/* =====================
  arrowWrap
===================== */
.arrowWrap {
  position: absolute;
  left: 20px;
  bottom: 0;
  height: 90px;
  z-index: 1;
}
.arrowWrap .arrowInner p {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: 1.4rem;
  color: #fff;
  text-align: end;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.arrowWrap .arrowInner .arrow {
  width: 2px;
  height: 60px;
  margin: 20px auto 0;
  position: relative;
  overflow: hidden;
}
.arrowWrap .arrowInner .arrow::before {
  content: '';
  width: 2px;
  height: 60px;
  margin: 50px auto 0;
  background-color: #fff;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}
/* area_main
---------------------------------------------------------- */
#area_main {
  position: relative;
  background-image: url("../images/img_main_01.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: calc( 100vh - 90px );
}
@media all and (max-width: 1200px) {
  #area_main {
    background-attachment: local;
    height: calc( 100vh - 60px );
  }
}
#area_main::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
}
#area_main h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  color: #fff;
  font-size: 10rem;
  line-height: 1.2;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
@media all and (max-width: 1200px) {
  #area_main h2 {
    font-size: 8vw;
  }
}
@media all and (max-width: 850px) {
  #area_main h2 {
    font-size: 11vw;
  }
}
#area_main h2 span {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  font-size: 4rem;
  margin: 30px 0 0 -3%;
}
@media all and (max-width: 1200px) {
  #area_main h2 span {
    font-size: 2.6vw;
  }
}
@media all and (max-width: 850px) {
  #area_main h2 span {
    font-size: 4vw;
  }
}

/* area_info
---------------------------------------------------------- */
.area_info {
  width: 40%;
  height: 100px;
  padding: 0 20px;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  color: #363636;
}
@media all and (max-width: 1200px) {
  .area_info {
    width: 100%;
  }
}
.area_info h3 {
  font-size: 3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
}
.area_info .box_txt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  border-left: solid 2px #29B9D5;
  padding: 0 0 0 20px;
  margin: 0 0 0 20px;
}

/* area_crea
---------------------------------------------------------- */
.area_crea {
  position: relative;
  display: flex;
}
@media all and (max-width: 1200px) {
  .area_crea {
    display: block;
  }
}
.area_crea .box_img {
  width: 45%;
  z-index: 1;
}
@media all and (max-width: 1200px) {
  .area_crea .box_img {
    width: 100%;
  }
}
.area_crea .box_img img {
  width: 100%;
}
.area_crea .area_txt {
  background: linear-gradient(70deg, #29b9d5 0%, #aae9f6 100%);
  width: 60%;
  margin: -100px 0 -100px -5%;
  position: relative;
  padding: 100px 0;
  display: flex;
}
@media all and (max-width: 1200px) {
  .area_crea .area_txt {
    width: 96%;
    margin: -10% 0 0 auto;
    padding: 12% 0;
  }
}
.area_crea .area_txt .sec_txt {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  margin: auto 10% auto 20%;
}
@media all and (max-width: 1200px) {
  .area_crea .area_txt .sec_txt {
    margin: auto 10%;
  }
}
.area_crea .area_txt .sec_txt h3 {
  /*margin-bottom: 50px;*/
  font-weight: 100;
  font-size: 5rem;
  line-height: 1.4;
}
@media all and (max-width: 500px) {
  .area_crea .area_txt .sec_txt h3 {
    /*margin-bottom: 30px;*/
    font-size: 2.8rem;
  }
}
.area_crea .area_txt .sec_txt p {
  line-height: 2.6;
  margin-bottom: 50px;
  font-weight: 300;
}
@media all and (max-width: 500px) {
  .area_crea .area_txt .sec_txt p {
    line-height: 2;
    margin-bottom: 30px;
  }
}

/* area_works
---------------------------------------------------------- */
.area_works {
  margin: 100px 0 0 0;
  padding: 100px 0;
  position: relative;
}
@media all and (max-width: 1200px) {
  .area_works {
    margin: 0;
    padding: 70px 30px;
  }
}
@media all and (max-width: 500px) {
  .area_works {
    padding: 50px 15px;
  }
}
.area_works::before, .area_works::after {
  content: "";
  position: absolute;
  background-color: #363636;
  width: 24%;
  height: 50%;
  z-index: -1;
}
@media all and (max-width: 1200px) {
  .area_works::before, .area_works::after {
    width: 40%;
    height: 40%;
    background-color: #cacaca;
  }
}
@media all and (max-width: 500px) {
  .area_works::before, .area_works::after {
    width: 30%;
    height: 20%;
  }
}
.area_works::before {
  left: 0;
  bottom: 0;
}
.area_works::after {
  right: 0;
  top: 0;
}
.area_works .sec_works {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.area_works .sec_works h3 {
  /*margin-bottom: 10px;*/
  font-weight: 100;
  font-size: 5rem;
  line-height: 1.4;
}
@media all and (max-width: 500px) {
  .area_works .sec_works h3 {
    font-size: 2.8rem;
  }
}
.area_works .sec_works p {
  font-size: 4rem;
  margin: 0 0 0 1em;
  font-weight: 100;
  line-height: 1.4;
}
@media all and (max-width: 1200px) {
  .area_works .sec_works p {
    font-size: 3rem;
    margin: 0 0 50px 0.3em;
  }
}
@media all and (max-width: 500px) {
  .area_works .sec_works p {
    font-size: 2rem;
    margin: 0 0 30px 1em;
  }
}
.area_works .slider01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.area_works .slider01 .box {
  width: 23%;
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
  background: #363636;
}
@media all and (max-width: 500px) {
  .area_works .slider01 .box {
    width: 48%;
  }
}
.area_works .slider01 .box a::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.area_works .slider01 .box a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.area_works .slider01 .box a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  transition: 0.3s;
}
.area_works .slider01 .box a:hover::after {
  background-color: rgba(0, 0, 0, 0);
}
.area_works .slider01 .box a:hover img {
  width: 110%;
  height: 110%;
}
.area_works .box_btn {
  margin: 50px auto 0;
}
@media all and (max-width: 500px) {
  .area_works .box_btn {
    margin: 20px auto 0;
  }
}

/* area_about
---------------------------------------------------------- */
.area_about {
  padding: 100px 0;
  background-image: url("../images/bg_about_01.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
@media all and (max-width: 1200px) {
  .area_about {
    padding: 100px 30px;
    background-attachment: local;
  }
}
@media all and (max-width: 500px) {
  .area_about {
    padding: 0;
  }
}
.area_about ul {
  max-width: 1300px;
  margin: 0 auto;
}
.area_about ul li {
  max-width: 1000px;
  margin: 0 auto;
}
.area_about ul li:nth-child(1) {
  margin: 0 auto 1px 0;
}
.area_about ul li:nth-child(2) {
  margin: 0 auto 1px;
}
.area_about ul li:nth-child(3) {
  margin: 0 0 0 auto;
}
.area_about ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.6);
}
@media all and (max-width: 500px) {
  .area_about ul li a {
    display: block;
  }
}
.area_about ul li a:hover {
  background: linear-gradient(70deg, rgba(41, 185, 213, 0.8) 0%, rgba(170, 233, 246, 0.8) 100%);
}
.area_about ul li a .box_img {
  width: 40%;
  height: 230px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 500px) {
  .area_about ul li a .box_img {
    width: 100%;
  }
}
.area_about ul li a .box_img img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  transition: 0.3s;
}
@media all and (max-width: 500px) {
  .area_about ul li a .box_img img {
    height: 110%;
  }
}
.area_about ul li a .box_img img:hover {
  height: 110%;
}
@media all and (max-width: 500px) {
  .area_about ul li a .box_img img:hover {
    height: 120%;
  }
}
.area_about ul li a .box_txt {
  width: 60%;
  padding: 20px 50px;
}
@media all and (max-width: 500px) {
  .area_about ul li a .box_txt {
    width: 100%;
    padding: 20px 30px;
  }
}
.area_about ul li a .box_txt .l_txt {
  font-weight: 100;
  font-size: 4rem;
  margin-bottom: 30px;
}
@media all and (max-width: 500px) {
  .area_about ul li a .box_txt .l_txt {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
.area_about ul li a .box_txt .s_txt {
  font-weight: 300;
  line-height: 1.5;
}

/* area_event
---------------------------------------------------------- */
/*
@keyframes GradientBackground {
          0% {
            background-position: 0% 50%;
          }

          50% {
            background-position: 100% 50%;
          }

          100% {
            background-position: 0% 50%;
          }
        };
*/
.area_event {
  padding: 100px 0;
  /*background: linear-gradient(60deg, #FECF59, #FE771B, #FE1C7E, #BF20D2, #0043E9);
  background-size: 1000% 1000%;
  animation: GradientBackground 12s ease infinite;*/
  background: linear-gradient(45deg, #fed475 0%, #e53d5d 50%, #c23186 70%, #9c38bb 100%);
  text-align: center;
}
@media all and (max-width: 500px) {
  .area_event {
    padding: 50px 0;
  }
}
.area_event h3 {
  text-align: center;
  /*margin-bottom: 50px;*/
  font-weight: 100;
  font-size: 5rem;
  line-height: 1.4;
  color: #fff;
}
@media all and (max-width: 500px) {
  .area_event h3 {
    font-size: 2.8rem;
    line-height: 1.8;
    /*margin-bottom: 20px;*/
  }
}
.area_event .slider02 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /*.slick-slide {
    transform: scale(0.86);
    transition: 0.3s;
  }
  .slick-current {
    transition: 0.3s;
    transform: scale(1);
  }*/
}
.area_event .slider02 .box {
  width: 23%;
  margin: 5px;
}
@media all and (max-width: 500px) {
  .area_event .slider02 .box {
    width: 46%;
  }
}
.area_event .slider02 .box a .box_img {
  position: relative;
  overflow: hidden;
  background: #363636;
}
.area_event .slider02 .box a .box_img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.area_event .slider02 .box a .box_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  margin: 0 auto;
  transition: 0.3s;
}
.area_event .slider02 .box a .box_img img:hover {
  width: 110%;
  height: 110%;
}
.area_event .slider02 .box a p {
  color: #363636;
  padding: 10px;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 300;
}
@media all and (max-width: 500px) {
  .area_event .slider02 .box a p {
    font-size: 1.8rem;
  }
}
.area_event .box_btn {
  margin: 50px auto 0;
  text-align: left;
}

/* area_recruit
---------------------------------------------------------- */
.area_recruit {
  padding: 43% 0 100px;
  background-image: url("../images/bg_rec_01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media all and (max-width: 1200px) {
  .area_recruit {
    padding: 43% 30px 100px;
  }
}
@media all and (max-width: 500px) {
  .area_recruit {
    padding: 43% 15px 50px;
    background-image: url("../images/bg_rec_01_sp.jpg");
  }
}
.area_recruit .fbox {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media all and (max-width: 850px) {
  .area_recruit .fbox {
    display: block;
  }
}
.area_recruit .sec_txt {
  color: #fff;
  width: 50%;
}
@media all and (max-width: 850px) {
  .area_recruit .sec_txt {
    width: 100%;
  }
}
.area_recruit .sec_txt h3 {
  max-width: 580px;
  /*margin-bottom: 50px;*/
  font-weight: 100;
  font-size: 4rem;
  line-height: 1.4;
}
@media all and (max-width: 850px) {
  .area_recruit .sec_txt h3 {
    width: 100%;
  }
}
@media all and (max-width: 500px) {
  .area_recruit .sec_txt h3 {
    width: 100%;
    font-size: 2.6rem;
    /*margin-bottom: 30px;*/
  }
}
.area_recruit .sec_txt p {
  line-height: 2;
  font-weight: 300;
}
@media all and (max-width: 850px) {
  .area_recruit .sec_txt p {
    width: 100%;
  }
}
@media all and (max-width: 500px) {
  .area_recruit .sec_txt p {
    width: 100%;
  }
}
.area_recruit .sec_btn {
  width: 48%;
}
@media all and (max-width: 850px) {
  .area_recruit .sec_btn {
    width: 100%;
    margin-top: 30px;
  }
}
.area_recruit .sec_btn .box_rec, .area_recruit .sec_btn .box_mes {
  width: 100%;
}
.area_recruit .sec_btn .box_rec a, .area_recruit .sec_btn .box_mes a {
  display: block;
  padding: 60px 70px 60px 50px;
  position: relative;
  border: solid 1px #fff;
  color: #fff;
}
@media all and (max-width: 1200px) {
  .area_recruit .sec_btn .box_rec a, .area_recruit .sec_btn .box_mes a {
    padding: 30px 50px 30px 30px;
  }
}
.area_recruit .sec_btn .box_rec a::after, .area_recruit .sec_btn .box_mes a::after {
  content: "";
  width: 20px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url("../../common/images/icon_arrow_02.svg") no-repeat center right;
}
.area_recruit .sec_btn .box_rec a:hover, .area_recruit .sec_btn .box_mes a:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.area_recruit .sec_btn .box_rec a:hover::after, .area_recruit .sec_btn .box_mes a:hover::after {
  background: url("../../common/images/icon_arrow_02.svg") no-repeat center right;
}
.area_recruit .sec_btn .box_rec a h4, .area_recruit .sec_btn .box_mes a h4 {
  font-size: 3rem;
  font-weight: 100;
}
@media all and (max-width: 500px) {
  .area_recruit .sec_btn .box_rec a h4, .area_recruit .sec_btn .box_mes a h4 {
    font-size: 2.2rem;
  }
}
.area_recruit .sec_btn .box_rec {
  position: relative;
}
@media all and (max-width: 500px) {
  .area_recruit .sec_btn .box_rec {
    margin: 0 0 20px;
  }
}
.area_recruit .sec_btn .box_rec .catch {
  position: absolute;
  top: -60%;
  right: 0;
  max-width: 600px;
  z-index: 1;
}
@media all and (max-width: 1200px) {
  .area_recruit .sec_btn .box_rec .catch {
    top: -50%;
    max-width: 280px;
  }
}
@media all and (max-width: 500px) {
  .area_recruit .sec_btn .box_rec .catch {
    left: 0;
    top: -30%;
    max-width: 200px;
  }
}
.area_recruit .box_btn {
  margin: 50px auto 0;
}
