/* =========================================================
   Edge Talent Works - トップページ セクション
========================================================= */

/*------------------------------------------
  ヒーローセクション
---------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-circle1 {
  position: absolute;
  top: 25%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(131, 197, 190, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg-circle2 {
  position: absolute;
  bottom: 25%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(0, 109, 119, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 var(--space-m);
}

.hero-catch {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--teal-700);
  margin-bottom: var(--space-m);
}

.hero-title {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: var(--space-m);
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.2em;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  opacity: 0.8;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 2px solid var(--teal-800);
  padding: 12px 40px;
  color: var(--teal-800);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.2em;
  transition: color 0.3s;
}

.hero-btn:hover {
  color: var(--color-white);
}

.hero-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--teal-800);
  transition: width 0.3s;
  z-index: -1;
}

.hero-btn:hover::before {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  animation: bounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 64px;
  background: var(--teal-800);
  margin: 0 auto;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* br.pc-only: PCで改行 */
.br-pc {
  display: none;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 140px;
  }

  .hero-bg-circle1 {
    width: 600px;
    height: 600px;
  }

  .hero-bg-circle2 {
    width: 500px;
    height: 500px;
  }

  .hero-catch {
    font-size: 14px;
  }

  .hero-title {
    font-size: 60px;
    margin-bottom: var(--space-m);
  }

  .hero-sub {
    font-size: 20px;
    margin-bottom: 48px;
  }

  .hero-btn {
    padding: 16px 48px;
    font-size: 16px;
  }

  .br-pc {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 70px;
  }
}

/*------------------------------------------
  ミッションセクション
---------------------------------------------*/
.mission {
  padding: 80px 0;
  background-color: var(--color-white);
}

.mission-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 var(--space-m);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mission-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-m);
}

.mission-label {
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--main-teal);
  font-weight: 700;
  opacity: 0.3;
  padding-top: var(--space-sm);
}

.mission-title {
  font-size: 28px;
  line-height: 1.5;
}

.mission-body p:first-child {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--space-m);
}

.mission-divider {
  width: 80px;
  height: 1px;
  background: var(--teal-600);
  margin-bottom: var(--space-m);
}

.mission-body p:last-child {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 2;
}

@media (min-width: 768px) {
  .mission {
    padding: 128px 0;
  }

  .mission-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .mission-header {
    width: 33.333%;
    flex-direction: row;
  }

  .mission-body {
    width: 66.666%;
  }

  .mission-title {
    font-size: 48px;
  }

  .mission-body p:first-child {
    font-size: 24px;
  }

  .mission-body p:last-child {
    font-size: 18px;
  }
}

/*------------------------------------------
  Adjuster Role セクション
---------------------------------------------*/
.adjuster {
  padding: 80px 0;
  background: rgba(237, 246, 249, 0.5);
}

.adjuster-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 var(--space-m);
}

.adjuster-header {
  text-align: center;
  margin-bottom: 64px;
}

.adjuster-header h2 {
  font-size: 24px;
  margin-bottom: var(--space-sm);
}

.adjuster-header p {
  font-size: 14px;
  color: var(--color-gray);
  letter-spacing: 0.2em;
}

.adjuster-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.adjuster-diagram {
  position: relative;
  width: 256px;
  height: 256px;
  flex-shrink: 0;
}

.adjuster-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 109, 119, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: multiply;
}

.adjuster-circle span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.adjuster-circle.circle-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: rgba(0, 109, 119, 0.2);
}

.adjuster-circle.circle-2 {
  bottom: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background: rgba(131, 197, 190, 0.3);
}

.adjuster-circle.circle-3 {
  bottom: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: var(--accent-gray);
}

.adjuster-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.adjuster-center span {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal-800);
}

.adjuster-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.adjuster-item {
  border-left: 2px solid var(--teal-600);
  padding-left: var(--space-m);
}

.adjuster-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.adjuster-item p {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .adjuster {
    padding: 128px 0;
  }

  .adjuster-header h2 {
    font-size: 48px;
  }

  .adjuster-content {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .adjuster-diagram {
    width: 384px;
    height: 384px;
  }

  .adjuster-circle {
    width: 256px;
    height: 256px;
  }

  .adjuster-circle span {
    font-size: 14px;
  }

  .adjuster-circle.circle-1,
  .adjuster-circle.circle-2,
  .adjuster-circle.circle-3 {
    width: 256px;
    height: 256px;
  }

  .adjuster-center {
    width: 96px;
    height: 96px;
  }

  .adjuster-center span {
    font-size: 12px;
  }

  .adjuster-list {
    margin-left: 80px;
    gap: 48px;
  }

  .adjuster-item h3 {
    font-size: 20px;
  }
}

/*------------------------------------------
  サービスセクション
---------------------------------------------*/
.service {
  padding: 80px 0;
  background-color: var(--color-white);
}

.service-inner {
  max-width: var(--max-width-2xl);
  margin: 0 auto;
  padding: 0 var(--space-m);
}

.service-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  margin-bottom: 64px;
}

.service-header-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--main-teal);
}

.service-header h2 {
  font-size: 28px;
  margin: 0;
}

.service-header-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--teal-100);
  border-top: 1px solid var(--teal-100);
  border-bottom: 1px solid var(--teal-100);
}

.service-item {
  background: var(--color-white);
  padding: 16px;
  transition: background-color 0.5s;
}

.service-item:hover {
  background: var(--bg-light);
}

.service-item-num {
  font-size: 48px;
  font-weight: 300;
  color: var(--main-teal);
  font-family: var(--font-family-serif);
  margin-bottom: 24px;
  display: block;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.service-item p {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-item ul {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-800);
  line-height: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item li {
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .service {
    padding: 128px 0;
  }

  .service-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 96px;
  }

  .service-header h2 {
    font-size: 48px;
  }

  .service-header-desc {
    width: 33%;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-item {
    padding: 80px;
  }

  .service-item h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .service-item p {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

/*------------------------------------------
  会社情報セクション
---------------------------------------------*/
.company {
  padding: 80px 0;
  background: rgba(237, 246, 249, 0.3);
}

.company-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 var(--space-m);
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

.company-photo-wrap {
  position: relative;
}

.company-photo {
  width: 256px;
  height: 320px;
  background: var(--teal-100);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.company-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.company-photo-caption {
  position: absolute;
  bottom: -16px;
  right: -16px;
  padding: 24px 32px;
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--teal-600);
}

.company-photo-caption p:first-child {
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.company-photo-caption p:last-child {
  font-size: 18px;
  font-family: var(--font-family-serif);
  letter-spacing: 0.2em;
}

.company-info h2 {
  font-size: 28px;
  margin-bottom: 32px;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--teal-100);
  display: inline-block;
}

.company-info dl {
  font-size: 14px;
}

.company-info dt {
  font-weight: 700;
  color: var(--teal-700);
  width: 128px;
  flex-shrink: 0;
}

.company-info dd {
  line-height: 1.8;
  margin: 0;
}

.company-info > dl > div {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid var(--teal-100);
}

@media (min-width: 768px) {
  .company {
    padding: 128px 0;
  }

  .company-inner {
    flex-direction: row;
    gap: 80px;
  }

  .company-photo-wrap {
    width: 50%;
  }

  .company-photo {
    width: 256px;
    height: 320px;
  }

  .company-photo-caption {
    bottom: -24px;
    right: 140px;
    padding: 32px;
  }

  .company-photo-caption p:last-child {
    font-size: 20px;
  }

  .company-info {
    width: 50%;
  }

  .company-info h2 {
    font-size: 48px;
  }

  .company-info dt {
    width: 128px;
  }
}

/*------------------------------------------
  お問い合わせCTA
---------------------------------------------*/
.contact-cta {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--main-teal) 0%, var(--sub-mint) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 C 20 0, 50 0, 100 100 Z' fill='white'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

.contact-inner {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 var(--space-m);
  text-align: center;
}

.contact-inner h2 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--color-white);
}

.contact-inner > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-btn {
  display: inline-block;
  background: var(--color-white);
  color: var(--teal-800);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: transform 0.3s;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .contact-cta {
    padding: 128px 0;
  }

  .contact-inner h2 {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .contact-inner > p {
    font-size: 20px;
    margin-bottom: 48px;
  }

  .contact-btn {
    padding: 20px 48px;
    font-size: 16px;
  }
}
