@charset "UTF-8";
@import url("reset.css");
/* ---------------------------
数値
--------------------------- */
/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  スムーズスクロール
--------------------------- */
html {
  scroll-behavior: smooth;
}

/* ---------------------------
  フォント
--------------------------- */
body {
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS PMincho", "Noto Serif JP", "Times New Roman", Times, serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}

/* ---------------------------
  フッター下付け
--------------------------- */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ---------------------------
  その他
--------------------------- */
html {
  overflow-x: hidden;
}

/* --- 画像表示 --- */
img {
  width: 100%;
  height: auto;
}

/* --- リンクホバー --- */
a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7 !important;
}

/* --- PCのみ表示 --- */
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}

/* --- SPのみ表示 --- */
.sp-view {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-view {
    display: block;
  }
}

/* --- PC表示にてTELリンク無効化 --- */
@media (min-width: 1024px) {
  /* PCサイズ */
  a[href^=tel] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
}
/* --- スクロールアニメーション（フェードアップ） --- */
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- to-topボタン --- */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  font-size: 20px;
  color: #0ea5e9;
  z-index: 100;
  font-weight: bold;
}
@media screen and (max-width: 450px) {
  .to-top {
    font-size: 4.8vw;
  }
}
.to-top.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --- to-contactボタン --- */
.to-contact {
  position: fixed;
  right: 36px;
  bottom: 64px;
  opacity: 0;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  color: #fff;
  width: 106px;
  height: 106px;
  background: #0ea5e9;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 100;
}
@media screen and (max-width: 450px) {
  .to-contact {
    width: 24vw;
    height: 24vw;
    font-size: 3.2vw;
  }
}
.to-contact.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.to-contact img {
  width: 24px;
}
@media screen and (max-width: 450px) {
  .to-contact img {
    width: 5.3vw;
  }
}

/* ----------------------------------------
  ヘッダー
---------------------------------------- */
.header {
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
  -webkit-transition: none;
  transition: none;
}
.header.fixed-header {
  position: fixed;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.header.fixed-header.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header__inner {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .header__inner {
    padding: 0 4.2vw;
  }
}
.header__inner .header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__inner .header__overlay--is-open {
    display: block;
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 4vw;
    height: 70px;
  }
}
.header__title {
  font-size: 28px;
  font-weight: bold;
  color: #1e3a8a;
  margin: 0;
  text-decoration: none;
  position: relative;
  z-index: 1002;
}
@media screen and (max-width: 1280px) {
  .header__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header__title {
    font-size: clamp(20px, 5.3vw, 28px);
  }
}
.header__nav {
  display: block;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    margin-left: 0;
  }
  .header__nav--is-open {
    opacity: 1;
    visibility: visible;
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 80px;
}
@media screen and (max-width: 1280px) {
  .header__menu {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .header__menu-item {
    border-bottom: 1px solid #e0e0e0;
  }
  .header__menu-item:last-child {
    border-bottom: none;
  }
}
.header__menu-item a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  padding: 10px 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: block;
}
@media screen and (max-width: 1280px) {
  .header__menu-item a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header__menu-item a {
    padding: 20px 4vw;
    font-size: 16px;
  }
}
.header__menu-item a:hover {
  color: #2c5aa0;
}
.header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  position: relative;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 2px;
}
.header__hamburger span:nth-child(3) {
  width: 18px;
}
.header__hamburger.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
  width: 25px;
}

.header__contact-button {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__contact-button {
    display: block;
    background-color: #2c5aa0;
    color: #fff;
    text-align: center;
    padding: 15px 4vw;
    margin: 20px 4vw 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
  }
  .header__contact-button:hover {
    background-color: #1e3d73;
  }
}

/* ----------------------------------------
  フッター
---------------------------------------- */
.footer {
  background: #1e3a8a;
  color: #fff;
  padding: 100px 0 48px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 10.7vw 0 6.9vw;
  }
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1080px;
  max-width: 95%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  .footer__left {
    margin-top: 8.5vw;
  }
}
.footer__logo {
  font-size: 30px;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    font-size: 5.3vw;
  }
}
.footer__address {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 3.7vw;
    margin-top: 4.3vw;
  }
}
.footer__tel {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer__tel {
    font-size: 3.7vw;
    margin-top: 2.1vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__fax {
    font-size: 3.7vw;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 64px;
  margin-top: 16px;
  font-weight: 500;
  font-size: 18px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 50px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1100px) {
  .footer__nav {
    gap: 0 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    font-size: 3.7vw;
  }
}
.footer__nav li {
  white-space: nowrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .footer__nav li {
    margin-bottom: 5.3vw;
  }
}
.copyright {
  text-align: center;
  line-height: 75px;
  border-top: 1px solid #fff;
  font-size: 14px;
  background: #1e3a8a;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 3.2vw;
    line-height: 13.3vw;
  }
}

/* ----------------------------------------
  下層ページ／FV
---------------------------------------- */
.sub-fv__inner {
  width: 1040px;
  max-width: 80%;
  margin: 0 auto;
  padding: 180px 0 60px;
}
@media screen and (max-width: 768px) {
  .sub-fv__inner {
    padding: 26.7vw 0 5.3vw;
  }
}
/* ----------------------------------------
  ページネーション
---------------------------------------- */
.pagination {
  text-align: center;
  margin-top: 100px !important;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 50px !important;
  }
}
.pagination ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination ul li {
  display: inline-block;
}
.pagination ul li a,
.pagination ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #374151;
}
.pagination ul li a:hover,
.pagination ul li span:hover {
  background: #f0f9ff;
  color: #1e3a8a;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.pagination ul li span.current {
  background: #0ea5e9;
  color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
          box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}
.pagination ul li span.current:hover {
  color: #fff;
  -webkit-transform: none;
          transform: none;
}
.pagination ul li a.prev,
.pagination ul li a.next {
  background: #f0f9ff;
  color: #1e3a8a;
  padding: 10px 16px;
  font-weight: 600;
}
.pagination ul li a.prev:hover,
.pagination ul li a.next:hover {
  background: #0ea5e9;
  color: #fff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
          box-shadow: 0 6px 16px rgba(30, 58, 138, 0.3);
}
.pagination ul li span.dots {
  color: #9ca3af;
  font-weight: 600;
  background: none;
}
.pagination ul li span.dots:hover {
  background: none;
  -webkit-transform: none;
          transform: none;
}

@media (max-width: 768px) {
  .pagination {
    margin-top: 50px;
  }
  .pagination ul {
    padding: 12px 16px;
    border-radius: 10px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    white-space: nowrap;
    gap: 6px !important;
  }
  .pagination ul li a,
  .pagination ul li span {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
    border-radius: 6px;
  }
  .pagination ul li a.prev,
  .pagination ul li a.next {
    padding: 8px 12px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .pagination ul {
    padding: 10px 12px;
    gap: 0 !important;
  }
  .pagination ul li a,
  .pagination ul li span {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
    padding: 0 8px;
  }
  .pagination ul li a.prev,
  .pagination ul li a.next {
    padding: 6px 10px;
    font-size: 11px;
  }
}
/* ----------------------------------------
  ブロックエディタ共通
---------------------------------------- */
.block {
  padding: 0 0 140px;
}
@media screen and (max-width: 768px) {
  .block {
    padding: 0 0 18.7vw;
  }
}
.block-inner {
  width: 1040px;
  max-width: 90%;
  margin: 0 auto;
}
.block-inner .wp-block-paragraph,
.block-inner .wp-block-heading,
.block-inner .wp-block-columns,
.block-inner .wp-block-image,
.block-inner .wp-block-list,
.block-inner .wp-block-quote,
.block-inner .wp-block-code,
.block-inner .wp-block-preformatted,
.block-inner .wp-block-verse,
.block-inner .wp-block-table,
.block-inner p {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* ----------------------------------------
  セクションタイトル（共通）
---------------------------------------- */
.section-title {
  text-align: center;
}
.section-title h3 {
  font-size: 70px;
  color: #1e3a8a;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section-title h3 {
    font-size: 10.7vw;
  }
}
.section-title p {
  font-size: 30px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .section-title p {
    font-size: 4.3vw;
  }
}

/* ----------------------------------------
  下層ページタイトル（共通）
---------------------------------------- */
.sub-page-title-common h2 {
  font-size: 90px;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, right top, from(#2c5c8a), color-stop(25%, #4a8bc2), color-stop(50%, #6ba6d8), color-stop(75%, #87c4e8), to(#2c5c8a));
  background: linear-gradient(90deg, #2c5c8a 0%, #4a8bc2 25%, #6ba6d8 50%, #87c4e8 75%, #2c5c8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .sub-page-title-common h2 {
    font-size: 14.7vw;
  }
}
.sub-page-title-common h2.post-detail {
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .sub-page-title-common h2.post-detail {
    font-size: 6.4vw;
  }
}
.sub-page-title-common p {
  font-size: 28px;
  margin-top: 10px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sub-page-title-common p {
    font-size: 5.3vw;
    margin-top: 0.8vw;
  }
}
.sub-page-title-common p.post-date {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .sub-page-title-common p.post-date {
    font-size: 4.3vw;
  }
}

/* ----------------------------------------
  無料相談ボタン（共通）
---------------------------------------- */
.btn-common {
  background: #1e3a8a;
  display: block;
  width: 344px;
  max-width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .btn-common {
    height: 12.8vw;
  }
}
.btn-common img {
  display: block;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .btn-common img {
    width: 3.7vw;
    height: 3.7vw;
  }
}
.btn-common p {
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .btn-common p {
    font-size: 3.7vw;
  }
}

/* ----------------------------------------
  サービス詳細を見る（共通）
---------------------------------------- */
.btn-common2 {
  background: #fff;
  display: block;
  width: 288px;
  max-width: 100%;
  height: 64px;
  margin: 0 auto;
  border: 1px solid #1e3a8a;
  line-height: 64px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn-common2 {
    line-height: 12.8vw;
    width: 80%;
    font-size: 4.3vw;
  }
}
.btn-common2::after {
  content: "";
  background: url(../img/btn-arrow.png) center center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: block;
}
@media screen and (max-width: 768px) {
  .btn-common2::after {
    width: 4.3vw;
    height: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  .btn-common2 {
    height: 12.8vw;
  }
}

/* ----------------------------------------
  下層ページ セクションタイトル（共通）
---------------------------------------- */
.section-title-sub {
  width: 1020px;
  max-width: 95%;
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .section-title-sub {
    margin-top: 10.7vw;
  }
}
.section-title-sub p {
  font-size: 12px;
  position: relative;
  padding-left: 15px;
  color: #0ea5e9;
  font-weight: 500;
}
.section-title-sub p::before {
  position: absolute;
  content: "";
  background: url(../img/sub-title-dot.png) center center/cover no-repeat;
  width: 7px;
  height: 7px;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-title-sub h3 {
  font-size: 38px;
  line-height: 1.5;
  color: #1e3a8a;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .section-title-sub h3 {
    font-size: clamp(18px, 6.4vw, 36px);
  }
}

/* ----------------------------------------
  トップ／FV
---------------------------------------- */
.fv {
  position: relative;
  padding-bottom: 77px;
  margin-top: 80px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    padding-bottom: 20.5vw;
    margin-top: 70px;
  }
}
.fv::after {
  content: "";
  display: block;
  width: 100%;
  height: 315px;
  background: #f0f9ff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv::after {
    height: 28vw;
  }
}
.fv__inner {
  position: relative;
  width: 1080px;
  max-width: 85%;
  margin: 0 auto;
  z-index: 10;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    padding-top: 5.3vw;
  }
}
.fv__head {
  width: 610px;
}
@media screen and (max-width: 768px) {
  .fv__head {
    width: 69.1vw;
  }
}
.fv__text1 {
  margin-top: 48px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .fv__text1 {
    font-size: 4.3vw;
    margin-top: 8vw;
  }
}
.fv__text2 {
  line-height: 1.8;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .fv__text2 {
    font-size: 3.7vw;
    margin-top: 5.3vw;
  }
}
.fv__btn {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .fv__btn {
    margin-top: 13.3vw;
    width: 100%;
  }
}
.fv__bg {
  position: absolute;
  top: 0;
  left: 600px;
  z-index: -1;
}
.fv__bg img {
  width: 900px;
}
@media screen and (max-width: 768px) {
  .fv__bg {
    left: -14%;
    top: auto;
    bottom: 30px;
    width: 131%;
  }
  .fv__bg img {
    width: 100%;
  }
}

/* ----------------------------------------
  トップ／REASON
---------------------------------------- */
.reason {
  background: #f0f9ff;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .reason {
    padding: 0 0 16vw;
  }
}
.reason__inner {
  width: 1040px;
  max-width: 95%;
  margin: 0 auto;
}
.reason__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .reason__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10.7vw;
    margin-top: 10.7vw;
  }
}
.reason__flex--item {
  text-align: center;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .reason__flex--item {
    width: 64vw;
  }
}
.reason__flex--item img {
  width: 152px;
  -webkit-filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
          filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
}
@media screen and (max-width: 768px) {
  .reason__flex--item img {
    width: 34.1vw;
  }
}
.reason__flex--item p {
  font-size: 24px;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .reason__flex--item p {
    margin-top: 2.7vw;
    font-size: 5.9vw;
  }
}
.reason__flex--item p:nth-child(3) {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .reason__flex--item p:nth-child(3) {
    font-size: 4.3vw;
  }
}

/*  SERVICE,WEORKSの背景 */
.sw-bg {
  background: url(../img/service-bg.png) center center/250px repeat;
}

/* ----------------------------------------
  トップ／SERVIVE
---------------------------------------- */
.service {
  padding: 140px 0px;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .service {
    padding: 18.7vw 0;
  }
}
.service__inner {
  width: 1080px;
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.service__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 64px;
}
@media screen and (max-width: 1150px) {
  .service__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8.5vw;
    margin-top: 10.7vw;
  }
}
.service__flex--item {
  width: 512px;
  padding: 40px 64px;
  background: #fff;
  position: relative;
  border-bottom: 3px solid #0ea5e9;
  -webkit-box-shadow: 0px 0px 10px 0px rgb(245, 245, 245);
          box-shadow: 0px 0px 10px 0px rgb(245, 245, 245);
}
@media screen and (max-width: 1150px) {
  .service__flex--item {
    width: 700px;
    max-width: 90%;
    padding: 6.4vw 8vw;
  }
}
.service__flex--item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: -20px;
  background-color: #f0f9ff;
  -webkit-transform: skewX(5deg) scale(1);
          transform: skewX(5deg) scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
          filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
  z-index: -1;
}
@media screen and (max-width: 1150px) {
  .service__flex--item::before {
    top: 5.3vw;
    bottom: -20;
  }
}
.service__flex--item > * {
  position: relative;
  z-index: 1;
}
.service__flex--item h4 {
  font-size: 30px;
  color: #1e3a8a;
  text-align: center;
}
@media screen and (max-width: 1150px) {
  .service__flex--item h4 {
    font-size: 5.3vw;
  }
}
.service__flex--item ul li p {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1150px) {
  .service__flex--item ul li p {
    font-size: 3.7vw;
    margin-top: 3.7vw;
  }
}
.service__flex--item ul li p span {
  color: #0ea5e9;
}
.service__flex--item ul li ul li {
  padding-left: 1.8em;
  text-indent: -1.6em;
}
@media screen and (max-width: 1150px) {
  .service__flex--item ul li ul li {
    font-size: 3.2vw;
  }
}
.service__btn {
  margin-top: 70px;
  display: block;
}
@media screen and (max-width: 1150px) {
  .service__btn {
    margin-top: 10.7vw;
  }
}

/* ----------------------------------------
  トップ／WORKS
---------------------------------------- */
.works {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .works {
    padding-top: 0;
  }
}
.works__inner {
  width: 1120px;
  max-width: 85%;
  padding-bottom: 80px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .works__inner {
    padding-bottom: 16vw;
  }
}
.works__inner::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f5f5f5;
  -webkit-transform: skewX(3deg) scale(1);
          transform: skewX(3deg) scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .works__inner::before {
    -webkit-transform: skewX(1deg) scale(1);
            transform: skewX(1deg) scale(1);
    top: 8vw;
  }
}
.works__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .works__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5.3vw;
    margin-top: 8vw;
  }
}
.works__flex--item {
  color: #1e3a8a;
  width: 270px;
}
.works__flex--item p {
  font-size: 64px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .works__flex--item p {
    font-size: 12.8vw;
  }
}
.works__flex--item p span {
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .works__flex--item p span {
    font-size: 8.5vw;
  }
}
.works__flex--item p:nth-child(2) {
  font-size: 20px;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  font-weight: normal;
  padding: 5px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .works__flex--item p:nth-child(2) {
    margin-top: 2.7vw;
    font-size: 4.3vw;
  }
}
.works__btn {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .works__btn {
    margin-top: 10.7vw;
  }
}

/* ----------------------------------------
  トップ／ABOUT
---------------------------------------- */
.about {
  background: url(../img/about-bg.png) center center/cover no-repeat;
  margin-top: -250px;
  padding: 400px 0 140px;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 69.3vw 0 16vw;
    background: url(../img/about-bg.png) 61% center/cover no-repeat;
  }
}
.about__inner {
  width: 1070px;
  max-width: 90%;
  margin: 0 auto;
}
.about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 150px;
  margin-top: 80px;
}
@media screen and (max-width: 1050px) {
  .about__flex {
    gap: 6.9vw;
  }
}
@media screen and (max-width: 900px) {
  .about__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .about__flex {
    margin-top: 10.7vw;
    gap: 10.7vw;
  }
}
.about__img img {
  width: 360px;
}
@media screen and (max-width: 1050px) {
  .about__img img {
    width: 34.7vw;
  }
}
@media screen and (max-width: 768px) {
  .about__img img {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
}
.about__content--title {
  color: #1e3a8a;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .about__content--title {
    font-size: 5.3vw;
  }
}
.about__content--title span {
  font-size: 18px;
  line-height: 24px;
}
.about__content ul li h5 {
  font-size: 20px;
  margin-top: 20px;
  color: #1e3a8a;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .about__content ul li h5 {
    font-size: 4.3vw;
    margin-top: 6.4vw;
  }
}
.about__content ul li ul {
  margin-top: 10px;
}
.about__content ul li ul li {
  padding-left: 1.8em;
  text-indent: -1.6em;
}
.about__content ul li ul li.no-space {
  padding-left: 0;
  text-indent: 0;
}
@media screen and (max-width: 768px) {
  .about__content ul li ul li {
    font-size: 3.7vw;
  }
}
.about__content ul li ul li:nth-child(n+2) {
  margin-top: 5px;
}
.about__content ul li ul li span {
  color: #0ea5e9;
}

/* ----------------------------------------
  トップ、コラムページ（共通）／COLUMN
---------------------------------------- */
.column {
  position: relative;
  padding: 140px 0;
}
.column.sub {
  padding-top: 0;
}
.column.sub::before, .column.sub::after {
  display: none;
}
@media screen and (max-width: 900px) {
  .column {
    padding: 18.7vw 0 16vw;
  }
}
.column::before {
  content: "";
  display: block;
  background: #f0f9ff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 490px;
}
@media screen and (max-width: 900px) {
  .column::before {
    height: 74%;
  }
}
.column::after {
  content: "";
  display: block;
  background: #0ea5e9;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 140px;
  border-radius: 10px;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  -webkit-animation: scrollDown 2s ease-in-out infinite;
          animation: scrollDown 2s ease-in-out infinite;
  z-index: 3;
}
@media screen and (max-width: 900px) {
  .column::after {
    height: 16vw;
  }
}
.column .scroll-line-bg {
  content: "";
  display: block;
  background: rgba(14, 165, 233, 0.3);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 140px;
  border-radius: 10px;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .column .scroll-line-bg {
    height: 16vw;
  }
}
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translate(-50%, 50%) scale(1, 0);
            transform: translate(-50%, 50%) scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  40% {
    -webkit-transform: translate(-50%, 50%) scale(1, 1);
            transform: translate(-50%, 50%) scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  41% {
    -webkit-transform: translate(-50%, 50%) scale(1, 1);
            transform: translate(-50%, 50%) scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  80% {
    -webkit-transform: translate(-50%, 50%) scale(1, 0);
            transform: translate(-50%, 50%) scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: translate(-50%, 50%) scale(1, 0);
            transform: translate(-50%, 50%) scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform: translate(-50%, 50%) scale(1, 0);
            transform: translate(-50%, 50%) scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  40% {
    -webkit-transform: translate(-50%, 50%) scale(1, 1);
            transform: translate(-50%, 50%) scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  41% {
    -webkit-transform: translate(-50%, 50%) scale(1, 1);
            transform: translate(-50%, 50%) scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  80% {
    -webkit-transform: translate(-50%, 50%) scale(1, 0);
            transform: translate(-50%, 50%) scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: translate(-50%, 50%) scale(1, 0);
            transform: translate(-50%, 50%) scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.column__inner {
  width: 1056px;
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .column__inner {
    max-width: 700px;
    width: 92%;
  }
}
.column__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 80px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 2%;
}
@media screen and (max-width: 900px) {
  .column__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.8vw;
    gap: 6.9vw 0;
  }
}
.column__flex--item {
  padding: 32px 16px 64px;
  background: #fff;
  position: relative;
  width: 32%;
  -webkit-box-shadow: 0px 0px 20px 10px rgb(245, 245, 245);
          box-shadow: 0px 0px 20px 10px rgb(245, 245, 245);
}
@media screen and (max-width: 900px) {
  .column__flex--item {
    padding: 8.5vw 4.3vw 14.7vw;
    width: 100%;
  }
}
.column__flex--item::after {
  content: "";
  display: block;
  background: url(../img/corner-triangle.png) center center/cover no-repeat;
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .column__flex--item::after {
    bottom: 4.3vw;
    right: 4.3vw;
    width: 6.4vw;
    height: 6.4vw;
  }
}
.column__flex--item:hover::after {
  opacity: 0.7;
}
.column__flex--item a .post-img {
  width: 100%;
  aspect-ratio: 9/6;
  overflow: hidden;
  position: relative;
}
.column__flex--item a .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.column__flex--item a .post-title {
  font-size: 20px;
  margin-top: 18px;
}
@media screen and (max-width: 900px) {
  .column__flex--item a .post-title {
    font-size: 3.5vw;
    margin-top: 1.3vw;
  }
}
@media screen and (max-width: 768px) {
  .column__flex--item a .post-title {
    font-size: 5.3vw;
    margin-top: 2.7vw;
  }
}
.column__flex--item a .post-date {
  margin-top: 8px;
  color: #666;
}
@media screen and (max-width: 900px) {
  .column__flex--item a .post-date {
    font-size: 2.8vw;
    margin-top: 0.6vw;
  }
}
@media screen and (max-width: 768px) {
  .column__flex--item a .post-date {
    font-size: 4.3vw;
    margin-top: 1.6vw;
  }
}
.column__flex--item a .post-text {
  margin-top: 20px;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 900px) {
  .column__flex--item a .post-text {
    font-size: 2.8vw;
    margin-top: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  .column__flex--item a .post-text {
    font-size: 4.3vw;
    margin-top: 3.2vw;
  }
}
.column .column__btn {
  margin-top: 56px;
}
@media screen and (max-width: 900px) {
  .column .column__btn {
    margin-top: 10.7vw;
  }
}

/* ----------------------------------------
  トップ／CONTACT
---------------------------------------- */
.contact {
  padding: 140px 0;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 18.7vw 0 21.3vw;
  }
}
.contact__inner {
  max-width: 85%;
  margin: 0 auto;
}
.contact__text {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .contact__text {
    margin-top: 10.7vw;
    font-size: 3.7vw;
  }
}
.contact__btn {
  margin: 56px auto 0;
}
@media screen and (max-width: 768px) {
  .contact__btn {
    margin-top: 13.3vw;
  }
}
/* ----------------------------------------
  SERVICEページ／サービス詳細
---------------------------------------- */
.service-detail__inner {
  width: 1040px;
  max-width: 90%;
  margin: 0 auto;
}
.service-detail__inner:nth-child(n+2) {
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .service-detail__inner:nth-child(n+2) {
    margin-top: 13.3vw;
  }
}
@media screen and (max-width: 1150px) {
  .service-detail__title {
    width: 700px;
    max-width: 90%;
  }
}
.service-detail__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 1150px) {
  .service-detail__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
    margin-top: 4.2vw;
  }
}
@media screen and (max-width: 768px) {
  .service-detail__flex {
    gap: 8vw;
    margin-top: 8vw;
  }
}
.service-detail__flex--item {
  width: 31%;
  padding: 30px;
  background: #fff;
  position: relative;
  border-bottom: 3px solid #0ea5e9;
  -webkit-box-shadow: 0px 0px 10px 0px rgb(245, 245, 245);
          box-shadow: 0px 0px 10px 0px rgb(245, 245, 245);
}
@media screen and (max-width: 1150px) {
  .service-detail__flex--item {
    width: 700px;
    max-width: 90%;
    padding: 2.8vw;
  }
}
@media screen and (max-width: 768px) {
  .service-detail__flex--item {
    padding: 8vw;
  }
}
.service-detail__flex--item.col-2 {
  width: 48%;
}
@media screen and (max-width: 1150px) {
  .service-detail__flex--item.col-2 {
    width: 700px;
    max-width: 90%;
    padding: 2.8vw;
  }
}
@media screen and (max-width: 768px) {
  .service-detail__flex--item.col-2 {
    padding: 8vw;
  }
}
.service-detail__flex--item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: -20px;
  background-color: #f0f9ff;
  -webkit-transform: skewX(5deg) scale(1);
          transform: skewX(5deg) scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
          filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
  z-index: -1;
}
@media screen and (max-width: 1150px) {
  .service-detail__flex--item::before {
    top: 5.3vw;
    bottom: -20;
  }
}
.service-detail__flex--item > * {
  position: relative;
  z-index: 1;
}
.service-detail__flex--item h4 {
  font-size: 24px;
  color: #1e3a8a;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 1150px) {
  .service-detail__flex--item h4 {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .service-detail__flex--item h4 {
    font-size: 4.8vw;
    font-size: clamp(18px, 4.8vw, 22px);
  }
}
.service-detail__flex--item p {
  margin-top: 30px;
}
.service-detail__flex--item p.list {
  text-indent: -1em;
  hanging-punctuation: first;
}
@media screen and (max-width: 1150px) {
  .service-detail__flex--item p {
    margin-top: 2.1vw;
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  .service-detail__flex--item p {
    font-size: clamp(14px, 3.7vw, 18px);
  }
}

/* ----------------------------------------
  SERVICEページ／料金体系
---------------------------------------- */
.price {
  background: url(../img/price-bg.png) center center/cover no-repeat;
  margin: 140px auto 0;
  padding: 64px 0;
}
@media screen and (max-width: 768px) {
  .price {
    margin-top: 13.3vw;
    padding: 10.7vw 0;
  }
}
.price__inner {
  width: 1040px;
  max-width: 95%;
  margin: 0 auto;
}
.price__title {
  margin-top: 0;
}
.price__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .price__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.3vw;
  }
}
.price__flex--item {
  background: #fff;
  color: #1e3a8a;
  width: 31%;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .price__flex--item {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.price__flex--item p {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .price__flex--item p {
    font-size: clamp(20px, 5.3vw, 24px);
  }
}
.price__flex--item p:nth-child(2) {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
}
.price__flex--item p:nth-child(2) span {
  font-size: 32px;
}
.price__text {
  margin-top: 40px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .price__text {
    font-size: clamp(14px, 3.7vw, 18px);
  }
}

/* ----------------------------------------
  SERVICEページ／依頼の流れ
---------------------------------------- */
.flow {
  padding: 70px 0 140px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 10.7vw 0 18.7vw;
  }
}
.flow__inner {
  width: 1040px;
  max-width: 90%;
  margin: 0 auto;
}
.flow__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
  margin-top: 50px;
}
@media screen and (max-width: 1080px) {
  .flow__flex {
    gap: 6.9vw;
  }
}
@media screen and (max-width: 768px) {
  .flow__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 100px;
    margin-top: 13.3vw;
  }
}
.flow__flex--item {
  text-align: center;
}
.flow__flex--item:nth-child(n+2) {
  position: relative;
}
.flow__flex--item:nth-child(n+2)::before {
  content: "";
  background: #1e3a8a;
  height: 4px;
  width: 30px;
  border-radius: 10px;
  position: absolute;
  left: -50px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1080px) {
  .flow__flex--item:nth-child(n+2)::before {
    width: 2.1vw;
    left: -3.5vw;
  }
}
@media screen and (max-width: 768px) {
  .flow__flex--item:nth-child(n+2)::before {
    width: 4px;
    height: 30px;
    left: 50%;
    top: -50px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.flow__flex--item p {
  border-radius: 100px;
}
.flow__flex--item p:first-child {
  font-size: 28px;
  background: #1e3a8a;
  color: #fff;
  height: 70px;
  width: 70px;
  line-height: 65px;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 1080px) {
  .flow__flex--item p:first-child {
    font-size: 24;
    height: 60px;
    width: 60px;
    line-height: 55px;
  }
}
@media screen and (max-width: 768px) {
  .flow__flex--item p:first-child {
    font-size: 8.5vw;
    height: 21.3vw;
    width: 21.3vw;
    line-height: 20.3vw;
  }
}
.flow__flex--item p:nth-child(2) {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 1080px) {
  .flow__flex--item p:nth-child(2) {
    font-size: clamp(16px, 1.4vw, 20px);
    margin-top: 0.7vw;
  }
}
@media screen and (max-width: 768px) {
  .flow__flex--item p:nth-child(2) {
    font-size: 5.3vw;
    margin-top: 2.7vw;
  }
}
.flow__flex--item p:nth-child(3) {
  margin-top: 10px;
}
.flow__flex--item p:nth-child(3) br {
  display: none;
}
@media screen and (max-width: 850px) {
  .flow__flex--item p:nth-child(3) br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .flow__flex--item p:nth-child(3) br {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .flow__flex--item p:nth-child(3) {
    font-size: clamp(14px, 1.1vw, 16px);
    margin-top: 0.7vw;
  }
}
@media screen and (max-width: 768px) {
  .flow__flex--item p:nth-child(3) {
    font-size: 4.3vw;
    margin-top: 2.7vw;
  }
}
.flow__text {
  text-align: center;
  font-size: 20px;
  margin-top: 60px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .flow__text {
    margin-top: 16vw;
    font-size: clamp(14px, 3.7vw, 18px);
  }
}

/* ----------------------------------------
  WORKSページ／業種別活用事例
---------------------------------------- */
.case__inner {
  width: 1080px;
  max-width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.case__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 64px;
}
@media screen and (max-width: 1150px) {
  .case__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8.5vw;
    margin-top: 10.7vw;
  }
}
.case__flex--item {
  width: 512px;
  padding: 40px 64px;
  background: #fff;
  position: relative;
  border-bottom: 3px solid #0ea5e9;
  -webkit-box-shadow: 0px 0px 10px 0px rgb(245, 245, 245);
          box-shadow: 0px 0px 10px 0px rgb(245, 245, 245);
}
@media screen and (max-width: 1150px) {
  .case__flex--item {
    width: 700px;
    max-width: 90%;
    padding: 6.4vw 8vw;
  }
}
.case__flex--item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: -20px;
  background-color: #f0f9ff;
  -webkit-transform: skewX(5deg) scale(1);
          transform: skewX(5deg) scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
          filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
  z-index: -1;
}
@media screen and (max-width: 1150px) {
  .case__flex--item::before {
    top: 5.3vw;
    bottom: -20;
  }
}
.case__flex--item > * {
  position: relative;
  z-index: 1;
}
.case__flex--item h4 {
  font-size: 30px;
  color: #1e3a8a;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .case__flex--item h4 {
    font-size: clamp(24px, 5.3vw, 30px);
  }
}
.case__flex--list {
  margin-top: 30px;
}
.case__flex--list p {
  padding-left: 38px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .case__flex--list p {
    font-size: clamp(16px, 2.9vw, 20px);
    padding-left: 10.1vw;
  }
}
.case__flex--list p span {
  color: #1e3a8a;
}
.case__flex--list p.head {
  font-weight: bold;
  font-size: 18px;
  padding-left: 0;
  margin-top: 20px;
  padding-left: 1.7em;
  text-indent: -1.7em;
}
@media screen and (max-width: 768px) {
  .case__flex--list p.head {
    font-size: clamp(18px, 3.5vw, 22px);
  }
}

/* ----------------------------------------
  WORKSページ／解決ケーススタディ
---------------------------------------- */
.solution {
  background: #f0f9ff;
  padding: 140px 0;
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .solution {
    padding: 16vw 0;
    margin-top: 18.7vw;
  }
}
.solution__inner {
  width: 1080px;
  max-width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .solution__inner {
    -webkit-transform: translateX(2.5%);
            transform: translateX(2.5%);
  }
}
.solution__title {
  margin-top: 0;
}
.solution__content {
  border: 3px solid #0ea5e9;
  position: relative;
  padding: 63px 46px 35px;
  background: #fff;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .solution__content {
    padding: 8vw 4vw 5.3vw;
    margin-top: 13.3vw;
  }
}
.solution__content:nth-child(n+3) {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .solution__content:nth-child(n+3) {
    margin-top: 12vw;
  }
}
.solution__content--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -1.5px;
  left: -36.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .solution__content--head {
    left: -33.5px;
  }
}
.solution__content--head p {
  background: #0ea5e9;
  color: #fff;
  position: relative;
}
.solution__content--head p:first-child {
  width: 70px;
  height: 70px;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .solution__content--head p:first-child {
    height: 64px;
    width: 64px;
    font-size: clamp(12px, 3.2vw, 14px);
  }
}
.solution__content--head p:nth-child(2) {
  width: 352px;
  height: 50px;
  line-height: 50px;
  margin-left: -10px;
  z-index: 1;
  padding-left: 42px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .solution__content--head p:nth-child(2) {
    font-size: clamp(18px, 4.3vw, 24px);
    padding-left: 5.3vw;
    width: 66.7vw;
    height: 40px;
    line-height: 40px;
    margin-left: -2.7vw;
  }
}
.solution__content--head p span {
  font-size: 24px;
}
.solution__content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f0f9ff;
  padding: 12px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.solution__content ul li p:first-child {
  font-weight: bold;
  border: 1px solid #1e3a8a;
  padding: 5px 0;
  width: 72px;
  min-width: 72px;
  line-height: 1;
  background: #fff;
  text-align: center;
  color: #1e3a8a;
}
.solution__content ul li p:nth-child(2) {
  color: #666;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .solution__content ul li p:nth-child(2) {
    padding-right: 10px;
  }
}
.solution__content ul li:nth-child(n+2) {
  margin-top: 16px;
}
.solution__content ul li:nth-child(3) p:first-child {
  background: #1e3a8a;
  color: #fff;
}

/* ----------------------------------------
  WORKSページ／対応エリア
---------------------------------------- */
.area {
  padding: 140px 0;
}
@media screen and (max-width: 768px) {
  .area {
    padding: 16vw 0;
  }
}
.area__inner {
  width: 1040px;
  max-width: 90%;
  margin: 0 auto;
}
.area__title {
  margin-top: 0;
}
.area__text {
  padding: 30px 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto;
  font-size: 32px;
  color: #1e3a8a;
  background: #fff;
  position: relative;
  border-bottom: 3px solid #0ea5e9;
  -webkit-box-shadow: 0px 0px 10px 0px rgb(245, 245, 245);
          box-shadow: 0px 0px 10px 0px rgb(245, 245, 245);
}
@media screen and (max-width: 768px) {
  .area__text {
    font-size: clamp(20px, 3.7vw, 32px);
    padding: 4vw 5.3vw;
  }
}
.area__text::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: -20px;
  background-color: #f0f9ff;
  -webkit-transform: skewX(10deg) scale(1);
          transform: skewX(10deg) scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
          filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.04));
  z-index: -1;
}
.area__text > * {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------
  CONTACTページ／事務所概要
---------------------------------------- */
#info {
  scroll-margin-top: 50px;
}

.info {
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .info {
    padding-bottom: 18.7vw;
  }
}
.info__inner {
  width: 1040px;
  margin: 0 auto;
  max-width: 90%;
}
.info__title {
  margin-top: 0;
}
.info__content h4 {
  font-size: 18px;
  font-weight: bold;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e3a8a;
  width: 80%;
  color: #1e3a8a;
}
@media screen and (max-width: 768px) {
  .info__content h4 {
    width: 100%;
  }
}
.info__content h4::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Font Awesome 6 Free";
  font-size: 14;
}
.info__content h4.tel::before {
  content: "\f095";
}
.info__content h4.email::before {
  content: "\f0e0";
}
.info__content h4.fax::before {
  content: "\f1ac";
}
.info__content h4.address::before {
  content: "\f3c5";
}
.info__content h4.access::before {
  content: "\f238";
}
.info__content h4.map {
  width: 100%;
}
.info__content h4.map::before {
  content: "\f279";
}
.info__content a.fz24 {
  font-size: 24px;
  font-weight: bold;
}
.info__content p {
  margin-top: 10px;
}
.info__content p.fz12 {
  font-size: 12px;
}
.info__content p.fz14 {
  font-size: 14px;
}
.info__content p.fz16 {
  font-size: 16px;
}
.info__content p.fz18 {
  font-size: 18px;
}
.info__content p.fwb {
  font-weight: bold;
}
.info__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .info__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}
.info__flex--item {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .info__flex--item {
    width: 100%;
    margin-top: 5.3vw;
  }
}
.info__flex.second .info__flex--item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .info__flex.second .info__flex--item {
    width: 100%;
  }
}
.info__map {
  width: 100%;
  margin-top: 50px;
}
.info__map--item {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 45%;
  overflow: hidden;
  margin-top: 30px;
}
.info__map--item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.smf-checkbox-control {
  font-size: 18px;
}

.smf-form .smf-checkbox-control__control {
  margin-top: 8px !important;
}