@charset "UTF-8";
:root {
  --company-txt-l-width: 25%;
  --company-txt-r-width: 75%;
}
.page-en {
  --company-txt-l-width: 32%;
  --company-txt-r-width: 68%;
}

.title-wrap {
  background-image: url(../img/company/main.jpg);
  background-position: center;
  background-size: cover;
}

/* company */
.company {
  width: 80%;
  margin: 50px auto 0 auto;
}
.company-ul li {
  border-bottom: 1px solid #e2e1dd;
  display: flex;
  align-items: center;
  padding: 30px 0;
}
.company-txt-l {
  font-weight: 500;
  box-sizing: border-box;
  width: var(--company-txt-l-width);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
  color: #232323;
  padding: 0 0 0 10px;
}
.company-txt-r {
  box-sizing: border-box;
  width: var(--company-txt-r-width);
  padding: 0;
}
.company-txt-r p {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.8;
}
.company-link {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.8;
  margin: 10px 0 0 0;
  display: inline-block;
}
.company-link a {
  font-weight: 400;
  border-bottom: 1px solid #d2464b;
  padding: 0 4px 3px 0;
  display: flex;
  align-items: center;
  transition: .5s ease all;
}
.company-link a:hover {
  padding: 0 10px 3px 0;
}
.pin {
  width: 12px;
}
.copy-click {
  box-sizing: border-box;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.8;
  color: #fff;
  background: #d2464b;
  border-radius: 20px;
  margin: 15px 0 0 0;
  padding: 10px 15px 11px 15px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.tooltip::after {
  content: "コピー完了";
  background: #282828;
  display: inline-block;
  color: #fff;
  border-radius: 20px;
  position: absolute;
  width: 50%;
  left: 50%;
  bottom: -0.8rem;
  transform: translate(-50%, 0);
  font-size: 0.75rem;
  text-align: center;
  padding: 4px 10px 6px 10px;
  animation: fade-tooltip 0.5s 1s 1 forwards;
}
@keyframes fade-tooltip {
  to {
    opacity: 0;
  }
}

@media screen and (max-width: 1140px) {
  /* company */
  .company {
    width: 90%;
  }
  .company-ul li {
    display: block;
  }
  .company-txt-l {
    width: auto;
    padding: 0 0 10px 10px;
  }
  .company-txt-r {
    width: auto;
    padding: 0 0 0 10px;
  }
}

@media screen and (max-width: 767px) {
  /* company */
  .company {
    margin: 30px auto 0 auto;
  }
  .company-ul li {
    padding: 30px 0;
  }
  .company-txt-l {
    padding: 0 0 10px 5px;
  }
  .company-txt-r {
    padding: 0 0 0 5px;
  }
}