@charset "UTF-8";




/* ============== */

.mainView .slider__item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: 600px;
  opacity: 0.75;
  position: relative;
}
.mainView .slider__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, .25),  rgba(0, 0, 0, .25));
}
.mainView .slider__item.item01 {
  background-image: url('../img/top/mv_01.jpg');
  background-position: center;
  background-size: cover;
}
.mainView .slider__item.item02 {
  background-image: url('../img/top/mv_02.jpg');
  background-position: center;
  background-size: cover;
}
.mainView .slider__item.item03 {
  background-image: url('../img/top/mv_03.jpg');
  background-position: center;
  background-size: cover;
}
.mainView__message{
  max-width: 680px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.mainView {
  position: relative;
}
.mainView__scroll {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 5;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 1.8rem;
}
.mainView__scroll span {
  position: relative;
  text-align: center;
  display: block;
  height: 100px;
  line-height: 1.0;
}
.mainView__scroll span::after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
  height: 60px;
  width: 2px;
  background-color: #fff;
}
/* 線のアニメーション */
@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, 0);
    transform-origin: 0 100%;
  }
}
@media screen and (max-width: 1100px) {
  .mainView .slider__item {
    height: 60vh;
    min-height: 400px;
  }
  .mainView__message{
    max-width: 500px;
    width: 60%;
  }
}
@media screen and (max-width:600px) {
  .mainView .slider__item {
    height: 100vh;
  }
  .mainView .slider__item.item01 {
    background-image: url('../img/top/mv_01_sp.jpg');
  }
  .mainView .slider__item.item02 {
    background-image: url('../img/top/mv_02_sp.jpg');
  }
  .mainView .slider__item.item03 {
    background-image: url('../img/top/mv_03_sp.jpg');
  }
  .mainView__message{
    max-width: 100%;
    width: 80%;
  }
  .mainView__scroll{
    font-size: 1.5rem;
  }
}

/* ------ */

.mainTtl{
  font-size: 9rem;
  margin-bottom: 6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #000;
  position: relative;
  line-height: 1.2;
}
.mainTtl::before{
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 130px;
  height: 10px;
  background: #c30d23;
}
.topSubttl{
  font-size: 4rem;
  margin-bottom: 5.4rem;
  font-weight: 500;
}
.mainTxt{
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 1100px) {
  .mainTtl{
    font-size: 7rem;
    margin-bottom: 5rem;
  }
  .mainTtl::before{
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 80px;
    height: 7px;
    background: #c30d23;
  }
  .topSubttl{
    font-size: 2.6rem;
    margin-bottom: 3.6rem;
  }
  .mainTxt{
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 600px) {
  #about .mContainer{
    padding-top: 10rem;
  }
  .mainTtl{
    font-size: 5.5rem;
    margin-bottom: 3rem;
  }
  .topSubttl {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .mainTxt{
    font-size: 1.6rem;
    line-height: 2;
  }
}



/* ------ */
#company .bigImg img{
  border-radius: 100px 100px 0 0;
}
#company .bigImg{
  position: relative;
  z-index: 0;
}
#company .bigImg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, .25),  rgba(0, 0, 0, .25));
  border-radius: 100px 100px 0 0;
}
#company .whiteBox{
  position: relative;
  width: 95%;
  margin: -15rem 0 0 auto;
  border-radius: 50px 0 0 50px;
}
.companyWrapper .whiteBox .flexBox{
  max-width: 1200px;
  margin: 0 auto;
}
.companyWrapper .flexBox .imgArea {
  max-width: 420px;
}
.companyWrapper .roundedImg{
  height: 500px;
  object-fit: cover;
}
.companyWrapper .bgBeige{
  padding-bottom: 20rem;
}
#company .messageWrapper{
  max-width: 1200px;
  margin: 10rem auto 0;
}
#company .message .imgArea{
  width: 25%;
}
#company .message .txtArea{
  width: 70%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
#company .message .topSubttl{
  margin-bottom: 3.5rem;
}
#company .message .txtArea__message{
  max-width: 390px;
}
@media screen and (max-width: 1100px) {
  body .whiteBox .inner {
    padding-left: 0;
    padding-right: 0;
  }
  #company .bigImg img{
    border-radius: 50px 50px 0 0;
  }
  #company .bigImg::before {
    border-radius: 50px 50px 0 0;
  }
  .companyWrapper .bgBeige{
    padding-bottom: 12rem;
  }
  #company .whiteBox{
    width: 95%;
    max-width: 1000px;
    margin: -8rem 0 0 auto;
    border-radius: 30px 0 0 30px;
  }
  #company .message{
    margin-top: 5rem;
  }
  #company .message .imgArea{
    width: 25%;
  }
  #company .message .txtArea{
    width: 70%;
    display: block;
  }
  #company .message .txtArea__message{
    margin-bottom: 5rem;
    max-width: 100%;
  }
  #company .message .topSubttl{
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767.5px) {
  .companyWrapper .roundedImg{
    height: auto;
  }
  .companyWrapper .flexBox .imgArea {
    width: 43%;
  }
  .companyWrapper .flexBox .txtArea {
    width: 55%;
  }
}
@media screen and (max-width: 600px) {
  #company .whiteBox{
    margin: -7rem 0 0 auto;
  }
  .companyWrapper .whiteBox .flexBox{
    max-width: 100%;
  }
  .companyWrapper .flexBox .txtArea,
  #company .message .imgArea,#company .message .txtArea {
    width: 100%;
    max-width: 100%;
  }
  .companyWrapper .flexBox .imgArea{
    margin: 5rem 0 0 auto;
    width: calc(100% - 3rem);
  }
  .companyWrapper .roundedImg{
    height: auto;
  }
  .companyWrapper .whiteBox {
    padding: 5rem 0;
  }
  .whiteBox__item .txtArea{
    padding-right: 3rem;
    padding-left: 3rem;
  }
  #company .message .imgArea{
    width: 165px;
    margin: 0 auto 3rem;
  }
  #company .message .smallBtn a{
    margin: 0 auto;
  }
  .whiteBox__item .txtArea .topSubttl{
    letter-spacing: .01em;
  }
  .companyWrapper #company .roundedImg{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  #company .messageWrapper{
    padding: 0 3rem;
    margin-top: 0;
  }
  #company .message .topSubttl{
    text-align: center;
  }
}


#company .bigTtl{
  position: absolute;
  font-weight: 600;
  bottom: -80px;
  right: 17%;
}
#business .bigTtl{
  position: absolute;
  font-weight: 600;
  bottom: -80px;
  left: 19%;
}
@media screen and (max-width: 1700px) {
  #company .bigTtl{
    right: 12%;
  }
  #business .bigTtl{
    left: 15%;
  }
}
@media screen and (max-width: 1500px) {
  #company .bigTtl{
    right: 10%;
  }
  #business .bigTtl{
    left: 10%;
  }
}
@media screen and (max-width: 1200px) {
  #company .bigTtl{
    right: 80px;
  }
  #business .bigTtl{
    left: 50px;
  }
}
@media screen and (max-width: 1100px) {
  #company .bigTtl{
    bottom: -60px;
    right: 50px;
  }
  #business .bigTtl{
    bottom: -55px;
    left: 50px;
  }
}
@media screen and (max-width: 600px) {
  #company .bigTtl{
    bottom: -50px;
    right: 30px;
  }
  #business .bigTtl{
    bottom: -45px;
    left: 25px;
  }
  .companyWrapper #business .flexBox .imgArea{
    margin: 5rem auto 0 0;
  }
}


/* ------ */
#business .whiteBox{
  position: relative;
  width: 95%;
  margin: 0 auto 0 0;
  border-radius: 0 50px 50px 0;
}
#business .flexBox .txtArea{
  margin-bottom: 0;
}
@media screen and (min-width: 1500px) {
  .companyWrapper #business .flexBox .imgArea {
    max-width: 420px;
    width: 100%;
    margin-left: 4rem;
  }
}
@media screen and (max-width: 1100px) {
  #business .whiteBox{
    width: 95%;
    max-width: 1000px;
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (max-width: 600px) {
  .companyWrapper #business .roundedImg{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

/* ------ */
#news .flexBox .ttlArea{
  max-width: 250px;
  width: 100%;
}
#news .flexBox .newsArea{
  max-width: 700px;
  width: 100%;
}
#news .flexBox .newsArea a:hover{
  opacity: 0.7;
}
#news .flexBox {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.newsArea__item  a {
  display: block;
  padding: 2.5rem 0;
  text-align: left;
  font-size: 1.5rem;
}
.newsFlex{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
}
.newsArea__item {
  border-bottom: 1px solid #D5D5D5;
}
.newsArea__item:first-of-type{
  border-top: 1px solid #D5D5D5;
}
.newsFlex .date{
  font-size: 1.5rem;
  width: 90px;
  margin-right: 3rem;
}
@media screen and (max-width: 1100px) {
  #news .flexBox .newsArea{
    max-width: 100%;
    margin-top: 5rem;
  }
  .newsArea__item  a {
    display: block;
    padding: 2.5rem 0;
    text-align: left;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 560px) {
  .newsArea__item  a {
    padding: 2rem 0;
    font-size: 1.4rem;
  }
  .newsFlex{
    display: block;
  }
  .newsFlex .date{
    font-size: 1.3rem;
    margin-right: 0;
  }
}

/* ------ */
#recruit{
  background-image: url('../img/top/img_05.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
}
#recruit .inner,#recruit-inquiry .inner{
  padding-top: 18rem;
  padding-bottom: 18rem;
}
#recruit .ttlArea{
  text-align: center;
}
#recruit .flexBox{
  max-width: 900px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#recruit .flexBox .basicBtn_wh a{
  margin-top: 0;
}

@media screen and (max-width: 1100px) {
  #recruit .inner,#recruit-inquiry .inner{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  #recruit .flexBox{
    max-width: 100%;
  }
  #recruit .flexBox .basicBtn_wh a{
    margin: 0 auto;
  }
}
@media screen and (max-width: 900px) {
  #recruit .inner,#recruit-inquiry .inner{
    padding-top: 10rem;
    padding-bottom: 10rem;
    max-width: 550px;
  }
  .basicBtn_wh{
    margin: 5rem auto 0;
  }
}

/*==================================================================================================
	採用情報：会社を知る .recruit__people
==================================================================================================*/
.recruit__people .pageHead{
  background-image: url(../img/recruit/people/pageHead.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat, repeat;
}
@media screen and (max-width: 768px) {
  .recruit__people .pageHead{
    background-image: url(../img/recruit/people/pageHead_sp.webp);
  }
}
/* ------ */
#about-company .flexBox {
  align-items: flex-start;
  -webkit-box-pack: flex-start;
}
#about-company .flexBox .txtArea{
  width: 60%;
}
#about-company .flexBox .txtArea{
  width: 60%;
}
#about-company .flexBox .imgArea{
  width: 38%;
}
.ceo{
  margin-top: 2rem;
  text-align: right;
}
.ceo .mTxt{
  margin-left: 2rem;
}
@media screen and (max-width: 820px) {
  #about-company .flexBox .txtArea{
    width: 50%;
  }
  #about-company .flexBox .imgArea{
    width: 48%;
  }
  .ceo{
    margin-top: 1rem;
    }
  .ceo .mTxt{
    margin-left: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #about-company .flexBox .txtArea,#about-company .flexBox .imgArea{
    width: 100%;
  }
  .ceo{
    font-size: 1.4rem;
    margin-top: 1.7rem;
    margin-bottom: 4rem;
  }
  .ceo .mTxt{
    margin-left: 1rem;
  }
  #about-company .basicBtn_red a{
    margin: 4rem auto 0;
  }
}
/* ------ */
#apply .inner{
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.steps{
  margin-top: 6rem;
}
.stepBox {
  background-color: #f4f4f4;
  border-radius: 15px;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}
.stepBox::before,
.stepBox::after{
  content: "";
  position: absolute;
  bottom: -30px;
  left: calc(50% - 1px);
  width: 2px;
  height: 20px;
  border-radius: 100px;
  background-color: #c30d23;
  transform-origin: 50% calc(100% - 1px);
}
.stepBox::before {
  transform: rotate(45deg);
}
.stepBox::after{
  transform: rotate(-45deg);
}
.stepBox:last-of-type::before,
.stepBox:last-of-type::after{
  content:none;
}
.stepBox img {
  width: 44px;
  height: auto;
  margin-right: 3rem;
}
.stepBox .step{
  display: flex;
  align-items: center;
  font-size: 2.6rem;
  flex-wrap: wrap;
  color: #C30D23;
  font-weight: bold;
  line-height: 1;
}
.stepBox .step .num {
  font-size: 4.4rem;
  margin-left: 1rem;
  padding-right: 2.5rem;
  margin-right: 3.4rem;
  border-right: 1px solid #000;
}
.stepBox .subTtl{
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  #apply .inner{
    max-width: 100%;
  }
  .steps{
    margin-top: 3rem;
  }
  .stepBox {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 2rem 3rem;
    margin-bottom: 2.5rem;
  }
  .stepBox::before,
  .stepBox::after{
    content: "";
    position: absolute;
    bottom: -15px;
    left: calc(50% - 0.5px);
    width: 1px;
    height: 10px;
    border-radius: 100px;
    background-color: #c30d23;
    transform-origin: 50% calc(100% - 0.5px);
  }
  .stepBox img {
    width: 22px;
    height: auto;
    margin-right: 2rem;
  }
  .stepBox .step{
    font-size: 1.4rem;
  }
  .stepBox .step .num {
    font-size: 2.4rem;
    margin-left: 1rem;
    padding-right: 2rem;
    margin-right: 1.8rem;
  }
}
/* ------ */
#recruit-inquiry{
  background-image: url(../img/recruit/img_info01.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
  text-align: center;
}

#recruit-inquiry ul li{
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .recruit__people .pageHead{
    background-image: url(../img/recruit/people/pageHead_sp.webp);
  }
}