/* -- font
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

:root {
  --white: #ffffff;
  --dark: #333333;
  --blue: #3c8ce7;
  --lightblue: #2864f0;
  --red: #e35c44;
  --deepblue: #096fc8;
}

body {
  color: var(--dark);
  font-family: "Noto Sans JP", serif;
  line-height: 2;
  font-size: 1em;
  padding-right: 0px !important;
}

.card {
  border-radius: 10px;
  border-color: #f2f2f2;
  overflow: hidden;
}

.scroll-up {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

section {
  padding-top: 50px;
  padding-bottom: 70px;
}

section .container {
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

.subtitle-symbol {
  position: relative;
  font-size: 1rem;
  color: var(--lightblue);
}

.subtitle {
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  text-align: justify;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.fc-blue {
  color: var(--lightblue);
}

/* Header Footer
-------------------------------------------------------------------------------- */
header {
  z-index: 2;
}

header nav ul.pc {
  margin-bottom: auto;
  padding-left: 0;
}

footer {
  line-height: 1.5;
  font-size: 14px;
}

footer .blue dl dd ul {
  max-height: 100% !important;
  padding-left: 0;
}

/* Bread Section
-------------------------------------------------------------------------------- */
#bread {
  font-size: 0.8em;
}

/* Hero Section
-------------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 350px;
  overflow: hidden;
  background-image: url(../img/main.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(5%, white), color-stop(50%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, white 0, white 5%, rgba(255, 255, 255, 0) 50%);
  position: absolute;
  top: 0;
  left: 0;
}

.hero .container {
  z-index: 1;
}

.hero .hero-text {
  padding: 30px 20px;
}

.hero .hero-text h5 {
  color: var(--deepblue);
}

.hero .hero-text h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.7;
  color: var(--dark);
  padding-bottom: 75px;
  text-align: justify;
}

.hero .hero-text .date {
  width: 300px;
  padding-top: 13px;
}

/* Interview Section
-------------------------------------------------------------------------------- */
#interview {
  position: relative;
}

#interview h5 {
  background: var(--blue);
  font-weight: bold;
}

#interview .text-justify {
  text-align: justify;
}

#interview #interview-movie {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 70px;
  aspect-ratio: 16 / 9;
}

#interview .interview-photo {
  border-radius: 10px;
}

#interview .simpleParallax {
  border-radius: 10px;
}

#interview .interview-photo-caption {
  font-size: 0.8em;
  line-height: 1.7em;
  padding-top: 2px;
}

#interview .interview-question {
  color: var(--deepblue);
  position: relative;
  text-indent: 1.5em;
  line-height: 1.7em;
}

#interview .interview-question:before {
  position: absolute;
  background: var(--deepblue);
  content: "";
  width: 20px;
  height: 1px;
  top: 35px;
  left: 0;
}

#interview #company,
#interview #company-sp {
  top: calc((80vh - 350px) / 2);
  min-height: 350px;
  border-radius: 10px;
}

#interview #company h5,
#interview #company-sp h5 {
  font-family: "Noto Sans JP", serif;
}

#interview #company .company-wrapper,
#interview #company-sp .company-wrapper {
  font-size: 0.9em;
}

#interview #company .company-wrapper .company-logo,
#interview #company-sp .company-wrapper .company-logo {
  width: 300px;
}

#interview #company .company-wrapper .company-detail,
#interview #company-sp .company-wrapper .company-detail {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 95px 1fr;
  grid-template-columns: 95px 1fr;
  gap: 1rem;
}

#interview #company .company-wrapper .company-detail p,
#interview #company-sp .company-wrapper .company-detail p {
  margin-bottom: 8px;
}

#interview #company {
  position: -webkit-sticky;
  position: sticky;
}

#interview #company-sp {
  position: sblock;
  display: none;
  margin-bottom: 70px;
}

#interview .toast-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

#interview #toast {
  position: fixed;
  background-color: var(--deepblue);
  color: #fff;
  top: calc(((80vh - 350px) / 2) + 410px);
  padding: 15px 20px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

#interview #toast .inquiry-title {
  position: relative;
  background-color: var(--deepblue);
}

#interview #toast .inquiry-btn {
  color: var(--deepblue);
  border: 2px solid #fff;
  background-color: #fff;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

#interview #toast.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

#interview #toast:hover>.inquiry-btn {
  background-color: var(--deepblue);
  color: #fff;
  border: 2px solid #fff;
}

@media (max-width: 992px) {
  #interview #company {
    display: none;
  }

  #interview #company-sp {
    display: block;
  }

  #interview .toast-wrap {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #interview #toast {
    top: 80vh;
  }
}

/* Case Study Section
-------------------------------------------------------------------------------- */
#case {
  position: relative;
}

#case h2 a {
  font-family: "Noto Sans JP", serif;
  font-size: 1em;
}

#case h2 a:hover {
  text-decoration: underline !important;
  text-align: center;
}

#case h5 {
  line-height: 1.5em;
}

#case a {
  text-decoration: none;
}

#case .blue-btn {
  background: var(--blue);
  color: var(--white);
  padding: 10px 50px;
  border: 1px solid var(--blue);
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#case .blue-btn:hover {
  background: var(--white);
  color: var(--blue);
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes infinity-scroll-left2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes infinity-scroll-left2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

#case .scroll-infinity__wrap,
#case .scroll-infinity__wrap__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  opacity: 0.3;
  z-index: -1;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

#case .scroll-infinity__wrap {
  bottom: -3px;
}

#case .scroll-infinity__wrap__right {
  top: 85px;
}

#case .scroll-infinity__wrap img {
  height: 150px;
}

#case .scroll-infinity__wrap__right img {
  height: 100px;
}

#case .scroll-infinity__wrap div:first-child {
  -webkit-animation: infinity-scroll-left 200s -100s linear infinite;
  animation: infinity-scroll-left 200s -100s linear infinite;
}

#case .scroll-infinity__wrap div:last-child {
  -webkit-animation: infinity-scroll-left2 200s linear infinite;
  animation: infinity-scroll-left2 200s linear infinite;
}

#case .scroll-infinity__wrap__right div:first-child {
  -webkit-animation: infinity-scroll-right 200s -100s linear infinite;
  animation: infinity-scroll-right 200s -100s linear infinite;
}

#case .scroll-infinity__wrap__right div:last-child {
  -webkit-animation: infinity-scroll-right2 200s linear infinite;
  animation: infinity-scroll-right2 200s linear infinite;
}

#case .opacity-off {
  opacity: 0;
}

@media (max-width: 992px) {
  #case .scroll-infinity__wrap {
    display: none;
  }
}

/* News Contents Section
-------------------------------------------------------------------------------- */
#contents {
  background: #fafafa;
}

#contents h5 {
  line-height: 1.5em;
}

#contents a {
  text-decoration: none;
}

#contents .blue-btn {
  background: var(--blue);
  color: var(--white);
  padding: 10px 50px;
  border: 1px solid var(--blue);
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#contents .blue-btn:hover {
  background: var(--white);
  color: var(--blue);
}

/* Contact Section
-------------------------------------------------------------------------------- */
#contact h5 {
  line-height: 1.5em;
}

#contact a {
  text-decoration: none;
  text-align: center;
}

#contact .blue-btn {
  background: var(--blue);
  color: var(--white);
  padding: 10px 50px;
  border: 1px solid var(--blue);
  border-radius: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#contact .blue-btn:hover {
  background: var(--white);
  color: var(--blue);
}

@media (max-width: 991px) {
  section {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .wrap {
    padding: 0 25px;
  }

  .hero {
    height: auto;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 330px;
  }

  .hero::after {
    width: 100%;
  }

  .hero .hero-text h1 {
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .hero .hero-text h5 {
    font-size: 17px;
  }

  .hero .hero-text h1 {
    font-size: 25px;
  }

  .hero .hero-text .date {
    width: 230px;
  }

  #company {
    display: none;
  }

  #company-sp {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */