@charset "UTF-8";
/*
  /rakurakucloud/mailmarketing/asset/css/object/module/m-company-profile.css
  「サービス提供企業」用CSS
*/
.m-company-profile-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 202px 1fr;
  column-gap: 80px;
  padding: 30px 44px;
  border: 4px solid var(--gray-bg-02);
  border-radius: 10px;
  @media screen and (max-width: 840px) {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}
.m-company-profile-rakus {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  &::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -40px;
    width: 1px;
    background: var(--gray-08);
  }
  @media screen and (max-width: 840px) {
    flex-direction: unset;
    margin: 0 0 30px;
    &::after {
      display: none;
    }
  }
}
.m-company-profile-rakus__logo {
  display: block;
  width: 86px;
  height: auto;
  @media screen and (max-width: 840px) {
    width: 40px;
  }
}
.m-company-profile-rakus__text {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.m-company-profile-service {
  padding: 12px 0 30px;
  @media screen and (max-width: 840px) {
    padding: 30px 0 0;
    border-top: 1px solid var(--gray-08);
  }
}
.m-company-profile-service__title {
  margin: 0 0 40px;
  font-size: 20px;
  font-weight: 700;
  @media screen and (max-width: 840px) {
    margin: 0 0 25px;
    font-size: 16px;
  }
}
.m-company-profile-service__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 28px 62px;
  padding: 0;
  margin: 0 10px 0;
  @media screen and (max-width: 840px) {
    gap: 30px;
  }
}
.m-company-profile-service__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-company-profile-service__logo {
  display: block;
  height: 35px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  &.m-company-profile-service__logo--30 {
    height: 30px;
    @media screen and (max-width: 840px) {
      height: 20px;
    }
  }
  @media screen and (max-width: 840px) {
    height: 25px;
  }
}
.m-company-profile-outline {
  margin: 50px 0 0;
  @media screen and (max-width: 840px) {
    margin: 30px 0 0;
  }
}
.m-company-profile-outline__table {
  width: 100%;
  border-collapse: collapse;
}
.m-company-profile-outline__row {
  display: block;
  padding: 0 20px;
  border-bottom: 1px solid var(--gray-bg-01);
  @media screen and (max-width: 840px) {
    padding: 0 10px;
  }
}
.m-company-profile-outline__head,
.m-company-profile-outline__data {
  padding: 20px 0;
}
.m-company-profile-outline__head {
  width: 250px;
  font-size: 16px;
  font-weight: 700;
  vertical-align: top;
  @media screen and (max-width: 840px) {
    width: 120px;
    font-size: 14px;
  }
}
.m-company-profile-outline__data {
  font-size: 16px;
  @media screen and (max-width: 840px) {
    font-size: 14px;
  }
}
.m-company-profile-outline__data-tel {
  color: var(--black);
}
@media (hover: hover) {
  .m-company-profile-outline__data-tel[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}
