@charset "utf-8";

/* ==========================================================================
   会社概要ページ専用
   ========================================================================== */

/* --------------------------------------------------------------------------
   概要表
   -------------------------------------------------------------------------- */
.lcl-profile {
  margin-top: 6rem;
}
@media screen and (max-width: 1023px) {
  .lcl-profile {
    margin-top: 4rem;
  }
}
/* 免許有効期間などの補足 */
.lcl-profile__note {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: max(1.3rem, 10px);
  line-height: 1.8;
  color: var(--c-text-sub);
}

.lcl-profile__tel {
  transition: color 0.3s ease;
}
.lcl-profile__tel:hover {
  color: var(--c-brand);
}
@media screen and (max-width: 1023px) {
  /* SP は電話をかけられるよう、リンクであることを明示する */
  .lcl-profile__tel {
    color: var(--c-brand);
    text-decoration: underline;
  }
}

/* --------------------------------------------------------------------------
   事業領域
   -------------------------------------------------------------------------- */
.lcl-domain__lead {
  width: 82rem;
  margin-top: 4rem;
}
@media screen and (max-width: 1023px) {
  .lcl-domain__lead {
    width: 100%;
    margin-top: 3rem;
  }
}

.lcl-domain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  margin-top: 6rem;
}
@media screen and (max-width: 1023px) {
  .lcl-domain {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
  }
}
.lcl-domain__item {
  padding: 3rem 2.5rem;
  background-color: var(--c-white);
}
.lcl-domain__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-domain__ttl {
  margin-top: 1.8rem;
  font-size: max(1.9rem, 10px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.lcl-domain__txt {
  margin-top: 1.2rem;
  font-family: var(--f-body);
  font-size: max(1.4rem, 10px);
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: var(--c-text-sub);
}

/* --------------------------------------------------------------------------
   アクセス
   -------------------------------------------------------------------------- */
.lcl-access {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8rem;
  margin-top: 6rem;
}
@media screen and (max-width: 1023px) {
  .lcl-access {
    display: block;
    margin-top: 4rem;
  }
}
.lcl-access__body {
  flex: 1;
}
.lcl-access__ttl {
  font-size: max(2rem, 10px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.lcl-access__address {
  margin-top: 2rem;
  font-family: var(--f-body);
  font-size: max(1.5rem, 10px);
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .lcl-access__address {
    font-size: max(1.4rem, 10px);
  }
}
.lcl-access__data {
  margin-top: 2.5rem;
  border-top: 0.1rem solid var(--c-line);
}
.lcl-access__row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding-block: 1.4rem;
  border-bottom: 0.1rem solid var(--c-line);
}
.lcl-access__dt {
  flex: none;
  width: 10rem;
  font-size: max(1.3rem, 10px);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lcl-access__dd {
  font-family: var(--f-body);
  font-size: max(1.5rem, 10px);
  letter-spacing: 0.05em;
}
.lcl-access__btn {
  margin-top: 4rem;
}

.lcl-access__note {
  flex: none;
  width: 36rem;
  padding: 3rem;
  background-color: var(--c-bg-light);
}
@media screen and (max-width: 1023px) {
  .lcl-access__note {
    width: 100%;
    margin-top: 4rem;
    padding: 2.5rem;
  }
}
.lcl-access__note-item {
  position: relative;
  padding-left: 1.6rem;
  font-family: var(--f-body);
  font-size: max(1.4rem, 10px);
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.lcl-access__note-item + .lcl-access__note-item {
  margin-top: 1rem;
}
.lcl-access__note-item::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--c-brand);
}

/* --------------------------------------------------------------------------
   関連ページ送り
   -------------------------------------------------------------------------- */
.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;
}
