@charset "utf-8";
/* ones-body-recruit.css — Figma デザイン実装 + レスポンシブ完全対応 */

/* =============================================
   グローバルリセット（はみ出し防止）
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   変数
   ============================================= */
:root {
  --orange: #E95312;
  --beige: #F5EFE8;
  --beige-dark: #EDE4D8;
  --white: #ffffff;
  --text-dark: #333333;
  --text-mid: #555555;
  --text-light: #888888;
  --min-font: 16px;
}

/* =============================================
   ページタイトル
   ============================================= */
.ob-page-title-wrap {
  padding: 40px 0 20px 0;
  background: #fff;
  overflow: hidden;
}
.ob-page-title-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.ob-page-title-h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.15;
  color: #222;
  margin: 0;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.ob-title-italic {
  font-style: italic;
  color: var(--orange);
  font-size: 36px;
}

/* =============================================
   セクション共通
   ============================================= */
.ob-section {
  padding: 70px 0;
  overflow: hidden;
}
.ob-section-yohakunashi{
	padding-top:0;
}
.ob-section-white { background-color: #ffffff; }
.ob-section-beige  { background-color: var(--beige); }
.ob-section-btn-only { padding: 0px 0; 
margin:0 0 50px 0;}

.ob-container {
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 0 40px;*/
  width: 90%;
	display:flex;
	flex-direction:column;
	align-items:center;
}
.ob-container-narrow {
  max-width: 960px;
}

/* 小見出し */
.ob-section-small-title {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin: 0 0 10px 0;
  letter-spacing: 0.05em;
	background-color:#E95312;
	font-weight:bold;
	display:inline-block;
	padding:3px 10px 1px 10px;
}

/* 大見出し */
.ob-section-h2 {
  font-size: 40px;
  font-weight: 900;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 1.4;
  word-break: break-word;
	text-align:center;
}
.ob-section-h2-center {
  font-size: 34px;
  font-weight: 900;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 30px 0;
  line-height: 1.4;
  word-break: break-word;
}

/* リード文 */
.ob-section-lead {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  margin: 0 0 40px 0;
  line-height: 1.6;
  word-break: break-word;
}

/* 説明文 */
.ob-section-desc,
.ob-section-desc-center {
  font-size: 18px;
  line-height: 1.9;
  color: #000;
  text-align: center;
  margin: 0 0 40px 0;
  word-break: break-word;
}
.ob-section-desc span{
	display:inline-block;
}
@media(max-width:768px){
.ob-section-desc,
.ob-section-desc-center {
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  text-align: center;
  margin: 0 0 40px 0;
  word-break: break-word;
}	
}
/* セクションバッジ */
.ob-section-badge {
  display: inline-block;
  background-color: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 24px;
  margin-bottom: 24px;
  word-break: break-word;
}

/* =============================================
   キャリアステップ
   ============================================= */
.ob-career-steps {
  display: flex;
  justify-content: center;
	justify-content:space-between;
	gap:10px;
}

.ob-career-step {
  text-align: center;
  position:relative;
	width:24%;
		background-color:#F5F0EB;
}
@media(max-width:960px){
.ob-career-steps {
  flex-direction:column;
}
.ob-career-step {
  text-align: center;
  position:relative;
	width:90%;
	max-width:350px;
	margin:auto auto 20px auto;
}
}
.ob-step-label {
  font-size: 20px;
  color: var(--text-mid);
  margin:0;
  min-height: 24px;
  line-height: 1.4;
  word-break: break-word;
  font-weight:bold;
	padding:0 15px 10px 15px;
	background-color:#fff;
}
.ob-step-label-mark { color: var(--text-mid); }
.ob-step-label-orange {
  color: var(--orange);
  font-weight: bold;
}

.ob-step-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.ob-step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.ob-step-img-gray .ob-step-img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #ccc;
}

.ob-step-title {
  background-color: var(--orange);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 4px;
  text-align: center;
  margin-bottom: 10px;
  word-break: break-word;
}

.ob-step-comment {
  font-size: 16px;
  color: #000;
  text-align: left;
  margin: 0;
  word-break: break-word;
  font-weight:bold;
}
.career-step1{
	background-color:#F5F0EB;
	padding:20px;
	box-sizing: border-box;
}
/* 矢印 */
.ob-career-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  color: var(--orange);
  font-size: 24px;
  flex-shrink: 0;
  width: 35px;
	position:absolute;
	top:15%;
	right:-20px;
	z-index:2;
}
@media(max-width:960px){
.ob-career-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  color: var(--orange);
  font-size: 35px;
  flex-shrink: 0;
  width: 35px;
	position: absolute;
bottom: -5px;
left: 50%;
transform: translate(-50%, 50%) rotate(90deg);
transform-origin: center center;
z-index: 2;
	right:auto;
}	
}
/* さらに上のポジションへ */
.ob-more-position {
  text-align: center;
  margin-top: 30px;
}
.ob-more-arrow-icon { margin-bottom: 10px; }
.ob-more-position-text {
  font-size: 28px;
  font-weight: bold;
  color: var(--orange);
  margin: 0;
  word-break: break-word;
}

/* =============================================
   上位ポジション（事業統括・本部長）
   ============================================= */
.ob-upper-positions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}
.ob-upper-box {
  padding: 20px 40px;
  border-radius: 6px;
  text-align: center;
  min-width: 160px;
  flex: 0 1 auto;
}
.ob-upper-box-orange {
  background-color: var(--orange);
  color: #fff;
  width:230px;
}
.ob-upper-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 6px 0;
  word-break: break-word;
}
.ob-upper-sub {
  font-size: 17px;
  margin: 0;
}
.ob-upper-arrow {
  font-size: 28px;
  color: var(--orange);
  flex-shrink: 0;
}
@media(max-width:640px){
.ob-upper-positions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  padding: 20px 0;
	flex-direction:column;
}	
	.ob-upper-arrow {
  font-size: 28px;
  color: var(--orange);
  flex-shrink: 0;
  transform:rotate(90deg);
transform-origin: center center;	
}
}
/* =============================================
   3つの特徴カード
   ============================================= */
.ob-feature-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.ob-feature-card {
  flex: 1 1 240px;
  max-width: 340px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ob-feature-card-header {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 14px;
  word-break: break-word;
  background-color:#E95312;
	text-align:center;
	padding:3px 0 1px 0;
}
.ob-feature-card-text {
  font-size: var(--min-font);
  line-height: 1.8;
  flex: 1;
  margin: 0 0 14px 0;
  word-break: break-word;
}
.ob-feature-tag {
  display: inline-block;
  background-color: #fff;
  color: var(--orange);
  font-size: var(--min-font);
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
  white-space: nowrap;
  background-color:#F5F0EB;
  font-weight:bold;
}

/* =============================================
   80SKIPグループ図（画像版）
   ============================================= */
.ob-group-diagram-img {
  margin: 30px auto 40px auto;
  max-width: 700px;
  width: 100%;
}
.ob-group-diagram-img img {
  width: 100%;
  height: auto;
}

/* パーソナルジムのみでは学べないことがある */
.ob-learn-box {
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 24px 35px;
  margin-top: 10px;
  background: #fff;
}
.ob-learn-box-title {
  font-size: 23px;
  line-height: 1.6;
  margin: 0 0 16px 0;
  color: #000;
  word-break: break-word;
	font-weight:bold;
}
.ob-learn-box-strong { color: var(--orange); }
.ob-learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ob-learn-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 17px;
  line-height: 1.8;
  color: #000;
  word-break: break-word;
}
.ob-learn-list li::before {
  content: "■";
  color: var(--orange);
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 10px;
}
.ob-learn-list li span{
  font-weight:bold;
}
@media(max-width:520px){
.ob-learn-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  word-break: break-word;
}	
}
/* =============================================
   待遇・勤務条件
   ============================================= */
.ob-salary-card {
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 20px;
  width: 100%;
}
.ob-salary-card-orange {
  border: 2px solid var(--orange);
  background: #fff;
}
.ob-salary-card-beige {
  background-color: var(--beige);
}
.ob-salary-card-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ob-salary-left,
.ob-salary-right {
  flex: 1 1 200px;
  min-width: 0;
}

.ob-salary-badge {
  display: inline-block;
  background-color: var(--orange);
  color: #fff;
  font-size: var(--min-font);
  font-weight: bold;
  padding: 3px 20px 1px 20px;
  margin-bottom: 10px;
	width:200px;
	text-align:center;
}
.ob-salary-badge-sm {
  font-size: var(--min-font);
  padding: 4px 12px;
}

.ob-salary-amount {
  font-size: 30px;
  color: #E95312;
	
  margin: 0 0 8px 0;
  word-break: break-word;
	font-weight:bold;
}
.ob-salary-amount strong {
  font-size: 30px;
  font-weight: 900;
  color: #E95312;
}
.ob-salary-amount-sm strong { font-size: 26px; }

.ob-salary-note {
  font-size: var(--min-font);
  line-height: 1.8;
  margin: 0;
  word-break: break-word;
}

.ob-salary-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ob-salary-checklist li {
  padding: 6px 0;
  word-break: break-word;
  font-weight:bold;
}
.ob-salary-checklist li i {
  color: var(--orange);
  margin-right: 8px;
}

/* 採用実績校・勤務地 */
.ob-info-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
	justify-content:space-between;
	width:100%;
}
.ob-info-card {
  flex: 1 1 300px;
  min-width: 0;
  border-radius: 10px;
  padding: 22px 24px;
  font-size: var(--min-font);
  line-height: 2;
  word-break: break-word;
	width:48%;
}
.ob-info-card-orange {
  border: 2px solid var(--orange);
  background: #fff;
}
.ob-info-card-title {
  color: var(--orange);
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 12px 0;
  word-break: break-word;
}
.ob-info-card-note {
  font-size: var(--min-font);
  color: var(--text-light);
  margin: 8px 0 0 0;
}
.ob-location-dot {
  color: var(--orange);
  font-size: var(--min-font);
}
.ob-location-btn {
  display: inline-block;
  background-color: var(--orange);
  color: #fff;
  font-size: var(--min-font);
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 4px;
  margin-top: 10px;
  line-height: 1.5;
  text-decoration: none;
  word-break: break-word;
}
.ob-location-btn-fukidashi {
  display: inline-block;
  background: #E95312;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}
.ob-location-btn-fukidashi:hover{
  opacity:1;
}
/* 吹き出しの上三角 */
.ob-location-btn-fukidashi::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 25px; /* 三角の位置（調整可） */
  border-width: 0 9px 9px 9px;
  border-style: solid;
  border-color: transparent transparent #E95312 transparent;
}
@media(max-width:768px){
.ob-info-card {
	width:100%;
}
}
/* =============================================
   福利厚生
   ============================================= */
.ob-welfare-title { 
	margin-bottom: 10px !important; 
	color:#E95312;
}
.ob-welfare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-radius: 12px;
  padding: 20px;
}
.back-box1{
	padding:40px 30px;
	border-radius:10px;
	background-color: var(--beige);
	margin:auto;
	width:90%;
}
.ob-welfare-item {
  background: #fff;
  border-radius: 8px;
  padding: 18px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.ob-welfare-icon {
	width:100px;
}
.ob-welfare-icon img{
	width:100%;
	display:block;
}
.ob-welfare-item p {
  font-size: 17px;
  margin: 0;
  font-weight: bold;
  word-break: break-word;
}
.ob-welfare-item p span {
  font-size: var(--min-font);
  font-weight: normal;
  display: block;
}
.ob-welfare-note {
  font-size: var(--min-font);
  color: var(--text-light);
  margin: 16px 0 0 0;
  text-align: left;
  word-break: break-word;
}
/* =============================================
   大きなボタン
   ============================================= */
.ob-big-btn {
  display: block;
  background-color: var(--orange);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 22px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
  word-break: break-word;
  width: 100%;
}
.ob-big-btn:hover {
  opacity: 0.85;
  color: #fff;
}

/* =============================================
   求める人材像
   ============================================= */
/* 数式 */
.ob-formula {
  display: flex;
  gap: 10px;
  margin: 0 0 40px 0;
  width:100%;
}
.ob-formula-box {
  width:30%;
  border-radius: 8px;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ob-formula-box-white {
  border: 2px solid #ddd;
  background: #fff;
}
.ob-formula-box-orange {
  background-color: var(--orange);
  color: #fff;
}
.ob-formula-title {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  margin: 0 0 8px 0;
  word-break: break-word;
}
.cross {
  position: relative;
  width: 30px;   /* サイズ調整 */
  height: 30px;
}

.cross::before,
.cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;    /* 線の太さ（太くしたいならここを増やす） */
  height: 100%;
  background: #E95312; /* 色 */
  transform-origin: center;
}

.cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.ob-formula-sub {
  font-size: var(--min-font);
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
  word-break: break-word;
}
.ob-formula-title-white {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 8px 0;
  word-break: break-word;
}
.ob-formula-sub-white {
  font-size: var(--min-font);
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
  word-break: break-word;
	font-weight:bold;
}
.ob-formula-op {
  font-size: 30px;
  font-weight: bold;
  color:#E95312;
  display: flex;
  align-items: center;
  padding: 0 0px;
  flex-shrink: 0;
}
.equal {
  position: relative;
  width: 30px;   /* 全体の幅 */
  height: 30px;  /* 全体の高さ */
}

.equal::before,
.equal::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;        /* 線の太さ（太くしたいならここを変える） */
  background: #E95312;   /* 色 */
  border-radius: 1px; /* 少し丸みをつけると綺麗 */
}

.equal::before {
  top: 6px;   /* 上の線の位置 */
}

.equal::after {
  bottom: 8px; /* 下の線の位置 */
}
/* こんな方、大歓迎です */
.ob-welcome-box {
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 30px 40px;
  margin-bottom: 24px;
  background: #fff;
	width:100%;
}
.ob-welcome-title {
  font-size: 25px;
  font-weight: bold;
  color: #E95312;
  margin: 0 0 16px 0;
  word-break: break-word;
}
.ob-welcome-badge {
  display: inline-block;
  background-color: #E95312;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  padding: 2px 15px 1px 15px;
	margin-right:5px;
	line-height:32px;
}
.ob-welcome-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ob-welcome-list li {
  position: relative;
  font-size: 17px;
  word-break: break-word;
	margin:10px 5px;
}
.ob-welcome-list li::before {
  content: "";
  background-color:#E95312;
	display:inline-block;
	width:7px;
	height:7px;
	border-radius:7px;
	margin-right:10px;
	margin-bottom:2px;
}
@media(max-width:640px){
.ob-formula {
  display: flex;
  gap: 10px;
  margin: 0 0 40px 0;
  width:90%;
	flex-direction:column;
	align-items:center;
	
}
.ob-formula-box {
  width:100%;
  border-radius: 8px;
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}	
.equal {
  transform: rotate(90deg);
}
}
@media(max-width:520px){
.ob-welcome-box {
  padding: 30px 20px 20px 20px;
  margin-bottom: 24px;
}	
.ob-welcome-list li {
  font-size: 16px;
	margin:15px 5px;
}
}
/* こんな経験が活きます */
.ob-experience-box {
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 30px 40px;
  margin-bottom: 24px;
  background: #fff;
	width:100%;
}
.ob-experience-title {
  font-size: 25px;
  font-weight: bold;
  color: #E95312;
  margin: 0 0 16px 0;
  word-break: break-word;
}
.ob-experience-badge {
  display: inline-block;
  background-color: #E95312;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  padding: 2px 15px 1px 15px;
	margin-right:5px;
	line-height:32px;
}
.ob-experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ob-experience-list li {
  position: relative;
  font-size: 17px;
  word-break: break-word;
	margin:10px 5px;
}
.ob-experience-list li::before {
  content: "";
  background-color:#E95312;
	display:inline-block;
	width:7px;
	height:7px;
	border-radius:7px;
	margin-right:10px;
	margin-bottom:2px;
}
@media(max-width:520px){
.ob-experience-box {
  padding: 30px 20px 20px 20px;
  margin-bottom: 24px;
}	
.ob-experience-list li {
  font-size: 16px;
	margin:15px 5px;
}
}
/* 手当対象・優遇資格一覧 */
.ob-qualification-box {
  background-color: var(--beige);
  border-radius: 10px;
  padding: 28px 28px;
  margin-top: 10px;
	margin-bottom:50px;
	background-color:#fff;
}
.ob-qualification-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--orange);
  text-align: center;
  margin: 0 0 16px 0;
  word-break: break-word;
}
.ob-qualification-text {
  font-size: var(--min-font);
  line-height: 2;
  color: var(--text-mid);
  margin: 0;
  text-align: center;
  word-break: break-word;
}
.ob-star {
  color: var(--orange);
  font-weight: bold;
}

/* =============================================
   タブレット（〜960px）
   ============================================= */
@media (max-width: 960px) {
  .ob-page-title-inner { padding: 0 24px; }
  .ob-page-title-h1 { font-size: 32px; }
  .ob-title-italic { font-size: 28px; }

  .ob-container { padding: 0 24px; }

  .ob-section { padding: 50px 0; }

  .ob-section-h2,
  .ob-section-h2-center { font-size: 26px; }

  .ob-section-lead { font-size: 18px; }

  

  /* 特徴カード：2列 */
  .ob-feature-card {
    flex: 0 0 calc(50% - 10px);
    max-width: none;
  }



  /* 福利厚生：2列 */
  .ob-welfare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 待遇カード */
  .ob-salary-card { padding: 20px; }
  .ob-salary-card-inner { gap: 20px; }
}

/* =============================================
   スマートフォン（〜640px）
   ============================================= */
@media (max-width: 640px) {
  .ob-page-title-inner { padding: 0 16px; }
  .ob-page-title-h1 { font-size: 26px; }
  .ob-title-italic { font-size: 22px; }

  .ob-container { padding: 0 16px; }

  .ob-section { padding: 40px 0; }

  .ob-section-h2,
  .ob-section-h2-center { font-size: 22px; }

  .ob-section-lead { font-size: var(--min-font); }

  .ob-section-badge {
    font-size: var(--min-font);
    padding: 6px 16px;
  }

  /* 特徴カード：1列 */
  .ob-feature-card {
    flex: 0 0 100%;
    max-width: none;
  }

  /* グループ図 */
  .ob-group-diagram-img { margin: 20px auto 30px auto; }

  /* 学べないことボックス */
  .ob-learn-box { padding: 20px; }
  .ob-learn-box-title { font-size: 18px; }

  /* 待遇カード */
  .ob-salary-card { padding: 18px 16px; }
  .ob-salary-card-inner { flex-direction: column; gap: 16px; }
  .ob-salary-left,
  .ob-salary-right { flex: 0 0 100%; }
  .ob-salary-amount strong { font-size: 24px; }
  .ob-salary-amount-sm strong { font-size: 22px; }

  /* 採用実績・勤務地：縦並び */
  .ob-info-cards { flex-direction: column; }
  .ob-info-card { flex: 0 0 100%; }

  /* 福利厚生：2列維持（小さくなりすぎないよう） */
  .ob-welfare-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 14px;
    gap: 10px;
  }
  .ob-welfare-item { padding: 14px 8px; }
  .ob-welfare-icon { font-size: 28px; }

  /* 大ボタン */
  .ob-big-btn {
    font-size: var(--min-font);
    padding: 18px 16px;
  }


  /* 大歓迎・経験ボックス */

  /* 資格一覧 */
  .ob-qualification-box { padding: 20px 16px; }
  .ob-qualification-title { font-size: 18px; }
  .ob-qualification-text { text-align: left; }
}
@media(max-width:480px){
.ob-welfare-grid {
    grid-template-columns:1fr;
    padding: 10px;
    gap: 8px;
  }
}
/* =============================================
   極小画面（〜375px）
   ============================================= */
@media (max-width: 375px) {
  .ob-page-title-h1 { font-size: 22px; }
  .ob-title-italic { font-size: 18px; }
  .ob-section-h2,
  .ob-section-h2-center { font-size: 20px; }
  
  .ob-salary-amount strong { font-size: 22px; }
  .ob-upper-box { max-width: 100%; }
}

/* =============================================
   ページ内ナビゲーション（シンプルテキストボタン）
   ============================================= */
.ob-page-nav {
  background: #fff;
  padding: 0 0 80px 0;
}
.ob-page-nav-inner {
  max-width: 1200px;
  width:90%;
  margin: 0 auto;
}
/* 全ボタンを均等幅に並べる：grid使用で幅・高さを完全均等化 */
.ob-page-nav-list {
  display: flex;
  justify-content:space-between;
  flex-wrap:wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ob-page-nav-item {
  width:16%;
}
.ob-page-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid #d0c8bf;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  color: var(--text-dark);
  text-align: center;
  word-break: break-word;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  height: 65px;
  width: 100%;
  box-sizing: border-box;
	line-height:22px;
	padding-top:4px;
}
.ob-page-nav-link:hover {
  border-color: var(--orange);
  background: #fff8f5;
  color: var(--orange);
}
.ob-page-nav-link.ob-page-nav-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  pointer-events: none;
  cursor: default;
}

@media(max-width:960px){
.ob-page-nav-item {
  width:32%;
	margin:5px 0;
}	
}
@media(max-width:768px){
.ob-page-nav {
  background: #fff;
  padding: 0 0 50px 0;
}
}
@media(max-width:520px){
.ob-page-nav-link {
  font-size: 15px;
  height: 55px;
	line-height:18px;
	padding-top:4px;
}	
}
@media(max-width:430px){
.ob-page-nav-link {
  font-size: 15px;
  height: 50px;
	line-height:16px;
	padding-top:4px;
}	
.ob-page-nav-item {
  width:49%;
	margin:3px 0;
}
}
.sankaku {
	width:150px;
	margin:10px auto 0 auto;
}
.sankaku img{
	width:100%;
}

.font-bold {
	font-weight:bold;
}

.description-btn {
	width:90%;
	max-width:960px;
	margin:30px auto;
}
.description-btn a{
	display:block;
	background-color:#E95312;
	text-align:center;
	color:#fff;
	font-weight:bold;
	font-size:20px;
	padding:15px 15px;
	border-radius:7px;
}
.description-btn a span{
	display:inline-block;
}


.ten1 {
	content:"";
	width:5px;
	height:5px;
	background-color:#E95312;
	display:inline-block;
	margin-right:5px;
	margin-bottom:2px;
	border-radius:5px;
}
.group-tsuyomi {
	margin-bottom:80px;
}
@media(max-width:640px){
.group-tsuyomi {
	margin-bottom:30px;
}	
}
/*スタッフの声*/
.staff-voice-content {
	display:flex;
	flex-direction:column;
	align-items:center;
	padding:10px 0;
	width:90%;
	max-width:1200px;
	margin:70px auto;
	/*background-color:#F5F0EB;*/
}

.staff-voice-content-title {
	background-color:#E95312;
	color:#fff;
	padding:6px 24px;
	margin:0 0 30px 0;
	font-size:20px;
	display:inline-block;
}
.ones-staff-voice-btn {
	width:100%;
	margin:0 auto 0 auto;
}
.ones-staff-voice-btn a{
	width:100%;
	display:block;
	background-color:#fff;
	padding:7px 10px;
	box-sizing: border-box;
	border-radius:50px;
	color:#E95312;
	font-weight:bold;
	/*border-bottom:solid 3px #EFAB85;*/
	box-shadow: 2px 2px 5px 1px rgb(0 0 0 / 0.1);
	text-align:center;
}
.ones-staff-voice-btn a span{
	display:inline-block;
	
}
.staff-voice-box-text {
	text-align:center;
	color:#E95312;
	font-weight:bold;
	font-size:18px;
	margin:10px;
}
.staff-voice-box-text span{
	margin-right:10px;
}
.staff-voice-box {
	display:flex;
	justify-content:center;
	gap:30px;
	width:90%;
	margin:auto;
}
.staff-voice-box1 {
	background-color:#F5F0EB;
	padding:30px;
}
@media(max-width:960px){
.staff-voice-box1 {
	background-color:#F5F0EB;
	padding:20px;
}	
}
@media(max-width:640px){
.staff-voice-box {
	display:flex;
	justify-content:center;
	gap:40px;
	width:90%;
	margin:auto;
	flex-direction:column-reverse;
}	
}
@media(max-width:520px){
.staff-voice-content {
	padding:10px 0;
	margin:40px auto;
}	
}