@charset "UTF-8";
/* ============================================================
   株式会社昭光電業社 TOPページ
   Figma: 昭光電業社様_20260709
   - PC: トップ_PC_社屋建設前 (1728px基準)
   - SP: トップ_SP_社屋建設前 (393px基準 / 767px以下)
   ※ リセット/CSS変数/ヘッダー/フッターは common.scss 側
   ============================================================ */
.site-header__brand {
  display: none;
}

/* 追従ヘッダー時のみロゴを表示（通常のKV上では非表示） */
.site-header.is-fixed .site-header__brand {
  display: flex;
}

.section-label {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  line-height: 1.8333;
  color: var(--ink);
}

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

.site-header__logo {
  color: var(--ink);
}

/* インラインSVGロゴを黒に */
.site-header__mark {
  color: var(--ink);
}

/* ============ TOP AREA (bg texture) ============ */
.top-area {
  position: relative;
  overflow: hidden;
  margin-bottom: 13.9375rem;
}

.top-area__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.top-area__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 44.75rem;
  border-bottom: 1px solid var(--ink);
}

.hero__brand {
  position: absolute;
  left: calc(50% - 28.9375rem);
  top: 15.3125rem;
}

.hero__mark {
  position: absolute;
  left: -6.375rem;
  top: 1.0625rem;
}

.hero__title-main {
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 6.25rem;
  letter-spacing: 0.4em;
  line-height: 1;
  white-space: nowrap;
}

.hero__title-sub {
  display: block;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 2.6875rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0.5rem;
  white-space: nowrap;
}

.hero__company {
  margin-top: 1.75rem;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.8em;
  line-height: 1.4286;
  white-space: nowrap;
}

.hero__company span + span {
  margin-left: 1.5rem;
}

.hero__services {
  position: absolute;
  left: calc(50% + 15.625rem);
  top: 20.25rem;
}

.hero__services-lines {
  position: absolute;
  left: 5.8125rem;
  top: 0.75rem;
  width: 7.0625rem;
  height: 5.75rem;
}

.hero__services-list {
  font-family: var(--font-en);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.hero__services-list li + li {
  margin-top: 1.625rem;
}

.hero__services-list li span {
  position: relative;
  display: block;
  width: 12.5rem;
}

.hero__services-list li span::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  background-image: url(../../img/top/kv_arrow.svg);
  background-size: auto;
  background-position: center right;
  background-repeat: no-repeat;
  width: 3rem;
  height: 0.5rem;
}

.hero__services-list li:nth-child(1) span::before {
  width: 7.0625rem;
}

.hero__scroll {
  position: absolute;
  left: calc(50% + 36.5rem);
  bottom: -3.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll-text {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 0.0625rem;
  height: 18.75rem;
  background: var(--ink);
}

/* ============ ABOUT ============ */
.about {
  position: relative;
  padding: 12.0625rem 0 10.875rem;
}

.about::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  background-blend-mode: multiply;
  content: "";
}

.about__inner {
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  position: relative;
}

.about__title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 4.375rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #FFF;
}

.about__mark {
  margin-bottom: 2.25rem;
  filter: brightness(0) invert(1);
}

.about__copy {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.4em;
  line-height: 2.8571;
  color: #FFF;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.95);
}

/* ============ BUSINESS ============ */
.business {
  position: relative;
  margin-bottom: 9.875rem;
}

.business__label {
  max-width: 77.5rem;
  padding: 0 1.25rem;
  margin: 0 auto;
  /* 隣の画像の右端 + gap に合わせて、下の .business__title と左端を揃える。
     padding-left = 画像幅 + 画像の逆マージン + gap 2.5rem + コンテナ左padding 1.25rem
     PC時は 画像幅 + 逆マージン が常に 31.25rem なので 31.25 + 2.5 + 1.25 = 35rem */
  padding-left: 35rem;
}

.business__border {
  border-top: 0.0625rem solid var(--ink);
  margin-top: 0.375rem;
}

.business__item {
  max-width: 77.5rem;
  padding: 0 1.25rem;
  width: 100%;
  position: relative;
  margin: 0 auto 10rem;
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
}

.business__item:first-of-type {
  margin-top: -5.25rem;
}

.business__item--img-right {
  margin-bottom: 16.875rem;
  flex-direction: row-reverse;
}

.business__item:last-of-type {
  margin-bottom: 0;
}

.business__img {
  flex-shrink: 0;
  width: calc(31.25rem + (100vw - 75rem) / 2);
  max-width: calc(31.25rem + (100vw - 75rem) / 2);
  height: 33.5625rem;
  margin-left: calc((100vw - 75rem) / 2 * -1);
}

.business__item--img-right .business__img {
  margin-left: auto;
  margin-right: calc((100vw - 75rem) / 2 * -1);
}

.business__img img {
  width: 100%;
  max-width: 755px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin-inline: auto 0;
}

.business__item--img-right .business__img img {
  margin-inline: 0 auto;
}

.business__text {
  width: 41.625rem;
  min-width: 0;
}

.business__item:first-of-type .business__text {
  padding-top: 5.25rem;
}

.business__item--img-left .business__text {
  left: calc(50% - 4.125rem);
}

.business__item--img-right .business__text {
  left: calc(50% - 37.5rem);
  top: 10.375rem;
}

.business__num {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 6.875rem;
  line-height: 1;
}

.business__title {
  margin-top: 1.875rem;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.business__subtitle {
  margin-top: 1.375rem;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.8em;
  line-height: 1.4286;
}

.business__body {
  margin-top: 3.125rem;
  font-size: 1rem;
  letter-spacing: 0.4em;
  line-height: 2.4615;
}

/* ============ MESSAGE ============ */
.message {
  position: relative;
  min-height: 60.75rem;
  color: var(--white);
  padding: 7.75rem 0 8.75rem;
  overflow: hidden;
}

.message__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.message__inner {
  position: relative;
  max-width: 77.5rem;
  padding: 0 1.25rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
}

.message__photo {
  width: 33.0625rem;
  position: relative;
  z-index: 2;
}

.message__photo img {
  width: 100%;
  max-width: 21.12rem;
  margin-inline: auto 0;
}

.message__label {
  position: relative;
}

.message__content {
  width: 33.1875rem;
  padding: 3.75rem 0 0;
}

.message__label::before {
  content: "";
  position: absolute;
  background-color: var(--white);
  bottom: 0;
  width: 200vw;
  height: 0.0625rem;
  left: calc(-1 * (100vw - 100%) / 2 - (100% + 5rem));
}

.message__text {
  margin-top: 4.5rem;
}

.message__heading {
  font-size: 2.8125rem;
  letter-spacing: 0.5em;
  line-height: 1.3333;
}

.message__para {
  margin-top: 3.5625rem;
  font-size: 1rem;
  letter-spacing: 0.4em;
  line-height: 1.7143;
}

.message__para + .message__para {
  margin-top: 2.5rem;
}

.message__sign {
  margin-top: 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.4em;
  line-height: 1.7143;
  text-align: right;
}

/* ============ RECRUIT ============ */
.recruit {
  padding-bottom: 17.5rem;
  position: relative;
}

.recruit__label {
  max-width: 77.5rem;
  padding: 0 1.25rem;
  margin: 0 auto;
  padding-top: 13.0625rem;
}

.recruit__border {
  border-top: 1px solid var(--ink);
  margin-top: 1.4375rem;
  width: 100vw;
}

.recruit__row {
  max-width: 77.5rem;
  padding: 0 1.25rem;
  margin: 2.3125rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.recruit__heading {
  font-size: 2.8125rem;
  letter-spacing: 0.3em;
  line-height: 1.3333;
}

.recruit__comma {
  letter-spacing: -0.0711em;
}

.recruit__br {
  display: none;
}

.recruit__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23.625rem;
  height: 2.25rem;
  background: var(--ink);
  border-radius: 3px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.3em;
  transition: opacity 0.3s;
}

.recruit__btn:hover {
  opacity: 0.75;
}

.recruit__btn::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../../img/top/recruit_arrow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 2.5rem;
  height: 0.5rem;
}

/* ============ COMPANY ============ */
.company {
  position: relative;
  min-height: 78rem;
  padding: 6.5rem 0 6.25rem;
  background: linear-gradient(128.5deg, #c9c9c9 12.66%, #8d8d8d 97.45%);
  color: var(--white);
}

.company__inner {
  max-width: 77.5rem;
  padding: 0 1.25rem;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.company__head {
  width: calc(100% - 37.4375rem - 2.5rem);
  min-width: 26.25rem;
}

.company__title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 6.25rem;
  letter-spacing: 0.1em;
  line-height: 0.55;
  margin-bottom: 3.75rem;
}

.company__table {
  width: 37.4375rem;
}

.company__row {
  display: flex;
  border-top: 1px solid var(--white);
  padding: 0.9375rem 0 1rem;
}

.company__table > .company__row:last-child {
  border-bottom: 0.0625rem solid var(--white);
}

.company__row dt {
  flex: 0 0 11.25rem;
  line-height: 1.5;
}

.company__row dt .en {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.company__row dt .jp {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
}

.company__row dd {
  flex: 1;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  line-height: 2;
}

.company__map {
  margin-top: 0.75rem;
  width: 100%;
  height: 15.375rem;
  object-fit: cover;
}

.company__tel-sp {
  display: none;
}

/* ============================================================
   SP (〜767px) — トップ_SP_社屋建設前 (393px基準)
   ============================================================ */
@media (max-width: 767px) {
  .top-area {
    margin-bottom: 0;
  }
  /* ---- HERO ---- */
  .hero {
    height: 36.6875rem;
  }
  .hero__brand {
    left: 1.25rem;
    top: 11.1875rem;
  }
  .hero__mark {
    display: none;
  }
  .hero__title-main {
    font-size: 3.75rem;
    letter-spacing: 0.2em;
  }
  .hero__title-sub {
    font-size: 1.3125rem;
    letter-spacing: 0.12em;
    margin-top: 1.25rem;
  }
  .hero__company {
    margin-top: 1.125rem;
    font-size: 0.8125rem;
    letter-spacing: 0.7em;
  }
  .hero__company span + span {
    margin-left: 1.25rem;
  }
  .hero__services {
    left: 1.25rem;
    top: 24rem;
    right: 1.25rem;
  }
  .hero__services-lines {
    display: none;
  }
  .hero__services-list {
    width: 100%;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
  .hero__services-list li {
    position: relative;
  }
  .hero__services-list li + li {
    margin-top: 1rem;
  }
  .hero__scroll {
    display: none;
  }
  /* ---- ABOUT ---- */
  .about {
    padding: 12rem 1.25rem 8.125rem;
  }
  .about__inner {
    flex-direction: column;
    gap: 1.75rem;
    padding: 0;
  }
  .about__head {
    height: auto;
  }
  .about__title {
    position: static;
    transform: none;
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }
  .about__mark {
    position: static;
    transform: none;
    margin: 0 auto;
    width: 5rem;
    height: 4.4375rem;
  }
  .about__copy {
    margin-top: 2rem;
    font-size: 0.875rem;
    letter-spacing: normal;
    line-height: 2.1429;
    text-align: center;
    white-space: nowrap;
  }
  /* ---- BUSINESS ---- */
  .business {
    margin-bottom: 4.5rem;
  }
  .business__label {
    padding-left: 0.875rem;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 2.75;
  }
  .business__item {
    min-height: 0;
    margin-top: 0;
    margin-bottom: 4rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .business__item:first-of-type {
    margin-top: 2rem;
  }
  .business__item:last-of-type {
    margin-bottom: 6.25rem;
  }
  .business__img {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    margin: 0;
    margin-left: -1.25rem;
  }
  .business__item--img-right {
    align-items: flex-end;
  }
  .business__item--img-right .business__img {
    margin: 0;
    margin-right: -1.25rem;
  }
  .business__item--img-right .business__img img {
    margin-inline: auto 0;
  }
  .business__img img {
    width: 82.667vw;
    max-width: 82.667vw;
    height: 13.8125rem;
    object-fit: cover;
    object-position: center;
    margin-inline: 0;
  }
  .business__text {
    position: static;
    width: auto;
    padding: 0;
    max-width: 88%;
  }
  .business__item:first-of-type .business__text {
    padding-top: 0;
  }
  .business__num {
    font-size: 4.375rem;
  }
  .business__title {
    margin-top: 1.625rem;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 1.25;
    white-space: nowrap;
  }
  .business__subtitle {
    margin-top: 0.875rem;
    font-size: 0.875rem;
    letter-spacing: 0.4em;
  }
  .business__body {
    margin-top: 2.5rem;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
  }
  .business__item--img-right .business__text {
    text-align: right;
  }
  .business__item--img-right .business__body {
    text-align: left;
  }
  /* ---- MESSAGE ---- */
  .message {
    min-height: 0;
    padding-block: 3.75rem 4.25rem;
  }
  .message__inner {
    flex-direction: column;
    align-items: center;
    gap: 5.5rem;
  }
  .message__label {
    padding: 0;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
  .message__label::before {
    width: 100vw;
    left: -10.667vw;
  }
  .message__border {
    position: static;
    margin-top: 0;
  }
  .message__content {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .message__photo {
    position: static;
    order: 2;
    width: 100%;
    max-width: 22.0625rem;
  }
  .message__text {
    position: static;
    order: 1;
    width: auto;
    margin-top: 2.625rem;
  }
  .message__heading {
    font-size: 1.875rem;
    letter-spacing: 0.3em;
    line-height: 1.6667;
  }
  .message__para {
    margin-top: 2.875rem;
    font-size: 0.875rem;
  }
  .message__para + .message__para {
    margin-top: 2.125rem;
  }
  .message__sign {
    font-size: 0.875rem;
  }
  /* ---- RECRUIT ---- */
  .recruit {
    padding: 0 1.25rem 7.5rem;
  }
  .recruit__label {
    padding-top: 3.75rem;
    padding-left: 0;
  }
  .recruit__border {
    margin-top: 0;
    margin-left: -1.25rem;
  }
  .recruit__row {
    margin-top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 0;
  }
  .recruit__heading {
    font-size: 2.375rem;
    letter-spacing: 0.07em;
    margin-top: 10.667vw;
  }
  .recruit__comma {
    letter-spacing: -0.1067em;
  }
  .recruit__br {
    display: inline;
  }
  .recruit__btn {
    width: 100%;
  }
  .recruit__arrow {
    right: 0.75rem;
    width: 2.3125rem;
  }
  /* ---- COMPANY ---- */
  .company {
    min-height: 0;
    padding: 3.75rem 1.25rem 5.625rem;
  }
  .company__inner {
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }
  .company__head {
    width: 100%;
    min-width: 0;
  }
  .company__title {
    position: static;
    font-size: 1.25rem;
    letter-spacing: 0.24em;
    margin-bottom: 1.25rem;
  }
  .company__table {
    margin-left: 0;
    width: 100%;
  }
  .company__row {
    padding: 1.25rem 0;
  }
  .company__row dt {
    flex: 0 0 8.5rem;
  }
  .company__row dt .en {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
  .company__row dt .jp {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  .company__row dd {
    font-size: 0.75rem;
  }
  .company__map {
    width: 100%;
    max-width: 13.625rem;
    height: 7.75rem;
  }
  .company__tel-pc {
    display: none;
  }
  .company__tel-sp {
    display: inline;
  }
}
/* PC中間幅（768〜1500px）での崩れ防止 */
@media (min-width: 768px) and (max-width: 1500px) {
  .hero__brand {
    top: 11.25rem;
    left: 2.5rem;
  }
  .hero__mark {
    display: none;
  }
  .hero__services {
    top: 26.875rem;
    left: 2.5rem;
  }
  .hero__scroll {
    left: auto;
    right: 2.5rem;
  }
  .recruit__label, .recruit__row {
    max-width: none;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .about__title {
    left: 2.5rem;
  }
  .message__inner {
    gap: 2.5rem;
  }
  .company__title {
    font-size: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1240px) {
  /* 画像の逆マージンが -1.25rem になるぶんを差し引いた式
     padding-left = 画像幅 - 1.25rem + gap 2.5rem + 左padding 1.25rem */
  .business__label {
    padding-left: calc(31.25rem + (100vw - 75rem) / 2 + 2.5rem);
  }
  .business__img {
    margin-left: -1.25rem;
  }
  .business__item--img-right .business__img {
    margin-right: -1.25rem;
  }
}
/*# sourceMappingURL=style.css.map */
