/* jsc-text-fade */
.jsc-text-fade {
  position: relative;
  top: 6px;
  opacity: 0;
}

/* jsc-filled-text */
.jsc-filled-text {
  position: relative;
}

.jsc-filled-text > :not(.jsc-filled-text-container) {
  opacity: 0;
}

.jsc-filled-text-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 0;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background-color: transparent;
}

.jsc-filled-text-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.jsc-filled-text-inner > * {
  padding: 0;
  color: transparent;
}

.jsc-filled-text-inner img {
  opacity: 0;
}

/* jsc-slide-in-image */
.jsc-slide-in-image {
  position: relative;
  display: flex;
  overflow: hidden;
}

.jsc-slide-in-image > * {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

.jsc-slide-in-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
}

@-webkit-keyframes slideIn {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

@keyframes slideIn {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}

@-webkit-keyframes slideOut {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

@keyframes slideOut {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

.jsc-slide-in-image_show > * {
  -webkit-animation: slideIn 0.4s ease-in forwards;
          animation: slideIn 0.4s ease-in forwards;
  will-change: left;
}

.jsc-slide-in-image_show:after {
  -webkit-animation: slideIn 0.4s ease-in forwards, slideOut 0.4s ease-out 0.6s forwards;
          animation: slideIn 0.4s ease-in forwards, slideOut 0.4s ease-out 0.6s forwards;
  will-change: left;
}

/* jsc-slide-in-text */
.jsc-slide-in-text {
  position: relative;
  color: transparent;
}

.jsc-slide-in-text-begin, .jsc-slide-in-text-end {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.jsc-slide-in-text-begin {
  z-index: 1;
  transition: width 0.3s cubic-bezier(0.67, 0.01, 0.89, 0.69);
  will-change: width;
}

.jsc-slide-in-text-end {
  z-index: 2;
  transition: width 0.3s ease-out 0.6s;
  will-change: width;
}

@-webkit-keyframes headerNav {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 0, 0, 0.85);
  }
}

@keyframes headerNav {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 0, 0, 0.85);
  }
}

body.is-active {
  position: fixed;
  width: 100%;
}

/* header */
.header {
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  z-index: 9999;
  padding: 20px 0;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header-hamburger-btn {
  display: none;
}

.header-hamburger-btn > div {
  display: block;
  position: relative;
  width: 30px;
  height: 20px;
  z-index: 100;
}

.header-hamburger-btn span {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transform: translate(0, -50%);
  border-radius: 10px;
  transition: top 0.2s, transform 0.2s, opacity 0.3s;
}

.header-hamburger-btn span.is-active {
  will-change: top;
  transform: translate(20px, -50%);
  opacity: 0;
}

.header-hamburger-btn span.is-active:first-child {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
  opacity: 1;
}

.header-hamburger-btn span.is-active:last-child {
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
  opacity: 1;
}

.header-hamburger-btn span:first-child {
  top: 0;
}

.header-hamburger-btn span:last-child {
  top: 100%;
}

.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-logo {
  width: 200px;
  height: 35px;
  background-image: url("/https/stanby.co.jp/assets/img/common/stanby_logo-header.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.company-logo a {
  display: flex;
  width: 100%;
  height: 100%;
}

.company-logo img {
  width: 100%;
  max-height: 35px;
  display: none;
}

.header-wrapper-nav {
  display: flex;
  align-items: center;
}

.header-wrapper-nav-list {
  font-family: "NotoSans";
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s;
}

.header-wrapper-nav-list li + li {
  margin-left: 24px;
}

.header-wrapper-nav-list li:not(:last-child) a {
  position: relative;
  color: #000000;
}

.header-wrapper-nav-list li:not(:last-child) a span {
  letter-spacing: 0.6px;
  transition: 0.3s;
}

.header-wrapper-nav-list li:not(:last-child).active a {
  color: #f5631c;
}

.header-wrapper-nav h2,
.footer-sitemap h2 {
  display: none;
}

.header-wrapper-nav-btn {
  font-family: "NotoSans";
  display: inline-block;
  text-align: center;
  padding: 8px 15px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, #f2255f 0%, #f7911e 100%) padding-box, linear-gradient(160deg, #f2255f 0%, #f7911e 100%) border-box;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  color: #fcfcfc;
  transition: 0.3s;
}

/* footer */
.footer {
  padding: 120px 0;
  background-color: #414042;
}

.footer-container {
  position: relative;
}

.footer-sitemap {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.footer-sitemap > nav {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  justify-content: space-between;
  border-bottom: 1px solid #504f52;
}

.footer-sitemap > nav > a:after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-color: #ffffff;
  border-width: 0 1px 1px 0;
  padding: 9px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  position: absolute;
  right: 0;
}

.footer-sitemap > div {
  margin-top: 40px;
}

.footer-sitemap > div > ul {
  display: inline-flex;
}

.footer-sitemap > div > ul > li + li {
  margin-left: 35px;
}

.footer-sitemap > div > ul > li > a {
  font-family: "NotoSans";
  font-weight: normal;
  font-size: 12px;
  color: #ffffff;
}

.footer-sitemap-logo {
  max-width: 200px;
  margin-top: -14px;
}

.footer-sitemap-logo a {
  display: inline-block;
}

.footer-sitemap-logo img {
  width: 100%;
}

.footer-sitemap-nav-list-area {
  display: flex;
  flex-direction: column;
}

.footer-sitemap-nav-list {
  font-family: "NotoSans";
  display: inline-flex;
  margin: 0;
  font-size: 15px;
  font-weight: bold;
}

.footer-sitemap-nav-list > li + li {
  margin-left: 35px;
}

.footer-sitemap-nav-list > li > a {
  color: #ffffff;
  transition: 0.3s;
}

.footer-sitemap-nav-list + .footer-sitemap-nav-list {
  margin-top: 40px;
}

.top-header {
  height: 100%;
  min-height: 325px;
  background-position: center;
  background-size: cover;
  color: #26262e;
  padding-top: 160px;
}

.top-header-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.top-header.mission {
  background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
}

.top-header.service {
  background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
}

.top-header.news {
  background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
}

.top-header.overview {
  background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
}

.top-header.recruit {
  background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
}

.top-header-sub-heading {
  font-family: "Montserrat";
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 50px;
}

.top-header-heading {
  font-size: 20px;
  line-height: 1;
  font-family: "NotoSans";
  font-weight: 700;
  margin-top: 30px;
}

.section-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading {
  display: flex;
  position: relative;
}

.section-heading span {
  display: inline-block;
  font-size: 32px;
  font-family: "Montserrat";
  font-weight: 700;
  margin-left: 60px;
  color: transparent;
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: center;
  line-height: 1;
  letter-spacing: 0.1em;
}

.section-heading::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  border-top: 1px #000000 solid;
}

.section-heading.white {
  background-image: none;
  background-clip: none;
}

.section-heading.white::before {
  border-top: 1px #ffffff solid;
}

.section-wrapper.bg-dot {
  background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
}

.section-contact-button {
  margin: 0 auto;
  display: block;
  max-width: 550px;
  min-height: 80px;
  cursor: pointer;
  line-height: 2.5;
  background-color: #26262e;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .section-contact-button {
    min-height: 60px;
  }
}

.section-contact-button span {
  width: 100%;
  text-align: center;
  color: #ffffff;
  z-index: 100;
  font-family: "NotoSans";
  font-weight: 700;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .section-contact-button span {
    font-size: 16px;
  }
}

.section-contact-button:hover::before {
  left: 0;
}

.section-contact-button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  background-image: linear-gradient(120deg, #e7008a 0%, #f28e1c 75%);
  transition: left ease 0.3s;
}

.section-contact-button::after {
  content: "";
  display: block;
  position: absolute;
  padding: 4px;
  border: 3px solid #ffffff;
  border-left: none;
  border-bottom: none;
  top: 50%;
  right: 40px;
  transform: rotate(45deg) translate(0, -50%);
}

@media screen and (max-width: 767px) {
  .section-contact-button::after {
    padding: 3px;
    right: 18px;
  }
}

.sp-break {
  display: none;
}

.pc-break {
  display: block;
}

.sp-hide {
  display: block;
}

.pc-hide {
  display: none;
}

.jsc-fade {
  transition: opacity ease-in 0.24s, transform ease-in 0.14s;
}

.jsc-fade-in {
  opacity: 0;
  transform: translateY(6px);
}

@media only screen and (min-width: 1031px) and (max-width: 1199px) {
  .header-wrapper {
    max-width: 1190px;
    padding: 0 16px 0 20px;
  }
  .header-wrapper-nav-list {
    font-size: 14px;
  }
  .header-wrapper-nav-list li + li {
    margin-left: 18px;
  }
}

@media screen and (max-width: 1030px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0;
    height: 60px;
  }
  .header-wrapper-nav-btn {
    width: 100%;
    padding: 15px 0;
    height: 60px;
    font-size: 16px;
  }
  .header-hamburger-btn {
    display: block;
    padding: 20px;
    cursor: pointer;
    background-color: #26262e;
  }
  .header-wrapper {
    padding: 0 0 0 20px;
    margin: 0;
  }
  .company-logo {
    width: 150px;
    height: 30px;
  }
  .header-wrapper-nav {
    display: none;
    padding: 80px 20px;
  }
  .header-wrapper-nav.is-active {
    display: block;
    width: 100%;
    height: calc(100vh - 60px);
    position: absolute;
    top: 60px;
    left: 0;
    -webkit-animation: headerNav 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation: headerNav 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
  .header-wrapper-nav-list {
    display: block;
    padding: 0 20px;
  }
  .header-wrapper-nav-list li + li {
    margin-left: 0;
    margin-top: 50px;
  }
  .header-wrapper-nav-list li:not(:last-child) a {
    display: flex;
    flex-direction: column;
    color: #ffffff;
  }
  .header-wrapper-nav-list li:not(:last-child) a span {
    font-size: 16px;
  }
  .header-wrapper-nav-list li:last-child {
    margin-left: 0;
    margin-top: 80px;
  }
}

@media screen and (max-width: 845px) {
  /* footer */
  .footer {
    padding: 80px 0;
  }
  .footer-sitemap-nav-list {
    display: inline-block;
    margin-top: 50px;
  }
  .footer-sitemap-nav-list > li + li {
    margin-top: 40px;
    margin-left: 0;
  }
  .footer-sitemap {
    margin-left: 0;
  }
  .footer-sitemap > nav > a:after {
    top: 10px;
    right: 25px;
  }
  .footer-sitemap > div > ul {
    display: inline-block;
  }
  .footer-sitemap > div > ul > li + li {
    margin-top: 40px;
    margin-left: 0;
  }
  .footer-sitemap-logo {
    max-width: 160px;
    margin-top: 0;
  }
}

@media screen and (min-width: 845px) {
  .company-logo a {
    transition: opacity 0.3s;
  }
  .company-logo a:hover {
    opacity: 0.7;
  }
  /* footer */
  .footer-container {
    display: flex;
    justify-content: space-between;
  }
  .footer-sitemap-nav-list > li > a:hover {
    color: #f5631c;
  }
  .footer-sitemap {
    width: 825px;
  }
  .footer-sitemap > nav > a {
    position: relative;
  }
  .footer-sitemap > nav > a:hover:after {
    transition: border-color 0.3s ease;
    border-color: #f5631c;
  }
}

@media screen and (min-width: 768px) and (max-width: 768px) {
  a.header-wrapper-nav-btn {
    width: 200px;
    height: 60px;
  }
}

@media screen and (min-width: 1030px) {
  .header-wrapper-nav-btn {
    width: 195px;
    height: 37px;
    overflow: hidden;
    position: relative;
  }
  .header-wrapper-nav-btn span {
    width: 100%;
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-wrapper-nav-btn:before {
    content: "";
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: #ffffff;
    transition: 0.3s;
  }
  .header-wrapper-nav-btn:hover:before {
    left: 0;
  }
  .header-wrapper-nav-btn:hover {
    color: #f5631c;
    border-color: #f5631c;
  }
  .header-wrapper-nav-list li:not(:last-child) a span:hover {
    color: #f5631c;
  }
}

@media screen and (min-width: 767px) {
  /* footer */
  .footer-sitemap > div a {
    transition: 0.3s;
  }
  .footer-sitemap > div a:hover {
    color: #f5631c;
  }
  .footer-sitemap-logo a {
    transition: opacity 0.3s;
  }
  .footer-sitemap-logo a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 845px) and (max-height: 650px) {
  .header-wrapper-nav {
    padding: 50px 20px;
  }
  .header-wrapper-nav-list li + li {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .top-header {
    padding-top: 140px;
    min-height: 285px;
  }
  .top-header.mission {
    background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
  }
  .top-header.service {
    background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
  }
  .top-header.overview {
    background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
  }
  .top-header.recruit {
    background-image: url("/https/stanby.co.jp/assets/img/common/dot_bg.png");
  }
  .top-header-heading {
    margin-top: 20px;
  }
  .section-heading span {
    font-size: 24px;
  }
  .sp-break {
    display: block;
  }
  .pc-break {
    display: none;
  }
  .sp-hide {
    display: none;
  }
  .pc-hide {
    display: block;
  }
}

/* news */
.news-item + .news-item {
  border-top: solid 1px #dddddd;
}

.news-item > a {
  display: flex;
  flex-direction: row;
  color: #26262e;
}

.news-item > a:hover {
  color: #f5631c;
}

.news-item:first-child > a {
  padding-top: 0;
}

.news-item:last-child {
  border-bottom: solid 1px #dddddd;
}

.news-date {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 845px) {
  .news-item > a {
    flex-direction: column;
  }
}

.news-label {
  display: inline-block;
  padding: 0 8px;
  font-size: 12px;
  white-space: nowrap;
}

.news-label.news {
  background-color: #ed671e;
  color: #ffffff;
}

.news-label.media {
  border: solid 1px #ed671e;
  background-color: #fff;
  color: #ed671e;
}

.news-label.news-other {
  min-width: 90px;
  text-align: center;
  background-color: #ed671e;
  color: #ffffff;
}