/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/home.scss ***!
  \*************************************************************************************************************/
@charset "UTF-8";
/**
* @mixin heightControl
* @param {Number} $height - 高さの値（デフォルトは100）
* 
* ビューポートの高さに基づいて要素の高さを設定します。
* モバイルブラウザの動的なビューポート高さに対応するためにdvh単位を使用します。
*/
.keyvisual {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100dvh;
}
.keyvisual:before {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: var(--fd-light-blue);
  background: linear-gradient(0turn, rgba(43, 63, 133, 0), rgba(21, 23, 74, 0.4509803922));
  mix-blend-mode: multiply;
}
.keyvisual .keyvisual__img {
  position: absolute;
  z-index: -2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65dvh;
  object-fit: cover;
  object-position: top left;
  object-view-box: inset(0% 0% 20% 20%);
}
.keyvisual h2 {
  margin: 0 0 0 auto;
  padding: 80px 40px 0 0;
  text-align: right;
  font-size: 36px;
  font-weight: bold;
  color: var(--fd-white);
}
.keyvisual::after {
  content: "";
  display: block;
  width: 100%;
  height: 100dvh;
  position: absolute;
  z-index: -3;
  top: 0;
  left: 0;
  background-color: var(--fd-light-blue);
  background: linear-gradient(-0.125turn, var(--fd-dark-blue), var(--fd-light-blue));
}
@media (orientation: landscape) and (max-height: 767.99px) {
  .keyvisual {
    height: 150dvh;
  }
  .keyvisual .keyvisual__img {
    height: 130dvh;
    object-view-box: inset(0% 0% 15% 15%);
  }
  .keyvisual::after {
    height: 100dvh;
  }
}

@media (min-width: 768px) {
  .keyvisual h2 {
    font-size: 60px;
    padding: 120px 60px 0 0;
  }
}
@media (min-width: 1024px) {
  .keyvisual {
    height: 100dvh;
  }
  .keyvisual .keyvisual__img {
    height: 100%;
    object-view-box: inset(0);
  }
  .keyvisual::after {
    height: 100dvh;
  }
  .keyvisual h2 {
    filter: drop-shadow(0 0 10px rgba(15, 27, 58, 0.5333333333));
    margin: 0;
    padding: 0;
    font-size: 60px;
    position: absolute;
    z-index: 1;
    bottom: 120px;
    right: 120px;
  }
}
@media (min-width: 1024px) and (orientation: portrait) {
  .keyvisual .keyvisual__img {
    object-view-box: inset(0% 0% 10% 0%);
  }
}
.thoughts h2 {
  color: var(--fd-dark-blue);
  font-weight: bold;
  text-align: center;
}
.thoughts p {
  color: var(--fd-dark-blue);
  font-weight: bold;
}
@media (min-width: 960px) {
  .thoughts {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 120px;
  }
  .thoughts h2 {
    font-size: 36px;
    margin: 0;
    padding-top: 27px;
    text-align: left;
  }
  .thoughts .content {
    margin-top: 0 !important;
  }
  .thoughts .view-more {
    margin-top: 60px;
  }
}
.service img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}
.service p {
  margin-top: 30px;
  font-weight: bold;
  color: var(--fd-dark-blue);
}
@media (min-width: 960px) {
  .service .content {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 120px;
    align-items: center;
  }
  .service img {
    display: block;
    width: 100%;
  }
  .service p {
    margin: 0;
  }
}
.company img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}
.company ul {
  margin-top: 30px;
}
.company li {
  padding: 10px 0;
  border-bottom: solid 1px #D8D8D8;
}
@media (min-width: 1024px) {
  .company .content {
    display: grid;
    grid-template-areas: "img list" "img viewmore";
    grid-template-columns: 1fr 480px;
    gap: 0 120px;
    align-items: start;
  }
  .company img {
    grid-area: img;
    display: block;
    width: 100%;
  }
  .company ul {
    grid-area: list;
    margin: 0;
  }
  .company .content > .view-more {
    grid-area: viewmore;
  }
}
.recruit {
  max-width: none !important;
  min-height: 100dvh;
  width: 100%;
  padding: 120px 20px;
  position: relative;
  z-index: 0;
}
.recruit .bg-img {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: soft-light;
}
.recruit::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: radial-gradient(ellipse 150% 80% at 70% 30%, rgba(44, 180, 230, 0.8) 0%, rgba(63, 189, 235, 0.8) 20%, rgba(106, 204, 240, 0) 100%);
}
.recruit::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -3;
  top: 0;
  left: 0;
  background: var(--fd-dark-blue);
}
.recruit .multi-title {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}
.recruit .multi-title * {
  display: block;
  text-align: center;
  color: var(--fd-light-gray);
}
.recruit .content {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}
.recruit p {
  text-align: center;
  font-weight: bold;
  color: var(--fd-light-gray);
}
.recruit .view-more {
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

@media (min-width: 960px) {
  .recruit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .recruit p br {
    display: none;
  }
}
.news {
  padding-bottom: 120px;
}
.news__item {
  padding: 15px 0;
  border-top: solid 1px #D8D8D8;
}
.news__item:last-of-type {
  border-bottom: solid 1px #D8D8D8;
}
.news__item > a {
  display: grid;
  grid-template-areas: "category date" "title   title" "viewmore viewmore";
  grid-template-columns: 120px 1fr;
  gap: 10px 30px;
}
@media (hover: hover) {
  .news__item > a {
    transition: font-weight 0.3s ease, color 0.3s ease;
  }
  .news__item > a:hover h3 {
    font-weight: bold;
    color: var(--fd-dark-blue);
  }
}
.news .category {
  grid-area: category;
  background: var(--fd-light-gray);
  color: var(--fd-dark-blue);
  font-size: 14px;
  display: block;
  padding: 5px;
  line-height: 1;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
  text-align: center;
}
.news time {
  grid-area: date;
  font-size: 14px;
  color: var(--fd-light-blue);
  display: block;
  padding: 5px 0;
  line-height: 1;
}
.news h3 {
  grid-area: title;
  text-box: trim-both cap alphabetic;
  font-size: 1rem;
  font-weight: normal;
}
.news .view-more {
  grid-area: viewmore;
}

@media (min-width: 960px) {
  .news {
    display: grid;
    grid-template-areas: "title viewmore" "posts posts";
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .news * {
    font-weight: bold;
  }
  .news .multi-title {
    grid-area: title;
  }
  .news .content {
    grid-area: posts;
  }
  .news__item {
    padding: 30px 0;
  }
  .news__item > a {
    grid-template-areas: none;
    grid-template-columns: 120px 90px 1fr;
    gap: 30px;
    align-items: start;
  }
  .news .category {
    grid-area: auto;
  }
  .news time {
    grid-area: auto;
    white-space: nowrap;
  }
  .news h3 {
    grid-area: auto;
    padding-top: 5px;
  }
  .news .view-more {
    grid-area: viewmore;
    margin-top: 0;
  }
}
