@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* コピペ用
@include media(375px, min) {
数値での指定可能
}
@include media(spM) {
minかmaxを略した場合はmin-widthで展開
}
@include media(spM,max) {
}
*/
@media screen and (min-width: 768px) {
  /*以上の時*/
  .content:nth-child(2) {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  /*以下の時*/
  .content:nth-child(2) {
    padding-top: 2rem;
  }
}
/*========= レイアウトのためのCSS ===============*/
#container {
  width: 100%;
  height: 100vh;
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content .in {
  position: relative;
}
.content .in .bgIllust {
  position: absolute;
}
.content .in .bgIllust.bgIllust1 {
  top: -3em;
  right: -5em;
}
.content .in .bgIllust.bgIllust4 {
  bottom: -8em;
  left: -9em;
}
.content .in .bgIllust.bgIllust5 {
  top: -3em;
  right: -10em;
}
.content .in .bgIllust.bgIllust6 {
  bottom: -8em;
  right: -5em;
}
.content .in .bgIllust.bgIllust7 {
  top: -40px;
  left: 2em;
}
.content .in .bgIllust.bgIllust8 {
  bottom: -3em;
  left: -3em;
}
.content .in .bgIllust.bgIllust9 {
  bottom: -35px;
  left: 0;
}
.content .in .bgIllust.bgIllust10_2 {
  top: -3em;
  right: -3em;
}
.content .in .bgIllust .bgIllust10 {
  top: 2em;
  right: -1em;
}
.content .in .bgIllust.bgIllust11 {
  bottom: 7em;
  left: 4em;
}
.content .in .bgIllust.bgIllust12 {
  bottom: 1em;
  left: 13em;
}
.content .in .bgIllust.bgIllust13 {
  top: -6em;
  right: -7em;
}
.content .in .bgIllust.bgIllust14 {
  bottom: 3em;
  left: -10em;
}
.content .in .bgIllust.bgIllust15 {
  bottom: 0;
  right: -8em;
}
.content .in .bgIllust.bgIllust16 {
  bottom: -4em;
  left: 13em;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .content .in .bgIllust.bgIllust1 {
    right: 0;
  }
  .content .in .bgIllust.bgIllust4 {
    left: 0;
  }
  .content .in .bgIllust.bgIllust5 {
    right: 0;
  }
  .content .in .bgIllust.bgIllust6 {
    right: 70%;
  }
  .content .in .bgIllust.bgIllust7 {
    left: 0;
  }
  .content .in .bgIllust.bgIllust8 {
    left: 30%;
    bottom: -5em;
  }
  .content .in .bgIllust.bgIllust9 {
    left: 0;
  }
  .content .in .bgIllust.bgIllust10_2 {
    top: -3em;
    right: 50%;
  }
  .content .in .bgIllust .bgIllust10 {
    right: 0;
  }
  .content .in .bgIllust.bgIllust11 {
    left: calc(50% + 160px);
    bottom: 25px;
  }
  .content .in .bgIllust.bgIllust12 {
    left: 20%;
    bottom: -3em;
  }
  .content .in .bgIllust.bgIllust13 {
    top: -8em;
    right: 0;
  }
  .content .in .bgIllust.bgIllust14 {
    left: 0;
  }
  .content .in .bgIllust.bgIllust15 {
    right: 0;
    bottom: -10em;
  }
  .content .in .bgIllust.bgIllust16 {
    left: 0;
    bottom: -6em;
  }
}
@media screen and (max-width: 767px) {
  .content .in .bgIllust.bgIllust1 {
    right: 0;
  }
  .content .in .bgIllust.bgIllust4 {
    left: 0;
  }
  .content .in .bgIllust.bgIllust5 {
    right: 0;
  }
  .content .in .bgIllust.bgIllust6 {
    right: 70%;
  }
  .content .in .bgIllust.bgIllust7 {
    left: 0;
  }
  .content .in .bgIllust.bgIllust8 {
    left: 0;
    bottom: -5em;
  }
  .content .in .bgIllust.bgIllust9 {
    left: 0;
  }
  .content .in .bgIllust.bgIllust10_2 {
    top: -3em;
    right: 0;
  }
  .content .in .bgIllust .bgIllust10 {
    right: 0;
  }
  .content .in .bgIllust.bgIllust11 {
    left: calc(50% + 160px);
    bottom: 25px;
  }
  .content .in .bgIllust.bgIllust12 {
    left: 20%;
    bottom: -3em;
  }
  .content .in .bgIllust.bgIllust13 {
    right: 0;
  }
  .content .in .bgIllust.bgIllust14 {
    left: 0;
  }
  .content .in .bgIllust.bgIllust15 {
    right: 0;
    bottom: -10em;
    display: none;
  }
  .content .in .bgIllust.bgIllust16 {
    left: 0;
    bottom: -6em;
  }
  .content .in .bgIllust.fadeinRight {
    text-align: right;
  }
  .content .in .bgIllust img {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .content .in .bgIllust.bgIllust5 {
    display: none;
  }
}

/*----------------------------------------------------
ヘッダー & ハンバーガーメニュー
----------------------------------------------------*/
/*----------------------------------------------------
main
-----------------------------------------------------*/
.mvCont {
  position: relative;
}
.mvCont .mvInfo {
  background: #F9D238;
  display: flex;
  border-radius: 10px;
  z-index: 2;
  overflow: hidden;
}
.mvCont .mvInfo a {
  display: block;
}
.mvCont .mvInfo a:hover {
  background: rgba(255, 255, 255, 0.5);
}
.mvCont .mvInfo .mvInfoL {
  padding: 0.5em 1em;
  margin: 0.3em 0;
  border-right: 1px solid #000;
}
.mvCont .mvInfo .mvInfoL p:first-child {
  font-weight: bold;
}
.mvCont .mvInfo .mvInfoL p:last-child {
  width: 100%;
  font-size: 0.75em;
}
.mvCont .mvInfo .mvInfoL p:last-child a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mvCont .mvInfo .mvInfoR {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mvCont .mvInfo .mvInfoR span {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 1.6em;
  height: 1.6em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
@media screen and (min-width: 1201px) {
  .mvCont {
    padding-top: 3rem;
  }
  .mvCont .mvInfo {
    width: 320px;
    position: absolute;
    top: 100px;
    right: 30px;
    flex-wrap: wrap;
  }
  .mvCont .mvInfo .mvInfoL {
    width: 270px;
  }
  .mvCont .mvInfo .mvInfoR {
    width: 50px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1200px) {
  .mvCont {
    padding-top: 6rem;
  }
  .mvCont .mvInfo {
    width: 320px;
    position: absolute;
    top: 7.5%;
    left: 20px;
    flex-wrap: wrap;
  }
  .mvCont .mvInfo .mvInfoL {
    width: 270px;
  }
  .mvCont .mvInfo .mvInfoR {
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  .mvCont {
    padding: 4rem 0 3rem;
  }
  .mvCont .mvInfo {
    width: 90%;
    margin: 1em auto;
    flex-wrap: nowrap;
  }
  .mvCont .mvInfo .mvInfoL {
    width: 90%;
  }
  .mvCont .mvInfo .mvInfoR {
    width: 60px;
  }
}
@media screen and (max-width: 500px) {
  .mvCont .mvInfo .mvInfoR span {
    width: 6vw;
    height: 6vw;
  }
}

/*----------------------------------------------------
pageMessage
-----------------------------------------------------*/
#pageMessage .HL2 span:first-child:before {
  background-image: url(../img/bg-illust/3.png);
}
@media screen and (min-width: 768px) {
  #pageMessage .messageCont {
    /*以上の時*/
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  #pageMessage .messageCont .messageBox:first-child {
    width: 60%;
    font-size: 1.125em;
  }
  #pageMessage .messageCont .messageBox:last-child {
    width: 35%;
    text-align: center;
  }
}

/*----------------------------------------------------
pageNews
-----------------------------------------------------*/
#pageNews .HL2 span:first-child:before {
  background-image: url(../img/top/hl/news.png);
}

/*----------------------------------------------------
pageOurJob
-----------------------------------------------------*/
#pageOurJob .ourjobCont .ourjobBox .ourjobInBox {
  position: relative;
}
#pageOurJob .ourjobCont .ourjobBox .ourjobInBox .imgBox img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #pageOurJob .ourjobCont .ourjobBox .ourjobInBox {
    height: 85vw;
    margin-top: 1.5em;
  }
}
#pageOurJob .ourjobCont .ourjobBox .ourjobInBox .dtlBtn {
  width: 90%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5%;
  margin: auto;
}
@media screen and (min-width: 1200px) {
  #pageOurJob .ourjobCont {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #pageOurJob .ourjobCont .ourjobBox:nth-child(1) {
    width: 25%;
  }
  #pageOurJob .ourjobCont .ourjobBox:nth-child(2) {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  #pageOurJob .ourjobCont .ourjobBox:nth-child(2) {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  #pageOurJob .ourjobCont .ourjobBox .ourjobInBox:first-child, #pageOurJob .ourjobCont .ourjobBox .ourjobInBox:last-child {
    width: 48%;
  }
}

/*----------------------------------------------------
pagePeople
-----------------------------------------------------*/
@media screen and (min-width: 1201px) {
  #pagePeople .peopleCont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1201px) and (min-width: 768px) and (max-width: 1200px) {
  #pagePeople .peopleCont {
    justify-content: space-around;
  }
}
#pagePeople .peopleCont .peopleInBox {
  background: #F8B62D;
  border: 3px solid #000;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease;
}
#pagePeople .peopleCont .peopleInBox .imgBox {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}
#pagePeople .peopleCont .peopleInBox .imgBox img {
  position: absolute;
  top: 0;
}
#pagePeople .peopleCont .peopleInBox .txtBox {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  padding: 0.8em 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  #pagePeople .peopleCont .peopleInBox .txtBox {
    padding: 0.5em 0.5em;
  }
}
#pagePeople .peopleCont .peopleInBox .txtBox:before, #pagePeople .peopleCont .peopleInBox .txtBox:after {
  content: "";
  position: absolute;
  transition: all 0.2s ease-in;
}
#pagePeople .peopleCont .peopleInBox .txtBox:before {
  width: 10px;
  height: 10px;
  right: 20px;
  top: 53%;
  transform: translateY(-40%) rotate(45deg);
  border-top: 2.5px solid #000;
}
#pagePeople .peopleCont .peopleInBox .txtBox:after {
  width: 24px;
  height: 2.5px;
  right: 18px;
  top: 53%;
  transform: translateY(-40%);
  background: #000;
}
@media screen and (max-width: 767px) {
  #pagePeople .peopleCont .peopleInBox .txtBox:before {
    width: 8px;
    top: 71%;
  }
  #pagePeople .peopleCont .peopleInBox .txtBox:after {
    width: 20px;
    top: 70%;
  }
}
@media screen and (min-width: 768px) {
  #pagePeople .peopleCont .peopleInBox a:hover .txtBox:before {
    right: 12px;
  }
  #pagePeople .peopleCont .peopleInBox a:hover .txtBox:after {
    right: 10px;
    width: 32px;
  }
}
#pagePeople .peopleCont .peopleInBox:hover img {
  opacity: 0.75;
}
@media screen and (min-width: 768px) {
  #pagePeople .peopleCont .peopleInBox:nth-child(n+7) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #pagePeople .peopleCont .peopleInBox:nth-child(n+5) {
    display: none;
  }
}
#pagePeople .peopleCont .peopleBox {
  position: relative;
}
@media screen and (min-width: 1201px) {
  #pagePeople .peopleCont .peopleBox:nth-child(1) {
    width: 25%;
  }
}
#pagePeople .peopleCont .peopleBox:nth-child(1) .bgIllust {
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #pagePeople .peopleCont .peopleBox:nth-child(1) .bgIllust {
    top: 6em;
  }
}
@media screen and (min-width: 1201px) {
  #pagePeople .peopleCont .peopleBox:nth-child(2) {
    width: 70%;
  }
}
#pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBoxCont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBoxCont {
    justify-content: space-around;
  }
}
#pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox {
  margin-top: 30px;
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  #pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  #pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox {
    width: 48%;
  }
}
#pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p {
  display: inline-block;
}
#pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p:first-child {
  margin-right: 1em;
}
#pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p:last-child {
  background: linear-gradient(transparent 50%, rgba(255, 255, 0, 0.5) 0%);
  margin-right: 3em;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p:last-child {
    margin-right: 1em;
  }
}
@media screen and (min-width: 768px) {
  #pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p:first-child {
    font-size: 0.75em;
  }
  #pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p:last-child {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 767px) {
  #pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p {
    margin: 0;
  }
  #pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p:first-child {
    font-size: 2.6vw;
  }
  #pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p:last-child {
    font-size: 3.8vw;
  }
}
#pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p a {
  text-decoration: none;
}
#pagePeople .peopleCont .peopleBox:nth-child(2) .peopleInBox .txtBox p a:hover {
  color: #fc6c45;
}

/*----------------------------------------------------
pageOfficeLife
-----------------------------------------------------*/
@media screen and (min-width: 1201px) {
  #pageOfficeLife .officelifeCont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  #pageOfficeLife .officelifeCont .officelifeInCont {
    border: 3px solid #000;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
  }
}
#pageOfficeLife .officelifeCont .officelifeInCont .officelifeInBox {
  position: relative;
}
@media screen and (min-width: 768px) {
  #pageOfficeLife .officelifeCont .officelifeInCont .officelifeInBox:first-child, #pageOfficeLife .officelifeCont .officelifeInCont .officelifeInBox:last-child {
    width: 50%;
    max-height: calc(66vw + 86px);
  }
}
@media screen and (max-width: 767px) {
  #pageOfficeLife .officelifeCont .officelifeInCont .officelifeInBox {
    max-height: 100vw;
    margin-top: 1.5em;
    border: 3px solid #000;
    border-radius: 25px;
    overflow: hidden;
  }
}
#pageOfficeLife .officelifeCont .officelifeInCont .officelifeInBox:first-child .imgBox img, #pageOfficeLife .officelifeCont .officelifeInCont .officelifeInBox:last-child .imgBox img {
  width: 100%;
}
#pageOfficeLife .officelifeCont .officelifeInCont .officelifeInBox:first-child .dtlBtn {
  background: rgba(0, 0, 0, 0.6) url(../img/bg_stripe50.png) repeat top left;
}
#pageOfficeLife .officelifeCont .officelifeInCont .officelifeInBox:last-child .dtlBtn {
  background: #EF8F00 url(../img/bg_stripe50.png) repeat top left;
}
#pageOfficeLife .officelifeCont .officelifeInCont .officelifeInBox .dtlBtn {
  margin: 1em;
  padding: 10px 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 1201px) {
  #pageOfficeLife .officelifeCont .officelifeBox:nth-child(1) {
    width: 25%;
  }
  #pageOfficeLife .officelifeCont .officelifeBox:nth-child(2) {
    width: 70%;
  }
}/*# sourceMappingURL=top.css.map */