/* ========================================
   CSS Variables
======================================== */
:root {
  /* カラー */
  --text-color: #333333;
  --background-color: #FFFFFF;
  --color-white: #FFFFFF;
  --color-beige: #F9F8F6;
  --color-dark: #333333;
  --color-overlay: rgba(51, 51, 51, 0.35);
  --color-top-hero-overlay: rgba(51, 51, 51, 0.5);
  --color-image-overlay: rgba(51, 51, 51, 0.15);
  --color-border: #333333;
  --color-form-input: rgba(51, 51, 51, 0.2);
  --color-button-bg: rgba(51, 51, 51, 0.2);

  /* フォント */
  --font-family-sans: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-family-serif: "Noto Serif JP", serif;

  /* タイポグラフィ */
  --font-size-body: 16px;
  --font-size-h1: 32px;
  --font-size-h2: 25.6px;
  --font-size-h3: 21.333px;
  --font-size-small: 14.222px;
  --font-size-xs: 12.8px;
  --font-size-lg: 18.29px;
  --font-size-xl: 21.333px;
  --font-size-2xl: 32px;
  --font-size-3xl: 42.67px;

  /* 行間 */
  --line-height-tight: 1.5;
  --line-height-normal: 1.8;
  --line-height-relaxed: 2;

  /* フォントウェイト */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;

  /* コンテナ */
  --container-width: 1128px;
  --container-padding: 24px;

  /* 角丸 */
  --border-radius-default: 10px;
  --border-radius-double: 20px;
  --border-radius-small: 4px;

  /* 余白 */
  --spacing-section: 80px;
  --spacing-section-large: 120px;
  --spacing-content: 64px;
  --spacing-card: 32px;
  --spacing-card-lg: 56px;
  --spacing-element: 16px;
  --spacing-small: 8px;
  --spacing-tag: 4px;

}

/* ========================================
   Reset & Base
======================================== */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-body);
  line-height: var(--line-height-relaxed);
  color: var(--text-color);
  background: var(--background-color);
  font-weight: var(--font-weight-normal);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
}

p {
  margin: 0;
}

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

/* Serif Font Class */
.u-font-serif {
  font-family: var(--font-family-serif);
}

.is-pc {
  display: block;
}
.is-sp {
  display: none;
}


/* ========================================
   Layout
======================================== */
.l-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}


/* ========================================
   Header
======================================== */
.p-header {
  position: relative;
  width: 100%;
  padding: 160px 0 144px;
  overflow: hidden;
  z-index: 0;
}

.p-header__gnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.p-header__gnav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.p-header__gnav-item {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semi-bold);
  line-height: var(--line-height-tight);
  color: var(--color-white);
}

.p-header__gnav-item a {
  color: var(--color-white);
}

.p-header__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.p-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: var(--font-size-small);
  line-height: var(--line-height-tight);
}

.p-header__breadcrumb-item {
  white-space: nowrap;
}

.p-header__breadcrumb-separator {
  display: flex;
  align-items: center;
  width: 8px;
  height: 13px;
}

.p-header__title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-tight);
  color: var(--color-beige);
  text-align: center;
}

.p-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-header__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(51, 51, 51, 1) 23%, rgba(51, 51, 51, 0) 100%);
  opacity: 0.4;
  z-index: 1;
}

.p-header__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  z-index: 2;
}


/* ========================================
   Footer
======================================== */
.p-footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 80px 0;
}

.p-footer__body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 80px;
}

.p-footer__left {
  width: 50%;
}

.p-footer__logo-wrapper {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.p-footer__logo img {
  width: auto;
  max-width: 120px;
}

.p-footer__name {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-white);
  text-align: center;
}

.p-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 50%;
}

.p-footer__list {
  display: flex;
  gap: 16px;
}

.p-footer__list li a {
  display: inline-block;
  width: 120px;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-white);
}

.p-footer__sns {
  display: flex;
  align-items: center;
  gap: 32px;
  width: auto;
}

.p-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-footer__privacy a {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  color: var(--color-white);
}

.p-footer__copyright {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  color: var(--color-white);
  text-align: right;
}


/* ========================================
   TOP Page - Hero
======================================== */
.p-top-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p-top-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.p-top-hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-top-hero-overlay);
  z-index: 1;
}

.p-top-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-top-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 80px var(--container-padding);
  width: 100%;
}

.p-top-hero__title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extra-bold);
  line-height: 2.4;
  color: var(--color-white);
  text-align: center;
  margin: 0;
}

/* ========================================
   TOP Page - Lead
======================================== */
.p-top-lead {
  background-color: var(--color-white);
}

.p-top-lead__content {
  display: flex;
  gap: 56px;
  width: 100%;
  padding: var(--spacing-section) 0;
}

.p-top-lead__content-image {
  width: 420px;
  max-width: 100%;
  flex-shrink: 0;
}

.p-top-lead__content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-top-lead__content-text {
  display: flex;
  flex-direction: column;
  gap: 1.8em;
}

.p-top-lead__content--01 .p-top-lead__content-text {
  margin-top: -30px;
}
.p-top-lead__content--02 .p-top-lead__content-text {
  width: 420px;
  max-width: 100%;
  flex-shrink: 0;
}

.p-top-lead__content--01 .p-top-lead__content-text p {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  margin: 0;
}


.p-top-lead__content--02 .p-top-lead__content-title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  margin: 0;
}

.p-top-lead__content--02 .p-top-lead__content-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.8em;
}

.p-top-lead__content--02 .p-top-lead__content-text p {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  margin: 0;
}


.p-top-lead__content-image-list {
  display: flex;
  gap: 32px;
}
.p-top-lead__content--01 .p-top-lead__content-image-list {
  transform: translateX(-286px);
  margin-top: 56px;
}
.p-top-lead__content--02 .p-top-lead__content-image-list .p-top-lead__content-image-item:first-child {
  width: 420px;
}
.p-top-lead__content--02 .p-top-lead__content-image-list .p-top-lead__content-image-item:nth-child(2) {
  width: 240px;
}

.p-top-lead__content-image-item {
  width: 360px;
  height: auto;
  display: block;
}

/* ========================================
   TOP Page - Approach
======================================== */
.p-top-approach {
  padding: var(--spacing-section) 0;
  background-color: var(--color-beige);
}

.p-top-approach__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

.p-top-approach__title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
  text-align: center;
  margin: 0;
}

.p-top-approach__lead {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  text-align: center;
  margin: 0;
}

.p-top-approach__service-list-item {
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.p-top-approach__service-list-item-title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
  position: relative;
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.p-top-approach__service-list-item-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-border);
  border-radius: 16px;
  z-index: 1;
}


/* ========================================
   TOP Page - Introduction
======================================== */
.p-top-introduction {
  padding: var(--spacing-section) 0 var(--spacing-section-large);
}
.p-top-introduction__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
.p-top-introduction__title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
  text-align: center;
}

.p-top-introduction__content-text {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  text-align: center;
}

.p-top-introduction__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   TOP Page - Service
======================================== */
.p-top-service {
  padding: var(--spacing-section) 0;
}

.p-top-service__header {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 56px;
}

.p-top-service__header-image {
  width: 604px;
  height: 420px;
  aspect-ratio: 604 / 420;
  flex-shrink: 0;
  position: relative;
}
.p-top-service__header-image img {
  width: 800px;
  height: 420px;
  aspect-ratio: 800 / 420;
  max-width: none;
  position: absolute;
  top: 0;
  right: 0;
}

.p-top-service__header-text {
  width: 420px;
}

.p-top-service__header-title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
  margin-bottom: 40px;
}

.p-top-service__header-text-item {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  margin-bottom: 1.8em;
}
.p-top-service__header-text-item:last-child {
  margin-bottom: 0;
}

.p-top-service__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.p-top-service__content-title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
}

.p-top-service__content-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0;
  margin: 0;
}

.p-top-service__content-item {
  counter-increment: service-item;
  display: flex;
  gap: 24px;
}

.p-top-service__content-item::before{
  content: counter(service-item, decimal-leading-zero);
  grid-column: 1;
  font-size: var(--font-size-3xl);
  line-height: 48px;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-serif);
  order: 1;
}

.p-top-service__content-item::after{
  content: "";
  grid-column: 1;
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(50% - 0.5px),
    var(--color-border) calc(50% - 0.5px),
    var(--color-border) calc(50% + 0.5px),
    transparent calc(50% + 0.5px),
    transparent 100%
  );
  width: 146px;
  height: 48px;
  order: 2;
}

.p-top-service__content-item-text {
  width: 456px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  order: 3;
}

.p-top-service__content-item-title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
  margin: 8px 0;
}

.p-top-service__content-item-image {
  width: 360px;
  max-width: 100%;
  height: auto;
  display: block;
  order: 4;
}

.p-top-service--gather, .p-top-service--expand {
  background-color: var(--color-beige);
}

.p-top-service--gather .p-top-service__header, .p-top-service--expand .p-top-service__header {
  flex-direction: row-reverse;
}

.p-top-service--gather .p-top-service__header-image img, .p-top-service--expand .p-top-service__header-image img {
  right: auto;
  left: 0;
}

/* ========================================
   TOP Page - Recruit
======================================== */
.p-top-recruit {
  padding: var(--spacing-section) 0 var(--spacing-section-large);
  color: var(--color-white);
  background: var(--color-white) url(../images/top-recruit-bg.jpg) no-repeat center center / cover;
  text-align: center;
  position: relative;
  z-index: 0;
}
.p-top-recruit::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.p-top-recruit__title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 40px;
}

.p-top-recruit__content-item-text {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-normal);
  display: flex;
  flex-direction: column;
  gap: 1.8em;
  margin-bottom: 56px;
}

.p-top-recruit__content-item-feature {
  margin-bottom: 56px;
}

.p-top-recruit__content-item-feature-list {
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.p-top-recruit__content-item-feature-item {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  font-family: var(--font-family-serif);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 196px;
  height: 196px;
  aspect-ratio: 1 / 1;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 0;
}

.p-top-recruit__content-item-feature-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  z-index: -1;
}

.p-top-recruit__content-item-button a {
  display: block;
  padding: 16px 64px;
  width: 480px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-white);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}
.p-top-recruit__content-item-button a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: url(../images/icon-arrow-right.svg) no-repeat center center / contain;
}
.p-top-recruit__content-item-button a:hover {
  opacity: 0.8;
}

/* ========================================
   TOP Page - Company
======================================== */
.p-top-company {
  padding: var(--spacing-section) 0;
  background-color: var(--color-dark);
  color: var(--color-white);
}
.p-top-company__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extra-normal);
  line-height: var(--line-height-tight);
  margin-bottom: 80px;
}

.p-top-company__content {
  width: 640px;
  max-width: 100%;
  margin: 0 auto;
}
.p-top-company__content-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
.p-top-company__content-item-title {
  font-size: var(--font-size-h3);
}
.p-top-company__content-item-body {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-white);
}

.p-top-company__content-item{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
}
.p-top-company__content-item-title, .p-top-company__content-item-body {
  padding: 24px 0;
  margin: 0;
  border-top: 0.5px solid var(--color-white);
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.p-top-company__content-item-title {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}
.p-top-company__content-item-body {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  padding-left: 32px;
}

.p-top-company__content-item-tel-note {
  display: flex;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  margin: 0 0 24px;
}
.p-top-company__content-item-tel-note::before {
  content: '※';
}

.p-top-company__content-item-tel-list-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px 8px;
}
.p-top-company__content-item-tel-list-item-title {
  padding: 4px 0;
}
.p-top-company__content-item-tel-list-item-body {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 4px 0;
}
.p-top-company__content-item-tel-list-item-body::before {
  content: '：';
}
.p-top-company__content-item-tel-list-item-body a {
  pointer-events: none;
}

.p-top-company__content-item-service-list-item-title {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
}
.p-top-company__content-item-service-list-item-title::before {
  content: 'ー';
}
.p-top-company__content-item-service-list-item-body {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  margin: 0 0 0 2em;
}

.p-top-company__content-item-service-list-item-body + .p-top-company__content-item-service-list-item-title {
  margin-top: 16px;
}

.p-top-company__content-map iframe {
  width: 100%;
  height: 432px;
  border: 0;
}

/* ========================================
   TOP Page - Contact
======================================== */
.p-top-contact {
  padding: var(--spacing-section) 0;
  background: var(--color-button-bg) url(../images/top-contact-bg.jpg) no-repeat center bottom / cover;
  color: var(--color-white);
  position: relative;
  z-index: 0;
}
.p-top-contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.p-top-contact__content-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.p-top-contact__content-item-button {
  width: 520px;
  height: 128px;
}

.p-top-contact__content-item-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  background-color: var(--color-button-bg);
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  transition: opacity 0.3s ease;
}
.p-top-contact__content-item-button a:hover {
  opacity: 0.7;
}
.p-top-contact__content-item-button a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  opacity: 0.15;
  z-index: -1;
}
.p-top-contact__content-item-button a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: url(../images/icon-arrow-right.svg) no-repeat center center / contain;
}


/* ========================================
   Main (sub page)
======================================== */
.p-main {
  padding: var(--spacing-section) 0;
}

/* ========================================
   Intro Section
======================================== */
.p-intro {
  margin-bottom: 40px;
}

.p-intro__text {
  font-size: var(--font-size-body);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  text-align: left;
}

/* ========================================
   Jobs Section
======================================== */
.p-jobs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-content);
}

.p-jobs__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.p-jobs__title {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extra-bold);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  text-align: left;
  flex-shrink: 0;
}

.p-jobs__title-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin-top: 8px;
}

.p-jobs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-card-lg) var(--spacing-card);
  width: 100%;
}

.c-job-card {
  flex: 0 0 calc((100% - (var(--spacing-card) * 2)) / 3);
  max-width: calc((100% - (var(--spacing-card) * 2)) / 3);
}

/* ========================================
   Job Card Component
======================================== */
.c-job-card__link-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background-color: var(--color-beige);
  transition: opacity 0.3s ease;
}

.c-job-card__link-wrapper:hover {
  opacity: 0.8;
}

.c-job-card__link-wrapper .c-job-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.c-job-card__image {
  position: relative;
  width: 100%;
  height: 209.55px;
  overflow: hidden;
}

.c-job-card__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-image-overlay);
  z-index: 1;
}

.c-job-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-job-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-element);
  padding: 24px 16px 16px;
  flex: 1;
}

.c-job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-small);
}

.c-job-card__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 16px;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-small);
  text-align: center;
}

.c-job-card__title {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--color-border);
  flex: 1;
}

.c-job-card__link {
  text-align: center;
}

.c-job-card__link-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
  text-align: center;
  margin-bottom: 8px;
}
.c-job-card__link-text::after {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: url(../images/icon-file.svg) no-repeat center center / contain;
}
.c-job-card__link-notice {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  color: var(--text-color);
}


/* ========================================
   Pagination Component
======================================== */
.p-jobs__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-jobs__pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 48px;
  color: var(--text-color);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  border-radius: var(--border-radius-small);
}

.p-jobs__pagination-item.is-current, .p-jobs__pagination-item:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
  opacity: 1;
}

/* ========================================
   Contact Form
======================================== */
.p-contact-form {
  width: 100%;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.c-form__group {
  display: flex;
  gap: 64px;
  width: 100%;
}

.c-form__group--wide {
  width: 100%;
}

.c-form__label-wrapper, .c-form__label-wrapper p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 240px;
  flex-shrink: 0;
}

.c-form__group--wide .c-form__label-wrapper {
  align-items: flex-start;
}

.c-form__label {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
}

.c-form__label-email-confirm {
  font-size: var(--font-size-small);
}

.c-form__required {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2px 16px;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  border-radius: 8px;
}

.c-form__radio-group, .wpcf7-radio {
  display: flex;
  gap: 80px;
}

.c-form__radio-group label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.c-form__radio-group input[type="radio"] {
  width: 28px;
  height: 28px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--color-dark);
}

.c-form__radio-group .wpcf7-list-item {
  margin: 0;
}

.c-form__radio-text, .wpcf7-list-item-label {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
}

.c-form__input-text, .c-form__input-text p {
  width: 100%;
}

.c-form__input,
.c-form__textarea {
  width: 100%;
  padding: 8px;
  font-family: inherit;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  background-color: var(--color-white);
  border: 1px solid var(--color-form-input);
  border-radius: var(--border-radius-small);
  transition: border-color 0.3s ease;
}

.c-form__input::placeholder,
.c-form__textarea::placeholder {
  color: #DEDEDE;
}

.c-form__input:focus,
.c-form__textarea:focus {
  outline: none;
  border-color: var(--color-dark);
}

.c-form__textarea {
  resize: vertical;
  height: 150px;
}

.c-form__notice {
  width: 100%;
  margin-top: -16px; /* 40px gap - 16px = 24px */
  text-align: center;
}

.c-form__notice p {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  color: var(--text-color);
}

.c-form__notice p a {
  color: var(--text-color);
  text-decoration: underline;
}


.c-form__notice p + p{
  margin-top: 1.5em;
}

.c-form__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.c-form__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 480px;
  height: 80px;
  padding: 16px 64px;
  background: var(--color-dark) url(../images/icon-arrow-right.svg) no-repeat right 32px center / 6px 12px;
  color: var(--color-white);
  font-family: inherit;
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-tight);
  border: 0.5px solid var(--color-border);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.c-form__button:hover {
  opacity: 0.8;
}

.c-form__button svg {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}

.cf-turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* ========================================
   Privacy Policy
======================================== */
.p-privacy {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.p-privacy__intro {
  margin-bottom: 40px;
}

.p-privacy__intro p {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-color);
}

.p-privacy__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-privacy__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-privacy__heading {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
}

.p-privacy__text {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-color);
}


/* ========================================
   
======================================== */
.p-page__heading {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
  margin-bottom: 32px;
}

.p-page__text {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-color);
}

.p-page__link {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  text-decoration: underline;
  padding-top: 40px;
}

.error-404-link {
  display: inline-block;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--text-color);
  text-decoration: underline;
  padding-top: 40px;
}
.error404 .p-header__breadcrumb {
  display: none;
}

/* ========================================
   Responsive - Tablet
======================================== */
@media (min-width: 769px) and (max-width: 1080px) {
  /* CSS Variables for Tablet */
  :root {
    --font-size-body: 15px;
    --font-size-h1: 28px;
    --font-size-h2: 23px;
    --font-size-h3: 19.5px;
    --font-size-small: 13.5px;
    --font-size-xs: 12px;
    --font-size-lg: 17px;
    --font-size-xl: 19.5px;
    --font-size-2xl: 26px;
    --font-size-3xl: 36px;
    --container-padding: 20px;
    --spacing-section: 64px;
    --spacing-section-large: 96px;
    --spacing-content: 48px;
    --spacing-card: 24px;
    --spacing-card-lg: 40px;
  }

  /* Header */
  .p-header {
    padding: 140px 0 120px;
  }

  .p-header__gnav {
    padding: 14px 24px;
  }

  .p-header__gnav-list {
    gap: 24px;
  }

  /* Footer */
  .p-footer {
    padding: 64px 0;
  }

  .p-footer__body {
    margin-bottom: 64px;
  }

  .p-footer__logo img {
    max-width: 110px;
  }

  /* TOP Page - Hero */
  .p-top-hero {
    min-height: 80vh;
  }

  .p-top-hero__title {
    font-size: 22px;
  }

  /* TOP Page - Lead */
  .p-top-lead__content {
    gap: 40px;
  }

  .p-top-lead__content-image {
    width: 320px;
  }

  .p-top-lead__content-body {
    width: calc(100% - 320px - 40px);
  }

  .p-top-lead__content--01 .p-top-lead__content-text {
    margin-top: 0;
  }

  .p-top-lead__content--02 .p-top-lead__content-text {
    width: 360px;
  }

  .p-top-lead__content--01 .p-top-lead__content-image-list {
    transform: translateX(0);
    gap: 8px
  }

  .p-top-lead__content--02 .p-top-lead__content-image-list .p-top-lead__content-image-item:first-child {
    width: 320px;
  }

  .p-top-lead__content--02 .p-top-lead__content-image-list .p-top-lead__content-image-item:nth-child(2) {
    width: 200px;
  }

  .p-top-lead__content-image-item {
    width: 300px;
  }

  /* TOP Page - Approach */
  .p-top-approach__header {
    margin-bottom: 48px;
  }

  .p-top-approach__service-list-item {
    height: auto;
    gap: 12px;
    padding-inline: 40px;
  }

  .p-top-approach__service-list-item-title {
    font-size: 26px;
    width: 136px;
    height: 136px;
  }

  /* TOP Page - Introduction */
  .p-top-introduction__content {
    margin-bottom: 48px;
  }

  /* TOP Page - Service */
  .p-top-service__header {
    gap: 40px;
    margin-bottom: 48px;
  }

  .p-top-service__header-image {
    width: 50%;
    height: auto;
  }

  .p-top-service__header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .p-top-service__header-text {
    width: calc(50% - 40px);
  }

  .p-top-service__header-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .p-top-service__content {
    gap: 48px;
  }

  .p-top-service__content-list {
    gap: 48px;
  }

  .p-top-service__content-item::after {
    width: 72px;
  }

  .p-top-service__content-item-text {
    width: 380px;
  }

  .p-top-service__content-item-image {
    width: 300px;
  }

  /* TOP Page - Recruit */
  .p-top-recruit__content-item-feature-list {
    height: 200px;
    gap: 16px;
  }

  .p-top-recruit__content-item-feature-item {
    width: 170px;
    height: 170px;
  }

  .p-top-recruit__content-item-button a {
    width: 420px;
    height: 72px;
    padding: 14px 56px;
  }

  /* TOP Page - Company */
  .p-top-company__title {
    margin-bottom: 64px;
  }

  .p-top-company__content {
    width: 580px;
  }

  .p-top-company__content-item {
    grid-template-columns: 100px 1fr;
  }

  .p-top-company__content-item-body {
    padding-left: 24px;
  }

  .p-top-company__content-map iframe {
    height: 380px;
  }

  /* TOP Page - Contact */
  .p-top-contact__content-item-button {
    width: 460px;
    height: 96px;
  }

  /* Jobs Section */
  .p-jobs__header {
    gap: 20px;
  }

  .p-jobs__list {
    gap: var(--spacing-card-lg) var(--spacing-card);
  }

  .c-job-card {
    flex: 0 0 calc((100% - var(--spacing-card)) / 2);
    max-width: calc((100% - var(--spacing-card)) / 2);
  }

  /* Job Card Component */
  .c-job-card__image {
    height: 185px;
  }

  .c-job-card__body {
    padding: 20px 14px 14px;
  }

  /* Contact Form */
  .c-form__group {
    gap: 48px;
  }

  .c-form__label-wrapper, .c-form__label-wrapper p {
    width: 200px;
  }

  .c-form__button {
    width: 420px;
    height: 72px;
    padding: 14px 56px;
  }

  /* Privacy Policy */
  .p-privacy {
    max-width: 640px;
  }
}

/* ========================================
   Responsive - SP
======================================== */
@media (max-width: 768px) {
  /* CSS Variables for SP */
  :root {
    --font-size-body: 14.222px;
    --font-size-h1: 25.6px;
    --font-size-h2: 21.333px;
    --font-size-h3: 18.29px;
    --font-size-small: 12.8px;
    --font-size-xs: 11px;
    --font-size-lg: 16px;
    --font-size-xl: 18.29px;
    --font-size-2xl: 21.333px;
    --font-size-3xl: 32px;
    --container-padding: 24px;
    --spacing-section: 56px;
    --spacing-section-large: 80px;
    --spacing-content: 40px;
    --spacing-card: 16px;
    --spacing-card-lg: 32px;
  }
  
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }

  /* Header */
  .p-header {
    padding: 120px 0 96px;
  }

  .p-header__gnav {
    padding: 12px 16px;
  }

  .p-header__gnav-list {
    gap: 16px;
  }

  .p-header__gnav-item {
    font-size: 12px;
  }

  .p-header__inner {
    gap: 12px;
  }

  .p-header__breadcrumb {
    font-size: 12px;
    gap: 6px;
  }

  .p-header__breadcrumb-separator {
    width: 6px;
    height: 10px;
  }

  .p-header__title {
    font-size: var(--font-size-h2);
  }

  /* Footer */
  .p-footer {
    padding: 56px 0;
  }

  .p-footer__body {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 56px;
    align-items: flex-start;
  }

  .p-footer__left {
    width: 100%;
  }

  .p-footer__logo-wrapper {
    width: 100%;
    gap: 24px;
  }

  .p-footer__logo img {
    max-width: 100px;
  }

  .p-footer__name {
    font-size: 12px;
  }

  .p-footer__menu {
    width: 100%;
    gap: 24px;
  }

  .p-footer__list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .p-footer__list li a {
    width: auto;
  }

  .p-footer__sns {
    gap: 24px;
    justify-content: center;
  }

  .p-footer__bottom {
    gap: 12px;
  }

  .p-footer__privacy a,
  .p-footer__copyright {
    font-size: 11px;
  }

  /* TOP Page - Hero */
  .p-top-hero {
    min-height: 60vh;
  }

  .p-top-hero__content {
    padding: 56px var(--container-padding);
    gap: 16px;
  }

  .p-top-hero__title {
    font-size: 18px;
    line-height: 2;
  }

  /* TOP Page - Lead */
  .p-top-lead__content {
    flex-direction: column;
    gap: 24px;
  }

  .p-top-lead__content-image {
    width: 70%;
    margin: 0 auto;
  }

  .p-top-lead__content-text {
    gap: 1.5em;
  }

  .p-top-lead__content--01 .p-top-lead__content-text {
    margin-top: 0;
  }

  .p-top-lead__content--01 .p-top-lead__content-text p {
    font-size: 16px;
  }

  .p-top-lead__content--02 {
    flex-direction: column-reverse;
  }

  .p-top-lead__content--02 .p-top-lead__content-text {
    width: 100%;
  }

  .p-top-lead__content--02 .p-top-lead__content-title {
    font-size: 20px;
  }

  .p-top-lead__content--02 .p-top-lead__content-text p {
    font-size: 14px;
  }

  .p-top-lead__content-image-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 4vw 4%;
  }

  .p-top-lead__content--01 .p-top-lead__content-image-list {
    transform: translateX(0);
    margin-top: 32px;
  }

  .p-top-lead__content--02 .p-top-lead__content-image-list .p-top-lead__content-image-item:first-child,
  .p-top-lead__content--02 .p-top-lead__content-image-list .p-top-lead__content-image-item:nth-child(2) {
    width: 48%;
  }

  .p-top-lead__content-image-item {
    width: 48%;
  }

  /* TOP Page - Approach */
  .p-top-approach__header {
    margin-bottom: 40px;
  }

  .p-top-approach__title {
    font-size: var(--font-size-xl);
  }

  .p-top-approach__lead {
    text-align: left;
  }

  .p-top-approach__service-list-item {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
  }

  .p-top-approach__service-list-item-title {
    font-size: 18px;
    width: 120px;
    height: 120px;
    max-width: 25vw;
    max-height: 25vw;
  }

  .p-top-approach__service-list-item-title::before {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  /* TOP Page - Introduction */
  .p-top-introduction {
    padding: var(--spacing-section) 0 var(--spacing-section-large);
  }

  .p-top-introduction__content {
    gap: 16px;
    margin-bottom: 40px;
  }

  .p-top-introduction__title {
    font-size: var(--font-size-xl);
  }

  .p-top-introduction__content-text {
    font-size: 14px;
    text-align: left;
  }

  /* TOP Page - Service */
  .p-top-service {
    padding: var(--spacing-section) 0;
  }

  .p-top-service__header {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 56px;
  }

  .p-top-service__header-image {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .p-top-service__header-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: static;
  }

  .p-top-service__header-text {
    width: 100%;
  }

  .p-top-service__header-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .p-top-service__header-text-item {
    font-size: 14px;
    margin-bottom: 1.5em;
  }

  .p-top-service__content {
    gap: 24px;
  }

  .p-top-service__content-list {
    gap: 48px;
    counter-reset: service-item;
  }

  .p-top-service__content-item {
    flex-direction: column;
    gap: 16px;
  }

  .p-top-service__content-item::before {
    display: none;
  }

  .p-top-service__content-item::after {
    display: none;
  }

  .p-top-service__content-item-text {
    width: 100%;
    gap: 12px;
    order: 3;
  }

  .p-top-service__content-item-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
  }
  .p-top-service__content-item-title::before {
    content: counter(service-item, decimal-leading-zero);
    grid-column: 1;
    font-size: var(--font-size-3xl);
    line-height: 48px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-serif);
    order: -2;
  }
  .p-top-service__content-item-title::after {
    content: "";
    grid-column: 1;
    background: linear-gradient(to bottom, transparent 0, transparent calc(50% - 0.5px), var(--color-border) calc(50% - 0.5px), var(--color-border) calc(50% + 0.5px), transparent calc(50% + 0.5px), transparent 100%);
    width: 48px;
    height: 24px;
    order: -1;
  }

  .p-top-service__content-item-text-body {
    font-size: 14px;
  }

  .p-top-service__content-item-image {
    width: 100%;
    order: 1;
  }

  .p-top-service--gather .p-top-service__header,
  .p-top-service--expand .p-top-service__header {
    flex-direction: column;
  }

  .p-top-service--gather .p-top-service__header-image img,
  .p-top-service--expand .p-top-service__header-image img {
    left: auto;
  }

  /* TOP Page - Recruit */
  .p-top-recruit__title {
    margin-bottom: 32px;
  }

  .p-top-recruit__content-item-text {
    font-size: 14px;
    gap: 1.5em;
    margin-bottom: 40px;
  }

  .p-top-recruit__content-item-feature {
    margin-bottom: 40px;
  }

  .p-top-recruit__content-item-feature-list {
    flex-direction: column;
    height: auto;
    gap: 0 16px;
    padding: 24px 0;
    flex-wrap: wrap;
  }

  .p-top-recruit__content-item-feature-item {
    width: 45vw;
    height: 45vw;
  }

  .p-top-recruit__content-item-feature-item::before {
    border-radius: 12px;
  }

  .p-top-recruit__content-item-button a {
    width: 100%;
    max-width: 100%;
    height: 64px;
    padding: 12px 48px;
    font-size: 16px;
  }

  .p-top-recruit__content-item-button a::after {
    right: 24px;
  }

  /* TOP Page - Company */
  .p-top-company__title {
    gap: 24px;
    font-size: 18px;
    margin-bottom: 56px;
  }
  .p-top-company__title img {
    width: 40%;
  }

  .p-top-company__content {
    width: 100%;
  }

  .p-top-company__content-item {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
  }

  .p-top-company__content-item-title,
  .p-top-company__content-item-body {
    padding: 16px 0;
  }

  .p-top-company__content-item-body {
    padding-left: 0;
    padding-top: 0;
    border-top: none;
  }
  
  .p-top-company__content-item-tel-note {
    display: inline;
    text-align: center;
    text-decoration: underline;
  }
  .p-top-company__content-item-tel-note::before {
    display: none;
  }

  .p-top-company__content-item-tel-list {
    width: 100%;
  }

  .p-top-company__content-item-tel-list-item {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .p-top-company__content-item-tel-list-item-body + .p-top-company__content-item-tel-list-item-title {
    padding-top: 24px;
  }

  .p-top-company__content-item-tel-list-item-body {
    display: block;
    padding-top: 0;
  }
  .p-top-company__content-item-tel-list-item-body::before {
    display: none;
  }
  .p-top-company__content-item-tel-list-item-body a {
    pointer-events: auto;
  }

  .p-top-company__content-item-service-list-item-title {
    font-size: 14px;
  }

  .p-top-company__content-item-service-list-item-body {
    font-size: 12px;
    margin: 0 0 0 1.5em;
  }

  .p-top-company__content-map iframe {
    height: 300px;
  }

  /* TOP Page - Contact */
  .p-top-contact {
    padding: var(--spacing-section) 0;
  }

  .p-top-contact__content-item {
    flex-direction: column;
    gap: 24px;
  }

  .p-top-contact__content-item-button {
    width: 100%;
    height: auto;
  }

  .p-top-contact__content-item-button a {
    font-size: var(--font-size-lg);
    padding: 24px 32px 24px 16px;
  }

  .p-top-contact__content-item-button a::after {
    right: 24px;
  }

  /* Main (sub page) */
  .p-main {
    padding: var(--spacing-section) 0;
  }

  /* Intro Section */
  .p-intro__text {
    font-size: 14px;
  }

  /* Jobs Section */
  .p-jobs {
    gap: var(--spacing-content);
  }

  .p-jobs__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .p-jobs__title {
    font-size: 20px;
  }

  .p-jobs__title-line {
    display: none;
  }

  .p-jobs__list {
    justify-content: center;
  }

  .c-job-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Job Card Component */
  .c-job-card__image {
    height: 180px;
  }

  .c-job-card__body {
    padding: 16px 12px 12px;
    gap: 12px;
  }

  .c-job-card__tag {
    padding: 3px 12px;
    font-size: 11px;
  }

  .c-job-card__title {
    font-size: 14px;
    padding-bottom: 12px;
  }

  .c-job-card__link-text {
    font-size: 12px;
  }

  /* Pagination */
  .p-jobs__pagination {
    gap: 6px;
  }

  .p-jobs__pagination-item {
    width: 36px;
    height: 40px;
    font-size: 16px;
  }

  /* Contact Form */
  .c-form {
    gap: 32px;
  }

  .c-form__group {
    flex-direction: column;
    gap: 16px;
  }

  .c-form__label-wrapper {
    width: 100%;
    align-items: center;
  }

  .c-form__group--wide .c-form__label-wrapper {
    align-items: center;
  }

  .c-form__label {
    font-size: 16px;
  }

  .c-form__label-email-confirm {
    font-size: 13px;
  }

  .c-form__required {
    padding: 2px 12px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .c-form__radio-group, .wpcf7-radio {
    gap: 32px 40px;
    flex-wrap: wrap;
  }

  .c-form__radio-group label {
    gap: 12px;
  }

  .c-form__radio-group input[type="radio"] {
    width: 24px;
    height: 24px;
  }

  .c-form__radio-text, .wpcf7-list-item-label {
    font-size: 16px;
  }

  .c-form__input,
  .c-form__textarea {
    font-size: 14px;
  }

  .c-form__textarea {
    min-height: 120px;
  }

  .c-form__notice {
    margin-top: -12px;
  }

  .c-form__notice p {
    font-size: 12px;
  }

  .c-form__button {
    width: 100%;
    max-width: 100%;
    height: 64px;
    padding: 12px 48px;
    font-size: 18px;
  }

  .c-form__button svg {
    right: 24px;
  }

  /* Privacy Policy */
  .p-privacy {
    max-width: 100%;
  }

  .p-privacy__intro {
    margin-bottom: 32px;
  }

  .p-privacy__intro p {
    font-size: var(--font-size-body);
  }

  .p-privacy__content {
    gap: 32px;
  }

  .p-privacy__section {
    gap: 12px;
  }

  .p-privacy__heading {
    font-size: var(--font-size-h3);
  }

  .p-privacy__text {
    font-size: var(--font-size-body);
  }
}
