@charset "UTF-8";

/* =====================
    common
========================= */
.gap-0{
  gap: 0;
}

/* =====================
    top deco
========================= */
/* 全ページ共通の上部背景飾り */
body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -21rem;
  right: -11vw;
  width: 100%;
  height: 128vh;
  background: url(/wp-content/themes/no1thema-child/assets/img/common/top-bg.webp) no-repeat center / contain;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 760px) {
  body::before{
    top: -35rem;
  }
}


/* =====================
    header
========================= */
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  margin: 0 auto;
}

.site-header__brand {
  line-height: 1.3;
}

.site-header__logo img {
  width: clamp(100px, 16vw, 150px);
  height: auto;
  margin-top: 8px;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__nav {
  margin-bottom: 0;
}

.site-header__nav .wp-block-navigation__container {
  justify-content: flex-end;
}

.site-header__nav .wp-block-navigation__responsive-container-open {
  margin-left: auto;
}

.site-header__contact-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__tel a {
  color: inherit;
  text-decoration: none;
}

.site-header__nav .site-header-tel .wp-block-button__link {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0;
  background: transparent;
  text-decoration: none;
}

.site-header__nav .site-header-tel .wp-block-button__link::before {
  content: "〒354-0043 埼玉県入間郡三芳町竹間沢 441-1";
  display: block;
  font-size: 10px;
}

.site-header__nav .site-header-tel .wp-block-button__link::after {
  content: "受付時間／8:00〜17:00（日・祝休）";
  display: block;
  font-size: 10px;
  width: 100%;
  background-color: transparent;
}

/* ===== SP（〜860px） ===== */
@media screen and (max-width: 1070px) {

  .site-header__nav .wp-block-navigation__responsive-container-open {
    display: flex !important;
  }
  .wp-block-navigation__responsive-container {
    display: none !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open {
    display: flex !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open
  .site-header__contact-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
/* ===============================
   ハ
================================ */
@media screen and (max-width: 782px){
}

/* ===============================
   ブロックボタンの角丸をデフォルトで0にする
================================ */
.wp-block-button__link,
.wp-element-button {
  border-radius: 0;
}

/* ===============================
   全体のボタン
================================ */

.wp-block-button__link,
.wp-element-button {
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .3s;
  padding-right: 47px;
  position: relative;
}
.wp-block-button__link:hover,
.wp-element-button:hover{
  opacity: .6;
}

.wp-block-button__link::after,
.wp-element-button::after {
  content: "";
  display: block;
  width: 25px;
  height: 1.3px;
  background-color: currentColor;
  flex-shrink: 0;
  position: absolute;
  right: 0;
}

/* ===============================
   サイトタイトルの hover 下線を消す（全体）
================================ */
.wp-block-site-title a:hover {
  text-decoration: none;
}

a:focus,
a:focus-visible,
button:focus,
button:focus-visible {
  outline: none;
}

/* =====================
    footer
========================= */

.site-footer {
  padding: 60px 40px 32px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer nav[aria-label="Navigation-footer"] .wp-block-navigation-item__label {
  position: relative;
  padding-left: 1.5em;
  white-space: nowrap;
}

.site-footer nav[aria-label="Navigation-footer"] .wp-block-navigation-item__label::before {
  content: "ー";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.site-footer nav[aria-label="Navigation-footer"] .wp-block-navigation__container {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(20px, 6vw, 40px);
  row-gap: 8px;
  justify-content: flex-start;
  max-width: 43vw;
  margin-right: 1%;
}

.site-footer nav[aria-label="Navigation-footer"] .wp-block-navigation-item {
  flex: 0 1 auto; 
}

.site-footer nav[aria-label="Navigation-footer"] .wp-block-navigation-item__content {
  white-space: normal;
}

.site-footer nav[aria-label="Navigation-footer"] .wp-block-navigation-item__label {
  position: relative;
  padding-left: 1.5em;
}
.site-footer nav[aria-label="Navigation-footer"] .wp-block-navigation-item__label::before {
  content: "ー";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}


.site-footer__bottom {
  margin-top: 48px;
}

.site-footer__divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 0 0 clamp(14px, 2vw, 28px);
}


@media screen and (max-width: 782px) {
  .site-footer {
    padding: 40px 16px 24px;
  }

  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .site-footer nav[aria-label="Navigation-footer"] .wp-block-navigation__container{
    max-width: 100vw;
  }

  .site-footer__nav-wrap,
  .site-footer__privacy {
    text-align: left;
  }

  .site-footer__privacy-img img {
    max-width: 70%;
    display: block;
    margin: auto;
  }

  .site-footer__bottom {
    margin-top: 32px;
  }
}

/* =========================
   CONTACT CTA セクション
   ========================= */
.contact-cta-cover {
  position: relative;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
}

.contact-cta-cover .contact-cta__eyebrow {
  font-size: clamp(40px, 4vw, 64px);
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-cta-cover .contact-cta__subtitle {
  font-size: 16px;
  margin-bottom: 32px;
}

.contact-cta-cover .contact-cta__lead {
  font-size: 15px;
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 40px;
}

.contact-cta-cover .contact-cta__buttons {
  justify-content: center;
  gap: 0;
  margin-top: 16px;
}

.contact-cta-cover .contact-cta__buttons {
  background: transparent;
}

.contact-cta-cover .contact-cta__btn {
  flex: 0 0 260px;
}

.contact-cta-cover .contact-cta__btn .wp-block-button__link {
  display: block;
  width: 100%;
  padding: 18px 32px;
  font-size: 16px;
  letter-spacing: 0.08em;
  border-radius: 0;
  border: none;
}

/* 左：フォーム（黒） */
.contact-cta-cover .contact-cta__btn--form .wp-block-button__link {
  background: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
}

/* 右：TEL（白） */
.contact-cta-cover .contact-cta__btn--tel .wp-block-button__link {
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
}

/* パネルっぽく見せるため、ボタン全体に影を付ける */
.contact-cta-cover .contact-cta__buttons {
  display: inline-flex;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  margin-top: 48px;
}

/* 真ん中寄せ */
.contact-cta-cover .wp-block-cover__inner-container {
  text-align: center;
}

/* スマホ用調整 */

@media (max-width: 782px) {
  .contact-cta-cover {
    min-height: 480px;
  }

  .contact-cta-cover .contact-cta__buttons {
    flex-direction: column;
    box-shadow: none;
  }

  .contact-cta-cover .contact-cta__btn {
    flex: 1 1 auto;
  }

  .contact-cta-cover .contact-cta__btn .wp-block-button__link {
    border-radius: 0;
  }
}

/* =========================
   画像+タイトル+テキスト
   ========================= */

  .section-heading__subtitle--lined {
  position: relative;
  padding-left: 0.75em;
  font-weight: 500;
}

.section-heading__subtitle--lined::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  bottom: 0.1em;
  width: 3px;
  background-color: currentColor;
}

.service-row--image-right .section-heading__title,
.service-row--image-left .section-heading__title {
  font-weight: 700;
}

.wp-block-columns.service-row {
  margin-bottom: clamp(35px, calc(35px + (80 - 35) * ((100vw - 375px) / (1200 - 375))), 80px);
}

@media (min-width: 782px) {
  .service-row--image-left .service-row__content {
    padding-right: 3rem;
  }
  .service-row--image-right .service-row__content {
    padding-left: 3rem;
  }
}

@media (max-width: 781px){
  .wp-block-columns.service-row--image-right {
    flex-direction: column-reverse;
  }
}

.l-section {
  padding-block: clamp(
    35px,
    calc(35px + (80 - 35) * ((100vw - 375px) / (1200 - 375))),
    80px
  );
}


.section-heading__title {
  margin-bottom: -0.3em;
}

.section-heading__subtitle {
  margin-bottom: 2.2em;
}

.section-heading {
  margin-bottom: clamp(15px, 3vw, 100px);
}

/* フロント用：about */
.about-section .section-heading {
  margin-bottom: clamp(15px, 3vw, 40px);
}

.about-section .wp-element-button{
  margin-top: clamp(15px, 3vw, 30px);
}

/* フロント用：コンタクトのカバー全体の上下余白 */
.wp-block-cover.contact-cover{
  padding-block: clamp(
    35px,
    calc(35px + (80 - 35) * ((100vw - 375px) / (1200 - 375))),
    93px
  ) !important;
  width: 95.5vw;
  margin: auto auto 5rem;
}
.contact-cover .wp-element-button{
  min-width: 240px;
}

/* ==== フロントヒーロー（写真のみレイアウト） ==== */

.hero-front--image-only .hero-front__inner {
	max-width: 480px;
}

.hero-front__title {
  font-size: 4.2vw;
  font-weight: 600;
  max-width: 90%;
  margin-top: 50px !important;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

.hero-front__subtitle {
  font-size: 2vw;
  font-weight: 400;
  max-width: 90%;
  margin: 10px auto 50px auto;
}

@media (min-width: 782px) {
  .wp-block-cover.contact-cover{
    width: 85.5vw;
  }
}

@media (max-width: 781px) {
  .hero-front__title {
      font-size: 1.7rem;
  }
  .hero-front__subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .wp-block-cover.contact-cover{
    margin: auto auto 1rem;
  }
}

/* =====================
    news 一覧
========================= */

.news-section {
  padding: 80px 0 ;
}

body:not(.home) .news-section {
  padding: 0px 0 80px;
}

.news-section__columns {
  align-items: flex-start;
  gap: 4rem;
}

.section-heading__title {
  margin: 0 0 4px;
}

.section-heading__subtitle {
  margin: 0 0 24px;
}

.news-section__button .wp-block-button__link{
    line-height: .8;
    min-width: 165px;
}

/* ===== NEWS リスト部分 ===== */

.news-section__list {
  width: 100%;
}

.news-section :where(.is-layout-flow) > li {
  margin-block-start: 0;
  margin-block-end: 0;
}

.news-list__item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 22px 0;
}

.news-list__date {
  font-family: var(--wp--preset--font-family--oswald);
  min-width: 55px;
  font-weight: 500;
  white-space: nowrap;
}

.news-list__title {
  margin: 0;
}

.news-list__title a {
  text-decoration: none;
  color: inherit;
}

.news-list__separator {
  margin: 0;
  border-top: 1px solid #ddd;
}

/* ===== SP レイアウト調整 ===== */

@media (max-width: 782px) {
  .news-section {
    padding: 48px 0;
  }

  .news-section__columns {
    flex-direction: column;
    gap: 2rem;
  }

  .news-section .wp-block-post-template{
    width: 87vw;
    margin: auto;
  }

  .news-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
  }
  
}

/* ==============================================
   ニュースアーカイブ - カテゴリリスト
   ============================================== */

/* ALL見出し */
.news-archive__heading {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
}

.news-archive__heading a {
	color: var(--wp--preset--color--text, #393939);
	text-decoration: none;
	display: block;
}

.news-archive__heading:not(.current) a::before {
	content: "○ ";
}

.news-archive__heading.current a::before {
	content: "● ";
}

/* カテゴリリスト */
.news-archive__cat-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-archive__cat-list li {
	margin-bottom: 12px;
}

.news-archive__cat-list li a {
	color: var(--wp--preset--color--text, #393939);
	text-decoration: none;
	display: block;
	transition: color 0.2s;
}

.news-archive__cat-list li a:hover {
	color: var(--wp--preset--color--primary, #024055);
}

/* currentクラスでアクティブ表示 */
.news-archive__cat-list li:not(.current) a::before {
	content: "○ ";
	margin-right: 4px;
}

.news-archive__cat-list li.current a::before {
	content: "● ";
	margin-right: 4px;
	color: var(--wp--preset--color--black, var(--wp--preset--color--black)000);
	font-weight: 700;
}

.news-archive__cat-list li.current a {
	font-weight: 700;
	color: var(--wp--preset--color--black, var(--wp--preset--color--black)000);
}

/* =========================
   固定ページ FV（page-hero）
   ========================= */

.page-hero {
  position: relative;
  padding: 60px 0 40px;
  overflow: hidden;
}

.page-hero__header,
.page-hero__image {
  position: relative;
  z-index: 1;
}

.page-hero__header {
  margin-bottom: 24px;
}

.page-hero__title {
  font-family: var(--wp--preset--font-family--oswald);
  line-height: 1.2;
  margin-left: 0 !important;
}

.page-hero__subtitle {
  margin: 0;
  margin-left: 0 !important;
}

.page-hero__image {
  margin-top: 8px;
  aspect-ratio: 16/5;
  overflow: hidden;
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
}

.page-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 782px) {
  .page-hero {
    padding: 40px 0 24px;
  }

  .page-hero__header {
    margin-bottom: 16px;
  }
}


.entry-content {
  counter-reset: no1-section;
}

.entry-content .no1-section-items-grid {
  position: relative;
  z-index: 0;
  margin-bottom: 80px;
}

.entry-content .no1-section-items-grid::before {
  content: "";
  position: absolute;
  top: 65px;
  bottom: 0;
  background: #f2f3f4;
  z-index: -1;
}


.entry-content > .no1-section-items-grid:nth-of-type(odd)::before {
  left: 0;
  right: clamp(16px, 25vw, 100px);
}

.entry-content > .no1-section-items-grid:nth-of-type(even)::before {
  left: clamp(16px, 25vw, 100px);
  right: 0;
}

.no1-section-items-grid .section-heading__title {
  position: relative;
  z-index: 1;
  margin-bottom: 55px;
}

.no1-section-items-grid .section-heading__title::before {
  counter-increment: no1-section;
  content: counter(no1-section, decimal-leading-zero);

  position: absolute;
  left: -90px;
  top: -135px;

  font-family: var(--wp--preset--font-family--oswald, "Oswald", sans-serif);
  font-size: 150px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;

  color: #024055;
  opacity: 0.08;
  pointer-events: none;
}

:root :where(.wp-block-columns-is-layout-flex) {
    gap: 24px;
}

.wp-block-table table,
.wp-block-table th,
.wp-block-table td {
  border: 1px solid #cacaca;
  border-collapse: collapse;
  padding: 1em .7em;
}

.wp-block-table th:first-child,
.wp-block-table td:first-child {
  background-color: #e9eef0;
  min-width: 160px;
}

.gmap {
  position: relative;
  width: 100%;
  padding-bottom: 36.25%;
  overflow: hidden;
}

.gmap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 782px) {
  .section-heading__subtitle {
    margin: 0 0 10px;
  }
  .no1-section-items-grid .section-heading__title{
      margin-bottom: 25px;
  }
  .no1-section-items-grid .section-heading__title::before {
    left: -50px;
    top: -95px;
    font-size: 100px;
  }
  .gmap {
    padding-bottom: 70.25%;
  }
}

/* =====================
    下層 ヒーロー
========================= */
.page-hero__subtitle {
  margin-top: 12px;
  letter-spacing: 0.1em;
}

/* セクション全体 */
.no1-detail-section {
  padding: 64px 0;
}

/* 上段2カラム */
.no1-detail-main {
  column-gap: clamp(24px, 4vw, 48px);
  align-items: flex-start;
}

/* 左カラム・右カラム余白調整は必要に応じて */
.no1-detail-main__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.no1-detail-main__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* サムネイル行 */
.no1-detail-thumbs {
  gap: 8px;
}

.no1-detail-thumbs img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* タイトルの左に縦線 */
.no1-detail-heading {
  position: relative;
  padding-left: 16px;
  margin-bottom: 16px;
}

.no1-detail-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: var(--wp--preset--color--black);
}

/* リード・スペック */
.no1-detail-lead {
  margin-bottom: 16px;
}

.no1-detail-spec {
  font-size: 14px;
  line-height: 1.8;
}

/* 下のグレーボックス */
.no1-detail-note {
  margin-top: 40px;
  padding: 24px 24px 32px;
  background: var(--wp--preset--color--white)fff;
  border-left: 4px solid var(--wp--preset--color--black)000;
}

.no1-detail-note__title {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

.no1-detail-note__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: var(--wp--preset--color--black);
}

@media (max-width: 782px) {
  .no1-detail-main {
    flex-direction: column;
  }
}

.page-template-page-sub-hero .wp-block-cover.alignfull.is-light.page-hero__cover{
  max-width: 85vw;
  margin: auto;
  min-height: 350px !important;
}

.no1-detail-section{
  max-width: 980px;
  margin: auto !important;
}

.no1-detail-thumbs img {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* 選択中のサムネ */
.no1-detail-thumbs img.is-active {
  opacity: 1;
  transform: translateY(-3px);
  outline: 2px solid var(--wp--preset--color--black);
  outline-offset: 2px;
}

@media (max-width: 782px) {
  .page-template-page-sub-hero .wp-block-cover.alignfull.is-light.page-hero__cover{
  max-width: 90%;
  min-height: 200px !important;
}
}

.no-global-padding{
      padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
    padding-bottom: 0 !important;
}

@media (max-width: 782px){
  .no-global-padding{
      margin-bottom: -50px;
  }
}
/* .wp-block-post-featured-image{
  max-width: 560px;
}

.wp-singular .single-post{
  padding-top: 50px;
  padding-bottom: 100px;
} */

.single-post__content {
    margin-block-start: 4.2rem;
    margin-block-end: 5rem !important;
}

.single-post__content__link{
  max-width: 400px;
  width: 100%;
}

.single-post__thumbnail{
  max-width: 50vw;
}

.single-post__content a{
  font-weight: 700;
   text-decoration: underline;
}

@media (max-width: 782px){
  .single-post__content {
    margin-block-start: 2.2rem;
    margin-block-end: 1rem !important;
  }
  .single-post__thumbnail{
    max-width: 100%;
  }
  .single-post__content__link{
  max-width: 250px;
  }
}

/* ========================================
   採用情報カード一覧
======================================== */
.recruitment-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.recruitment-card {
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	background-color: var(--wp--preset--color--text);
}

.recruitment-card__button-wrap {
	margin: 0;
	text-align: right;
}

.recruitment-card:hover {
	opacity: .5;
}

.recruitment-card a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.recruitment-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 11;
	overflow: hidden;
}

.recruitment-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.recruitment-card:hover .recruitment-card__image img {
	transform: scale(1.05);
}

.recruitment-card__content {
	padding: 30px 25px 35px;
	background-color: var(--wp--preset--color--white);
}

.recruitment-card__label {
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--wp--preset--color--black);
	margin-bottom: 10px;
	padding-left: 7px;
	border-left: 2px solid;
	line-height: 1.2;
}

.recruitment-card__title {
	font-size: var(--wp--preset--font-size--large);
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 25px;
}

.recruitment-card__button-wrap {
	margin: 0;
}

.recruitment-card__button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 30px !important;
	background-color: #f5f5f5 !important;
	color: var(--wp--preset--color--black) !important;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	padding-right: 50px !important;
}

.recruitment-card:hover .recruitment-card__button-link {
	background-color: var(--wp--preset--color--black) !important;
	color: var(--wp--preset--color--white) !important;
	border-color: var(--wp--preset--color--black) !important;
}

.recruitment-card:hover .recruitment-card__button-link::after {
	right: 25px;
}

.recruitment-card__content {
	background-image: url('/wp-content/themes/no1thema-child/assets/img/common/top-bg.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media screen and (max-width: 782px) {
	.recruitment-cards {
		gap: 25px;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	
	.recruitment-card__content {
		padding: 25px 20px 30px;
	}
	
	.recruitment-card__title {
		font-size: 22px;
		margin-bottom: 20px;
	}
}

/* モバイル */
@media screen and (max-width: 600px) {
	.recruitment-cards {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 25px;
		margin-bottom: 25px;
	}
	
	.recruitment-card__content {
		padding: 20px 18px 25px;
	}
	
	.recruitment-card__label {
		font-size: 13px;
		margin-bottom: 8px;
	}
	
	.recruitment-card__title {
		font-size: 20px;
		margin-bottom: 18px;
	}
	
	.recruitment-card__button-link {
		padding: 10px 25px !important;
		padding-right: 45px !important;
		font-size: 13px;
	}
	
	.recruitment-card__button-link::after {
		right: 25px;
	}
	
	.recruitment-card:hover .recruitment-card__button-link::after {
		right: 20px;
	}
}

/* ========================================
   採用情報シングル - ヒーローセクション
======================================== */

.recruitment-hero {
	background-color: #f5f5f5;
  padding-right: 0;
}

.recruitment-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	max-width: 100%;
	margin: 0 auto;
}

.recruitment-hero__text {
	padding-right: 20px;
}

.recruitment-hero__text .wp-block-shortcode {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(14px, 1.2vw, 16px);
	font-weight: 400;
	color: var(--wp--preset--color--black);
	margin-bottom: 15px;
	padding-left: 7px;
	border-left: 2px solid var(--wp--preset--color--black);
	line-height: 1.2;
}

.recruitment-hero__title {
	font-size: clamp(32px, 4vw, 48px) !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	margin-bottom: 30px !important;
	color: var(--wp--preset--color--black);
}

.recruitment-hero__text p {
	font-size: clamp(14px, 1.1vw, 16px);
	line-height: 1.8;
	color: var(--wp--preset--color--black);
	margin-bottom: 0;
}

.recruitment-hero__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    overflow: hidden;
    margin: 0;
}

.recruitment-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.global-padding {
    padding: 1rem 2rem;
}

@media screen and (max-width: 782px) {
	.recruitment-hero__inner {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.recruitment-hero__text {
		padding-right: 0;
	}
	
	.recruitment-hero__title {
		margin-bottom: 25px !important;
	}
}

@media screen and (max-width: 600px) {
	.recruitment-hero {
		padding-block: clamp(30px, 8vw, 50px);
	}
	
	.recruitment-hero__inner {
		gap: 25px;
	}
	
	.recruitment-hero__text .wp-block-shortcode {
		font-size: 13px;
		margin-bottom: 12px;
	}
	
	.recruitment-hero__title {
		margin-bottom: 20px !important;
	}
	
	.recruitment-hero__text p {
		font-size: 14px;
		line-height: 1.7;
	}
}

@media screen and (max-width: 600px) {
  .wp-block-spacer {
    height: clamp(
      .5rem,
      calc(.5rem + 1.5 * ((100vw - 375px) / 825)),
      3rem
    ) !important;
  }
}

/* ========================================
   Snow Monkey Forms - Simple Table スタイル（完全版）
   線の装飾ボタン
======================================== */
.snow-monkey-form{
  padding: clamp(30px, 5vw, 60px);
  background-color: #f5f5f5;
}

.smf-form--simple-table {
	max-width: 800px;
	margin: 0 auto;
}


.smf-item {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 20px;
	align-items: start;
	margin-bottom: clamp(20px, 3vw, 30px);
}

.smf-item__col--label {
	display: flex;
	align-items: center;
  justify-content: space-between;
	gap: 8px;
	padding-top: 12px;
}

.smf-item__label__text {
	font-size: 14px;
	font-weight: 500;
	color: var(--wp--preset--color--black);
}


.smf-item__col--label .smf-item__description {
	display: inline-block;
	background-color: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 2px;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
}

.smf-item.optional .smf-item__col--label .smf-item__description {
	background-color: #666;
}

.smf-item__col--body {
	width: 100%;
}

.smf-form--simple-table input[type="text"],
.smf-form--simple-table input[type="email"],
.smf-form--simple-table input[type="tel"],
.smf-form--simple-table select,
.smf-form--simple-table textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #e0e0e0;
	background-color: var(--wp--preset--color--white);
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.6;
	transition: border-color 0.3s ease;
}

.smf-form--simple-table input[type="text"]:focus,
.smf-form--simple-table input[type="email"]:focus,
.smf-form--simple-table input[type="tel"]:focus,
.smf-form--simple-table select:focus,
.smf-form--simple-table textarea:focus {
	outline: none;
	border-color: var(--wp--preset--color--black);
}

.smf-form--simple-table textarea {
	min-height: 150px;
	resize: vertical;
}

/* チェックボックス行 */
.smf-item--checkbox {
	grid-template-columns: 1fr;
	background-color: var(--wp--preset--color--white);
	padding: 20px;
	border-radius: 4px;
}

.smf-item--checkbox .smf-item__col--label {
	display: none;
}

.smf-item--checkbox .smf-item__col--body {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.smf-item--checkbox .smf-item__body__inner {
	font-size: 12px;
	line-height: 1.8;
	color: var(--wp--preset--color--black);
	margin-bottom: 10px;
}

.smf-item--checkbox .smf-item__body__inner a {
	color: #0066cc;
	text-decoration: underline;
}

.smf-item--checkbox .smf-choices {
	display: flex;
	align-items: center;
	gap: 10px;
}

.smf-item--checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	margin: 0;
}

.smf-item--checkbox label {
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	margin: 0;
}

/* ========================================
   送信ボタン（線の装飾版）
======================================== */

.smf-action {
	text-align: center;
	margin-top: 30px;
}


.smf-button-control__control {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	padding: 12px 30px !important;
	padding-right: 50px !important;
	background-color: var(--wp--preset--color--black) !important;
	border: 1px solid var(--wp--preset--color--black) !important;
  min-width: 200px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	text-decoration: none;
}

.smf-button-control__control::after {
	content: "";
	display: block;
	width: 25px;
	height: 1.3px;
	background-color: currentColor;
	flex-shrink: 0;
	position: absolute;
	right: -2px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s ease, width 0.3s ease;
}

.smf-button-control__control:hover {
	background-color: var(--wp--preset--color--black) !important;
	color: var(--wp--preset--color--white) !important;
	border-color: var(--wp--preset--color--black) !important;
}

.smf-button-control__control:hover::after {
	right: 12px;
	width: 30px;
}

.smf-sending {
	display: none;
}

.smf-button-control__control[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

.smf-button-control__control[disabled]::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: smf-spin 0.6s linear infinite;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

@keyframes smf-spin {
	to {
		transform: translateY(-50%) rotate(360deg);
	}
}

.smf-item__error {
	color: #d32f2f;
	font-size: 12px;
	margin-top: 5px;
	grid-column: 2;
}

.smf-item.is-invalid input,
.smf-item.is-invalid textarea,
.smf-item.is-invalid select {
	border-color: #d32f2f;
}

.smf-response-message {
	background-color: #e8f5e9;
	color: #2e7d32;
	padding: 15px 20px;
	border-radius: 4px;
	margin-bottom: 20px;
	text-align: center;
}

.smf-item__col .wp-block-group{
  background-color: var(--wp--preset--color--white);
  border: 1px solid #c9c9c9;
  padding: 1rem;
}

/* ========================================
   レスポンシブ対応
======================================== */

@media screen and (max-width: 782px) {
	.smf-item {
		grid-template-columns: 150px 1fr;
		gap: 15px;
	}
	
	.smf-item__label__text {
		font-size: 13px;
	}
	
	.smf-item__col--label .smf-item__description {
		font-size: 10px;
		padding: 2px 6px;
	}
}

/* モバイル */
@media screen and (max-width: 600px) {
	.smf-item {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 20px;
	}
	
	.smf-item__col--label {
		padding-top: 0;
    padding-bottom: 0 !important;
	}
	
	.smf-form--simple-table input[type="text"],
	.smf-form--simple-table input[type="email"],
	.smf-form--simple-table input[type="tel"],
	.smf-form--simple-table select,
	.smf-form--simple-table textarea {
		padding: 10px 14px;
		font-size: 16px;
	}
	
	.smf-item--checkbox {
		padding: 15px;
	}
	
	.smf-item--checkbox .smf-item__body__inner {
		font-size: 11px;
	}
	
	.smf-item__error {
		grid-column: 1;
	}
	
	.smf-button-control__control {
		width: 100% !important;
		padding: 12px 25px !important;
		padding-right: 45px !important;
		font-size: 13px;
	}
	
	.smf-button-control__control::after {
		width: 20px;
		right: -1px;
	}
	
	.smf-button-control__control:hover::after {
		right: 12px;
		width: 25px;
	}
}