@charset "UTF-8";

/* ==================================================
  Variables
================================================== */
:root {
  --color-primary: #e60012;
  --color-text: #111111;
  --color-white: #ffffff;
  --color-border: #e5e7eb;
  --content-width: 1200px;
}

/* ==================================================
  Base
================================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "LINE Seed JP", sans-serif;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  font-size: 16px;
}

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

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

/* ==================================================
  Layout
================================================== */
.l-inner {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* ==================================================
   Utility
================================================== */
.u-text-accent {
  color: var(--color-primary);
}

@media screen and (min-width: 769px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none !important;
  }
}

/* ==================================================
   Component
================================================== */
.c-button-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 99px;
  padding: 16px 32px;
  transition: background-color 0.3s ease;
}
.c-button-red:hover {
  background-color: #f21b30;
}

.c-button-red--sm {
  padding: 10px 24px;
  font-size: 14px;
}

.c-button-red__icon {
  width: 18px;
  height: auto;
  flex-shrink: 0;
}

/* section title */
.c-section-title {
  text-align: center;
  color: var(--color-text);
  margin-bottom: 32px;
}
.c-section-title__text {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
}
.c-section-title__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.c-section-title__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.c-section-title__dot--white {
  background-color: var(--color-white);
}
.c-section-title__dot--black {
  background-color: var(--color-text);
}
.c-section-title__dot--red {
  background-color: var(--color-primary);
}

.c-section-title__lead {
  font-size: 16px;
  line-height: 1.6;
}

.c-section-title--white {
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .c-section-title {
    margin-bottom: 32px;
  }
  .c-section-title__text {
    font-size: 24px;
  }
  .c-section-title__lead {
    font-size: 14px;
  }
}

/* ==================================================
   Sections
================================================== */

/* --------------------------------------------------
  Header
-------------------------------------------------- */
/* --- PC --- */
.p-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
}
.p-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.p-header__logo {
  line-height: 1;
}

.p-header__logo a {
  display: inline-block;
}

.p-header__logo img {
  width: 220px;
  height: auto;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .p-header__content {
    justify-content: center;
    align-items: center;
    height: 60px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .p-header__logo {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-header__logo a {
    display: flex;
    align-items: center;
  }
  .p-header__logo img {
    width: 180px;
  }
}

/* --------------------------------------------------
  Main Visual
-------------------------------------------------- */
/* --- PC --- */
.p-hero {
  position: relative;
  overflow: hidden;
}
.p-hero__content {
  display: flex;
  align-items: flex-end;
  padding-top: 40px;
  padding-bottom: 64px;
}

.p-hero__text-area {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 40px;
  align-self: center;
}

.p-hero__ill-area {
  flex: 0 0 50%;
  max-width: 50%;
}
.p-hero__ill-area img {
  display: block;
  width: 100%;
  height: auto;
}

.p-hero__main-copy {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
}
.p-hero__sub-copy {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.p-hero__points {
  display: flex;
  width: 100%;
  max-width: 460px;
  gap: 12px;
  margin-bottom: 32px;
  list-style: none;
}
.p-hero__point {
  flex: 1;
  background-color: var(--color-border);
  border-radius: 6px;
  padding: 12px 8px;
  text-align: center;
}
.p-hero__point-label {
  display: block;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 8px;
}
.p-hero__point-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

/* --- Responsive --- */
@media screen and (max-width: 1024px) {
  .p-hero__content {
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .p-hero__text-area {
    flex: 0 0 58%;
    max-width: 58%;
    padding-right: 24px;
  }

  .p-hero__ill-area {
    flex: 0 0 42%;
    max-width: 42%;
  }

  .p-hero__main-copy {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .p-hero__sub-copy {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .p-hero__points {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }
  .p-hero__point {
    width: calc(50% - 5px);
    flex: none;
    padding: 10px 4px;
  }
  .p-hero__point:last-child {
    width: calc(50% - 5px);
  }

  .p-hero__point-label {
    font-size: 11px;
  }
  .p-hero__point-value {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .p-hero__content {
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-hero__text-area {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    text-align: left;
  }
  .p-hero__ill-area {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 32px;
  }
  .p-hero__ill-area img {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }

  .p-hero__main-copy {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .p-hero__points {
    justify-content: center;
  }
  .p-hero__point {
    width: calc(50% - 5px);
  }
  .p-hero__point:last-child {
    width: calc(50% - 5px);
  }

  .p-hero__cta {
    text-align: center;
  }
  .p-hero__cta .c-button-red {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: 14px;
  }
}

/* --------------------------------------------------
  Features
-------------------------------------------------- */
/* --- PC --- */
.p-features {
  background-color: var(--color-primary);
  padding-top: 96px;
  padding-bottom: 64px;
}

.p-features__list {
  display: flex;
  gap: 20px;
  list-style: none;
}

.p-features__item {
  flex: 1;
  display: flex;
}

.p-features__card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.p-features__card-img {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.p-features__card-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.p-features__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.p-features__card-text {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* --- Responsive --- */
@media screen and (max-width: 1024px) {
  .p-features__list {
    flex-wrap: wrap;
    gap: 16px;
  }
  .p-features__item {
    flex: 0 0 calc(50% - 8px);
  }

  .p-features__card {
    padding: 24px;
  }
}

@media screen and (max-width: 768px) {
  .p-features {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .p-features__item {
    flex: 0 0 100%;
  }

  .p-features__card {
    align-items: flex-start;
    text-align: left;
    flex-direction: column-reverse;
  }

  .p-features__card-img {
    margin-bottom: 0;
    margin-top: 20px;
    height: auto;
  }

  .p-features__card-img img {
    max-width: 240px;
  }

  .p-features__card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

/* --------------------------------------------------
  Workplace
-------------------------------------------------- */
/* --- PC --- */
.p-workplace {
  background-color: var(--color-primary);
  padding-bottom: 64px;
}

.p-workplace__container {
  background-color: var(--color-white);
  border-radius: 32px;
  padding: 64px 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-workplace__sub-section {
  margin-bottom: 48px;
}

.p-workplace__sub-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.p-workplace__sub-title-icon {
  width: 32px;
  height: auto;
}

.p-workplace__company-intro {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.p-workplace__company-img {
  flex: 1;
  /* flex: 0 0 400px; */
}
.p-workplace__company-img img {
  width: 100%;
  border-radius: 8px;
}
.p-workplace__company-body {
  flex: 1;
}
.p-workplace__company-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.p-workplace__company-text {
  font-size: 15px;
  line-height: 1.7;
}

.p-workplace__overview {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.p-workplace__table-wrapper {
  flex: 1;
  min-width: 0;
}

.p-workplace__logo {
  flex: 0 0 300px;
  width: 300px;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-workplace__logo img {
  max-width: 300px;
  padding: 0 40px;
  height: auto;
}

.p-workplace__badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.p-workplace__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}
.p-workplace__table tr {
  border-bottom: 1px solid var(--color-border);
}
.p-workplace__table th,
.p-workplace__table td {
  padding: 8px 0;
  vertical-align: middle;
}

.p-workplace__table th:nth-child(1) {
  width: 15%;
  text-align: left;
  font-weight: 700;
}

.p-workplace__table td:nth-child(2) {
  width: 35%;
  text-align: right;
  padding-right: 40px;
}

.p-workplace__table th:nth-child(3) {
  width: 15%;
  text-align: left;
  font-weight: 700;
}

.p-workplace__table td:nth-child(4) {
  width: 35%;
  text-align: right;
}

.p-workplace__table-note {
  font-size: 11px;
}

.p-workplace__table-desc {
  text-align: right !important;
  white-space: nowrap;
  padding-right: 0 !important;
}

.p-workplace__sub-section--gray {
  background-color: var(--color-border);
  border-radius: 16px;
  padding: 32px;
}
.p-workplace__factories {
  display: flex;
  gap: 40px;
  position: relative;
}
.p-workplace__factory-card {
  flex: 1;
}
.p-workplace__factory-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}
.p-workplace__factory-icon {
  width: 32px;
  height: auto;
}
.p-workplace__factory-text {
  font-size: 14px;
  line-height: 1.7;
}

.p-workplace__facilities {
  display: flex;
  gap: 48px;
}
.p-workplace__facility-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-workplace__facility-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.p-workplace__facility-img img {
  width: 100%;
  border-radius: 8px;
}

.p-workplace__cta {
  text-align: center;
  margin-top: 64px;
}

/* --- Responsive --- */
@media screen and (min-width: 1025px) {
  .p-workplace__factories::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: var(--color-white);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1024px) {
  .p-workplace__container {
    padding: 40px 24px;
  }

  .p-workplace__company-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .p-workplace__company-img {
    flex: 0 0 auto;
    width: 100%;
  }
  .p-workplace__company-img img {
    max-width: 400px;
  }
  .p-workplace__overview {
    flex-direction: column;
    align-items: center;
  }
  .p-workplace__logo {
    flex: 0 0 140px;
  }
  .p-workplace__factories,
  .p-workplace__facilities {
    flex-direction: column;
    gap: 40px;
  }

  .p-workplace__factories::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    width: auto;
    background-color: var(--color-white);
    transform: translateY(-50%);
  }

  .p-workplace__facility-img img {
    max-width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .p-workplace {
    padding-bottom: 56px;
  }
  .p-workplace__container {
    border-radius: 20px;
  }
  .p-workplace__sub-section {
    margin-bottom: 40px;
  }
  .p-workplace__sub-title {
    font-size: 18px;
  }

  .p-workplace__table-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .p-workplace__logo {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }

  .p-workplace__table,
  .p-workplace__table tbody,
  .p-workplace__table tr,
  .p-workplace__table th,
  .p-workplace__table td {
    display: block;
    width: 100% !important;
  }

  .p-workplace__table tr {
    border-bottom: none;
  }

  .p-workplace__table th {
    padding: 8px 0 4px !important;
    border-bottom: none;
  }

  .p-workplace__table td {
    padding: 0 0 8px !important;
    border-bottom: 1px solid var(--color-border);
    text-align: left !important;
  }

  .p-workplace__table tr:last-child td {
    border-bottom: none;
  }

  .p-workplace__table-desc {
    white-space: normal !important;
  }

  .p-workplace__sub-section--gray {
    padding: 24px;
  }

  .p-workplace__company-img,
  .p-workplace__facility-img {
    text-align: center;
  }

  .p-workplace__cta {
    margin-top: 40px;
  }
  .p-workplace__cta .c-button-red {
    width: 100%;
    font-size: 14px;
  }
}

/* --------------------------------------------------
  Recruit
-------------------------------------------------- */
/* --- PC --- */
.p-recruit {
  background-color: var(--color-primary);
  padding-bottom: 64px;
}

.p-recruit__container {
  background-color: var(--color-white);
  border-radius: 32px;
  padding: 64px 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-recruit__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 64px;
  border-top: 1px solid var(--color-border);
}
.p-recruit__table tr {
  border-bottom: 1px solid var(--color-border);
}
.p-recruit__table th,
.p-recruit__table td {
  padding: 32px 16px;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.8;
}
.p-recruit__table th {
  width: 22%;
  font-weight: 700;
  text-align: left;
}

.p-recruit__table-indent {
  display: inline-block;
  margin-left: 3.6em;
}

.p-recruit__section {
  margin-bottom: 64px;
}
.p-recruit__sub-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.p-recruit__sub-title-icon {
  width: 32px;
  height: auto;
}
.p-recruit__intro {
  font-size: 14px;
  margin-bottom: 24px;
}

.p-recruit__job-cards {
  display: flex;
  gap: 32px;
}
.p-recruit__job-card {
  flex: 1;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.p-recruit__job-card-title {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.p-recruit__job-card-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}
.p-recruit__job-card-img {
  text-align: center;
}
.p-recruit__job-card-img img {
  width: 100%;
  height: auto;
}

.p-recruit__features {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}
.p-recruit__feature-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-recruit__feature-img {
  margin-bottom: 24px;
  text-align: center;
}
.p-recruit__feature-img img {
  width: 100%;
  height: auto;
}
.p-recruit__feature-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.p-recruit__certs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-recruit__cert-card {
  background-color: var(--color-border);
  border-radius: 16px;
  padding: 24px;
}
.p-recruit__cert-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.p-recruit__cert-text {
  font-size: 14px;
  line-height: 1.7;
}

.p-recruit__cta {
  text-align: center;
  margin-top: 64px;
}

/* --- Responsive --- */
@media screen and (max-width: 1024px) {
  .p-recruit__container {
    padding: 40px 24px;
  }
  .p-recruit__job-cards {
    flex-direction: column;
    gap: 24px;
  }
  .p-recruit__job-card-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .p-recruit__features {
    flex-direction: column;
    gap: 40px;
  }
  .p-recruit__feature-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-recruit {
    padding-bottom: 56px;
  }
  .p-recruit__container {
    border-radius: 20px;
  }

  .p-recruit__table {
    margin-bottom: 40px;
  }
  .p-recruit__table th,
  .p-recruit__table td {
    display: block;
    width: 100%;
    padding: 16px 8px;
  }
  .p-recruit__table th {
    padding-bottom: 4px;
    border-bottom: none;
  }
  .p-recruit__table td {
    padding-top: 0;
  }

  .p-recruit__section {
    margin-bottom: 40px;
  }
  .p-recruit__sub-title {
    font-size: 18px;
  }
  .p-recruit__job-card {
    padding: 24px;
  }

  .p-recruit__features {
    margin-bottom: 40px;
  }
  .p-recruit__feature-text {
    margin-bottom: 24px;
  }
  .p-recruit__feature-text.pb-no {
    margin-bottom: 0;
  }

  .p-recruit__cert-card {
    padding: 16px;
  }
  .p-recruit__cta {
    margin-top: 40px;
  }
  .p-recruit__cta .c-button-red {
    width: 100%;
    font-size: 14px;
  }
}

/* --------------------------------------------------
  Interview
-------------------------------------------------- */
/* --- PC --- */
.p-interview {
  background-color: var(--color-primary);
  padding-bottom: 64px;
}

.p-interview__container {
  background-color: var(--color-white);
  border-radius: 32px;
  padding: 64px 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-interview__list {
  display: flex;
  gap: 48px;
  margin-bottom: 56px;
}

.p-interview__item {
  flex: 1;
}

.p-interview__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.p-interview__img {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-interview__img img {
  width: 100%;
  height: auto;
}

.p-interview__info {
  flex: 1;
}

.p-interview__catch {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.p-interview__name {
  font-size: 13px;
}

.p-interview__text {
  font-size: 14px;
  line-height: 1.8;
}

.p-interview__cta {
  text-align: center;
  margin-top: 64px;
}

/* --- Responsive --- */
@media screen and (max-width: 1024px) {
  .p-interview__container {
    padding: 40px 24px;
  }
  .p-interview__list {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-interview {
    padding-bottom: 56px;
  }
  .p-interview__container {
    border-radius: 20px;
  }

  .p-interview__header {
    gap: 16px;
    margin-bottom: 16px;
  }

  .p-interview__img {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }

  .p-interview__catch {
    font-size: 16px;
  }

  .p-interview__cta {
    margin-top: 40px;
  }
  .p-interview__cta .c-button-red {
    width: 100%;
    font-size: 14px;
  }
}

/* --------------------------------------------------
  Company
-------------------------------------------------- */
/* --- PC --- */
.p-company {
  background-color: var(--color-primary);
  padding-bottom: 80px;
}

.p-company__container {
  background-color: var(--color-white);
  border-radius: 32px;
  padding: 64px 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-company__lead {
  font-size: 14px;
  margin-bottom: 32px;
  text-align: left;
}

.p-company__content {
  display: flex;
  gap: 48px;
}

.p-company__info {
  flex: 1;
}

.p-company__logo {
  margin-bottom: 24px;
}
.p-company__logo img {
  width: 240px;
  height: auto;
}

.p-company__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 14px;
  border-top: 1px solid var(--color-border);
}
.p-company__table tr {
  border-bottom: 1px solid var(--color-border);
}
.p-company__table th,
.p-company__table td {
  padding: 8px;
  vertical-align: top;
  line-height: 1.6;
}
.p-company__table th {
  width: 25%;
  font-weight: 700;
  text-align: left;
}

.p-company__desc {
  font-size: 14px;
  line-height: 1.7;
}

.p-company__image-frame {
  flex: 1;
  width: 100%;
}
.p-company__image-frame img {
  width: 100%;
  height: auto;
}

/* --- Responsive --- */
@media screen and (max-width: 1024px) {
  .p-company__container {
    padding: 40px 24px;
  }
  .p-company__content {
    flex-direction: column;
    gap: 40px;
  }
  .p-company__image-frame {
    text-align: center;
  }
  .p-company__image-frame img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-company {
    padding-bottom: 56px;
  }
  .p-company__container {
    border-radius: 20px;
  }
  .p-company__lead {
    margin-bottom: 24px;
  }

  .p-company__table tr {
    border-bottom: none;
  }
  .p-company__table th,
  .p-company__table td {
    display: block;
    width: 100%;
    padding: 12px 0;
  }
  .p-company__table th {
    padding-bottom: 4px;
  }
  .p-company__table td {
    padding-top: 0;
    border-bottom: 1px solid var(--color-border);
  }
}

/* --------------------------------------------------
  CTA
-------------------------------------------------- */
/* --- PC --- */
.p-bottom-cta {
  padding: 56px 0;
}

.p-bottom-cta__container {
  background-color: var(--color-primary);
  border-radius: 20px;
  padding: 64px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.p-bottom-cta__text {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
}

.p-bottom-cta__br {
  display: none;
}

.p-bottom-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 56px;
  border-radius: 99px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.p-bottom-cta__button:hover {
  opacity: 0.8;
}

.p-bottom-cta__button-icon {
  width: 20px;
  height: auto;
}

/* --- Responsive --- */
@media screen and (max-width: 1024px) {
  .p-bottom-cta {
    padding-bottom: 56px;
  }
}

@media screen and (max-width: 768px) {
  .p-bottom-cta {
    padding: 40px 0;
  }
  .p-bottom-cta__container {
    padding: 48px 24px;
  }

  .p-bottom-cta__text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .p-bottom-cta__br {
    display: block;
  }

  .p-bottom-cta__button {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
  }
}

/* --------------------------------------------------
  Footer
-------------------------------------------------- */
/* --- PC --- */
.l-footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-white);
  padding: 40px 16px;
  text-align: center;
}

.l-footer__logo {
  margin-bottom: 16px;
}

.l-footer__logo img {
  width: 240px;
  height: auto;
}

.l-footer__copyright {
  font-size: 13px;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 32px 16px;
  }

  .l-footer__logo img {
    width: 200px;
  }

  .l-footer__copyright {
    font-size: 11px;
  }
}

/* --------------------------------------------------
  Fixed CTA
-------------------------------------------------- */
.p-fixed-cta {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-fixed-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 16px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    font-size: 15px;
  }

  .p-fixed-cta.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .p-fixed-cta__inner .c-button-red {
    width: 100%;
    margin: 0;
  }
}
