@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000000;
  font-size: 16px;
  line-height: 2;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #f38f1e;
  font-weight: bold;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

strong {
  color: #000;
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
side
------------------------------------------------- */
#side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 4;
  transform: translateY(-50%);
}
#side li + li {
  margin-top: 20px;
}
#side a {
  transition: all 0.5s ease-out;
}
#side a:hover {
  opacity: 0.6;
}
@media (max-width: 1399px) {
  #side {
    width: 7.1428571429vw;
  }
}
@media (max-width: 767px) {
  #side {
    display: none;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: relative;
  z-index: 3;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
}
#header .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-right: 105px;
  text-align: center;
}
#header .logo {
  padding-top: 20px;
  padding-left: 35px;
}
#header .logo h1, #header .logo div {
  background-color: #fff;
}
#header .logo h1:not(:has(a)), #header .logo div:not(:has(a)) {
  padding-right: 27px;
}
#header .logo h1 a, #header .logo div a {
  padding-right: 27px;
}
#header .logo img {
  width: 295px;
}
#header .navs {
  gap: 15px;
  display: flex;
}
#header .links ul {
  display: flex;
  gap: 10px;
}
#header .links li {
  background-color: #f38f1e;
  height: 30px;
  border-radius: 20px;
}
#header .links a {
  text-decoration: none;
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 5px 15px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}
#header .links a:hover {
  opacity: 0.6;
}
@media (max-width: 1199px) {
  #header .links {
    display: none;
  }
  #header .logo {
    padding-top: 8px;
    padding-left: 23px;
  }
  #header .logo img {
    width: 220px;
  }
}
@media (max-width: 767px) {
  #header .top {
    height: 60px;
    padding-right: 60px;
  }
  #header .logo {
    padding-top: 0;
    padding-left: 18px;
  }
  #header .logo h1:not(:has(a)),
  #header .logo div:not(:has(a)) {
    padding-right: 15px;
  }
  #header .logo h1 a,
  #header .logo div a {
    padding-right: 15px;
  }
  #header .logo img {
    width: 160px;
  }
}

/*
@media (min-width: 768px) {
  #header.m_fixed {
    left: 0;
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
    .top {
      padding-top: 5px;
      padding-bottom: 5px;
      background-color: #fff;
      border-bottom: solid 1px #ddd;
    }
    .logo {
      padding-top: 0px;
      padding-left: 10px;
      img {
        width: 200px;
      }
    }
    .buger-btn {
      border: solid 1px #f38f1e;
    }
  }
}
 */
/*
#gnav {
  & > ul {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    & > li {
      position: relative;
      flex: 1 0 auto;
      @include transition();
      &::after {
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        background-color: #000;
        bottom: 0px;
        left: calc((100% - 50px) / 2);
        z-index: 0;
        width: 0;
        @include transition();
      }
      &:hover::after {
        width: 50px;
      }

      //お問い合わせ
      &.contact {
        & > a {

        }
      }

      &:hover > ul {
        visibility: visible;
        opacity: 1;
      }
      //グローバルナビカレント表示
      &.current {
        border-top: solid 5px #e99100;
      }
      & > a {
        // @include transition();

        @include opacity();
        @include flex-center();
        width: 100%;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 1.6;
      }

      ul {
        position: absolute;
        top: 100%;
        visibility: hidden;
        width: 100%;
        opacity: 0;
        @include transition();
        z-index: 1;
        li {
          a {
            @include transition();
            @include flex-center();
            text-decoration: none;
            color: #333;
            font-size: 14px;
            letter-spacing: 0.1em;
            line-height: 1.6;
          }
        }
      }
    }
  }
  @include tab {
    & > ul {
      & > li {
        & > a {
        }
        ul {
          li {
            a {
            }
          }
        }
      }
    }
  }
  @include sp {
    & > ul {
      flex-direction: column;
      & > li {
        flex-grow: 0;
        &::after {
          display: none;
        }
        & > a {
          color: #fff;
        }
        ul {
          visibility: visible;
          opacity: 1;
          position: relative;
          padding: 0;

          li {
            border-bottom: 0px;
            border-top: 1px solid #000;
          }
        }
      }
    }
  }
}
 */
/* ----------------------------------------------
追加ハンバーガーメニュ
------------------------------------------------- */
.buger-btn {
  transition: all 0.5s ease-out;
  position: fixed;
  z-index: 4;
  top: 10px;
  right: 10px;
  width: 78px;
  height: 78px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5);
}
.buger-btn .border span {
  transition: all 0.5s ease-out;
  position: relative;
  display: block;
  width: 38px;
  height: 1px;
}
.buger-btn .border span:nth-child(2) {
  margin-top: 10px;
}
.buger-btn.close .border span {
  background-color: #ed5a24;
}
.buger-btn.open .border span {
  background-color: #ed5a24;
}
.buger-btn.open .border span:first-child {
  top: 5px;
  transform: rotate(45deg);
}
.buger-btn.open .border span:last-child {
  top: -5px;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .buger-btn {
    width: 50px;
    height: 50px;
  }
  .buger-btn .border span {
    width: 28px;
  }
}

.buger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  display: none;
  width: 100%;
  height: 100vh;
  padding: 20px 0;
  background-color: #f38f1e;
  text-align: left;
}
.buger .bugerlogo {
  position: absolute;
  top: 10px;
  left: 0;
}
.buger .bugerlogo img {
  width: 407px;
}
.buger .contents {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buger .left {
  flex-shrink: 0;
}
.buger .left p {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 700;
  font-size: 63px;
  color: #fff;
}
.buger .right {
  border-left: 1px solid #fff;
  padding: 20px 0 20px 80px;
  margin-left: 80px;
  display: flex;
  gap: 0 80px;
}
.buger ul {
  line-height: 1.2;
}
.buger ul li:not(:first-child) {
  margin-top: 20px;
}
.buger ul li a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.1em;
}
.buger ul li a:hover {
  opacity: 0.6;
}
@media (max-width: 1199px) {
  .buger .left p {
    font-size: 36px;
  }
  .buger .right {
    padding: 15px 0 15px 30px;
    margin-left: 30px;
    gap: 0 30px;
  }
  .buger .bugerlogo img {
    width: 300px;
  }
  .buger ul li:not(:first-child) {
    margin-top: 15px;
  }
  .buger ul li a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .buger .contents {
    padding: 0 10px;
    flex-direction: column;
  }
  .buger .left p {
    font-size: 26px;
  }
  .buger .right {
    padding: 20px 10px 0px 10px;
    margin-left: 0px;
    border-left: none;
    border-top: solid 1px #fff;
    flex-direction: column;
    row-gap: 15px;
  }
  .buger .bugerlogo img {
    width: 220px;
  }
  .buger ul li a {
    font-size: 15px;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
/*
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  width: 50px;
  height: 50px;
  @include opacity();
  @include sp {
    //display: none !important;
    bottom: 55px;
    right: 10px;
    width: 40px;
    height: 40px;
    a {
    }
  }
}
 */
/*マウスオーバー時画像切り替え

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  a {
    position: relative;
    display: block;
    width: 40px;
    height: 17px;
    img {
      @include transition();
      position: absolute;
      top: 0;
      &:last-child {
        opacity: 0;
      }
    }
    &:hover img:first-child {
      opacity: 0;
    }
    &:hover img:last-child {
      opacity: 1;
    }
  }
  @include sp {
   //display: none !important;
   bottom: 55px;
    right: 10px;
    width: 40px;
      height: 40px;
    a {

    }
  }
}

*/
/*フッター部分に固定
#pagetop {
  position: absolute;
  top: -30px;
  right: -90px;
  z-index: 3;
  width: 60px;
  height: 60px;
  @include opacity();
  @media (max-width: 1250px){
    right: 20px;
  }
  @include sp {
    //display: none !important;
    top: -20px;
    right: 10px;
    width: 40px;
    height: 40px;
    a {
    }
  }
}
*/
/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  background-color: #f38f1e;
  color: #fff;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
}
#footer .inner {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 30px;
  padding-bottom: 25px;
  display: flex;
  justify-content: space-between;
  gap: 0 50px;
}
#footer .left {
  display: flex;
  gap: 0 30px;
}
#footer .right {
  padding-top: 50px;
  flex-shrink: 0;
  width: 510px;
}
#footer .logo a {
  transition: all 0.5s ease-out;
}
#footer .logo a:hover {
  opacity: 0.6;
}
#footer .text {
  padding-top: 130px;
  font-size: 19px;
  line-height: 1.7368421053;
}
#footer #copyright {
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
}
#footer .links {
  margin-top: 50px;
  margin-bottom: 50px;
}
#footer .links ul {
  display: flex;
  gap: 0 3.137254902%;
}
#footer .links li {
  width: 48.431372549%;
  height: 71px;
  background-color: #fff;
}
#footer .links a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
}
#footer .links a:hover {
  opacity: 0.6;
}
#footer .links a small {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  color: #ed5a24;
  font-size: 14px;
}
#footer #fnav {
  display: flex;
  gap: 0 30px;
  line-height: 1.2;
  font-size: 20px;
}
#footer #fnav > ul > li:not(:first-child) {
  margin-top: 20px;
}
#footer #fnav > ul > li > a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  font-size: 20px;
}
#footer #fnav > ul > li > a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
#footer #fnav > ul > li ul li a:hover {
  opacity: 0.6;
}
@media (max-width: 1199px) {
  #footer .inner {
    /*   flex-direction: column;
    align-items: center;
    gap: 40px 0; */
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }
  #footer .left {
    flex-direction: column;
    gap: 20px;
  }
  #footer .right {
    padding-top: 30px;
    flex-shrink: 0;
    width: 400px;
  }
  #footer .logo img {
    width: 200px;
  }
  #footer .text {
    padding-top: 0px;
    font-size: 16px;
  }
  #footer .links {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #footer .links li {
    height: 60px;
  }
  #footer .links a {
    font-size: 16px;
  }
  #footer .links a small {
    font-size: 12px;
  }
  #footer #fnav > ul > li:not(:first-child) {
    margin-top: 10px;
  }
  #footer #fnav > ul > li > a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #footer .inner {
    flex-direction: column;
    align-items: center;
    gap: 40px 0;
  }
  #footer .left {
    align-items: center;
  }
  #footer .right {
    width: 100%;
    max-width: 300px;
  }
  #footer .text {
    font-size: 15px;
  }
  #footer .links ul {
    flex-direction: column;
    gap: 10px;
  }
  #footer .links li {
    width: 100%;
  }
  #footer #copyright {
    text-align: center;
    font-size: 12px;
  }
  #footer #fnav > ul > li > a {
    font-size: 14px;
  }
}

/* ----------------------------------------------
contactbnr
------------------------------------------------- */
.contactbnr {
  margin-bottom: 80px;
}
.contactbnr .inner {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.contactbnr .tel a,
.contactbnr .contact a {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
.contactbnr .tel a:hover,
.contactbnr .contact a:hover {
  opacity: 0.6;
}
/* ----------------------------------------------
scrollarea メイン画像右のスクロール
------------------------------------------------- */
.scrollarea {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}
.scrollarea a {
  transition: all 0.5s ease-out;
  display: block;
  padding-bottom: 40px;
  color: #0071b8;
  font-size: 14px;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 300;
  text-decoration: none;
  background-image: url(../images/main-scroll-arrow.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 13px;
}
.scrollarea a:hover {
  opacity: 0.6;
}
.scrollarea span {
  display: block;
  transform: rotate(180deg);
}
@media (max-width: 1199px) {
  .scrollarea {
    display: none;
  }
}

/* ----------------------------------------------
求人情報いちらん #jobs
------------------------------------------------- */
#jobs {
  margin-bottom: 100px;
  color: #000;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
}
#jobs .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#jobs .contents {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 1.8546365915%;
}
#jobs .block {
  width: 23.6090225564%;
  color: #fff;
  line-height: 1.625;
  border-radius: 40px;
}
#jobs .block:nth-child(odd) {
  background-color: #f38f1e;
}
#jobs .block:nth-child(even) {
  background-color: #f7ac3b;
}
#jobs .block a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  display: block;
  color: #fff;
  padding: 0 20px 30px 20px;
}
#jobs .block a:hover {
  opacity: 0.6;
}
#jobs .block .category {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 71px;
  padding: 5px 10px;
  width: 80%;
  margin: 0 auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 700;
  background-color: #fff;
  color: #f38f1e;
}
#jobs .block .eng {
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 700;
  margin-top: 5px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.07em;
  border-bottom: solid 1px #fff;
}
#jobs .block time {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  width: 120px;
  height: 27px;
  font-size: 18px;
  letter-spacing: 0.05em;
  background-color: #fff;
  color: #f38f1e;
}
#jobs .block .title {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
#jobs .block .text {
  font-weight: 400;
  /*  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5; //最大行数
  overflow: hidden;
  text-overflow: ellipsis; */
  font-size: 15px;
  line-height: 1.3;
}
#jobs .block .text table th {
  padding-right: 10px;
  white-space: nowrap;
}
#jobs .block .text table th, #jobs .block .text table td {
  padding-bottom: 5px;
}
@media (max-width: 1199px) {
  #jobs .block .text {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #jobs .block .text {
    font-size: 13px;
  }
}
@media (max-width: 1199px) {
  #jobs .block {
    border-radius: 20px;
  }
  #jobs .block a {
    padding: 0 10px 20px 10px;
  }
  #jobs .block .category {
    min-height: 40px;
    font-size: 16px;
  }
  #jobs .block .eng {
    padding-bottom: 0px;
    font-size: 16px;
  }
  #jobs .block time {
    margin-bottom: 5px;
    width: 100px;
    height: 20px;
    font-size: 14px;
  }
  #jobs .block .title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #jobs .contents {
    gap: 30px 4%;
  }
  #jobs .block {
    width: 48%;
  }
  #jobs .block .category {
    min-height: 30px;
    font-size: 14px;
  }
  #jobs .block .eng {
    font-size: 14px;
  }
  #jobs .block .title {
    font-size: 15px;
    line-height: 1.3;
  }
}/*# sourceMappingURL=style.css.map */