/*
Theme Name: Sikakyuuzin
Theme URI: https://sikakyuuzin.com/
Description: 歯科求人.com 専用のスタンドアロンテーマ。
Version: 1.0.0
Author: Gemini(icchi)
Requires at least: 6.0
Requires PHP: 7.4
*/

/* ハンバーガーメニューの「MENU」テキストを非表示 */
.ol-hamburger__menu-icon .ol-hamburger__menu-icon-label::before {
	content: none;
}

/* ヘッダー高さをJSによるインライン設定から解放 */
.ol-header {
	height: auto !important;
}

.ol-article__back-links {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 1000px;
	margin: 40px auto 0;
}

.ol-article__back-link {
	font-size: 0.9rem;
	text-decoration: underline;
}

/* clinicuser カルーセル（自前） */
.clinicuser-carousel {
	position: relative;
	max-width: 800px;
	margin: 16px auto;
	padding: 8px 0 16px;
}

.clinicuser-carousel__viewport {
	overflow: hidden;
	padding: 2rem 0;
}

.clinicuser-carousel__track {
	display: flex;
	align-items: stretch;
	gap: 12px;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.clinicuser-carousel__slide {
	/* 幅は JS で viewport の 82% に設定（中央1枚メイン、左右が細くのぞく） */
	flex-shrink: 0;
	box-sizing: border-box;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(0.96);
	opacity: 0.88;
}

.clinicuser-carousel__slide.is-active {
	transform: scale(1.05);
	opacity: 1;
	z-index: 2;
}

.clinicuser-carousel__prev,
.clinicuser-carousel__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	color: #333;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
}

.clinicuser-carousel__prev {
	left: 0px;
	top: 40%;
}

.clinicuser-carousel__next {
	right: 0px;
	top: 40%;
}

.clinicuser-carousel__pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.clinicuser-carousel__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: background 0.2s;
}

.clinicuser-carousel__dot.is-active,
.clinicuser-carousel__dot[aria-current="true"] {
	background: #333;
}

.clinicuser-card {
	background-color: #fff;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.clinicuser-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.clinicuser-card__image {
	flex-shrink: 0;
}

.clinicuser-card__image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 260px;
	object-fit: contain;
}

.clinicuser-card__content {
	flex: 1;
	min-height: 0;
	padding: 14px 12px 18px;
	display: flex;
	flex-direction: column;
}

.clinicuser-card__title {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 16px;
	line-height: 1.5;
}

.clinicuser-card__text {
	font-size: 14px;
	line-height: 1.75;
	color: #333;
}

.clinicuser-card__text p {
	margin-top: 0 !important;
	margin-bottom: 0.6em !important;
	font-size: 13px;
	line-height: 1.6;
}

.clinicuser-card__text p:last-child {
	margin-bottom: 0 !important;
}

/* userdrdh: 本文だけのカード（写真・タイトルなし） */
.clinicuser-carousel__slide.userdrdh-card {
	background-color: #e0ebee;
}

.clinicuser-carousel__slide.userdrdh-card .clinicuser-card__content {
	padding: 20px 20px 24px;
}

.clinicuser-carousel__slide.userdrdh-card .clinicuser-card__text {
	font-size: 0.9rem;
	line-height: 1.8;
}

@media (max-width: 767px) {
    .clinicuser-carousel__prev,
    .clinicuser-carousel__next {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .clinicuser-card__content {
        padding: 10px 10px 14px;       /* 追加：余白を縮小 */
    }
    .clinicuser-card__title {
        font-size: 12px;               /* 13px → 12px */
        margin-bottom: 10px;           /* 追加 */
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;/* 追加：Safari自動拡大防止 */
        text-size-adjust: 100%;
    }
    .clinicuser-card__text {
        font-size: 11px;               /* 13px → 11px */
        line-height: 1.6;
        -webkit-text-size-adjust: 100%;/* 追加 */
        text-size-adjust: 100%;
    }
    .clinicuser-card__text p {
        font-size: 11px;               /* 追加 */
        line-height: 1.6;
    }
    .clinicuser-carousel__viewport {
        padding: 0;                    /* 追加：スマホは余白なし */
    }
    .clinicuser-carousel__slide {
        transform: scale(1) !important;/* 追加：縮小エフェクト無効化 */
        opacity: 1 !important;
    }
    .clinicuser-carousel__slide.is-active {
        transform: scale(1) !important;
    }
}
@media (max-width: 767px) {
	.ol-header__page-title {
		display: none;
	}
	.ol-hamburger__menu-icon.is-open ~ .ol-header__nav .ol-header__nav-anchor {
		padding: 0;
	}
}
/* ===== 無料登録ボタン（固定） ===== */
.dm-register-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 300;
}
@media (max-width: 767px) {
	.dm-register-bar {
		display: block;
	}
}
.dm-register-bar__btn {
	display: block;
	width: 100%;
	padding: 16px;
	background: #f57c00;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
/* ===== オーバーレイ ===== */
.dm-register-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 400;
}
.dm-register-overlay.is-open {
	display: block;
}
/* ===== スライドアップシート ===== */
.dm-register-sheet {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	border-radius: 16px 16px 0 0;
	padding: 20px 20px 36px;
	z-index: 500;
	box-sizing: border-box;
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.32, 0, 0.67, 0);
}
.dm-register-sheet.is-open {
	transform: translateY(0);
}
.dm-register-sheet__close {
	display: block;
	margin: 0 0 12px auto;
	background: none;
	border: none;
	font-size: 1.3rem;
	cursor: pointer;
	color: #999;
	padding: 4px 8px;
	line-height: 1;
}
.dm-register-sheet__title {
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	color: #333;
	margin-bottom: 20px;
}
.dm-register-sheet__btn {
	display: block;
	width: 100%;
	padding: 16px;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	margin-bottom: 12px;
	box-sizing: border-box;
	letter-spacing: 0.04em;
	font-family: inherit;
}
.dm-register-sheet__btn--seeker {
	background: #f57c00;
	color: #fff;
	border: 2px solid #f57c00;
}
.dm-register-sheet__btn--clinic {
	background: #fff;
	color: #f57c00;
	border: 2px solid #f57c00;
}
/* ===== LINE CTAセクション ===== */
.dm-line-cta {
	position: relative;
	padding: 70px 20px;
	text-align: center;
	color: #fff;
	background-color: #0d2b4e;
	background-size: cover;
	background-position: center;
}
.dm-line-cta__overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 25, 55, 0.72);
}
.dm-line-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
	margin: 0 auto;
}
.dm-line-cta__title {
	font-size: 1.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
	color: #fff;
}
.dm-line-cta__desc {
	font-size: 0.95rem;
	line-height: 2;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
}
.dm-line-cta__qr-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 30px;
}
.dm-line-cta__qr-item {
	background: #fff;
	display: block;
	width: 100%;
	border-radius: 8px;
	padding: 8px;
	box-sizing: border-box;
	text-decoration: none;
	/* PC ではリンク無効 */
/* 	pointer-events: none;
	cursor: default; */
}

.dm-line-cta__qr-item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}
@media (max-width: 767px) {
	.dm-line-cta__qr-list {
	  display: grid;
	  justify-content: center;
	  gap: 30px;
    }
	.dm-line-cta {
		padding: 50px 20px;
	}
	.dm-line-cta__title {
		font-size: 1.3rem;
	}
	.dm-line-cta__desc {
		font-size: 0.88rem;
		text-align: left;
	}
	.dm-line-cta__qr-item {
		cursor: pointer;
		width: 100%;
		max-width: 200px;
		margin: 0 auto;
	}
}

/* custom css */
/* TOPファーストビュー削除 */
#olFirstview {
	display: none;
}

/* 選ばれる理由 */
.heading-text {
  color: #2059a8;
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
}

/* footer section　削除 */
.home .ol-footer__section {
	display: none;
}

/* 無料相談ボタン */
header .ol-btn-rectangle.ol-contactdetail-pc-icon-before.ol-font-en {
	background: #F5A623;
}

/* サイドバー削除 */
.ol-column-content-side {
	display: none;
}

/* コンテンツ横幅いっぱい */
.ol-column-content {
	width: 100%;
}

.ol-firstview__button-wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, max-content));
	gap: 8px;
}

.ol-btn-regular .ol-firstview__shortcut-button {
	font-size: 14px;
}

.ol-article__content form#dental_matchi-form input:not(input[type="checkbox"]) {
	max-width: 100%;
  width: 100%;
  padding: 6px 15px;
  appearance: unset;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
}

.ol-article__content form#dental_matchi-form textarea {
	padding: 9px 15px;
  height: 150px;
  line-height: 1.65;
	max-width: 100%;
  width: 100%;
	appearance: unset;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
}

button[type="submit"] {
	margin: 3em auto 0 auto;
  text-align: center;
  border: none;
  padding: clamp(12px, 1.5vw, 15px) clamp(36px, 4.2vw, 45px);
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.12rem;
  border-radius: 6px;
  text-decoration: none !important;
	background-color: rgba(0, 114, 187, 0.09);
	color: #0072bb;
	display: flex;
}

select {
	padding: 6px 15px;
  appearance: unset;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
	width: 100%;
}

option {
	width: 100%;
}

.select_wrapper {
  display: grid;
/*   grid-template-columns: 1fr max-content; */
  gap: 1rem;
  align-items: end;
  margin: 32px 0 56px;
}

.select_wrapper p {
	margin: 0!important;
}

.select_contents {
	display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
#clinic_search {
	max-width: 450px;
}
/* #clinic_search .select_contents {
	grid-template-columns: unset;
} */

#dental_search-table thead tr th:last-of-type {
	width: 130px;
}

input[type="checkbox"] {
	appearance: auto;
}



/* lp page template css */
.page-template-template-lp h2 {
	border: none;
}



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


.cta-points {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 48px;
  row-gap: 8px;
  margin-top: 12px;
  position: relative;
  z-index: 2;
	width: max-content;
}

.cta-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 19px;
  font-weight: 700;
}

.cta-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f4a126;
  flex-shrink: 0;
}

.cta-highlight {
  background: #ffd83b;
  color: #0b3b8c;
  padding: 4px 16px;
  border-radius: 3px;
  display: inline-block;
  margin: 0 8px;
}

.cta-highlight.accent {
  background: #ff6b35;
  color: #ffffff;
}

.number {
	display: flex;
align-items: center;
flex-shrink: 0;
border-radius: 50px;
height: fit-content;
justify-content: center;
min-width: 60px;
margin-top: -2px;
padding-left: clamp(12px, 1.35vw, 21px);
padding-right: clamp(12px, 1.35vw, 21px);
padding-top: clamp(6px, 0.6vw, 12px);
padding-bottom: clamp(6px, 0.6vw, 12px);
font-size: clamp(0.9375rem, 0.9292823229rem + 0.0365230095vw, 0.96875rem);
font-weight: 400;
line-height: 1;
letter-spacing: 0.12rem;
	background-color: rgba(0,114,187,0.135);
}



footer.elementor-element ul.menu li a {
	color: #fff!important;
	text-decoration: none;
}


/* form */
form input[type="text"],
form input[type="date"],
form input[type="tel"],
form textarea,
form input[type="email"],
form input[type="url"],
form input[type="number"]{
	padding: 6px 15px;
appearance: unset;
border: 1px solid #e9e9e9;
border-radius: 4px;
width: 100%;
}

.eael-simple-menu-container.preset-1 .eael-simple-menu li.current-menu-item>a.eael-item-active {
	background-color: unset!important;
}


/* コラム */
#shortcode-list {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(320px, 1fr));
	column-gap: 1rem;
	row-gap: 1rem;
}
#shortcode-list .ol-card-item {
	width: unset;
	display: unset;
}
#shortcode-list .ol-card-item-link {
	row-gap: 1rem;
}

#shortcode-list .ol-card-item .ol-card-item-title {
	font-size: 18px;
}

#shortcode-list .ol-card-item .ol-card-item-info {
	column-gap: 1rem;
}
#shortcode-list .ol-card-item .ol-card-item-info .ol-news__meta-year {
	font-size: 16px;
}
#shortcode-list .ol-card-item .ol-card-item-info .ol-news__meta-month-day {
	font-size: 18px;
}


/* footermenu */
#footer-menu ul {
	display: grid;
	grid-template-columns: repeat(2, max-content);
}

.eael-simple-menu {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  padding: 0;
}

.eael-simple-menu-container .eael-simple-menu li a {
	line-height: 24px!important;
}


/* dental_matchi-form */
#dental_matchi-form p {
	margin-top: 1rem;
	margin-bottom: 1rem;
}


/* single-page css */
.ol-article__inner {
	max-width: 1000px;
}

.single .ol-single__template .ol-article__inner #oltanaPostTitle {
  font-size: 32px;
  line-height: 1.8;
  padding-bottom: 33px;
  margin-bottom: 1rem;
	margin-top: 1rem;
  position: relative;
  font-weight: normal;
}

.single .ol-single__template .ol-article__inner #oltanaPostTitle:before {
	position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d6d2cf;
}

.single .ol-single__template .ol-article__inner #oltanaPostTitle:after {
	position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #0086d1;
  z-index: 1;
  width: 110px;
}

.single .ol-single__template .ol-article__inner .ol-article__meta {
	margin: 2rem 0 1rem;
}

#ez-toc-container {
	margin-bottom: 3rem;
}

.single .ol-single__template .ol-article__inner h2 {
	font-size: 24px;
  padding-left: 15px;
  line-height: 1.2;
  border-left: 5px solid #0086d1;
}

.single .ol-single__template .ol-article__inner h3 {
	font-size: 20px;
  border-bottom: 2px solid #0086d1;
  padding-bottom: 8px;
  font-weight: 500;
  margin: 3rem 0 1rem;
}

.single .ol-single__template .ol-article__inner p {
	margin-top: 1rem;
  margin-bottom: 1rem;
}

.single-page__breadcrumb {
	max-width: 1000px;
	margin: 2rem auto 1rem;
}
.single-page__breadcrumb .ol-content-frame {
	padding: 0;
}

#clinic_search {
	max-width: unset!important;
}


/* h1 */
.ol-header__page-title {
	font-size: 10px;
	background: #0072BB;
	color: #fff;
	padding: 4px clamp(16px, 3.6vw, 66px);
}

.ol-header.ol-header__tracking .ol-header__inner {
	background-color: #fff;
}

@media screen and (max-width: 480px) {
	.select_contents {
		grid-template-columns: 1fr;
	}
}




/* コラム下の案内文と誘導ボタン */
.sk-column-cta {
    margin: 52px 0 0;
    padding: 16px 30px 30px 30px;
    border: 1px solid #ece7df;
    border-radius: 16px;
    background: #fffdf9;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.sk-column-cta h3 {
    margin: 0 0 14px;
    padding-bottom: 12px;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 700;
    color: #3b2f2a;
    border-bottom: 2px solid #7ea0c4 !important;
}

.sk-column-cta h3::after {
    display: none !important;
    content: none !important;
}

.sk-column-cta p {
    margin: 0 0 14px;
    line-height: 1.95;
    color: #4a403a;
    font-size: 17px;
    max-width: 980px;
}

.sk-column-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 22px 0 14px;
    max-width: 380px;
}

.sk-column-cta-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.sk-column-cta-btn.primary {
    background: #f5a623;
    color: #fff;
    border: 1px solid #f5a623;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.85);
}

.sk-column-cta-btn.primary:hover {
    background: #e4981f;
    border-color: #e4981f;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.sk-column-cta-btn.secondary {
    background: #fff;
    color: #f5a623;
    border: 1.5px solid #f5a623;
}

.sk-column-cta-btn.secondary:hover {
    background: #fff8ee;
    color: #e4981f;
    border-color: #e4981f;
    transform: translateY(-1px);
}

.sk-column-cta-sub-link {
    margin: 4px 0 12px;
    font-size: 14px;
}

.sk-column-cta-sub-link a {
    color: #6e5b4d;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sk-column-cta-note {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 15px;
    color: #6f665f;
}
button[type="submit"].plugin-button {
	background-color: #F5A623;
	color:#fff;
}

@media screen and (max-width: 767px) {
    .sk-column-cta {
        margin-top: 42px;
        padding: 14px 18px 24px 18px;
        border-radius: 12px;
    }

    .sk-column-cta h3 {
        font-size: 24px;
    }

    .sk-column-cta p {
        font-size: 15px;
        line-height: 1.9;
    }

    .sk-column-cta-buttons {
        max-width: 100%;
    }

    .sk-column-cta-btn {
        font-size: 16px;
        padding: 14px 16px;
    }
}

/* 歯科求人.com Elementor除去ページ用 共通デザインCSS */

.sk-clean {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.9;
  color: #333;
  font-size: 16px;
}
.sk-clean .heading-style {
  text-align: center;
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  color: #2059a8;
  margin: 40px 0 28px;
}
.sk-clean h2 {
  text-align: center;
  font-size: clamp(22px, 3.6vw, 30px);
  font-weight: 700;
  color: #2059a8;
  line-height: 1.5;
  margin: 56px 0 28px;
  padding: 0;
  border: none;
}
.sk-clean h3 {
  font-size: clamp(18px, 2.6vw, 22px);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.6;
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 5px solid #2059a8;
  border-bottom: none;
}
.sk-clean p { margin: 1rem 0; }
.sk-clean ul {
  max-width: 600px;
  margin: 1.5rem auto;
  padding-left: 1.4em;
}
.sk-clean li { margin: .4rem 0; }
.sk-clean .button {
  display: inline-block;
  background: #F5A623;
  color: #fff !important;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 18px);
  text-decoration: none !important;
  padding: 16px 32px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(245,166,35,.3);
  transition: all .2s ease;
  max-width: 90%;
}
.sk-clean .button:hover {
  background: #e4981f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245,166,35,.4);
}
.sk-clean .cta-highlight {
  background: #ffd83b;
  color: #0b3b8c;
  padding: 2px 12px;
  border-radius: 3px;
  display: inline-block;
  font-weight: 700;
  margin: 0 6px;
}
.sk-clean .cta-highlight.accent { background: #ff6b35; color: #fff; }
.sk-clean .inline-block { display: inline-block; }
.sk-clean hr {
  border: none;
  border-top: 1px dashed #cbd5e1;
  margin: 24px 0;
}
.sk-clean .feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.sk-clean .feature-card {
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 24px !important;
  background: #f9fafb !important;
  margin: 0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.sk-clean .feature-card h3 {
  border: none;
  padding: 0;
  margin: 0 0 8px;
  color: #2059a8;
  font-size: 18px;
}

.sk-clean .price-table,
.sk-clean table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.sk-clean th,
.sk-clean td {
  border: 1px solid #d1d5db;
  padding: 12px 14px;
  text-align: left;
}
.sk-clean th { background: #2059a8; color: #fff; }.sk-clean .sk-faq {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
}
.sk-clean .sk-faq + .sk-faq {
  border-top: 1px solid #e5e7eb;
}
.sk-clean .sk-faq .number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 7px 16px;
  background: rgba(0,114,187,0.135);
  color: #0072BB;
  border-radius: 50px;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 2px;
}
.sk-clean .sk-faq__body { flex: 1; }
.sk-clean .sk-faq__q {
  font-family: "Noto Sans Gothic", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #4E4E4E;
  line-height: 1.5;
  margin: 0 0 10px !important;
  padding: 0 !important;
  border: none !important;
}
.sk-clean .sk-faq__a {
  font-family: "Noto Sans Gothic", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #303030;
  line-height: 1.9 !important;
  margin: 0 !important;
}
.sk-clean form { margin: 24px 0; }
@media screen and (max-width: 600px) {
  .sk-clean { padding: 24px 16px; }
  .sk-clean .button { display: block; max-width: 100%; }
}



/* ===== メインビジュアル（ヒーロー）===== */
.sk-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 40px 0;
  box-sizing: border-box;
  background-image: url("https://sikakyuuzin.com/wp-content/uploads/2026/01/AdobeStock_1655794747-scaled.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.sk-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  box-sizing: border-box;
  text-align: left;
  font-family: "Noto Sans Gothic", sans-serif;
}
.sk-hero__lead {
  color: #4E4E4E;
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 500;
  line-height: 1.5 !important;
  letter-spacing: 0.04rem;
  margin: 0 !important;
  max-width: 640px;
  text-shadow: none;
}
.sk-hero__title {
  color: #0072BB;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.4 !important;
  letter-spacing: 0.12rem;
  margin: 18px 0 !important;
  max-width: 760px;
  text-shadow: 1px 1px 1px #FFFFFF;
}
.sk-hero__note {
  color: #4E4E4E;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.5 !important;
  margin: 0 0 4px !important;
  max-width: 640px;
  text-shadow: none;
}
.sk-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 !important;
}
.sk-hero .button {
  display: inline-block;
  background: #F5A623;
  color: #fff !important;
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 16px);
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(245,166,35,.3);
  transition: all .2s ease;
}
.sk-hero .button:hover {
  background: #e4981f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245,166,35,.4);
}

/* テーマの自動ページタイトル（「トップ – Copy」等）を非表示 */
.ol-article__inner:has(.sk-hero) .ol-article__title,
body.home .ol-article__title {
  display: none;
}

/* ヒーロー上部の余白（テーマの content 上マージン）を詰める */
.ol-article__content:has(.sk-hero) {
  margin-top: 0;
}

@media screen and (max-width: 600px) {
  .sk-hero { min-height: 440px; padding: 24px 0; }
  .sk-hero__btns .button { display: block; width: 100%; }
}




/* ===== 「なぜ普通の求人サイトでは…」全幅・写真背景セクション ===== */
.sk-why {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding: 64px 16px 72px;
  box-sizing: border-box;
  background-image: url("https://sikakyuuzin.com/wp-content/uploads/2026/02/photo-1526256262350-7da7584cf5eb.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.sk-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #144D8E 50%, #2A6FC000 100%);
}
.sk-why__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  box-sizing: border-box;
  text-align: left;
  color: #fff;
  font-family: "Noto Sans Gothic", sans-serif;
}
.sk-why__title {
  color: #fff !important;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.5 !important;
  border: none !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
}
.sk-why__title::after { display: none !important; }
.sk-why__lead {
  color: #fff;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 500;
  line-height: 1.8 !important;
  margin: 0 0 24px !important;
}
.sk-why__list {
  list-style: none;
  padding: 0 !important;
  margin: 0 0 24px !important;
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 32px;
}
.sk-why__list li {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 22px;
  margin: 0 !important;
  list-style: none;
}
.sk-why__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF6B35;
}
.sk-why__catch {
  color: #fff;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 500;
  line-height: 1.7 !important;
  margin: 24px 0 0 !important;
}
.sk-why .cta-highlight {
  background: #ffd83b;
  color: #0b3b8c;
  padding: 2px 12px;
  border-radius: 3px;
  display: inline-block;
  font-weight: 700;
  margin: 0 6px;
}
.sk-why .cta-highlight.accent { background: #ff6b35; color: #fff; }
.sk-why .inline-block { display: inline-block; }
@media screen and (max-width: 600px) {
  .sk-why { padding: 40px 16px 48px; }
}




/* 「選ばれる理由」など見出しバーの ＜＞ 位置補正 */
.sk-clean .heading-bar {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 88px auto 32px;
  max-width: 900px;
  padding: 0 16px;
  line-height: 1;
}
.sk-clean .heading-line {
  flex: 1;
  border-top: 2px solid #2059a8;
}
.sk-clean .heading-chevron {
  color: #2059a8;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.sk-clean .heading-text {
  color: #2059a8;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}




/* CTAボタンを横並び（2つ並べる） */
.sk-clean .sk-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 56px 0;
}




/* ===== 仕組み（FLOW）ステップ ===== */
.sk-clean .sk-flow { max-width: 1000px; margin: 0 auto; }
.sk-clean .sk-flow__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: 0 0 32px;
}
.sk-clean .sk-flow__title {
  color: #4E4E4E;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  text-align: left;
}
.sk-clean .sk-flow__title::after { display: none !important; }
.sk-clean .sk-flow__label {
  color: #0072BB;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.sk-clean .sk-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
}
.sk-clean .sk-flow__step + .sk-flow__step { border-top: 1px solid #e5e7eb; }
.sk-clean .sk-flow__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 38px;
  padding: 0 16px;
  background: rgba(0,114,187,0.135);
  color: #0072BB;
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.sk-clean .sk-flow__body { flex: 1; }
.sk-clean .sk-flow__name {
  color: #4E4E4E;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin: 4px 0 8px !important;
  padding: 0 !important;
  border: none !important;
}
.sk-clean .sk-flow__desc {
  color: #4E4E4E;
  font-size: 15px;
  line-height: 1.8 !important;
  margin: 0 !important;
}




/* 変換ページのパンくずを非表示 */
body:has(.sk-clean) .ol-breadcrumb__wrapper {
  display: none;
}




/* コラム一覧（ショートコード）を横並びグリッドに */
.sk-clean #shortcode-list {
  max-width: none;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
}
