@charset "UTF-8";
/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #eef7ff;
  background-image: radial-gradient(#d1e9ff 1px, transparent 1px);
  background-size: 40px 40px;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Layout --- */
.lp-container {
  max-width: 640px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 0 100px rgba(0, 92, 175, 0.1);
  position: relative;
  z-index: 10;
}

/* PCサイド装飾 */
.side-decoration {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-weight: 900;
  color: #005caf;
  opacity: 0.1;
  font-size: 3.5rem;
  letter-spacing: 0.4em;
  pointer-events: none;
  white-space: nowrap;
  text-transform: uppercase;
  font-style: italic;
}

@media (min-width: 1100px) {
  .side-decoration {
    display: block;
  }
}
.side-left {
  left: calc(50% - 520px);
}

.side-right {
  right: calc(50% - 520px);
}

.floating-icon {
  display: none;
  position: fixed;
  color: #005caf;
  opacity: 0.05;
  font-size: 5rem;
  pointer-events: none;
}

@media (min-width: 1100px) {
  .floating-icon {
    display: block;
  }
}
/* --- Utilities --- */
.text-one-blue {
  color: #005caf;
}

.bg-one-blue {
  background-color: #005caf;
}

.bg-one-light {
  background-color: #f4faff;
}

.text-one-orange {
  color: #ff7a00;
}

.bg-one-orange {
  background: linear-gradient(180deg, #ff9d00 0%, #ff7a00 100%);
}

.text-yellow-highlight {
  color: #fff000;
}

.font-black {
  font-weight: 900;
}

.italic {
  font-style: italic;
}

.section-padding {
  padding: 40px 32px;
}

.title-under {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom: 2px solid #005caf;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-one {
  font-family: "Arial Black", sans-serif;
  letter-spacing: -2px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #005caf;
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  font-weight: bold;
  color: #9ca3af;
  margin-bottom: 4px;
  display: block;
}

.btn-header {
  background: #005caf;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* --- FV --- */
.fv {
  position: relative;
  background: #005caf;
  padding: 48px 24px 144px;
  overflow: hidden;
  text-align: center;
}

.fv-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  display: flex;
}

.fv-img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 92, 175, 0.8), rgba(0, 92, 175, 0.6), #005caf);
}

.fv-content {
  position: relative;
  z-index: 10;
}

.fv-tag {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 6px 20px;
  margin-bottom: 32px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.fv-h1 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 40px;
  font-style: italic;
}

.fv-h1-sub {
  font-size: 1.1rem;
  display: block;
  opacity: 0.8;
  margin-bottom: 8px;
}

.fv-p {
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 48px;
}

.fv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 56px;
  color: #fff;
  font-weight: 900;
  font-style: italic;
}

.fv-grid-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.4rem;
}

.btn-main {
  display: inline-block;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, #ff9d00 0%, #ff7a00 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  padding: 24px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 10px 0 #cc6200;
  transition: all 0.2s;
  font-style: italic;
}

.btn-main:active {
  transform: translateY(4px);
  box-shadow: 0 6px 0 #cc6200;
}

/* --- Sections --- */
.wave-top {
  position: relative;
  background: #fff;
}

.wave-top::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 41px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V95.8C51.17,117.29,118.5,123.79,183.1,114.37,247.7,105,263.39,67.24,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: cover;
}

.card {
  background: #f4faff;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid #e0f2fe;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.box-dashed {
  padding: 24px;
  background: #f9fafb;
  border-radius: 32px;
  border: 2px dashed #d1d5db;
  text-align: center;
}

.education-box {
  background: #005caf;
  border-radius: 40px;
  padding: 40px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.edu-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  text-align: left;
}

.stance-icon {
  width: 52px;
  height: 52px;
  background: #005caf;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 92, 175, 0.3);
  font-weight: 900;
  flex-shrink: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f9ff;
}

.comparison-table th,
.comparison-table td {
  padding: 14px;
  border-bottom: 1px solid #f3f4f6;
  text-align: center;
}

.comparison-table th {
  background: #f9fafb;
  font-size: 10px;
  color: #9ca3af;
}

.comparison-table .highlight-cell {
  background: #f4faff;
  color: #005caf;
  font-weight: 900;
  font-style: italic;
}

.check-mark::before {
  content: "◎";
  color: #ff7a00;
  font-weight: 900;
  margin-right: 4px;
}

.triangle-mark::before {
  content: "△";
  color: #bbb;
  font-weight: 900;
  margin-right: 4px;
}

.stats-area {
  background: #111827;
  color: #fff;
  padding: 32px 40px;
  border-radius: 64px 64px 0 0;
  text-align: center;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-style: italic;
  line-height: 1;
}

.voice-card {
  background: #fff;
  padding: 32px;
  border-radius: 40px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 32px;
}

.staff-area .flex {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.voice-img {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid rgba(0, 92, 175, 0.2);
}

.voice-bubble {
  background: #f4faff;
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0;
  font-weight: bold;
  font-style: italic;
  color: #374151;
  font-size: 14px;
  line-height: 1.8;
}

.job-card {
  border: 2px solid rgba(0, 92, 175, 0.1);
  padding: 24px;
  border-radius: 32px;
  margin-bottom: 24px;
}

.job-tag {
  background: #005caf;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.flow-step-container {
  position: relative;
  display: grid;
  gap: 24px;
}

.flow-line {
  position: absolute;
  left: 27px;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(0, 92, 175, 0.1);
  z-index: -1;
}

.flow-step-circle {
  width: 56px;
  height: 56px;
  background: #005caf;
  color: #fff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.faq-details {
  background: #f9fafb;
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 12px;
  border: 1px solid #f3f4f6;
}

.faq-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  font-style: italic;
}

.company-info {
  background: #f4faff;
  padding: 64px 32px;
  border-radius: 0 0 64px 64px;
}

.info-table {
  background: #fff;
  padding: 32px;
  border-radius: 32px;
}

.info-row {
  border-bottom: 1px solid #f3f4f6;
  padding: 16px 0;
}

.info-dt {
  font-size: 10px;
  font-weight: 900;
  color: #005caf;
  margin-bottom: 4px;
}

.info-dd {
  font-weight: 900;
  font-size: 14px;
  font-style: italic;
}

.closing {
  background: #005caf;
  color: #fff;
  padding: 128px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-text {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 2.4;
  margin-bottom: 80px;
  font-style: italic;
  position: relative;
  z-index: 10;
}

.form-area {
  padding: 128px 32px;
  background: #fff;
}

.form-input {
  width: 100%;
  padding: 24px;
  background: #f9fafb;
  border: none;
  border-bottom: 4px solid #f3f4f6;
  border-radius: 16px;
  font-size: 18px;
  font-weight: bold;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus {
  border-color: #005caf;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 600px;
  z-index: 100;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #005caf;
  color: #fff;
  padding: 20px 32px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0, 92, 175, 0.4);
  font-weight: 900;
}

/* Material Symbols Fill Adjustment */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

/* Fade-in Logic */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

a.btn-header:visited,
.btn-main:visited {
  color: #fff;
}

.text-center {
  text-align: center;
}

.sympathy p,
.hatataki p {
  font-size: 1.3rem;
}

.material-symbols-outlined {
  font-size: 2rem;
}

.stance .flex {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.stance .flex h3 {
  font-size: 1.4rem;
}
.stance p {
  padding: 1rem;
}

.job_tag_box {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.job_tag_box span::before {
  content: "#";
}

.tanka small {
  font-size: 18px;
}

.flow-step-container .flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

p.awanai span {
  display: block;
  line-height: 1.5;
}

@media screen and (min-width: 270px) and (max-width: 820px) {
  .fv-grid-item {
    font-size: 17px;
  }
  .c-bt {
    flex-direction: column;
    gap: 2rem;
  }
  .c-bt span.text-one-blue {
    width: 100% !important;
  }
}
button,
input[type=button],
input[type=reset],
input[type=submit] {
  width: 320px;
  margin: 0 auto;
}

.pagetop {
  display: none !important;
}

.line {
  margin-top: 1rem;
}
.line a {
  display: block;
  background: #01b902;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 19px;
}

.logo-one {
  display: flex;
  gap: 10px;
  align-items: center;
}
.logo-one img {
  width: 100px;
}/*# sourceMappingURL=lp-kojin.css.map */