@charset "utf-8";

/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
   * メイン
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* -------------------------------------------------------------------------------------------------
   * セクショニング
/* ---------------------------------------------------------------------------------------------- */

#main {}

#main-contents {
  overflow:hidden;
}

#main-contents div.body {
  margin: 0 auto;
  overflow: hidden;
}

#main-contents .column ~ .column {
  margin-top: 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

 #main-contents div.body {
   max-width: 100%;
   padding:0 20px;
   margin: 0 auto;
   overflow: hidden;
 }
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main-contents > .section {
  padding-top: 30px;
  padding-bottom: 30px;
}

#main-contents div.body {
  max-width: 100%;
  padding:0 20px;
  margin: 0 auto;
  overflow: hidden;
}

#main-contents .column ~ .column {
  margin-top: 20px;
}

}

/* ****************************************************************************************************
   * 会社を知る
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.company {
  position: relative;
}
.company::before {
  content: "";
  display: block;
  width: 1600px;
  height: 680px;
  background: url("../../_images/index/know-bg-1.png") no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.company .body {
  max-width:1140px;
  padding-top: 100px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {

.company .body {
  max-width:1140px;
  padding-top: 100px !important;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.company .body {
  max-width:1140px;
  padding-top: 0 !important;
}


}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.company .content {
  position: relative;
  padding-top: 60px;
  width: 55%;
  margin-left: 0;
  margin-right: auto;
  max-width: 430px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

.company .content {
  position: relative;
  padding-top: 60px;
  width: 43%;
  margin-left: 0;
  margin-right: auto;
  max-width: 430px;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.company .content {
  position: relative;
  padding-top: 0;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  max-width: 100%;
}

}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.company .title {
  position: relative;
  text-align: left;
  font-size: 4.0rem;
  font-weight: 700;
  color:#320b1e;
}
.company .title::after {
  content: "";
  display: block;
  width: 100px;
  border-bottom: 5px solid #f733a6;
}

.company .subtitle {
  font-size: 2.2rem;
  font-weight: bold;
  color:#f733a6;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.company .title {
  position: relative;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  color:#320b1e;
}
.company .title::after {
  content: "";
  display: block;
  width: 100px;
  border-bottom: 5px solid #f733a6;
  margin: 0 auto;
}
.company .subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  color:#f733a6;
}
}

/* ----------------------------------------------------------------------------------------------------
   * 画像
/* ------------------------------------------------------------------------------------------------- */

.company .photo {
  position: absolute;
  top: 100px;
  right: 0;
  width: 52%;
  height: 560px;
  background:#e1dcf2;
  border-radius: 40px 0 0 40px;
}

.company .photo img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-50%);
  border-radius: 40px 0 0 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.company .photo {
  position:relative;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  background:none;
  border-radius: 20px;
  padding: 0 20px;
  margin-top: 20px;
}

.company .photo img {
  position:relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0);
  border-radius: 20px;
}

}

/* ----------------------------------------------------------------------------------------------------
   * ボタン
/* ------------------------------------------------------------------------------------------------- */

.company .btn-area {
  display: flex;
  flex-wrap: wrap;
}

.company .btn-area .btn-1 {
  position: relative;
  z-index: 1;
  width: 250px;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  text-align: center;
  padding:15px 10px;
  font-weight: bold;
  line-height: 1.5;
  color:#fff;
  background: #a78ff9;
  border-radius: 30px;
  transition: box-shadow 0.2s, color 0.2s;
  transition: 0.3s;
}

.company .btn-area .btn-1 > * {
  display: block;
  position: relative;
  z-index: 1;
}
.company .btn-area .btn-1::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  width:19px;
  height: 19px;
  transform: translateY(-50%);
  background: url("../../_images/_common/icon-detail-1.png") no-repeat;
}
.company .btn-area .btn-1:hover {
  opacity: 0.7;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {
  .company .btn-area .btn-1 {
    width: auto;
    display: block;
    padding: 10px 4em;
    margin: 5px;
  }
}


/* ****************************************************************************************************
   * 仕事を知る
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.work {
  position: relative;
  margin-top: 120px;
  padding-bottom: 100px;
}
.work::after {
  content: "";
  display: block;
  width: 1600px;
  height: 780px;
  background: url("../../_images/index/know-bg-2.png") no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.work .body {
  max-width:1140px;
  padding-bottom: 100px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.work {
  position: relative;
  margin-top: 0;
  padding-bottom: 50px;
}
.work .body {
  max-width:1140px;
  padding-bottom: 0 !important;
}


}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.work .content {
  position: relative;
  padding-top: 60px;
  width: 55%;
  margin-left: auto;
  margin-right: 0;
  max-width: 430px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

.work .content {
  position: relative;
  padding-top: 60px;
  width: 43%;
  margin-left: auto;
  margin-right: 0;
  max-width: 430px;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.work .content {
  position: relative;
  padding-top: 0;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  max-width: 100%;
}

}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.work .title {
  position: relative;
  text-align: left;
  font-size: 4.0rem;
  font-weight: 700;
  color:#320b1e;
}
.work .title::after {
  content: "";
  display: block;
  width: 100px;
  border-bottom: 5px solid #f733a6;
}

.work .subtitle {
  font-size: 2.2rem;
  font-weight: bold;
  color:#f733a6;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.work .title {
  position: relative;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  color:#320b1e;
}
.work .title::after {
  content: "";
  display: block;
  width: 100px;
  border-bottom: 5px solid #f733a6;
  margin: 0 auto;
}

.work .subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  color:#f733a6;
}

}

/* ----------------------------------------------------------------------------------------------------
   * 画像
/* ------------------------------------------------------------------------------------------------- */

.work .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 560px;
  background:#e1dcf2;
  border-radius: 0 40px 40px 0;
}

.work .photo img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-50%);
  border-radius: 0 40px 40px 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.work .photo {
  position:relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background:none;
  border-radius: 20px;
  padding: 0 20px;
  margin-top: 20px;
}

.work .photo img {
  position:relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0);
  border-radius: 20px;
}

}

/* ****************************************************************************************************
   * 人を知る
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.staff {
  background: #f8f1ff;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ----------------------------------------------------------------------------------------------------
   * リード文
/* ------------------------------------------------------------------------------------------------- */

.staff .lead {}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.staff .lead {
  padding: 0 20px;
}

}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.staff .title {
  position: relative;
  text-align: center;
  font-size: 4.0rem;
  font-weight: 700;
  color:#320b1e;
}
.staff .title::after {
  content: "";
  display: block;
  width: 100px;
  margin: 0 auto;
  border-bottom: 5px solid #f733a6;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.staff .title {
  position: relative;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  color:#320b1e;
}
.staff .title::after {
  content: "";
  display: block;
  width: 100px;
  margin: 0 auto;
  border-bottom: 5px solid #f733a6;
}
}

/* ----------------------------------------------------------------------------------------------------
   * テキスト
/* ------------------------------------------------------------------------------------------------- */

.staff .text {
  text-align: center;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.staff .text {
  text-align: left;
}

}

/* ----------------------------------------------------------------------------------------------------
   * スライド
/* ------------------------------------------------------------------------------------------------- */

#main .staff .slideshow {
  position: relative;
  margin-top: 30px;
}
#main .staff .slick-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: 19%;
  width: 36px;
  height: 65px;
  z-index: 99;
  font-size: 0;
  overflow: hidden;
  cursor: pointer;
  background: url("../../_images/index/arrow-prev.png") center center no-repeat;
  border: 0;
}
#main .staff .slick-arrow:hover {
  opacity: .9;
}
#main .staff .slick-prev {}

#main .staff .slick-next {
  left: auto;
  right: 19%;
  background: url("../../_images/index/arrow-next.png") center center no-repeat;
}
#main .staff .slideshow .item {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 20px;
}
#main .staff .photo {
  position:relative;
  aspect-ratio: 260 / 260;
  overflow: hidden;
  background: url("../images/common/noimage.jpg") center center /cover no-repeat;
  border-radius: 20px;
  z-index: 3;
}
#main .staff .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
  border-radius: 20px;
}
#main .staff .slideshow .item:hover .photo img {
  transform: scale(1.05);
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

#main .staff .slick-arrow {
  width: 18px;
  height: 32px;
  background-size: 18px 32px;
}

#main .staff .slick-arrow {
  left: 2%;
}
#main .staff .slick-next {
  right: 2%;
  left: auto;
}
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

#main .staff .slideshow .item {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 5px;
}
}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.staff .detail {
  position: relative;
  width: 80%;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  margin: -30px auto 0;
  z-index: 9;
  text-align: center;
}
.staff .detail span {
  display: inline-block;
  line-height: 1.2;
  color: #fff;
  background: #f733a6;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 60px;
  padding: 5px 20px;
}

.staff .detail small {
  display: block;
  font-size: 1.4rem;
}
.staff .detail p {
  margin-top: 10px;
  font-size: 2.0rem;
  line-height: 1.4;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.staff .detail {
  position: relative;
  width: 80%;
  background: #fff;
  padding: 5px;
  border-radius: 20px;
  margin: -30px auto 0;
  z-index: 9;
  text-align: center;
}
.staff .detail span {
  color: #fff;
  background: #f733a6;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 60px;
  padding: 5px 10px;
}

}

/* ****************************************************************************************************
   * 環境を知る
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.environment {
  position: relative;
}
.environment::before {
  content: "";
  display: block;
  width: 1600px;
  height: 680px;
  background: url("../../_images/index/know-bg-3.png") no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.environment .body {
  max-width:1140px;
  padding-top: 100px;
  padding-bottom: 130px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {

.environment .body {
  max-width:1140px;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.environment .body {
  max-width:1140px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}


}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.environment .content {
  position: relative;
  padding-top: 50px;
  width: 55%;
  margin-left: 0;
  margin-right: auto;
  max-width: 430px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

.environment .content {
  position: relative;
  padding-top: 50px;
  width: 43%;
  margin-left: 0;
  margin-right: auto;
  max-width: 430px;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.environment .content {
  position: relative;
  padding-top: 0;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  max-width: 100%;
}

}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.environment .title {
  position: relative;
  text-align: left;
  font-size: 4.0rem;
  font-weight: 700;
  color:#320b1e;
}
.environment .title::after {
  content: "";
  display: block;
  width: 100px;
  border-bottom: 5px solid #f733a6;
}

.environment .subtitle {
  font-size: 2.2rem;
  font-weight: bold;
  color:#f733a6;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.environment .title {
  position: relative;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  color:#320b1e;
}
.environment .title::after {
  content: "";
  display: block;
  width: 100px;
  border-bottom: 5px solid #f733a6;
  margin: 0 auto;
}

.environment .subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  color:#f733a6;
}
}

/* ----------------------------------------------------------------------------------------------------
   * 画像
/* ------------------------------------------------------------------------------------------------- */

.environment .photo {
  position: absolute;
  top: 100px;
  right: 0;
  width: 52%;
  height: 560px;
  background:#e1dcf2;
  border-radius: 40px 0 0 40px;
}

.environment .photo img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-50%);
  border-radius: 40px 0 0 40px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.environment .photo {
  position:relative;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  background:none;
  border-radius: 20px;
  padding: 0 20px;
  margin-top: 20px;
}

.environment .photo img {
  position:relative;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0);
  border-radius: 20px;
}

}

/* ****************************************************************************************************
   * 職場体験
**************************************************************************************************** */
/* ----------------------------------------------------------------------------------------------------
   * 共通
/* ------------------------------------------------------------------------------------------------- */

.experience {
  position: relative;
  margin-top: 120px;
  padding-bottom: 200px;
}
.experience::after {
  content: "";
  display: block;
  width: 1600px;
  height: 780px;
  background: url("../../_images/index/know-bg-4.png") no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.experience .body {
  max-width:1140px;
  padding-bottom: 110px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1200px) {

.experience .body {
  max-width:1140px;
  padding-bottom: 140px !important;
}

}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.experience {
  position: relative;
  margin-top: 0;
  padding-bottom: 100px;
}
.experience .body {
  max-width:1140px;
  padding-bottom: 0 !important;
}


}

/* ----------------------------------------------------------------------------------------------------
   * 内容
/* ------------------------------------------------------------------------------------------------- */

.experience .content {
  position: relative;
  padding-top: 50px;
  width: 55%;
  margin-left: auto;
  margin-right: 0;
  max-width: 430px;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:1100px) {

.experience .content {
  position: relative;
  padding-top: 50px;
  width: 43%;
  margin-left: auto;
  margin-right: 0;
  max-width: 430px;
}
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.experience .content {
  position: relative;
  padding-top: 0;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  max-width: 100%;
}

}

/* ----------------------------------------------------------------------------------------------------
   * タイトル
/* ------------------------------------------------------------------------------------------------- */

.experience .title {
  position: relative;
  text-align: left;
  font-size: 4.0rem;
  font-weight: 700;
  color:#320b1e;
}
.experience .title::after {
  content: "";
  display: block;
  width: 100px;
  border-bottom: 5px solid #f733a6;
}

.experience .subtitle {
  font-size: 2.2rem;
  font-weight: bold;
  color:#f733a6;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.experience .title {
  position: relative;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  color:#320b1e;
}
.experience .title::after {
  content: "";
  display: block;
  width: 100px;
  border-bottom: 5px solid #f733a6;
  margin: 0 auto;
}

.experience .subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  color:#f733a6;
}

}

/* ----------------------------------------------------------------------------------------------------
   * 画像
/* ------------------------------------------------------------------------------------------------- */

.experience .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 560px;
  background:#e1dcf2;
  border-radius: 0 40px 40px 0;
}

.experience .photo img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-50%);
  border-radius: 0 40px 40px 0;
}

/* :::::::: ブレイクポイント :::::::: */

@media screen and (max-width:736px) {

.experience .photo {
  position:relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background:none;
  border-radius: 20px;
  padding: 0 20px;
  margin-top: 20px;
}

.experience .photo img {
  position:relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0);
  border-radius: 20px;
}

}