@charset "UTF-8";
/*-変数定義 font
------------------------------*/
/* ----------------------------------------
タイポグラフィ・色（デザイン統一）
---------------------------------------- */
/* PC用タイポグラフィ（トップページ指定） */
/*--------------------------
font-size
---------------------------*/
/*行間計算*/
/*--------------------------
content-width
---------------------------*/
/* ----------------------------------------
ニューモーフィズム（浮き出し・くぼみ）
---------------------------------------- */
/* ----------------------------------------
header（画面追従・白背景）
---------------------------------------- */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  -webkit-transition: -webkit-box-shadow 0.2s ease-out;
  transition: -webkit-box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  /* スクロール開始時のみシャドウを表示（.is-scrolled は JS で付与） */
}
.p-header.is-scrolled {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
          box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.p-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  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;
}
@media screen and (max-width:767px) {
  .p-header__inner {
    padding: 16px 12px;
    min-height: 72px;
  }
}

.p-header__logo {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.p-header__logo-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
}
.p-header__logo-link:focus-visible {
  outline: 2px solid #555;
  outline-offset: 4px;
}

.p-header__logo-link img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 単体ロゴ（header-logo.svg のみの場合） */
.p-header__logo-link img:only-of-type {
  width: 123px;
  height: 32px;
}
@media screen and (max-width:767px) {
  .p-header__logo-link img:only-of-type {
    width: 85px;
    height: 28px;
  }
}

/* Figmaロゴ（アイコン＋テキスト） */
.p-header__logo-icon {
  width: 41px;
  height: 32px;
  margin-right: 4px;
}
@media screen and (max-width:767px) {
  .p-header__logo-icon {
    width: 32px;
    height: 25px;
  }
}

.p-header__logo-text-img {
  width: 82px;
  height: 32px;
}
@media screen and (max-width:767px) {
  .p-header__logo-text-img {
    width: 64px;
    height: 25px;
  }
}

.p-header__logo-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* PC用CTA：SPでは非表示 */
.p-header__cta-list--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width:767px) {
  .p-header__cta-list--pc {
    display: none;
  }
}

.p-header__cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, #ffffff 100%, #eeeeee 0%);
  -webkit-box-shadow: -5px 5px 10px rgba(222, 222, 222, .2), 5px -5px 10px rgba(222, 222, 222, .2), -5px -5px 10px rgba(255, 255, 255, .9), 5px 5px 13px rgba(222, 222, 222, .9), inset 1px 1px 2px rgba(255, 255, 255, .3), inset -1px -1px 2px rgba(222, 222, 222, .5);
          box-shadow: -5px 5px 10px rgba(222, 222, 222, .2), 5px -5px 10px rgba(222, 222, 222, .2), -5px -5px 10px rgba(255, 255, 255, .9), 5px 5px 13px rgba(222, 222, 222, .9), inset 1px 1px 2px rgba(255, 255, 255, .3), inset -1px -1px 2px rgba(222, 222, 222, .5);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.25em;
  color: #555;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-header__cta-btn:hover {
  opacity: 0.85;
}
.p-header__cta-btn:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}
@media screen and (max-width:767px) {
  .p-header__cta-btn {
    padding: 12px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }
}

.p-header__cta-icon {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-header__cta-icon--mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M22 2L11 13M22 2l-7 7-4-4-11 11'/%3E%3Cpath d='M22 2l-11 11-4-4'/%3E%3C/svg%3E");
}

.p-header__cta-icon--doc {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M14 2H6a2 2 0 00-2 2v16a2 2 0 002 2h12a2 2 0 002-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='12' y1='18' x2='12' y2='12'/%3E%3Cline x1='9' y1='15' x2='15' y2='15'/%3E%3C/svg%3E");
}

/* ----------------------------------------
SP用ハンバーガーボタン
---------------------------------------- */
.p-header__hamburger--sp {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media screen and (max-width:767px) {
  .p-header__hamburger--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-header__hamburger--sp:hover {
  background: rgba(0, 0, 0, .05);
}
.p-header__hamburger--sp:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

.p-header__hamburger-line {
  display: block;
  width: 16px;
  height: 2px;
  background: #555;
  border-radius: 1px;
  -webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, opacity 0.25s;
  transition: transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
}

.p-header__hamburger.is-active .p-header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}

.p-header__hamburger.is-active .p-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.is-active .p-header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

/* ----------------------------------------
SP用ドロワーメニュー（Figma node 440-78660 準拠・ニューモーフィズム）
---------------------------------------- */
.p-header__drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width:767px) {
  .p-header__drawer {
    display: block;
  }
}

.p-header__drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.p-header__drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 90vw;
  height: 100%;
  padding: 16px;
  overflow-y: auto;
  /* SP: 背景はフラット（角丸・影なし） */
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-header__drawer.is-open .p-header__drawer-inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-header__drawer-header {
  position: relative;
  height: 40px;
  margin-bottom: 24px;
}

.p-header__drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  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;
}
.p-header__drawer-close:hover {
  background: rgba(0, 0, 0, .05);
}
.p-header__drawer-close:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

.p-header__drawer-close-icon {
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-header__drawer-nav {
  margin-bottom: 32px;
}

.p-header__drawer-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-header__drawer-item {
  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;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  padding: 11px;
  border-radius: 12px;
  background: #f0f0f0;
  -webkit-box-shadow: -4px 4px 8px 0 rgba(225, 225, 225, .2), 4px -4px 8px 0 rgba(225, 225, 225, .2), -4px -4px 8px 0 rgba(255, 255, 255, .9), 4px 4px 10px 0 rgba(222, 222, 222, .9), inset 1px 1px 2px 0 rgba(255, 255, 255, .3), inset -1px -1px 2px 0 rgba(222, 222, 222, .5);
          box-shadow: -4px 4px 8px 0 rgba(225, 225, 225, .2), 4px -4px 8px 0 rgba(225, 225, 225, .2), -4px -4px 8px 0 rgba(255, 255, 255, .9), 4px 4px 10px 0 rgba(222, 222, 222, .9), inset 1px 1px 2px 0 rgba(255, 255, 255, .3), inset -1px -1px 2px 0 rgba(222, 222, 222, .5);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  color: #393939;
  text-decoration: none;
  -webkit-transition: opacity 0.2s, color 0.2s;
  transition: opacity 0.2s, color 0.2s;
}
.p-header__drawer-item:hover {
  opacity: 0.9;
  color: #2d7dd2;
}
.p-header__drawer-item:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

/* ドロワーアイコン（PCグローバルナビと同じ gnav-icon-01〜06 を img で表示） */
.p-header__drawer-item-icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 6px;
  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;
}

.p-header__drawer-item-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__drawer-item-label {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

/* ドロワーCTA（お問い合わせ・資料請求＝フッターCTAと同じアイコン） */
.p-header__drawer-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.p-header__drawer-cta-btn {
  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;
  gap: 8px;
  width: 100%;
  height: 62px;
  padding: 0 16px;
  border-radius: 12px;
  background: #f0f0f0;
  -webkit-box-shadow: -4px 4px 8px 0 rgba(225, 225, 225, .2), 4px -4px 8px 0 rgba(225, 225, 225, .2), -4px -4px 8px 0 rgba(255, 255, 255, .9), 4px 4px 10px 0 rgba(222, 222, 222, .9), inset 1px 1px 2px 0 rgba(255, 255, 255, .3), inset -1px -1px 2px 0 rgba(222, 222, 222, .5);
          box-shadow: -4px 4px 8px 0 rgba(225, 225, 225, .2), 4px -4px 8px 0 rgba(225, 225, 225, .2), -4px -4px 8px 0 rgba(255, 255, 255, .9), 4px 4px 10px 0 rgba(222, 222, 222, .9), inset 1px 1px 2px 0 rgba(255, 255, 255, .3), inset -1px -1px 2px 0 rgba(222, 222, 222, .5);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #393939;
  text-decoration: none;
  -webkit-transition: opacity 0.2s, color 0.2s;
  transition: opacity 0.2s, color 0.2s;
}
.p-header__drawer-cta-btn:hover {
  opacity: 0.9;
  color: #2d7dd2;
}
.p-header__drawer-cta-btn:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

.p-header__drawer-cta-icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
}

.p-header__drawer-cta-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ----------------------------------------
フッターお問い合わせCTA
---------------------------------------- */
.p-footer-cta {
  background: url("../img/footer-cta-bg.png") center center/cover no-repeat;
  padding: 85px 0 100px;
}
@media screen and (max-width:767px) {
  .p-footer-cta {
    padding: 48px 0 60px;
  }
}

.p-footer-cta__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width:767px) {
  .p-footer-cta__inner {
    padding: 0 20px;
  }
}

.p-footer-cta__header {
  margin-bottom: 55px;
  text-align: center;
}
@media screen and (max-width:767px) {
  .p-footer-cta__header {
    margin-bottom: 32px;
  }
}

.p-footer-cta__label {
  margin: 0 0 8px;
  display: block;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  text-align: center;
}
@media screen and (max-width:767px) {
  .p-footer-cta__label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}

.p-footer-cta__heading {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 9px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width:767px) {
  .p-footer-cta__heading {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
  }
}

.p-footer-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer-cta__btn {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 24px 40px;
  width: 400px;
  min-width: 400px;
  height: 162px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -ms-flex-positive: 0;
      flex-grow: 0;
  border-radius: 16px;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.p-footer-cta__btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.95;
}
.p-footer-cta__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
@media screen and (max-width:767px) {
  .p-footer-cta__btn {
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 140px;
    padding: 24px 32px;
  }
}

/* 無料相談を申し込む（電話） */
.p-footer-cta__btn--tel {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  background: linear-gradient(100.83deg, #0e216f 13.54%, #157ab0 83.94%);
  -webkit-box-shadow: -5px 5px 10px rgba(19, 85, 143, .2), 5px -5px 10px rgba(19, 85, 143, .2), -5px -5px 10px rgba(23, 103, 175, .7), 5px 5px 13px rgba(19, 85, 143, .9), inset 1px 1px 2px rgba(23, 103, 175, .3), inset -1px -1px 2px rgba(19, 85, 143, .5);
          box-shadow: -5px 5px 10px rgba(19, 85, 143, .2), 5px -5px 10px rgba(19, 85, 143, .2), -5px -5px 10px rgba(23, 103, 175, .7), 5px 5px 13px rgba(19, 85, 143, .9), inset 1px 1px 2px rgba(23, 103, 175, .3), inset -1px -1px 2px rgba(19, 85, 143, .5);
}

/* 資料請求する */
.p-footer-cta__btn--doc {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  background: linear-gradient(135deg, #1e80b3 0%, #3ba2c3 100%);
  -webkit-box-shadow: -5px 5px 10px rgba(23, 130, 166, .2), 5px -5px 10px rgba(23, 130, 166, .2), -5px -5px 7px rgba(28, 158, 202, .82), 5px 5px 13px rgba(23, 130, 166, .9), inset 1px 1px 2px rgba(28, 158, 202, .3), inset -1px -1px 2px rgba(23, 130, 166, .5);
          box-shadow: -5px 5px 10px rgba(23, 130, 166, .2), 5px -5px 10px rgba(23, 130, 166, .2), -5px -5px 7px rgba(28, 158, 202, .82), 5px 5px 13px rgba(23, 130, 166, .9), inset 1px 1px 2px rgba(28, 158, 202, .3), inset -1px -1px 2px rgba(23, 130, 166, .5);
}

.p-footer-cta__btn-icon {
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  opacity: 0.95;
}

.p-footer-cta__btn-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer-cta__btn-main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
}

.p-footer-cta__btn-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .9);
}

/* ----------------------------------------
グローバルメニュー（画面下固定）
Figma: https://www.figma.com/design/mtb3WOf8vj6CpAxkQWnj7F/  node-id=1-13082
---------------------------------------- */
.p-global-nav {
  position: fixed;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 600px;
  padding: 8px 24px;
  background: linear-gradient(172.75deg, #fff 100%, #f2f2f2 0%);
  border-radius: 40px;
  -webkit-box-shadow: -5px 5px 10px 0 rgba(222, 222, 222, .2), 5px -5px 10px 0 rgba(222, 222, 222, .2), -5px -5px 10px 0 rgba(255, 255, 255, .9), 5px 5px 13px 0 rgba(222, 222, 222, .9), inset 1px 1px 2px 0 rgba(255, 255, 255, .3), inset -1px -1px 2px 0 rgba(222, 222, 222, .5);
          box-shadow: -5px 5px 10px 0 rgba(222, 222, 222, .2), 5px -5px 10px 0 rgba(222, 222, 222, .2), -5px -5px 10px 0 rgba(255, 255, 255, .9), 5px 5px 13px 0 rgba(222, 222, 222, .9), inset 1px 1px 2px 0 rgba(255, 255, 255, .3), inset -1px -1px 2px 0 rgba(222, 222, 222, .5);
}
@media screen and (max-width:767px) {
  .p-global-nav {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 8px 12px;
  }
}

.p-global-nav__list {
  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;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width:767px) {
  .p-global-nav__list {
    gap: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-global-nav__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.p-global-nav__link {
  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;
  gap: 4px;
  padding: 8px;
  min-width: 54px;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #393939;
  text-decoration: none;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.p-global-nav__link:hover {
  background: rgba(0, 0, 0, .04);
  color: #2d7dd2;
}
.p-global-nav__link[aria-current=page] {
  color: #2d7dd2;
  font-weight: 500;
}
.p-global-nav__link:focus-visible {
  outline: 2px solid #2d7dd2;
  outline-offset: 2px;
}
@media screen and (max-width:767px) {
  .p-global-nav__link {
    min-width: 0;
    padding: 6px 4px;
    font-size: 0.5625rem;
  }
}

.p-global-nav__label {
  white-space: nowrap;
}
@media screen and (max-width:767px) {
  .p-global-nav__label {
    font-size: 0.5625rem;
  }
}

/* アイコン（32px・gnav-icon-01.svg 〜 06.svg） */
.p-global-nav__icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
}

.p-global-nav__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-global-nav__link:hover .p-global-nav__icon-img,
.p-global-nav__link[aria-current=page] .p-global-nav__icon-img {
  opacity: 0.85;
}

/* ----------------------------------------
Footer
---------------------------------------- */
.p-footer {
  background: #f5f5f5;
  padding: 24px 0;
  padding-bottom: 110px;
}
@media screen and (max-width:767px) {
  .p-footer {
    padding: 24px 0 32px;
  }
}

.p-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width:767px) {
  .p-footer__inner {
    padding: 0 20px;
  }
}

.p-footer__copy {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  color: #666;
  text-align: center;
}

body, * {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  text-align: justify;
}

body {
  /* 画面上固定ヘッダー分の余白（ヘッダー高さに合わせる） */
  padding-top: 80px;
}

main.is-page {
  padding-top: 48px;
}
@media screen and (max-width:767px) {
  main.is-page {
    padding-top: 47px;
  }
}

/*--container
------------------------------*/
.container {
  max-width: 1000px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container02 {
  max-width: 1080px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container03 {
  max-width: 1080px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container04 {
  max-width: 1200px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.container05 {
  max-width: 820px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.container06 {
  max-width: 880px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.container07 {
  max-width: 900px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.child-container {
  max-width: 800px;
  width: calc(100% - 120px);
}
@media screen and (max-width:767px) {
  .child-container {
    width: 100%;
  }
}

.child-container02 {
  max-width: 684px;
  width: calc(100% - 120px);
}
@media screen and (max-width:767px) {
  .child-container02 {
    width: 100%;
  }
}

@media screen and (max-width:767px) {
  .sp-container {
    width: 84%;
    margin: 0 auto;
  }
}

/*--container
------------------------------*/
.is-front .container {
  max-width: 1000px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.is-front .container02 {
  max-width: 1080px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.is-front .container03 {
  max-width: 1080px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.is-front .container04 {
  max-width: 1200px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
.is-front .container05 {
  max-width: 820px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
.is-front .container06 {
  max-width: 880px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
.is-front .container07 {
  max-width: 900px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
.is-front .child-container {
  max-width: 800px;
  width: calc(100% - 120px);
}
@media screen and (max-width:767px) {
  .is-front .child-container {
    width: 100%;
  }
}
.is-front .child-container02 {
  max-width: 684px;
  width: calc(100% - 120px);
}
@media screen and (max-width:767px) {
  .is-front .child-container02 {
    width: 100%;
  }
}
@media screen and (max-width:767px) {
  .is-front .sp-container {
    width: 84%;
    margin: 0 auto;
  }
}

/*--section__title
------------------------------*/
.section__title {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.4em;
  font-weight: 500;
  z-index: 5;
  position: relative;
}
@media screen and (max-width:767px) {
  .section__title {
    font-size: 1.125rem;
  }
}

.section__title span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin-left: 4px;
}
@media screen and (max-width:767px) {
  .section__title span {
    font-size: 0.8125rem;
    margin-left: 2px;
    letter-spacing: 0.3em;
  }
}

/* ----------------------------------------
page base
---------------------------------------- */
.is-page {
  background: #F5F5F0;
}

.page__section:not(:last-of-type) {
  padding-top: 148px;
}
@media screen and (max-width:767px) {
  .page__section:not(:last-of-type) {
    padding-top: 80px;
  }
}

.page__section:last-of-type {
  padding-top: 148px;
  padding-bottom: 160px;
}
@media screen and (max-width:767px) {
  .page__section:last-of-type {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

/* ----------------------------------------
page mv
---------------------------------------- */
.mv__wrap .container:not(.breadcrumbs) {
  padding: 100px 0;
}
@media screen and (max-width:767px) {
  .mv__wrap .container:not(.breadcrumbs) {
    padding: 60px 0 80px;
    width: 100%;
  }
}

.mv__wrap .container .page__top-title, .is-404 h1 {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.35em;
  line-height: 1.5;
}
@media screen and (max-width:767px) {
  .mv__wrap .container .page__top-title, .is-404 h1 {
    font-size: 1.125rem;
  }
}

/* ----------------------------------------
breadcrumbs
---------------------------------------- */
/* ----------------------------------------
page title
---------------------------------------- */
/* ----------------------------------------
message mv
---------------------------------------- */
/* ----------------------------------------
last
---------------------------------------- */
.sp-flex, .sp-block, .sp-inline {
  display: none !important;
}

@media screen and (max-width:767px) {
  .sp-hide {
    display: none !important;
  }
  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .sp-block {
    display: block !important;
  }
  .sp-inline {
    display: inline !important;
  }
}
.pc-hide {
  display: none;
}
@media screen and (max-width:767px) {
  .pc-hide {
    display: block;
  }
}

/* ----------------------------------------
事業内容（トップページ用）
---------------------------------------- */
.p-business.sec {
  padding: 80px 0 64px;
}
@media screen and (max-width:767px) {
  .p-business.sec {
    padding: 48px 0 40px;
  }
}

.p-business__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
@media screen and (max-width:767px) {
  .p-business__inner {
    padding: 0;
  }
}

.p-business__left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 355px;
  padding: 0 40px 0 0;
}
@media screen and (max-width:767px) {
  .p-business__left {
    width: 100%;
    padding: 0 24px;
  }
}

.p-business__header {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 24px;
}
@media screen and (max-width:767px) {
  .p-business__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}

.p-business__head-main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 20px;
}

/* business：feature と同じラベル（Lexend + グラデーション + letter-spacing 8px） */
.p-business__label {
  margin: 0;
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: lowercase;
  background: linear-gradient(135deg, #1a5f8a 0%, #2d7dd2 35%, #5ba3d0 70%, #7eb8e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width:767px) {
  .p-business__label {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.p-business__title {
  margin: 0 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 9px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .p-business__title {
    margin: 0 0 8px;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.p-business__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 48px;
  gap: 0;
}
@media screen and (max-width:767px) {
  .p-business__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

@media screen and (max-width:767px) {
  .p-business__nav {
    width: 100%;
  }
}

.p-business__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-business__list li {
  margin: 0;
}

.p-business__list li:last-child {
  margin-bottom: 0;
}

/* 未選択：影・枠線なし */
.p-business__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 15px;
  width: 100%;
  min-height: 120px;
  border: none;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.5;
  letter-spacing: 3px;
  color: #393939;
  -webkit-transition: opacity 0.2s, background 0.2s, -webkit-box-shadow 0.2s;
  transition: opacity 0.2s, background 0.2s, -webkit-box-shadow 0.2s;
  transition: opacity 0.2s, background 0.2s, box-shadow 0.2s;
  transition: opacity 0.2s, background 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.p-business__tab:hover {
  opacity: 0.9;
}
@media screen and (max-width:767px) {
  .p-business__tab {
    padding: 16px;
    min-height: 112px;
    gap: 12px;
    font-size: 0.875rem;
    border-radius: 12px;
  }
}

/* 選択中：p-feature__item と同じ背景・影・角丸 */
.p-business__tab.is-active {
  background: #fefefe;
  -webkit-box-shadow: 1px 1px 2px rgba(255, 255, 255, .3), -1px -1px 2px rgba(227, 227, 227, .5), inset -5px 5px 10px rgba(227, 227, 227, .2), inset 5px -5px 10px rgba(227, 227, 227, .2), inset -5px -5px 10px rgba(255, 255, 255, .9), inset 5px 5px 13px rgba(227, 227, 227, .9);
          box-shadow: 1px 1px 2px rgba(255, 255, 255, .3), -1px -1px 2px rgba(227, 227, 227, .5), inset -5px 5px 10px rgba(227, 227, 227, .2), inset 5px -5px 10px rgba(227, 227, 227, .2), inset -5px -5px 10px rgba(255, 255, 255, .9), inset 5px 5px 13px rgba(227, 227, 227, .9);
  opacity: 1;
}

/* 事業内容タブの画像：80px × 80px、ボタン内に収める */
.p-business__tab-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  background: #f0f4f8;
}

.p-business__tab-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-business__tab-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}

/* 右側コンテンツ：左テキスト 384px + 右画像、p-feature__item 風の背景・影・画面右端まで */
.p-business__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 70px 40px 40px 60px;
  border-radius: 40px 0 0 40px;
  background: #fbfbfb;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 2px rgba(255, 255, 255, .3), -1px -1px 2px rgba(227, 227, 227, .5), inset -5px 5px 10px rgba(227, 227, 227, .2), inset 5px -5px 10px rgba(227, 227, 227, .2), inset -5px -5px 10px rgba(255, 255, 255, .9), inset 5px 5px 13px rgba(227, 227, 227, .9);
          box-shadow: 1px 1px 2px rgba(255, 255, 255, .3), -1px -1px 2px rgba(227, 227, 227, .5), inset -5px 5px 10px rgba(227, 227, 227, .2), inset 5px -5px 10px rgba(227, 227, 227, .2), inset -5px -5px 10px rgba(255, 255, 255, .9), inset 5px 5px 13px rgba(227, 227, 227, .9);
  /* .p-business__inner（max-width: 1280px）内にありつつ、
     左端はそのまま・右端だけ画面右端まで広げる */
}
@media (min-width: 768px) {
  .p-business__content {
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width:767px) {
  .p-business__content {
    padding: 24px;
    border-radius: 24px;
    margin: 0 24px;
  }
}

.p-business__content-inner {
  display: block;
  min-height: 0;
}
@media screen and (max-width:767px) {
  .p-business__content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

/* 左側テキストエリア：幅 384px */
.p-business__content-text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 384px;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width:767px) {
  .p-business__content-text {
    width: 100%;
  }
}

/* 右側画像エリア */
.p-business__content-visual {
  position: absolute;
  top: 50%;
  left: 540px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% - 448px); /* 左テキスト幅 + 余白分を引いた残りを画像に充てる */
  max-width: 520px;
  min-height: 280px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .p-business__content-visual {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    max-width: none;
    min-height: 200px;
    border-radius: 12px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 16px;
  }
}

.p-business__content-img {
  display: block;
}

.p-business__content-title {
  margin: 0 0 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 9px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .p-business__content-title {
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.p-business__content-tag {
  margin: 0 0 24px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 8px 18px;
  border-radius: 3px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #848484;
}
@media screen and (max-width:767px) {
  .p-business__content-tag {
    font-size: 0.75rem;
  }
}

.p-business__content-body {
  margin-bottom: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 3px;
  color: #393939;
}
@media screen and (max-width:767px) {
  .p-business__content-body {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}

.p-business__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 40px;
}
@media screen and (max-width:767px) {
  .p-business__cta {
    padding: 0 24px;
  }
}

.p-business__content-text .p-btn {
  width: 280px;
  margin: 50px auto 10px 0;
}
@media screen and (max-width:767px) {
  .p-business__content-text .p-btn {
    min-width: 100%;
  }
}

/* ----------------------------------------
共通ボタン（p-btn）トップページ用
---------------------------------------- */
.p-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, #ffffff 100%, #eeeeee 0%);
  -webkit-box-shadow: -5px 5px 10px rgba(222, 222, 222, .2), 5px -5px 10px rgba(222, 222, 222, .2), -5px -5px 10px rgba(255, 255, 255, .9), 5px 5px 13px rgba(222, 222, 222, .9), inset 1px 1px 2px rgba(255, 255, 255, .3), inset -1px -1px 2px rgba(222, 222, 222, .5);
          box-shadow: -5px 5px 10px rgba(222, 222, 222, .2), 5px -5px 10px rgba(222, 222, 222, .2), -5px -5px 10px rgba(255, 255, 255, .9), 5px 5px 13px rgba(222, 222, 222, .9), inset 1px 1px 2px rgba(255, 255, 255, .3), inset -1px -1px 2px rgba(222, 222, 222, .5);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #525252;
  text-decoration: none;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-btn:hover {
  opacity: 0.9;
}
.p-btn:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}
@media screen and (max-width:767px) {
  .p-btn {
    padding: 14px 24px;
    font-size: 0.8125rem;
  }
}

/* 矢印付きボタン：文字は中央、矢印は右端に配置 */
.p-btn--arrow {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 200px;
}
.p-btn--arrow > span:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.p-btn__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-btn--large {
  padding: 19px 60px;
  font-size: 16px;
  font-size: 1rem;
}

.p-btn--briefcase::before,
.p-btn--search::before {
  content: "";
  width: 28px;
  height: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-btn--briefcase::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 21V5a2 2 0 00-2-2h-4a2 2 0 00-2 2v16'/%3E%3C/svg%3E");
}

.p-btn--search::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
}

/* ----------------------------------------
会社情報（トップページ用）
---------------------------------------- */
.p-company.sec {
  padding: 80px 0 60px;
}
@media screen and (max-width:767px) {
  .p-company.sec {
    padding: 48px 0 40px;
  }
}

.p-company__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
@media screen and (max-width:767px) {
  .p-company__inner {
    padding: 0 24px;
  }
}

.p-company__header {
  text-align: center;
  margin-bottom: 40px;
}

.p-company__head-main {
  display: inline-block;
  text-align: center;
}

/* company：feature と同じラベル（Lexend + グラデーション + letter-spacing 8px）、中央揃え */
.p-company__label {
  margin: 0;
  display: inline-block;
  text-align: center;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: lowercase;
  background: linear-gradient(135deg, #1a5f8a 0%, #2d7dd2 35%, #5ba3d0 70%, #7eb8e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width:767px) {
  .p-company__label {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.p-company__title {
  margin: 0 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 9px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .p-company__title {
    margin: 0 0 8px;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.p-company__visual {
  position: relative;
  height: 393px;
  margin-bottom: 54px;
  border-radius: 12px;
  overflow: hidden;
  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;
}
@media screen and (max-width:767px) {
  .p-company__visual {
    height: 200px;
    margin-bottom: 32px;
  }
}

/* Figma node 1-98（Group 1633）アイソメ医療イラスト：1枚の画像として表示 */
.p-company__visual-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* ローカル画像がない場合のFigma埋め込み（1つのブロックとして表示） */
.p-company__visual-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.p-company__footer {
  text-align: center;
}

.p-company__footer .p-btn {
  min-width: 280px;
}

/* ----------------------------------------
Mark-1の特徴（トップページ用）
---------------------------------------- */
.p-feature.sec {
  padding: 80px 0 120px;
}
@media screen and (max-width:767px) {
  .p-feature.sec {
    padding: 48px 0 60px;
  }
}

.p-feature__inner {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
@media screen and (max-width:767px) {
  .p-feature__inner {
    padding: 0 20px;
  }
}

.p-feature__header {
  margin-bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 65px;
}
@media screen and (max-width:767px) {
  .p-feature__header {
    margin-bottom: 24px;
    -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;
    text-align: center;
  }
}

.p-feature__head-main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* feature：Lexend + 「勝ち」と同じグラデーション */
.p-feature__label {
  margin: 0;
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: lowercase;
  background: linear-gradient(135deg, #1a5f8a 0%, #2d7dd2 35%, #5ba3d0 70%, #7eb8e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width:767px) {
  .p-feature__label {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.p-feature__title {
  margin: 0 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 2.5;
  letter-spacing: 9px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .p-feature__title {
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

/* Mark-1の部分：Lexend */
.p-feature__title-brand {
  font-family: "Lexend", sans-serif;
}

.p-feature__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 280px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.5;
  letter-spacing: 3px;
  color: #393939;
}
@media screen and (max-width:767px) {
  .p-feature__desc {
    min-width: 0;
    max-width: none;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}

.p-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width:767px) {
  .p-feature__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    margin-bottom: 32px;
  }
}

.p-feature__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 160px;
  max-width: 189px;
  /* Figmaの「item」オートレイアウトに合わせたカードレイアウト */
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 56px 24px;
  gap: 12px;
  border-radius: 40px;
  background: #fefefe;
  -webkit-box-shadow: 1px 1px 2px rgba(255, 255, 255, .3), -1px -1px 2px rgba(227, 227, 227, .5), inset -5px 5px 10px rgba(227, 227, 227, .2), inset 5px -5px 10px rgba(227, 227, 227, .2), inset -5px -5px 10px rgba(255, 255, 255, .9), inset 5px 5px 13px rgba(227, 227, 227, .9);
          box-shadow: 1px 1px 2px rgba(255, 255, 255, .3), -1px -1px 2px rgba(227, 227, 227, .5), inset -5px 5px 10px rgba(227, 227, 227, .2), inset 5px -5px 10px rgba(227, 227, 227, .2), inset -5px -5px 10px rgba(255, 255, 255, .9), inset 5px 5px 13px rgba(227, 227, 227, .9);
  min-height: 480px;
  position: relative;
}
@media screen and (max-width:767px) {
  .p-feature__item {
    max-width: none;
    min-width: 0;
    padding: 32px 20px 20px;
    min-height: auto;
    border-radius: 24px;
  }
}

/* featureカードの縦位置調整：01,03,05は下げる／02,04は上げる（PCのみ） */
@media screen and (min-width: 768px) {
  .p-feature__item:nth-child(1),
  .p-feature__item:nth-child(3),
  .p-feature__item:nth-child(5) {
    margin-bottom: 70px;
  }
  .p-feature__item:nth-child(2),
  .p-feature__item:nth-child(4) {
    margin-top: 70px;
  }
}
.p-feature__num {
  display: block;
  margin: 0 0 8px;
  max-width: none;
  font-family: "Lexend", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(54, 116, 178, .7);
  line-height: 1;
}
@media screen and (max-width:767px) {
  .p-feature__num {
    font-size: 1.875rem;
    margin-bottom: 12px;
  }
}

.p-feature__item-title {
  margin: 0;
  max-width: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 3px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .p-feature__item-title {
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}

.p-feature__item-desc {
  margin: 0 0 24px;
  max-width: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.9;
  letter-spacing: 3px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .p-feature__item-desc {
    margin-bottom: 16px;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}

/* featureカード内のフォントサイズバリエーション */
.p-feature__text-xl {
  font-size: 24px;
  font-size: 1.5rem;
}

.p-feature__text-lg {
  font-size: 16px;
  font-size: 1rem;
}

.p-feature__text-sm {
  font-size: 12px;
  font-size: 0.75rem;
}

.p-feature__icon {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  width: 72px;
  height: 72px;
  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;
  opacity: 0.85;
}
@media screen and (max-width:767px) {
  .p-feature__icon {
    width: 56px;
    height: 56px;
  }
}

.p-feature__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-feature__footer {
  text-align: center;
}

.p-feature__footer .p-btn {
  min-width: 280px;
}
@media screen and (max-width:767px) {
  .p-feature__footer .p-btn {
    min-width: 100%;
    max-width: 280px;
  }
}

/* ----------------------------------------
メッセージセクション（マーケティングを通して）トップページ用
---------------------------------------- */
.p-message.sec {
  position: relative;
  padding: 120px 0 80px;
  /* PC時：右にはみ出した画像で横スクロールが出ないようにクリップ */
}
@media (min-width: 768px) {
  .p-message.sec {
    overflow-x: hidden;
  }
}
@media screen and (max-width:767px) {
  .p-message.sec {
    padding: 60px 0 48px;
    overflow-x: visible;
  }
}

.p-message__inner {
  position: relative;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}
@media screen and (max-width:767px) {
  .p-message__inner {
    padding: 0 24px;
  }
}

/* 見出し右側のイラスト（company-illustration）position: absolute */
.p-message__heading-img {
  display: none;
}
@media (min-width: 768px) {
  .p-message__heading-img {
    display: block;
    position: absolute;
    right: -210px;
    top: -90px;
    width: 550px;
    z-index: 0;
    pointer-events: none;
  }
}

.p-message__heading-img-img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 見出し〜「勝ち」を誰よりも…までを左から70%で折り返す（PCのみ） */
.p-message__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
@media screen and (max-width:767px) {
  .p-message__content {
    max-width: none;
  }
}

.p-message__heading {
  margin: 0 0 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 9px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .p-message__heading {
    font-size: 1.375rem;
    margin-bottom: 24px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.p-message__heading-accent {
  color: #555555;
  font-weight: 400;
}

/* 「勝ち」：MVの論理と同じグラデーション */
.p-message__heading em {
  font-style: normal;
  background: linear-gradient(135deg, #1a5f8a 0%, #2d7dd2 35%, #5ba3d0 70%, #7eb8e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-message__body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.5;
  letter-spacing: 3px;
  color: #393939;
}
@media screen and (max-width:767px) {
  .p-message__body {
    font-size: 0.875rem;
    line-height: 1.9;
    letter-spacing: 0.02em;
  }
}

.p-message__body p {
  margin: 0;
}

/* ----------------------------------------
Mv（トップページ）
---------------------------------------- */
.p-mv {
  position: relative;
  min-height: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
@media screen and (max-width:767px) {
  .p-mv {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 80px 0 60px;
  }
}

.p-mv__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  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: 80px;
}
@media screen and (max-width:767px) {
  .p-mv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 24px;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-mv__visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 417px;
  height: 417px;
  position: relative;
  overflow: visible;
}
@media screen and (max-width:767px) {
  .p-mv__visual {
    width: 280px;
    height: 280px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 24px;
  }
}

/* 装飾用円形グラフィック（アニメーション：参考 https://codepen.io/Daiki-code/pen/EaKaabv ） */
.p-mv__circles {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /* ぼかしが切れないように overflow は付けない（visible がデフォルト） */
  isolation: isolate;
}

.p-mv__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* もやっと見えるよう強めにぼかす（px で指定し、親で切らない） */
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="20" /></filter></svg>#filter');
  -webkit-filter: blur(20px);
          filter: blur(20px);
  z-index: 1;
  border-radius: 50%;
}

.p-mv__circle--1 {
  background-color: rgba(70, 174, 201, .85);
  animation: p-mv-circle 8s infinite linear alternate-reverse;
  border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
}

.p-mv__circle--2 {
  background-color: rgba(45, 106, 158, .85);
  animation: p-mv-circle 9s infinite linear alternate-reverse;
  border-radius: 80% 30% 50% 50%/50%;
}

.p-mv__circle--3 {
  background-color: rgba(32, 72, 136, .85);
  animation: p-mv-circle 10s infinite linear alternate-reverse;
  border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
}

.p-mv__circle--4 {
  background-color: rgba(25, 55, 126, .85);
  animation: p-mv-circle 11s infinite linear alternate-reverse;
  border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
}

.p-mv__circle--5 {
  background-color: rgba(23, 91, 156, .85);
  animation: p-mv-circle 12s infinite linear alternate-reverse;
  border-radius: 80% 30% 50% 50%/50%;
}

.p-mv__circle--6 {
  background-color: rgba(10, 76, 150, .85);
  animation: p-mv-circle 13s infinite linear alternate-reverse;
  border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
}

.p-mv__circle--7 {
  background-color: rgba(13, 101, 169, .85);
  animation: p-mv-circle 14s infinite linear alternate-reverse;
  border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
}

/* 動きを抑えたいユーザー向け（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .p-mv__circle {
    -webkit-animation: none;
            animation: none;
  }
}
/* 中央のマスク円（背景とブレンドしてオーガニックな形を作る） */
.p-mv__circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  border-radius: 50%;
  background-color: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="4" /></filter></svg>#filter');
  -webkit-filter: blur(4px);
          filter: blur(4px);
  z-index: 2;
  pointer-events: none;
}

@-webkit-keyframes p-mv-circle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    top: 50%;
    left: 50%;
  }
  20% {
    top: 55%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%) rotate(72deg);
            transform: translate(-50%, -50%) rotate(72deg);
  }
  40% {
    top: 55%;
    left: 45%;
    -webkit-transform: translate(-50%, -50%) rotate(144deg);
            transform: translate(-50%, -50%) rotate(144deg);
  }
  60% {
    top: 45%;
    left: 45%;
    -webkit-transform: translate(-50%, -50%) rotate(216deg);
            transform: translate(-50%, -50%) rotate(216deg);
  }
  80% {
    top: 45%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%) rotate(288deg);
            transform: translate(-50%, -50%) rotate(288deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
    top: 50%;
    left: 50%;
  }
}

@keyframes p-mv-circle {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    top: 50%;
    left: 50%;
  }
  20% {
    top: 55%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%) rotate(72deg);
            transform: translate(-50%, -50%) rotate(72deg);
  }
  40% {
    top: 55%;
    left: 45%;
    -webkit-transform: translate(-50%, -50%) rotate(144deg);
            transform: translate(-50%, -50%) rotate(144deg);
  }
  60% {
    top: 45%;
    left: 45%;
    -webkit-transform: translate(-50%, -50%) rotate(216deg);
            transform: translate(-50%, -50%) rotate(216deg);
  }
  80% {
    top: 45%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%) rotate(288deg);
            transform: translate(-50%, -50%) rotate(288deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
    top: 50%;
    left: 50%;
  }
}
.p-mv__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 500px;
}
@media screen and (max-width:767px) {
  .p-mv__copy {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: none;
    text-align: center;
  }
}

.p-mv__heading {
  margin: 0 0 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 20px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .p-mv__heading {
    letter-spacing: 0.2em;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.p-mv__heading-line {
  display: block;
  font-size: 38px;
  font-size: 2.375rem;
}
@media screen and (max-width:767px) {
  .p-mv__heading-line {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.p-mv__heading-line--accent {
  color: #555555; /* 「で組み立て」見出し黒字 */
}

/* 「論理」部分：線形グラデーション（画像を使わない） */
.p-mv__heading-ronri {
  background: linear-gradient(135deg, #1a5f8a 0%, #2d7dd2 35%, #5ba3d0 70%, #7eb8e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font: inherit;
  letter-spacing: inherit;
}

.p-mv__lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 350;
  line-height: 2.5;
  letter-spacing: 3px;
  color: #393939;
}
@media screen and (max-width:767px) {
  .p-mv__lead {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
  }
}

/* PC用リード：SPでは非表示（SP用はビジュアル下に表示） */
@media screen and (max-width:767px) {
  .p-mv__lead--pc {
    display: none;
  }
}

/* SP用リード：ビジュアル下に表示 */
.p-mv__lead--sp {
  display: none;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 350;
  line-height: 2;
  letter-spacing: 0.15em;
  color: #525252;
  text-align: center;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width:767px) {
  .p-mv__lead--sp {
    display: block;
    margin-top: 24px;
    max-width: 282px;
  }
}

.p-mv__lead--sp .p-mv__lead-accent {
  color: #393939;
  font-weight: 400;
}

.p-mv__lead-accent {
  color: #393939;
  font-weight: 400;
}

/* ----------------------------------------
SP用：MV下CTAバー（初回無料・お問い合わせはこちら）
---------------------------------------- */
.p-mv__sp-cta {
  display: none;
}
@media screen and (max-width:767px) {
  .p-mv__sp-cta {
    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;
    gap: 14px;
    padding: 24px 16px 32px;
    margin-top: 0;
  }
}

.p-mv__sp-cta-caption {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  color: #525252;
  letter-spacing: 0.05em;
}

.p-mv__sp-cta-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 343px;
  padding: 24px 16px;
  background: linear-gradient(135deg, #ffffff 100%, #eeeeee 0%);
  -webkit-box-shadow: -5px 5px 10px rgba(222, 222, 222, .2), 5px -5px 10px rgba(222, 222, 222, .2), -5px -5px 10px rgba(255, 255, 255, .9), 5px 5px 13px rgba(222, 222, 222, .9), inset 1px 1px 2px rgba(255, 255, 255, .3), inset -1px -1px 2px rgba(222, 222, 222, .5);
          box-shadow: -5px 5px 10px rgba(222, 222, 222, .2), 5px -5px 10px rgba(222, 222, 222, .2), -5px -5px 10px rgba(255, 255, 255, .9), 5px 5px 13px rgba(222, 222, 222, .9), inset 1px 1px 2px rgba(255, 255, 255, .3), inset -1px -1px 2px rgba(222, 222, 222, .5);
  border-radius: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #525252;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.p-mv__sp-cta-btn:hover {
  opacity: 0.9;
}
.p-mv__sp-cta-btn:focus-visible {
  outline: 2px solid #555;
  outline-offset: 2px;
}

.p-mv__sp-cta-icon {
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M22 2L11 13M22 2l-7 7-4-4-11 11'/%3E%3Cpath d='M22 2l-11 11-4-4'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ----------------------------------------
採用情報（トップページ用）
---------------------------------------- */
.p-recruit.sec {
  padding: 80px 0 100px;
}
@media screen and (max-width:767px) {
  .p-recruit.sec {
    padding: 48px 0 60px;
  }
}

.p-recruit__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width:767px) {
  .p-recruit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 24px;
    gap: 40px;
  }
}

.p-recruit__visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 292px;
  height: 359px;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .p-recruit__visual {
    width: 100%;
    max-width: 292px;
    height: 240px;
  }
}

.p-recruit__visual-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruit__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.p-recruit__head-main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* recruit：feature と同じラベル（Lexend + グラデーション + letter-spacing 8px） */
.p-recruit__label {
  margin: 0;
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: lowercase;
  background: linear-gradient(135deg, #1a5f8a 0%, #2d7dd2 35%, #5ba3d0 70%, #7eb8e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width:767px) {
  .p-recruit__label {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.p-recruit__title {
  margin: 0 0 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 9px;
  color: #555555;
}
@media screen and (max-width:767px) {
  .p-recruit__title {
    margin: 0 0 8px;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.p-recruit__desc {
  margin: 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.5;
  letter-spacing: 3px;
  color: #393939;
}
@media screen and (max-width:767px) {
  .p-recruit__desc {
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}

.p-recruit__content .p-btn {
  min-width: 280px;
}
@media screen and (max-width:767px) {
  .p-recruit__content .p-btn {
    min-width: 100%;
    max-width: 280px;
  }
}
/*# sourceMappingURL=style.css.map */
