@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  max-width: 1440px;
}

.header {
  width: 100%;
  padding-top: 25px;
  position: fixed;
  z-index: 9;
  background-color: transparent;
  -webkit-transition: padding 0.5s, background-color 0.5s;
  transition: padding 0.5s, background-color 0.5s; /* 背景色と高さをじんわり変更 */
}
@media screen and (max-width: 376px) {
  .header {
    width: 375px;
    background-color: #FFFFFF;
  }
}

.header.transform {
  background-color: #FFFFFF; /* 背景色変更 */
}

.header.transform .header__item a {
  color: #333333;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  padding: 0 20px;
}
.header__inner a {
  color: #FFFFFF;
}
@media screen and (max-width: 376px) {
  .header__inner {
    width: 375px;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo__img {
  width: 42px;
  height: 51px;
}
@media screen and (max-width: 376px) {
  .header__logo__img {
    width: 31px;
    height: 36px;
  }
}

.logo__text {
  color: #FF8A00;
  font-family: "Noto Sans JP";
  margin-left: 14px;
  line-height: 1.2;
}

.header__logo__p {
  font-size: 1.25rem;
  font-weight: 700;
}

.header__span {
  font-size: 1.33rem;
  margin-top: 5px;
}
@media screen and (max-width: 376px) {
  .header__span {
    font-size: 10px;
    margin-top: 2px;
  }
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.header__item:not(:first-child) {
  margin-left: 29px;
}
@media screen and (max-width: 376px) {
  .header__item:not(:first-child) {
    margin-left: 0;
  }
}

.loader-bg {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(241, 245, 242);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.loader-bg p {
  font-size: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

.modal__btn {
  width: 180px;
  height: 50px;
  border-radius: 30px;
  text-align: center;
  padding: 16px 0 15px 0;
  margin-left: 29px;
  background: #FFB800;
  color: white;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  cursor: pointer;
}

.contact__btn {
  width: 180px;
  height: 50px;
  border-radius: 30px;
  text-align: center;
  padding: 16px 0 15px 0;
  margin-left: 12px;
  background: #FF8A00;
  color: white;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  cursor: pointer;
}

#modal-1 {
  display: none;
}

#modal-1.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal__container {
  background-color: #fff;
  width: 500px;
  height: 439px;
  padding: 20px;
  margin-right: 20px;
  margin-left: 20px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.model__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-top: 20px;
}

.modal-close__btn {
  width: 21px;
  height: 21px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal__label__text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #606266;
  margin-top: 22px;
}

.modal__input {
  width: 460px;
  height: 40px;
  border: solid 1px #DCDFE6;
  border-radius: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 14px;
}

.password__text {
  margin-top: 29px;
}

.sign-in {
  width: 130px;
  height: 38px;
  border-radius: 4px;
  text-align: center;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  margin: 34px auto 0;
  background: #1E5099;
  color: white;
}

.model__contact__btn {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #448AFF;
  position: absolute;
  top: 398px;
  right: 20px;
}

@media screen and (max-width: 376px) {
  button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    margin: 0;
    outline: none;
    padding: 0;
    vertical-align: middle;
  }
  /* 以下、ハンバーガーボタン */
  .burger-btn {
    display: block;
    width: 39px;
    height: 39px;
    position: absolute;
    top: 14px;
    right: 0;
    z-index: 999;
    border: none;
  }
  .bar {
    width: 20px;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #333333;
  }
  .bar_top {
    top: 10px;
  }
  .bar_mid {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .bar_bottom {
    bottom: 10px;
  }
  .burger-btn.close .bar_top {
    -webkit-transform: translate(-50%, 10px) rotate(45deg);
            transform: translate(-50%, 10px) rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .burger-btn.close .bar_mid {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .burger-btn.close .bar_bottom {
    -webkit-transform: translate(-50%, -8px) rotate(-45deg);
            transform: translate(-50%, -8px) rotate(-45deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  /* メニューオープン時 */
  .right__wrapper {
    visibility: hidden;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 2;
  }
  .header__right {
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 184, 0)), to(rgb(255, 138, 0)));
    background: linear-gradient(rgb(255, 184, 0), rgb(255, 138, 0));
    z-index: 2;
  }
  .header__list {
    display: block;
    position: absolute;
    top: 30%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
  }
  .header__item {
    margin-right: 0;
    margin-bottom: 40px;
    color: #FFFFFF;
  }
  .modal__btn {
    display: none;
  }
  .contact__btn {
    display: none;
  }
  .right__wrapper.fade {
    visibility: visible;
    opacity: 1;
  }
}
#fv {
  position: relative;
  max-width: 1440px;
  height: 818px;
}
@media screen and (max-width: 376px) {
  #fv {
    height: 670px;
  }
}

.slide__img__area {
  width: 100%;
  height: 705px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 376px) {
  .slide__img__area {
    width: 315px;
    height: 545px;
    margin-top: 74px;
  }
}

.slide__img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 703px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-animation: slider-1 24s linear infinite;
          animation: slider-1 24s linear infinite;
}
@media screen and (max-width: 376px) {
  .slide__img {
    width: 315px;
    height: 503px;
  }
}
.slide__img:nth-child(1) {
  background-image: url(../img/firstview-img01.jpg);
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.slide__img:nth-child(2) {
  background-image: url(../img/firstview-img02.jpg);
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.slide__img:nth-child(3) {
  background-image: url(../img/firstview-img03.jpg);
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}

@-webkit-keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.fv__message {
  width: 87.36%;
  height: 575px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8A00), to(#FFB800));
  background: linear-gradient(to bottom, #FF8A00, #FFB800);
  position: absolute;
  top: 243px;
  left: 0;
  z-index: -2;
}
@media screen and (max-width: 376px) {
  .fv__message {
    width: 316px;
    height: 522px;
    top: 145px;
  }
}

.message__img {
  width: 587px;
  height: 187px;
  position: absolute;
  top: 494px;
  left: 133px;
  z-index: 1;
}
@media screen and (max-width: 376px) {
  .message__img {
    width: 348px;
    height: 108px;
    left: 17px;
  }
}

.mission {
  max-width: 1440px;
  height: 1243px;
  position: relative;
}

.mission-vision__title {
  width: 98px;
  margin-top: 78px;
}
@media screen and (max-width: 376px) {
  .mission-vision__title {
    width: 120px;
  }
}

.text__area__left {
  margin-top: 132px;
}
@media screen and (max-width: 376px) {
  .text__area__left {
    margin-top: 70px;
  }
}

.mission__title {
  width: 137px;
}
@media screen and (max-width: 376px) {
  .mission__title {
    width: 120px;
    margin-inline: auto;
  }
}

.mission__item__ttl {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  margin-top: 25px;
}
@media screen and (max-width: 376px) {
  .mission__item__ttl {
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
  }
}

.mission__text {
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5;
  text-align: left;
  color: #333333;
  margin-top: 25px;
  width: 700px;
}
@media screen and (max-width: 376px) {
  .mission__text {
    font-size: 12px;
    width: 250px;
    margin-inline: auto;
    text-align: center;
  }
}

.text__area__right {
  margin-top: 111px;
  text-align: right;
  margin-right: 23px;
}
@media screen and (max-width: 376px) {
  .text__area__right {
    margin-top: 95px;
    text-align: center;
  }
}

.vision__title {
  width: 115px;
  margin-left: 842px;
  padding-right: 23px;
}
@media screen and (max-width: 376px) {
  .vision__title {
    margin-inline: auto;
  }
}

.vision__item__ttl {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 25px;
}
@media screen and (max-width: 376px) {
  .vision__item__ttl {
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
  }
}

.vision__text {
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5;
  text-align: right;
  color: #333333;
  margin-top: 25px;
  width: 700px;
  margin-left: 257px;
}
@media screen and (max-width: 376px) {
  .vision__text {
    font-size: 12px;
    width: 250px;
    margin-inline: auto;
    text-align: center;
  }
}

.mission__footer__img {
  width: 100%;
  height: 313px;
  background: url(../img/mission-bg.png);
  background-size: 1440px;
  background-repeat: no-repeat;
  position: absolute;
  top: 930px;
}
@media screen and (max-width: 376px) {
  .mission__footer__img {
    top: 1125px;
    height: 100px;
    background-size: 375px;
  }
}

.message {
  max-width: 1440px;
  height: 979px;
  position: relative;
}

.message__inner {
  padding-top: 0;
}

.message__title {
  margin-top: 80px;
  width: 48px;
}

.message__item__ttl {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  color: #333333;
  text-align: left;
  margin-top: 92px;
}
@media screen and (max-width: 376px) {
  .message__item__ttl {
    font-size: 27px;
    margin-top: 280px;
  }
}

.message__text {
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.3;
  color: #333333;
  text-align: left;
  width: 550px;
  height: 629px;
  margin-top: 30px;
}
@media screen and (max-width: 376px) {
  .message__text {
    font-size: 12px;
    width: 350px;
    height: auto;
    line-height: 1.5;
  }
}

.message___img {
  width: 100%;
  height: 752px;
  background: url(../img/ceo-message-new.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 227px;
  z-index: -1;
}
@media screen and (max-width: 376px) {
  .message___img {
    width: 375px;
    height: 334px;
    background-position: right;
    background-size: 100%;
    background-image: url(../img/ceo-message-sp.png);
  }
}

.message__img__name {
  background-color: #FFFFFF;
  width: 20.6%;
  height: 123px;
  position: absolute;
  top: 801px;
  right: 0;
  padding: 16px 0 21px 26px;
}
@media screen and (max-width: 376px) {
  .message__img__name {
    top: 250px;
    left: 0;
    width: 196px;
    height: 94px;
  }
}

.ceo__name {
  width: 52.34%;
  margin-top: 20px;
}

.job-list {
  max-width: 100%;
  height: 1332px;
  position: relative;
}
@media screen and (max-width: 376px) {
  .job-list {
    height: 1640px;
  }
}

.job-list__title {
  margin-top: 80px;
}

.job-list__ttl__img {
  width: 56px;
}

.job-list__text {
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-weight: 400;
  left: 1.2em;
  color: #333333;
  margin-top: 43px;
}

.job-list-area {
  background-color: #F9F9F9;
  width: 1258px;
  height: 941px;
  margin-right: 0;
  position: absolute;
  top: 294px;
  left: 182px;
  margin-bottom: 97px;
}
@media screen and (max-width: 376px) {
  .job-list-area {
    width: 100%;
    height: 1345px;
    margin: 0 auto;
    left: 0;
  }
}

.job-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 98px;
     -moz-column-gap: 98px;
          column-gap: 98px;
  row-gap: 133px;
  position: absolute;
  top: 352px;
  left: 240px;
}
@media screen and (max-width: 376px) {
  .job-list__grid {
    grid-template-columns: repeat(1, 1fr);
    left: 20px;
    row-gap: 50px;
  }
}

.job-item {
  position: relative;
}

.job-item__img {
  width: 431px;
  height: 267px;
}
@media screen and (max-width: 376px) {
  .job-item__img {
    width: 335px;
  }
}

.job-item__ttl {
  width: 120px;
  height: 25px;
  background-color: #333333;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  padding: 4px 17px 4px 17px;
  position: absolute;
  top: 188px;
  left: 20px;
}
@media screen and (max-width: 376px) {
  .job-item__ttl {
    left: 0;
  }
}

.job-item__text {
  width: 431px;
  height: 99px;
  background-color: #FFFFFF;
  font-size: 12px;
  padding: 20px 76px 0 17px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1607843137);
  position: absolute;
  text-align: left;
  top: 213px;
  left: 20px;
  color: #333333;
}
@media screen and (max-width: 376px) {
  .job-item__text {
    width: 335px;
    height: 80px;
    left: 0;
  }
}

.job-item__text::after {
  position: absolute;
  top: 43px;
  right: 20px;
  content: "";
  background-image: url(../img/article-more-icon.png);
  background-size: contain;
  width: 13px;
  height: 13px;
}

.entry-banner {
  width: 100%;
  height: 505px;
  background: url(../img/cta-bg-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 376px) {
  .entry-banner {
    width: 375px;
    background-position: center;
    background-size: cover;
    height: 300px;
  }
}
.entry-banner .entry__banner__rayer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 138, 0, 0.9)), to(rgba(255, 184, 0, 0.9)));
  background: linear-gradient(rgba(255, 138, 0, 0.9), rgba(255, 184, 0, 0.9));
  width: 100%;
  height: 505px;
}
@media screen and (max-width: 376px) {
  .entry-banner .entry__banner__rayer {
    height: 300px;
  }
}

.entry__logo-img {
  width: 49px;
  height: 49px;
  display: inline;
  margin-top: 84px;
}
@media screen and (max-width: 376px) {
  .entry__logo-img {
    width: 30px;
    height: 30px;
    margin-top: 10px;
  }
}

.entry-banner__title {
  font-family: "Noto Sans JP";
  font-size: 42px;
  font-weight: 700;
  margin-top: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}
@media screen and (max-width: 376px) {
  .entry-banner__title {
    font-size: 17px;
  }
}

.entry__text {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
  margin-top: 21px;
}
@media screen and (max-width: 376px) {
  .entry__text {
    font-size: 9px;
  }
}

.entry__btn {
  margin-top: 48px;
  border: solid 4px #FFFFFF;
  border-radius: 9999px;
  width: 330px;
  height: 84px;
  padding: 29px 84px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 376px) {
  .entry__btn {
    padding: 17px 70px;
  }
}
.entry__btn a {
  color: #FFFFFF;
  display: block;
}
@media screen and (max-width: 376px) {
  .entry__btn a {
    font-size: 13px;
  }
}
@media screen and (max-width: 376px) {
  .entry__btn {
    width: 300px;
    height: 60px;
  }
}

.entry__btn a::after {
  position: absolute;
  top: 32px;
  right: 34px;
  content: "";
  background-image: url(../img/btn-more-icon.png);
  background-size: contain;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 376px) {
  .entry__btn a::after {
    width: 16px;
    height: 16px;
    top: 17px;
  }
}

.footer {
  width: 100%;
  height: 149px;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__logo__img {
  margin-left: 20px;
  width: 42px;
  height: 51px;
}
@media screen and (max-width: 376px) {
  .footer__logo__img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 149px;
}

.footer__logo__p {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (max-width: 376px) {
  .footer__logo__p {
    font-size: 10px;
  }
}

.footer__span {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
@media screen and (max-width: 376px) {
  .footer__span {
    font-size: 16px;
    font-weight: 400;
  }
}

.footer__copy-right {
  font-size: 10px;
  line-height: 100%;
}
@media screen and (max-width: 376px) {
  .footer__copy-right {
    font-size: 7px;
  }
}

.section__sub__title {
  font-family: "Noto Sans JP";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 9px;
}
@media screen and (max-width: 376px) {
  .section__sub__title {
    font-size: 1.5rem;
  }
}

.section__title {
  display: inline-block;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 376px) {
  .br-sp {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */