@charset "UTF-8";
/* フォント変換 */
/* フレキシブルサイズ（増加・減少の両方に対応） */
/* スマートフォン用フレキシブルサイズ（320-767pxでスケール） */
/* レスポンシブフォントサイズ（768-1200pxで縮小） */
/* 点線パターン */
/* 2, Contents */
/* 基本 */
.l-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding: 0 20px;
}
@media screen and (max-width: 1090px) {
  .l-container {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    padding: 0 28px;
  }
}

/* 小さい幅 */
.l-container-small {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1090px) {
  .l-container-small {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-container-small {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    padding: 0 28px;
  }
}

/* ヘッダー用 */
.l-container-header {
  width: 100%;
  margin: 0 auto;
}

/* SP&paddingなし */
@media screen and (max-width: 767px) {
  .l-container-sp-padding {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

/* 下層ページ */
.l-container-page {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 1090px) {
  .l-container-page {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-container-page {
    padding: 0 28px;
  }
}

/* 投稿ページ */
.l-container-post {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: clamp(70px, 47.5px + 2.9296875vw, 85px);
}
@media screen and (max-width: 1090px) {
  .l-container-post {
    width: 100%;
  }
}
.l-container-post--works {
  width: 100%;
}

/* コンテンツ小さい */
.l-inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 600px;
  }
}

/* Header */
header {
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 777;
  width: 100%;
  height: 80px;
  margin: auto;
  padding: 0;
}
@media screen and (max-width: 1090px) {
  header {
    top: 40px;
  }
}
@media screen and (max-width: 767px) {
  header {
    top: 20px;
    height: 46px;
  }
}

/* IE 用 */
@media all and (-ms-high-contrast: none) {
  header {
    position: relative;
  }
}
.l-header {
  padding-inline: clamp(30px, -270px + 25vw, 50px);
}
@media screen and (max-width: 1090px) {
  .l-header {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding-inline: 20px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3%;
}
@media screen and (max-width: 1090px) {
  .l-header__inner {
    height: 46px;
    border: solid 1px #fff;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.75);
    line-height: 1;
    backdrop-filter: blur(7.6px);
  }
  .l-header__inner.is-open {
    border: solid 1px transparent;
    background-color: transparent;
    backdrop-filter: none;
  }
}
.l-header__left {
  display: flex;
  width: clamp(280px, 110.5px + 22.0703125vw, 393px);
  margin: 0;
}
@media screen and (max-width: 1090px) {
  .l-header__left {
    width: 100%;
  }
}
.l-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(100% - clamp(320px, 200px + 15.625vw, 400px));
  padding: 0;
}
@media screen and (max-width: 1090px) {
  .l-header__right {
    display: none;
  }
}
.l-header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 clamp(10px, -27.5338345865px + 4.8872180451vw, 36px);
  width: fit-content;
  padding: 8px 10px 8px clamp(14px, -14.8721804511px + 3.7593984962vw, 34px);
  border: solid 1px #fff;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.75);
  line-height: 1;
  backdrop-filter: blur(7.6px);
}

.l-header-branding {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 21px 10px;
  border: solid 1px #fff;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.75);
  line-height: 1;
  backdrop-filter: blur(7.6px);
}
@media screen and (max-width: 1090px) {
  .l-header-branding {
    justify-content: flex-start;
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    backdrop-filter: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header-branding {
    width: 230px;
    padding: 10px 0 10px 20px;
  }
}
.l-header-branding > a {
  line-height: 1;
}
.l-header-branding > a:hover {
  opacity: 1;
}

.l-header-recruit__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(110px, 69.5px + 5.2734375vw, 137px);
  height: 44px;
  border-radius: 50px;
  background-image: linear-gradient(to right, #25a0de, #865190 51%, #bc0c13);
  color: #fff;
}
@media screen and (max-width: 1090px) {
  .l-header-recruit__btn {
    width: 100%;
  }
}

/* --------------------------
ブログ 全体
--------------------------- */
.l-single-content {
  width: 100%;
  max-width: 788px;
  margin: auto;
}
.l-single-content p {
  margin-bottom: 2em;
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0.02em;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .l-single-content p {
    font-size: 15px;
    line-height: 2.27;
  }
}
.l-single-content img {
  margin-bottom: 2em;
}
.l-single-content ul,
.l-single-content ol {
  margin-bottom: 2em;
  line-height: 1.5;
}
.l-single-content h2 {
  margin: 2em 0 1em;
  font-size: 28px;
  line-height: 1.5;
}
.l-single-content h3 {
  margin: 2em 0 1em;
  font-size: 24px;
  line-height: 1.5;
}
.l-single-content h4 {
  margin: 2em 0 1em;
  font-size: 21px;
  line-height: 1.5;
}
.l-single-content h5 {
  margin: 2em 0 1em;
  font-size: 18px;
  line-height: 1.5;
}
.l-single-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  position: relative;
  padding: 0;
  background: none;
  font-size: 16px;
  color: #282828;
  text-shadow: none;
  margin-top: -1em;
}
.l-single-content a {
  color: #014b95;
  text-decoration: underline;
}

.l-blog__post {
  width: 100%;
  max-width: 884px;
  margin: 0 auto clamp(80px, -100px + 23.4375vw, 200px);
}

.l-single__main .l-blog__post {
  width: 100%;
  max-width: 994px;
  margin: 0 auto clamp(100px, -50px + 19.53125vw, 200px);
}

/* ブログ 記事一覧
--------------------------- */
.l-blog-categoris {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
  line-height: 1.2;
}
.l-blog-categoris .cat-item {
  position: relative;
  padding: 0 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-blog-categoris .cat-item {
    padding: 3px;
  }
}
.l-blog-categoris .cat-item.current-cat {
  color: #014b95;
}
.l-blog-categoris .cat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 22px;
  background-color: #282828;
}
@media screen and (max-width: 767px) {
  .l-blog-categoris .cat-item::before {
    top: 3px;
    height: 18px;
  }
}
.l-blog-categoris .cat-item:last-of-type::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 1px;
  height: 21px;
  background-color: #282828;
}
@media screen and (max-width: 767px) {
  .l-blog-categoris .cat-item:last-of-type::after {
    top: 3px;
    height: 18px;
  }
}
.l-blog-categoris .cat-item a {
  padding: 2px 21px;
}
@media screen and (max-width: 767px) {
  .l-blog-categoris .cat-item a {
    padding: 2px 10px;
    font-size: 14px;
  }
}

/* リストのリンク */
.l-blog-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  margin: 60px 0 0;
  padding: 0;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation {
    gap: 15px;
    margin: 60px 0 0;
    padding: 20px 0;
  }
}
.l-blog-pagenation .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  border: solid 2px #014b95;
  border-radius: 50px;
  background-color: #faf9f6;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #014b95;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers {
    width: 40px;
    height: 40px;
    padding-top: 0;
    font-size: 14px;
  }
}
.l-blog-pagenation .page-numbers.current {
  background-color: #014b95;
  color: #fff;
}
.l-blog-pagenation .page-numbers.prev, .l-blog-pagenation .page-numbers.next {
  display: none;
  width: 100px;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.prev, .l-blog-pagenation .page-numbers.next {
    width: 74px;
    font-size: 12px;
  }
}
.l-blog-pagenation .page-numbers.prev {
  position: absolute;
  top: 20px;
  left: 50px;
  padding-left: 5px;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.prev {
    left: 0;
  }
}
.l-blog-pagenation .page-numbers.prev::after {
  content: "";
  position: absolute;
  top: 44%;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #014b95;
  border-right: 1px solid #014b95;
  transform: rotate(-135deg);
}
.l-blog-pagenation .page-numbers.next {
  position: absolute;
  top: 20px;
  right: 50px;
  padding-right: 5px;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.next {
    right: 0;
  }
}
.l-blog-pagenation .page-numbers.next::after {
  content: "";
  position: absolute;
  top: 44%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #014b95;
  border-right: 1px solid #014b95;
  transform: rotate(45deg);
}

/* ブログ 個別記事
--------------------------- */
.l-single-pagenation {
  margin-top: clamp(60px, -45px + 13.671875vw, 130px);
  text-align: center;
}

/* page */
/* 今回はブログ記事も同じ設定にする */
.l-page {
  margin-bottom: 60px;
}
.l-page__content-outer {
  padding-top: clamp(70px, 47.5px + 2.9296875vw, 85px);
}
@media screen and (max-width: 767px) {
  .l-page__content-outer {
    padding-top: 40px;
  }
}

/* --------------------------
供給実績
--------------------------- */
.l-works__post {
  margin: 0 auto clamp(160px, 100px + 7.8125vw, 200px);
}

.l-footer {
  padding-block: 0 clamp(70px, 40px + 3.90625vw, 90px);
  background-color: #e9eef4;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 0 54px;
  }
}

.l-footer-hero {
  position: relative;
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer-hero {
    padding: 10px;
  }
}
.l-footer-hero__img img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer-hero__img img {
    height: auto;
    min-height: 410px;
    border-radius: 20px;
  }
}
.l-footer-hero__title {
  position: absolute;
  inset: auto 0 clamp(-44px, 41px + -6.640625vw, -10px);
  margin-inline: auto;
  font-family: "Cal Sans", sans-serif;
  font-size: clamp(55px, 8.5px + 6.0546875vw, 86px);
  line-height: 1.93;
  letter-spacing: 0.04em;
  text-align: center;
  color: #faf9f6;
}
@media screen and (max-width: 1340px) {
  .l-footer-hero__title {
    font-size: clamp(45px, 4.5px + 5.2734375vw, 72px);
  }
}
@media screen and (max-width: 767px) {
  .l-footer-hero__title {
    inset: auto 0 -3px;
    font-size: clamp(19px, 3.966442953px + 4.6979865772vw, 40px);
  }
}

.l-footer-block01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: clamp(40px, 25px + 1.953125vw, 50px);
  padding-top: clamp(50px, 20px + 3.90625vw, 70px);
}
@media screen and (max-width: 1090px) {
  .l-footer-block01 {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-block01 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding-top: 48px;
    margin-bottom: 30px;
  }
}
.l-footer-block01__left {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__left {
    display: contents;
    width: 100%;
  }
}
.l-footer-block01__address {
  margin-bottom: clamp(40px, 25px + 1.953125vw, 50px);
  font-size: 14px;
  line-height: 1.71;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__address {
    order: 3;
    margin-block: 30px 0;
    font-size: 12px;
  }
}
.l-footer-block01__btn {
  width: 100%;
}
@media screen and (max-width: 1090px) {
  .l-footer-block01__btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-block01__right {
    order: 2;
    width: 100%;
  }
}
.l-footer-block01__nav {
  position: relative;
  top: -15px;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .l-footer-block01__nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    top: 0;
    width: 100%;
  }
}

.l-footer-branding {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer-branding {
    order: 1;
  }
}
.l-footer-branding a:hover {
  opacity: 1;
}

.l-footer-nav .menu {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 17px 60px;
  padding-right: 23px;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .menu {
    display: block;
    margin: 0;
    padding: 0;
  }
}
.l-footer-nav .menu li {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .l-footer-nav .menu li {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.l-footer-recruit {
  margin-top: -63px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-footer-recruit {
    margin-top: 2px;
  }
}
.l-footer-recruit__btn {
  display: inline flex;
  justify-content: center;
  align-items: center;
  width: clamp(127px, 112px + 1.953125vw, 137px);
  height: 44px;
  border-radius: 50px;
  background-image: linear-gradient(to right, #25a0de, #865190 51%, #bc0c13);
  color: #fff;
}

.l-footer-block02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 1090px) {
  .l-footer-block02 {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-block02 {
    align-items: flex-start;
  }
}
.l-footer-block02__banners {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer-block02__banners {
    flex-wrap: wrap;
    gap: 15px;
    width: 310px;
  }
}
.l-footer-block02__item img {
  width: auto;
  height: clamp(60px, 30px + 3.90625vw, 80px);
}
@media screen and (max-width: 767px) {
  .l-footer-block02__item img {
    height: 68px;
  }
}
.l-footer-block02__copylight {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-footer-block02__copylight {
    text-align: left;
  }
}
.l-footer-block02__copylight small {
  font-size: 13px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-footer-block02__copylight small {
    font-size: 11px;
  }
}
