@charset "UTF-8";
/* ======================
  Simple Reset CSS
====================== */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  -webkit-text-size-adjust: 100%;
}

body{
  margin: 0;
  line-height: 1.6;
  color: #111;
  background: #fff;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

ul, ol{
  margin: 0;
  padding: 0;
  list-style: none;
}

p, h1, h2, h3, h4, h5, h6{
  margin: 0;
}

dl, dt, dd{
  margin: 0;
}

button, input, textarea, select{
  font: inherit;
  color: inherit;
}

button{
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

table{
  border-collapse: collapse;
  border-spacing: 0;
}
/* ======================
  Base
====================== */
:root{
  --black:#111;
  --red:#e60012;
  --blue:#2f74ff;
  --container: 1200px;
}

*{ box-sizing: border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN",
               "Noto Sans JP","Yu Gothic", sans-serif;
  color:#111;
  background:#fff;
}

img{
  max-width: 100%;
  height: auto;
  display:block;
}

.pc{display: block;}
.sp{display: none;}
/* ======================
  Responsive
====================== */
@media (max-width: 768px){
.pc{display: none;}
.sp{display: block;}
}


/* ======================
  Layout
====================== */
.l-container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto 15px;
}

.l-header{
  margin:30px 20px ;
}

/* ======================
  Header top (logo + small nav)
====================== */
.c-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
}

/* ロゴ */
.c-header__logo img{
  width: 240px;   /* 好きに調整OK */
}

/* 右上ナビ */
.c-header-nav{
  display:flex;
  gap: 26px;
  padding-top: 6px;
}

.c-header-nav__link{
  position: relative;
  text-decoration:none;
  color:#111;
  font-size:14px;
  font-weight:700;
  padding-bottom: 8px;
}

/* 赤い下線（画像の右上リンクのやつ） */
.c-header-nav__link::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 3px;
  background: var(--red);
}

/* ======================
  Global nav (black bar)
====================== */

/* 黒帯の中身を左右に振り分け */
.c-global-nav__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 20px 60px;
  background: var(--black);
}

/* 左側リンク */
.c-global-nav__left{
  display:flex;
  gap: 60px;
}

.c-global-nav__link{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  font-weight:800;
}

.c-global-nav__link:hover{
  opacity: .85;
}

/* 右側 お問い合わせ */
.c-global-nav__right{
  display:flex;
  justify-content:flex-end;
}

/* ======================
  Hero
====================== */
.c-hero{
  margin-top: 26px;
  overflow:hidden;
}

.c-hero__img{
  width:100%;
  height:auto;
  object-fit:cover;
}

/* ======================
  Responsive
====================== */
@media (max-width: 900px){
  .l-container{
    width: calc(100% - 24px);
  }

  .l-header {
    margin: 30px 0;
  }

  .c-header__logo img{
    width: 170px;
  }

  .c-header-nav{
    gap: 16px;
  }

  .c-header-nav__link{
    font-size:13px;
  }

  .c-global-nav__inner{
    padding: 14px 18px;
  }

  .c-global-nav__left{
    gap: 18px;
  }

  .c-global-nav__link{
    font-size:14px;
  }
}

/* ======================
  Greeting Section
====================== */

/* セクション余白 */
.p-top-section--greeting{
  padding: 80px 0 0 ;
}

/* タイトル（中央・太め） */
.c-section-title{
  text-align:center;
  font-size: 37px;
  font-weight: normal;
  letter-spacing: 2px;
  margin: 0 0 45px;
}

/* 本文（中央・行間） */
.c-highlight-text{
  text-align:center;
  font-size: 22px;
  line-height: 2.6;
  margin: 0;
  font-weight: 500;
}

.c-highlight-text span{
  display: inline-block;
}

/* 敬白（右寄せで下に） */
.c-sign{
  margin: 40px 0 0;
  text-align:right;
}

.c-sign__label{
  display:inline-block;
  font-size: 22px;
  letter-spacing: 2px;
}

/* ======================
  Responsive
====================== */
@media (max-width: 768px){
  .p-top-section--greeting{
    padding: 60px 0 0;
  }

  .c-section-title{
    font-size: 26px;
    margin-bottom: 28px;
  }

  .c-highlight-text{
    font-size: 18px;
    line-height: 2.2;
  }

  .c-sign__label{
    font-size: 16px;
  }
}
/* ======================
  Message Section
====================== */

/* セクション余白 */
.p-top-section--message{
  padding: 90px 0 0;
}

/* 黒帯タイトル */
.c-band-title{
  margin: 0 auto 55px;
  background:#111;
  color:#fff;
  text-align:center;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 10px 0;
}

.c-band-title span{
  font-size: 40px;
}
/* 本文 */
.c-lead-text{
  text-align:center;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 26px;
  line-height: 2.6;
  margin: 0;
  font-weight: 500;
}

.c-lead-text span{
  display: inline-block;
}

/* 強調（優秀な医師〜） */
.c-lead-text__strong{
  display:inline-block;
  font-size: 36px;
  font-weight: 800;
  margin: 12px 0 10px;
}

/* 「人材」「物流」「店舗」 */
.c-lead-text__quote{
  display:inline-block;
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0;
}

/* ======================
  Responsive
====================== */
@media (max-width: 768px){
  .p-top-section--message{
    padding: 60px 0 0;
  }

  .c-band-title{
    font-size: 26px;
    padding: 14px 16px;
    margin-bottom: 30px;
  }

  .c-lead-text{
    font-size: 16px;
    line-height: 2.2;
  }

  .c-lead-text__strong{
    font-size: 20px;
  }

  .c-lead-text__quote{
    font-size: 18px;
  }
}

/* ======================
  Support Section
====================== */
.p-top-section--support{
  padding: 90px 0 0;
}

/* 赤帯タイトル（このセクションだけ上書き） */
.p-top-section--support .c-band-title{
  background: #e60012;
  color:#fff;
  font-size: 44px;
  font-weight: normal;
  letter-spacing: 1px;
  padding: 10px 26px;
  margin: 0 0 50px;
}

/* 全体レイアウト（左：画像+文章 / 右：円バッジ） */
.c-service{
  position: relative;
  grid-template-columns: 1fr 380px;
  column-gap: 40px;
  align-items:start;
}

/* 左側：2行（画像＋文章） */
.c-service__row{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items:start;
  margin-bottom: 60px;
}

/* 画像 */
.c-service__img{
  width: 320px;
}
.c-service__img img{
  width:100%;
  height:auto;
  display:block;
}

/* 文章 */
.c-service__text{
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 30px;
  line-height: 2;
  font-weight: 600;
  margin-top: 14px;
}

/* 2段目の文章は少し下げる（画像の見た目に寄せる） */
.c-service__row:nth-child(2) .c-service__text{
  margin-top: 40px;
	padding-right: 340px;
  font-size: 28px;
}

/* 右側の円バッジ */
.c-service__badge{
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: #f7d8e6;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 30px;
  line-height: 1.7;
  font-weight: 800;

  position: absolute;
  bottom: 0;
  right: 0;
}

/* バッジの最後の「安心」だけ大きくしたい場合 */
.c-service__badge br:last-child{
  display:block;
}

/* 下の注釈（太め中央） */
.c-note{
  text-align:center;
  margin: 45px 0 0;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* 注釈の下に赤ライン */
.p-top-section--support .l-container::after{
  content:"";
  display:block;
  height: 18px;
  background:#e60012;
  margin-top: 24px;
}

/* ======================
  Responsive
====================== */
@media (max-width: 900px){
  .p-top-section--support{
    padding: 60px 0 0;
  }

  .p-top-section--support .c-band-title{
    font-size: 24px;
    padding: 14px 16px;
    margin-bottom: 30px;
  }

  .c-service{
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .c-service__row{
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .c-service__img{
    width: 100%;
  }

  .c-service__text{
    font-size: 18px;
    line-height: 1.9;
    margin-top: 0;
  }

  .c-service__row:nth-child(2) .c-service__text{
    margin-top: 0;
		padding-right: 0;
    font-size: 18px;
  }

  .c-service__badge{
    width: 260px;
    height: 260px;
    font-size: 20px;
    margin: 0 auto;
    position: static;;
  }

  .c-note{
    font-size: 18px;
    margin-top: 30px;
  }
}
/* ======================
  Benefits Section
====================== */
.p-top-section--benefits{
  padding: 90px 0 0;
}

/* このセクション内のタイトルだけ上品に（画像っぽい） */
.p-top-section--benefits .c-section-title{
  text-align:center;
  font-size: 44px;
  font-weight: normal;
  letter-spacing: 2px;
  margin: 0 0 30px;
}

/* 本文 */
.p-top-section--benefits .c-text{
  text-align:center;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 26px;
  line-height: 2.4;
  margin: 0;
  font-weight: 500;
}

.p-top-section--benefits .c-text span{
  display: inline-block;
}

/* 1つ目のブロックと2つ目のブロックの間の余白 */
.p-top-section--benefits .c-text + .c-section-title{
  margin-top: 85px;
}

/* ======================
  Responsive
====================== */
@media (max-width: 768px){
  .p-top-section--benefits{
    padding: 60px 0 0;
  }

  .p-top-section--benefits .c-section-title{
    font-size: 26px;
    margin-bottom: 18px;
  }

  .p-top-section--benefits .c-text{
    font-size: 16px;
    line-height: 2.1;
  }

  .p-top-section--benefits .c-text + .c-section-title{
    margin-top: 50px;
  }
}
/* ======================
  Flow Section
====================== */
.p-top-section--flow{
  padding: 90px 0 0;
}

.c-flow{
  position: relative;
  border: 2px solid #e60012;
  padding: 26px 50px 40px;
}

/* 上の赤帯 */
.c-flow::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height: 100px;
  background:#e60012;
  z-index: -1;
}

/* タイトルを白枠で赤帯に乗せる */
.c-flow__title-wrap{
  background:#fff;
  padding: 10px 30px 40px;
}

.c-flow__title{
  margin:0;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* リード文 */
.c-flow__lead{
  text-align:center;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 22px;
  line-height: 2.2;
  margin: 0 0 35px;
  font-weight: 600;
}

.c-flow__lead span{
  display: inline-block;
}

/* ステップ全体 */
.c-flow__steps{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

/* 各ステップ枠 */
.c-flow-step{
  flex: 1;
  border: 2px solid #111;
  background:#fff;
  padding: 24px 8px;
  text-align:center;
  min-height: 160px;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* 小見出し（派遣についての / お仕事開始） */
.c-flow-step__head{
  margin: 0 0 12px;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.c-flow-step__head--bold{
  font-size: 30px;
  font-weight: 800;
}

/* 本文 */
.c-flow-step__body{
  margin: 0;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 20px;
  line-height: 2;
  font-weight: 600;
}

/* 中央ステップだけ太字っぽく */
.c-flow-step__body--bold{
  font-size: 24px;
  font-weight: 800;
  line-height: 1.9;
}

/* 赤い矢印（三角） */
.c-flow__arrow{
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 18px solid #e60012;
  flex: 0 0 auto;
}

/* ======================
  Responsive
====================== */
@media (max-width: 900px){
  .p-top-section--flow{
    padding:  60px 0 0;
  }

  .c-flow{
    padding: 10px 10px 30px;
  }

  .c-flow::before{
    height: 72px;
  }

  .c-flow__title-wrap{
    top: 10px;
		margin: auto;
    padding: 8px 8px 30px;
    width: calc(100% - 30px);
    text-align:center;
  }

  .c-flow__title{
    font-size: 25px;
    white-space: normal;
    line-height: 1.3;
  }

  .c-flow__lead{
    font-size: 15px;
    line-height: 2;
    margin-bottom: 25px;
  }

  .c-flow__steps{
    flex-direction: column;
    gap: 14px;
  }

  .c-flow__arrow{
    transform: rotate(90deg);
  }

  .c-flow-step{
    min-height: auto;
    padding: 18px 12px;
  }

  .c-flow-step__head{
    font-size: 16px;
  }

  .c-flow-step__head--bold{
    font-size: 20px;
  }

  .c-flow-step__body{
    font-size: 14px;
  }

  .c-flow-step__body--bold{
    font-size: 16px;
  }
}
/* ======================
  Company Section
====================== */
.p-top-section--company{
  padding: 90px 0 0;
}

/* タイトル：左＋右に線 */
.p-top-section--company .c-section-title{
  position: relative;
  text-align: left;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 30px;
  padding-right: 20px;
}

/* タイトル右の横線 */
.p-top-section--company .c-section-title::after{
  content:"";
  position:absolute;
  left: 170px;          /* 「会社概要」の右から線が始まる */
  right: 0;
  top: 50%;
  height: 1px;
  background: #111;
  transform: translateY(-50%);
}

/* 定義リスト全体 */
.c-definition{
  margin: 0;
  padding: 0;
}

/* 1行 */
.c-definition__row{
  display:grid;
  grid-template-columns: 160px 1fr;
  column-gap: 40px;
  align-items:start;
  padding: 6px 0;
}

/* 左側（項目名） */
.c-definition__term{
  margin: 0;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 6px;   /* 「商 号」っぽい間 */
  white-space: nowrap;
}

/* 右側（説明） */
.c-definition__desc{
  margin: 0;
  font-family: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 20px;
  line-height: 2.1;
  font-weight: 500;
  text-align: left;
}

/* 事業内容の中の行間を少し詰める（読みやすく） */
.c-definition__row:last-child .c-definition__desc{
  line-height: 2;
}

/* ======================
  Responsive
====================== */
@media (max-width: 768px){
  .p-top-section--company{
    padding: 60px 0 0;
  }

  .p-top-section--company .c-section-title{
    font-size: 26px;
    margin-bottom: 20px;
  }

  .p-top-section--company .c-section-title::after{
    left: 120px;
  }

  .c-definition__row{
    grid-template-columns: 110px 1fr;
    column-gap: 14px;
    padding: 8px 0;
  }

  .c-definition__term{
    font-size: 14px;
    letter-spacing: 3px;
  }

  .c-definition__desc{
    font-size: 14px;
    line-height: 2;
  }
}

/* ======================
  Contact (table layout)
====================== */
.p-top-section--contact{
  padding: 90px 0;
}

.c-page-title{
  text-align:center;
  font-size: 44px;
  font-weight: normal;
  letter-spacing: 2px;
  margin: 0 0 18px;
}

.c-contact-lead{
  text-align:center;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
  margin: 0 0 30px;
}
/* table */
.c-contact-table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 2px solid #9a9a9a;
}

.c-contact-table__row{
  border-top: 2px solid #9a9a9a;
}

.c-contact-table__row:first-child{
  border-top: none;
}

/* 左列（グレー） */
.c-contact-table__th{
  width: 360px;
  background: #e9e9e9;
  border-right: 2px solid #9a9a9a;
  padding: 26px 28px;
  vertical-align: middle;
  text-align: left;
}

/* 左列のラベル */
.c-contact-table__label{
  display: block;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 1px;
  margin: 0;
}

/* 1段目は2項目なので余白 */
.c-contact-table__th .c-contact-table__label + .c-contact-table__label{
  margin-top: 18px;
}

/* 右列（白） */
.c-contact-table__td{
  background: #fff;
  padding: 18px 24px;
  text-align: left;
}

/* 1段目の入力を縦積み */
.c-contact-table__stack{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* input */
.c-input{
  width: 260px;
  height: 42px;
  border: 2px solid #bfbfbf;
  background: #fff;
  padding: 0 10px;
  font-size: 16px;
}

/* select */
.c-input--select{
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #666 50%),
    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 16px,
    calc(100% - 10px) 16px;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

/* radio */
.c-radio-group{
  display: flex;
  align-items: center;
  gap: 26px;
}

.c-radio{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: normal;
}

.c-radio input{
  width: 18px;
  height: 18px;
}

.c-radio__text{
  display: inline-block;
}

/* textarea行は縦に広め */
.c-contact-table__row--message .c-contact-table__th,
.c-contact-table__row--message .c-contact-table__td{
  padding-top: 28px;
  padding-bottom: 28px;
}

.c-textarea{
  width: 560px;
  height: 140px;
  border: 2px solid #bfbfbf;
  padding: 10px;
  font-size: 16px;
  resize: none;
}

/* buttons */
.c-contact-actions{
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 26px 0 10px;
}

.c-btn{
  min-width: 120px;
  height: 38px;
  background: #e0e0e0;
  border: none;
  font-weight: 800;
  font-size: 16px;
}

/* ======================
  Responsive
====================== */
@media (max-width: 900px){
  .c-page-title{
    font-size: 26px;
  }

  .c-contact-table__th{
    width: 160px;
    padding: 18px 14px;
  }

  .c-contact-table__label{
    font-size: 14px;
  }

  .c-input{
    width: 100%;
  }

  .c-textarea{
    width: 100%;
    max-width: 520px;
  }

  .c-contact-actions{
    gap: 20px;
  }
}


/* ======================
  footer
====================== */
.l-container{
  text-align: center;
}


/* ======================
  送信完了モーダル
====================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.modal.is-active {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.modal__content {
  position: relative;
  background: #fff;
  max-width: 420px;
  margin: 20vh auto;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
}
