@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* ============================================
  ⭐ ここから下を編集してください ⭐
  ============================================ */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* ============================================
  ⭐ ここから下を編集してください ⭐
  ============================================ */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

.scroll-scene {
  position: relative;
  height: 250vh;
}

.scroll-scene-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.hero-intro {
  position: absolute;
  inset: 0;
  z-index: 10;
  background-color: #FFFFFF;
  pointer-events: none;
  transition: background-color 0.9s ease, opacity 0.8s ease;
}
.hero-intro.is-bg-hidden {
  background-color: transparent;
}
.hero-intro.is-done {
  opacity: 0;
}
.hero-intro .hero-intro-inner {
  position: absolute;
  top: 12rem;
  right: 0;
  width: clamp(36rem, 55vw, 80rem);
  overflow: visible;
  transform: translate(calc(-50vw + 50%), calc(50vh - 50% - 12rem));
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-intro.is-moved .hero-intro-inner {
  transform: translate(-8rem, -10rem);
}
.hero-intro.is-skip-intro .hero-intro-inner {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  transform: none;
  transition: none;
}
@media (max-width: 960px) {
  .hero-intro.is-moved .hero-intro-inner {
    transform: translate(-2rem, 6rem);
  }
}

.hero-intro-svg {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.6s ease;
}
.hero-intro.is-video-inside .hero-intro-svg {
  opacity: 0;
}

.hero-intro-video-wrap {
  position: absolute;
  inset: 0;
  mask-image: url("../images/num.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-intro.is-video-inside .hero-intro-video-wrap {
  opacity: 1;
}
.hero-intro.is-expand .hero-intro-video-wrap {
  mask-image: none;
  opacity: 1;
}
.hero-intro-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.hero-intro-video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .hero-intro .hero-intro-inner {
    top: 2rem;
    width: clamp(28rem, 80vw, 42rem);
    transform: translate(calc(-50vw + 50%), calc(50vh - 50% - 2rem));
  }
}
.top-hero {
  position: absolute;
  inset: 0;
  z-index: 20;
  padding: 0 12rem;
  background-color: transparent;
  display: flex;
  justify-content: center;
}
.top-hero .top-hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(30rem, 1fr) minmax(40rem, 56rem);
  align-items: center;
}
.top-hero .top-hero-copy {
  position: relative;
  z-index: 15;
  padding-top: 30rem;
  transform: translate3d(var(--hero-text-x, 0px), var(--hero-text-y, 0px), 0);
  will-change: transform;
}
.top-hero .top-hero-title {
  margin: 0;
  color: #141730;
  font-size: clamp(5.2rem, 7.2vw, 7.2rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-wrap: nowrap;
  opacity: 0;
  transform: translateY(2rem);
  transition: color 0.9s ease, opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.4s;
}
.top-hero .top-hero-tagline {
  position: absolute;
  top: 12rem;
  right: 12rem;
  z-index: 20;
  margin: 0;
  color: #FFFFFF;
  font-family: "Jost", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  opacity: 0;
  transform: translate3d(var(--hero-text-x, 0px), calc(var(--hero-text-y, 0px) + 2rem), 0);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.4s;
  will-change: transform;
}
.top-hero.is-title-visible .top-hero-title {
  opacity: 1;
  transform: translateY(0);
}
.top-hero.is-video-fullscreen .top-hero-title {
  color: #FFFFFF;
  text-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.35);
}
.top-hero.is-video-fullscreen .top-hero-tagline {
  opacity: 1;
  transform: translate3d(var(--hero-text-x, 0px), var(--hero-text-y, 0px), 0);
}
@media (max-width: 960px) {
  .top-hero {
    padding: 0 2.4rem;
  }
  .top-hero .top-hero-inner {
    grid-template-columns: 1fr;
    align-items: flex-end;
    padding-bottom: 12rem;
  }
  .top-hero .top-hero-copy {
    padding-top: 0;
  }
  .top-hero .top-hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    text-wrap: wrap;
  }
  .top-hero .top-hero-tagline {
    top: 16rem;
    bottom: auto;
    right: 2.4rem;
    font-size: clamp(2.4rem, 7vw, 3.6rem);
  }
}

@keyframes aboutTextReveal {
  from {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes aboutMarkerReveal {
  0% {
    left: 0;
    width: 0;
    opacity: 1;
  }
  42% {
    left: 0;
    width: 100%;
    opacity: 1;
  }
  78% {
    left: 100%;
    width: 0;
    opacity: 1;
  }
  100% {
    left: 100%;
    width: 0;
    opacity: 0;
  }
}
.about-visual {
  height: 100dvh;
  position: absolute;
  inset: 0;
  z-index: 25;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 10rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.about-visual.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.about-visual.is-visible .txt-reveal-inner {
  animation: aboutTextReveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--reveal-delay, 0s) + 0.22s);
}
.about-visual.is-visible .txt-reveal::after {
  animation: aboutMarkerReveal 0.85s cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}
.about-visual .txt-reveal {
  --reveal-delay: 0s;
  display: table;
  position: relative;
  overflow: visible;
  max-width: 100%;
  line-height: 1.25;
}
.about-visual .txt-reveal-inner {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  max-width: 100%;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateZ(0);
}
.about-visual .txt-reveal::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  width: 0;
  height: 1.05em;
  background: #FFFFFF;
  transform: translateY(-50%);
  pointer-events: none;
}
.about-visual .about-visual-heading .txt-reveal {
  --reveal-delay: 0.12s;
}
.about-visual .about-visual-text .about-visual-paragraph:nth-child(1) .txt-reveal:nth-child(1) {
  --reveal-delay: 0.46s;
}
.about-visual .about-visual-text .about-visual-paragraph:nth-child(1) .txt-reveal:nth-child(2) {
  --reveal-delay: 0.58s;
}
.about-visual .about-visual-text .about-visual-paragraph:nth-child(1) .txt-reveal:nth-child(3) {
  --reveal-delay: 0.70s;
}
.about-visual .about-visual-text .about-visual-paragraph:nth-child(1) .txt-reveal:nth-child(4) {
  --reveal-delay: 0.82s;
}
.about-visual .about-visual-text .about-visual-paragraph:nth-child(2) .txt-reveal:nth-child(1) {
  --reveal-delay: 1.06s;
}
.about-visual .about-visual-text .about-visual-paragraph:nth-child(2) .txt-reveal:nth-child(2) {
  --reveal-delay: 1.18s;
}
.about-visual .about-visual-text .about-visual-paragraph:nth-child(3) .txt-reveal:nth-child(1) {
  --reveal-delay: 1.42s;
}
.about-visual .about-visual-text .about-visual-paragraph:nth-child(3) .txt-reveal:nth-child(2) {
  --reveal-delay: 1.54s;
}
.about-visual .about-visual-content {
  transform: translate3d(var(--about-text-x, -8rem), var(--about-text-y, 8rem), 0);
  will-change: transform;
}
.about-visual .about-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.2rem;
  height: 100%;
}
.about-visual .about-visual-inner .c-main-button {
  align-self: flex-end;
  margin-top: auto;
}
.about-visual .about-visual-heading {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(4rem, 5vw, 8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.about-visual .about-visual-text {
  margin-top: 4.2rem;
}
.about-visual .about-visual-text p {
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.25;
}
.about-visual .about-visual-text .txt-reveal + .txt-reveal {
  margin-top: 0.72rem;
}
.about-visual .about-visual-text .about-visual-paragraph + .about-visual-paragraph {
  margin-top: 1.8rem;
}
@media (max-width: 960px) {
  .about-visual {
    padding: 12rem 0;
  }
  .about-visual .about-visual-content {
    transform: translate3d(var(--about-text-x, -4rem), var(--about-text-y, 5rem), 0);
  }
  .about-visual .about-visual-inner {
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about-visual .about-visual-inner .about-visual-heading {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }
  .about-visual .about-visual-inner .about-visual-text {
    margin-top: 2rem;
  }
  .about-visual .about-visual-inner .about-visual-text p {
    font-size: 1.4rem;
  }
  .about-visual .about-visual-inner .c-main-button {
    align-self: flex-start;
  }
}

.biz-model {
  position: relative;
  background-color: #ffffff;
  padding: 16rem 0 8rem;
}
.biz-model .biz-model-inner {
  width: 100%;
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}
.biz-model .biz-model-image {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 960px) {
  .biz-model {
    padding: 5.6rem 0;
  }
  .biz-model .biz-model-inner {
    padding: 0 1.6rem;
  }
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 2.4rem, 0);
  transition: opacity 0.7s ease var(--reveal-delay, 0s), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.js-reveal--heading {
  transform: translate3d(0, 3.2rem, 0);
}

.js-reveal--item {
  transform: translate3d(0, 2.8rem, 0);
}

.js-reveal--soft {
  transform: translate3d(0, 1.8rem, 0) scale(0.98);
}

.js-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.top-service {
  padding: 14rem 0;
  background: #FFFFFF;
}
.top-service .top-service-head {
  margin-bottom: 6rem;
}
.top-service .top-service-desc {
  margin-top: 3.2rem;
  color: #141730;
  font-size: 1.5rem;
  line-height: 1.9;
}
.top-service .top-service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4rem;
}
.top-service .top-service-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.top-service .top-service-card-body {
  flex: 1;
  padding-bottom: 2.4rem;
}
.top-service .top-service-card-category {
  display: block;
  font-size: 1.2rem;
  font-family: "Jost", sans-serif;
  color: #3D3D3D;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.top-service .top-service-card-title {
  margin: 0 0 1.6rem;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.8;
  color: #0D0D0D;
}
.top-service .top-service-card-desc {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #66697F;
}
.top-service .top-service-card-image-frame {
  width: 100%;
  height: 8.5rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
}
.top-service .top-service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 960px) {
  .top-service {
    padding: 8rem 0;
  }
  .top-service .top-service-list {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
  .top-service .top-service-card-title {
    font-size: 2.4rem;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* [旧Worksセクション スタイル] あとで使用するかもしれない
.top-works {
  position: relative;
  background-color: $white;
  background-image: url("../images/works-bg.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  padding: 10rem 0 32rem;
  overflow: hidden;

  .top-works-marquee {
    position: absolute;
    bottom: 25rem;
    left: 0;
    margin: 0;
    white-space: nowrap;
    display: flex;
    animation: marquee 36s linear infinite;

    span {
      display: block;
      font-size: 12.7rem;
      font-weight: 900;
      font-family: $en;
      color: $black;
      line-height: 1;
      letter-spacing: -0.02em;
      white-space: nowrap;
      padding-right: 4rem;
    }
  }

  .top-works-oval {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 8rem 10vw;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .top-works-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .top-works-arrows {
    display: flex;
    gap: 0.8rem;
  }

  .top-works-arrow {
    width: 4.4rem;
    height: 4.4rem;
    border: 1px solid $--base-color;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.6rem;
    color: $--base-color;
    transition: background 0.2s ease, color 0.2s ease;

    &:hover {
      background: $--base-color;
      color: $white;
    }
  }

  .top-works-slider {
    padding-left: 20rem;
    margin-top: 2rem;

    .slick-track {
      display: flex;
      gap: 1.5rem;
    }

    .c-work-card {
      width: 32rem;
      height: auto;
    }

    .c-work-card-image-frame {
      height: 240px;
    }
  }
}
*/
@keyframes logo-slide-forward {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes logo-slide-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.top-works--logo {
  position: relative;
  aspect-ratio: 2160/1709;
  min-height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #FFFFFF;
  background-image: url("../images/works-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  overflow: hidden;
}
.top-works--logo .top-works-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 4rem;
  width: 100%;
  margin-bottom: 8rem;
}
.top-works--logo .top-works-header-left .c-section-heading {
  margin-bottom: 0;
}
.top-works--logo .top-works-header-left .c-section-heading-sub {
  color: #141730;
}
.top-works--logo .top-works-header-left .c-section-heading-main {
  color: #141730;
}
.top-works--logo .top-works-header-right {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.top-works--logo .top-works-catch {
  font-size: 3.6rem;
  font-weight: 700;
  color: #141730;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.top-works--logo .top-works-desc {
  font-size: 1.6rem;
  color: #141730;
  line-height: 1.8;
}
.top-works--logo .top-works-logo-sliders {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.top-works--logo .top-works-logo-track {
  overflow: hidden;
  width: 100%;
}
.top-works--logo .top-works-logo-inner {
  display: flex;
  gap: 2rem;
  width: max-content;
}
.top-works--logo .top-works-logo-track--forward .top-works-logo-inner {
  animation: logo-slide-forward 30s linear infinite;
}
.top-works--logo .top-works-logo-track--reverse .top-works-logo-inner {
  animation: logo-slide-reverse 30s linear infinite;
}
.top-works--logo .top-works-logo-item {
  width: 20rem;
  height: 12rem;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.top-works--logo .top-works-logo-item img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}
@media (max-width: 960px) {
  .top-works--logo {
    aspect-ratio: auto;
    min-height: auto;
    padding: 8rem 0;
    background-size: contain;
  }
  .top-works--logo .top-works-header {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin-bottom: 4rem;
  }
  .top-works--logo .top-works-catch {
    font-size: 2.4rem;
  }
  .top-works--logo .top-works-desc {
    font-size: 1.4rem;
  }
  .top-works--logo .top-works-logo-sliders {
    gap: 1.2rem;
  }
  .top-works--logo .top-works-logo-item {
    width: 12rem;
    height: 7.2rem;
  }
}

.top-news {
  padding: 14rem 0 18rem;
  background: #FFFFFF;
}
.top-news .c-section-heading {
  margin-bottom: 8rem;
}
.top-news .top-news-body {
  display: grid;
  grid-template-columns: 24rem 1fr;
  gap: 8rem;
  align-items: start;
}
.top-news .top-news-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}
.top-news .top-news-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
.top-news .top-news-cat {
  display: block;
  width: fit-content;
  padding: 0.6rem 1.6rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.4rem;
  color: #0D0D0D;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.top-news .top-news-cat.is-active, .top-news .top-news-cat:hover {
  background-color: #F7F5F0;
}
.top-news .top-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.top-news .top-news-item {
  border-top: 1px solid #D1D2D9;
}
.top-news .top-news-item--empty {
  font-size: 1.6rem;
  padding-top: 1.6rem;
  border-top: none;
}
.top-news .top-news-link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 7.2rem;
  padding: 2rem 0;
  text-decoration: none;
}
.top-news .top-news-link:hover .top-news-image {
  transform: scale(1.06);
}
.top-news .top-news-link:hover .top-news-title {
  text-decoration-color: #141730;
}
.top-news .top-news-head {
  display: flex;
  gap: 4rem;
  flex-shrink: 0;
}
.top-news .top-news-image-frame {
  width: 16rem;
  height: 12rem;
  overflow: hidden;
  flex-shrink: 0;
}
.top-news .top-news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.36s ease;
}
.top-news .top-news-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.top-news .top-news-date {
  font-size: 1.2rem;
  color: #66697F;
  line-height: 1;
}
.top-news .top-news-tag {
  width: 9rem;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #66697F;
  letter-spacing: 0.05em;
  line-height: 1;
}
.top-news .top-news-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #141730;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}
.top-news .top-news-desc {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #66697F;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
@media (max-width: 960px) {
  .top-news {
    padding: 6rem 0 8rem;
  }
  .top-news .c-section-heading {
    margin-bottom: 4rem;
  }
  .top-news .top-news-body {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
  }
  .top-news .top-news-sidebar {
    order: 2;
    margin-top: 4rem;
    align-items: center;
  }
  .top-news .top-news-list {
    order: 1;
  }
  .top-news .top-news-categories {
    display: none;
  }
  .top-news .top-news-link {
    gap: 2.4rem;
    padding: 1.6rem 0;
    align-items: flex-start;
  }
  .top-news .top-news-head {
    flex-direction: column-reverse;
    gap: 1.6rem;
    flex-shrink: 0;
    width: 10rem;
  }
  .top-news .top-news-image-frame {
    width: 10rem;
    height: 7.5rem;
  }
  .top-news .top-news-tag {
    width: auto;
    font-size: 1.4rem;
  }
  .top-news .top-news-content {
    gap: 1.6rem;
  }
  .top-news .top-news-title {
    font-size: 1.4rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .top-news .top-news-desc {
    display: none;
  }
}

.top-careers {
  position: relative;
  background: #F6F6F6;
  overflow: hidden;
}
.top-careers .top-careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.top-careers .top-careers-title {
  grid-column: 1;
  padding: 14rem 8rem 6rem 12rem;
}
.top-careers .top-careers-lead {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  padding: 0 8rem 14rem 12rem;
}
.top-careers .top-careers-desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.top-careers .top-careers-desc {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #141730;
}
.top-careers .top-careers-cta {
  margin-top: 5.6rem;
  align-self: flex-start;
}
.top-careers .top-careers-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
}
.top-careers .top-careers-image-wrap--mobile {
  display: none;
}
.top-careers .top-careers-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 960px) {
  .top-careers .top-careers-inner {
    display: flex;
    flex-direction: column;
  }
  .top-careers .top-careers-title {
    padding: 6rem 2.4rem 2rem;
  }
  .top-careers .top-careers-image-wrap:not(.top-careers-image-wrap--mobile) {
    display: none;
  }
  .top-careers .top-careers-image-wrap--mobile {
    display: block;
    position: static;
    width: 100%;
    height: 22rem;
  }
  .top-careers .top-careers-lead {
    padding: 2.4rem 2.4rem 6rem;
  }
}

.top-company {
  position: relative;
  background-image: url("../images/company-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 10rem 0 30rem;
}
.top-company::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.1) 100%);
}
.top-company .top-company-inner {
  position: relative;
  z-index: 1;
}
.top-company .top-company-content {
  max-width: 60rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.top-company .top-company-content .c-section-heading-sub {
  color: rgba(255, 255, 255, 0.7);
}
.top-company .top-company-content .c-section-heading-main {
  color: #FFFFFF;
}
.top-company .top-company-text p {
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 2;
}
.top-company .top-company-text p + p {
  margin-top: 1.2rem;
}
@media (max-width: 960px) {
  .top-company {
    height: auto;
    min-height: 100dvh;
    padding: 8rem 0;
  }
  .top-company .top-company-content {
    gap: 3.2rem;
    width: 80%;
  }
}