@charset "UTF-8";

@media screen and (max-width: 768px) {
  .c-ttl__ja {
    margin-bottom: 20px;
  }
}

/* =================================
company-message
================================= */

.company-message {
  background: var(--color-bg-blue);
}

.company-message__content {
  display: flex;
  align-items: center;
  gap: 120px;
}

.company-message__txt-wrap {
  flex: 1;
}

.company-message__heading {
  align-items: flex-start;
  text-align: left;
}

.company-message__heading .c-ttl__ja {
  margin-bottom: 30px;
}

.company-message__ttl {
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-size: 2.4rem;
}

.company-message__sign {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}

.company-message__sign span {
  font-size: 1.4rem;
}

.company-message__sign strong {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
}

.company-message__img {
  flex-shrink: 0;
  width: 390px;
}

.company-message__img img {
  width: 100%;
  aspect-ratio: 390 / 438;
  object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .company-message__content {
    gap: 50px;
  }

  .company-message__img {
    width: 35%;
  }
}

@media screen and (max-width: 768px) {
  .company-message__content {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
  }

  .company-message__img {
    width: 100%;
  }

  .company-message__img img {
    aspect-ratio: 390 / 438;
  }

  .company-message__ttl {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  .company-message__sign {
    gap: 15px;
    margin-top: 20px;
  }

  .company-message__sign strong {
    font-size: 2rem;
  }
}

/* =================================
company-profile
================================= */

.company-profile {
  background: var(--color-white);
}

.company-profile__heading {
  align-items: flex-start;
  text-align: left;
}

.company-profile__list {
  width: 100%;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.company-profile__row {
  display: flex;
  border-bottom: 1px solid #ccc;
  color: var(--color-black);
}

.company-profile__row dt {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  width: 260px;
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  background: var(--color-bg-blue);
  font-weight: 600;
}

.company-profile__row dd {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 10px 20px;
}

@media screen and (max-width: 768px) {
  .company-profile__row {
    display: block;
  }

  .company-profile__row dt {
    width: 100%;
    padding: 5px 10px;
    border-right:none;
  }

  .company-profile__row dd {
    width: 100%;
    padding: 5px 10px;
  }
}

/* =================================
company-history
================================= */

.company-history__heading {
  align-items: flex-start;
  text-align: left;
}

.company-history__list {
  width: 100%;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.company-history__row {
  display: flex;
  border-bottom: 1px solid #ccc;
  color: var(--color-black);
}

.company-history__row dt {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  width: 260px;
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  background: var(--color-bg-blue);
  font-weight: 600;
}

.company-history__row dd {
  display: flex;
  flex: 1;
  align-items: center;
  padding: 10px 20px;
}

@media screen and (max-width: 768px) {
  .company-history__row {
    display: block;
  }

  .company-history__row dt {
    width: 100%;
    padding: 5px 10px;
    border-right: none;
  }

  .company-history__row dd {
    padding: 5px 10px;
  }
}

/* =================================
company-organization
================================= */

.company-organization {
  background: var(--color-bg-blue2);
}

.company-organization__heading {
  align-items: flex-start;
  text-align: left;
}

.company-organization__heading .c-ttl__ja {
  margin-bottom: 30px;
}

.company-organization__box {
  padding: 40px 50px;
  border-radius: 20px;
  background: var(--color-white);
}

.company-organization__img {
  display: block;
  width: 100%;
}

.company-organization__img img {
  width: 100%;
}

.company-organization__note {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .company-organization__heading .c-ttl__ja {
    margin-bottom: 25px;
  }

  .company-organization__box {
    padding: 40px;
    border-radius: 15px;
  }

  .company-organization__note {
    margin-top: 10px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 500px) {
  .company-organization__box {
    padding: 25px;
  }
}

/* =================================
company-clients
================================= */

.company-clients {
  background: var(--color-bg-blue);
}

.company-clients__heading {
  align-items: flex-start;
  text-align: left;
}

.company-clients__heading .c-ttl__ja {
  margin-bottom: 30px;
}

/* summary */

.company-clients__summary {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.company-clients__summary-item {
  display: flex;
  align-items: center;
  width: calc((100% - 90px) / 4);
  min-height: 90px;
  padding: 15px 20px;
  border-radius: 20px;
  background: var(--color-white);
  justify-content: space-between;
}

.company-clients__summary-icon {
  flex-shrink: 0;
  width: 64px;
}

.company-clients__summary-label {
  font-size: 2rem;
  display: block;
  font-weight: 600;
  white-space: nowrap;
}

.company-clients__summary-num {
  display: flex;
  align-items: baseline;
  color: var(--color-blue);
  line-height: 1;
  white-space: nowrap;
  justify-content: center;
}

.company-clients__summary-num strong {
  font-size: 3.2rem;
  font-weight: 700;
}

.company-clients__summary-num span {
  margin-left: 3px;
  font-size: 2rem;
  font-weight: 600;
}

/* accordion */

.company-clients__accordion {
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-white);
}

.company-clients__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 85px;
  padding: 15px 80px;
  border: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: inherit;
  cursor: pointer;
}

.company-clients__toggle::before {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 2px;
  background: transparent;
  content: "";
}

.company-clients__toggle.is-open::before {
  background: var(--color-blue);
}

.company-clients__toggle-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
}

.company-clients__toggle-title small {
  margin-top: 3px;
  font-size: 1.4rem;
  font-weight: 400;
}

.company-clients__toggle-icon {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.company-clients__toggle-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--color-blue);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.company-clients__toggle-icon span:first-child {
  transform: translateY(-50%);
}

.company-clients__toggle-icon span:last-child {
  transform: translateY(-50%) rotate(90deg);
}

.company-clients__toggle.is-open .company-clients__toggle-icon span:last-child {
  opacity: 0;
}

/* accordion body */

.company-clients__body {
  display: none;
  padding: 0 20px 20px;
}

.company-clients__row {
  display: flex;
  align-items: center;
  min-height: 105px;
  padding: 15px 0;
  border-bottom: 2px solid var(--color-blue);
}

.company-clients__row:last-child {
  border-bottom: 0;
}

.company-clients__category {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  text-align: center;
}

.company-clients__category-icon {
  width: 64px;
  margin-bottom: 5px;
}

.company-clients__category-ttl {
  color: var(--color-blue);
}

.company-clients__category-txt {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-content: center;
  gap: 5px 15px;
  padding-left: 20px;
  line-height: 1.7;
}

.company-clients__category-txt span {
  position: relative;
  padding-left: 12px;
}

.company-clients__category-txt span::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
  content: "";
}

@media screen and (max-width: 1120px) {
  .company-clients__summary {
    flex-wrap: wrap;
    gap: 20px;
  }

  .company-clients__summary-item {
    width: calc((100% - 20px) / 2);
    justify-content: space-around;
    gap: 5%;
  }
}

@media screen and (max-width: 768px) {
  .company-clients__summary {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .company-clients__summary-item {
    min-height: 90px;
    padding: 10px;
    border-radius: 15px;
  }

  .company-clients__summary-icon {
    width: 60px;
  }

  .company-clients__summary-label {
    white-space: normal;
  }

  .company-clients__accordion {
    border-radius: 15px;
  }

  .company-clients__toggle {
    min-height: 75px;
    padding: 15px 50px;
  }

  .company-clients__toggle-icon {
    right: 20px;
    width: 20px;
  }

  .company-clients__toggle-icon span {
    width: 20px;
  }

  .company-clients__body {
    padding: 0 15px 15px;
  }

  .company-clients__row {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0;
  }

  .company-clients__category {
    width: 100%;
    margin-bottom: 15px;
  }

  .company-clients__category-icon {
    width: 60px;
  }

  .company-clients__category-txt {
    gap: 5px 10px;
    padding-left: 0;
  }
}

@media screen and (max-width: 550px) {
  .company-clients__summary-item {
    width: 100%;
    padding: 10px 20px;
  }
}

/* =================================
company-access
================================= */

.company-access {
  background: var(--color-white);
}

.company-access__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.company-access__info {
  flex: 1;
  padding-top: 20px;
}

.company-access__heading {
  align-items: flex-start;
  text-align: left;
}

.company-access__heading .c-ttl__ja {
  margin-bottom: 30px;
}

.company-access__ttl {
  margin-bottom: 15px;
  font-size: 2rem;
}

.company-access__txt {
  line-height: 1.8;
}

.company-access__map {
  flex-shrink: 0;
  width: 770px;
  height: 470px;
}

.company-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 1000px) {
  .company-access__content {
    gap: 30px;
  }

  .company-access__map {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .company-access__content {
    flex-direction: column;
    gap: 0px;
  }

  .company-access__info {
    display: contents;
  }

  .company-access__heading {
    order: 1;
    width: 100%;
  }

  .company-access__map {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 770 / 430;
    margin-bottom: 20px;
  }

  .company-access__ttl {
    order: 3;
    margin-bottom: 0;
    font-size: 1.8rem;
  }

  .company-access__txt {
    order: 4;
  }
}
