@charset "utf-8";

/* ==========================================================================
   企業理念ページ専用
   共通部品（title02 / txt01 / lower-section）に載せる差分のみを持つ
   ========================================================================== */

/* --------------------------------------------------------------------------
   経営理念のことば
   -------------------------------------------------------------------------- */
.lcl-credo {
  margin-top: 6rem;
  font-size: max(3.6rem, 10px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1023px) {
  .lcl-credo {
    margin-top: 4rem;
    font-size: max(2.2rem, 10px);
    line-height: 1.8;
  }
}

/* 本文は一行の文字数が伸びすぎないよう幅を抑える */
.lcl-lead {
  width: 82rem;
  margin-top: 5rem;
}
@media screen and (max-width: 1023px) {
  .lcl-lead {
    width: 100%;
    margin-top: 3.5rem;
  }
}

/* --------------------------------------------------------------------------
   使命（濃色帯）
   帯そのものが暗いので HTML 側に data-header-dark を付けている
   -------------------------------------------------------------------------- */
.lcl-mission {
  position: relative;
  z-index: 1;
  color: var(--c-white);
  background-color: #10141a;
}
.lcl-mission .title02__en {
  color: var(--c-white);
}

.lcl-mission__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  margin-top: 7rem;
}
@media screen and (max-width: 1023px) {
  .lcl-mission__list {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-top: 4.5rem;
  }
}
.lcl-mission__item {
  padding-top: 3rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 1023px) {
  .lcl-mission__item {
    padding-top: 2.5rem;
  }
}
.lcl-mission__num {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: max(1.4rem, 10px);
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--c-brand);
}
.lcl-mission__ttl {
  margin-top: 1.8rem;
  font-size: max(2rem, 10px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .lcl-mission__ttl {
    font-size: max(1.8rem, 10px);
  }
}
.lcl-mission__txt {
  margin-top: 1.5rem;
  font-family: var(--f-body);
  font-size: max(1.4rem, 10px);
  line-height: 2;
  letter-spacing: 0.05em;
  color: #cfcfcf;
}

/* --------------------------------------------------------------------------
   会社紹介
   -------------------------------------------------------------------------- */
.lcl-about {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8rem;
  margin-top: 6rem;
}
@media screen and (max-width: 1023px) {
  .lcl-about {
    display: block;
    margin-top: 4rem;
  }
}
.lcl-about__body {
  flex: 1;
}
.lcl-about__side {
  flex: none;
  width: 30rem;
}
@media screen and (max-width: 1023px) {
  .lcl-about__side {
    width: 100%;
    margin-top: 5rem;
  }
}
.lcl-about__side-ttl {
  padding-bottom: 1.5rem;
  font-size: max(1.6rem, 10px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  border-bottom: 0.2rem solid var(--c-text);
}

.lcl-domain__item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding-block: 1.6rem;
  border-bottom: 0.1rem solid var(--c-line);
}
.lcl-domain__num {
  flex: none;
  font-family: var(--f-en);
  font-weight: 500;
  font-size: max(1.2rem, 10px);
  letter-spacing: 0.1em;
  color: var(--c-brand);
}
.lcl-domain__ttl {
  font-size: max(1.5rem, 10px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   関連ページ送り
   -------------------------------------------------------------------------- */
.lcl-pagelink {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  .lcl-pagelink {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.lcl-pagelink__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 4rem;
  background-color: var(--c-white);
  transition: color 0.3s ease, translate 0.4s var(--e-main);
}
@media screen and (max-width: 1023px) {
  .lcl-pagelink__link {
    padding: 3rem 2.5rem;
  }
}
.lcl-pagelink__link:hover {
  color: var(--c-brand);
  translate: 0 -0.6rem;
}
.lcl-pagelink__link:hover .ico_svg {
  translate: 1rem;
}
.lcl-pagelink__en {
  font-family: var(--f-en);
  font-weight: 500;
  font-size: max(2.4rem, 10px);
  line-height: 1;
  letter-spacing: 0.08em;
}
.lcl-pagelink__ja {
  font-size: max(1.3rem, 10px);
  letter-spacing: 0.05em;
  color: var(--c-text-sub);
}
.lcl-pagelink__link .ico_svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4rem;
  width: 1.5rem;
  aspect-ratio: 1;
  margin: auto;
  transition: translate 0.4s var(--e-main);
}
@media screen and (max-width: 1023px) {
  .lcl-pagelink__link .ico_svg {
    right: 2.5rem;
  }
}
.lcl-pagelink__link .ico_svg .svg-path {
  stroke: currentColor;
}
