@charset "UTF-8";
.company {
  margin: 128px 0 313px;
}

.company .company-wrap {
  display: flex;
  column-gap: 104px;
  width: 100%;
  max-width: 1204px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 1040px) {
  .company .company-wrap {
    column-gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .company {
    margin: 52px auto 225px;
  }
}

.company .company-nav {
  position: sticky;
  top: 133px;
  left: 0;
  width: 100%;
  max-width: 230px;
  height: 100%;
  padding: 32px 40px;
  border-radius: 16px;
  background-color: #f6f6f6;
  box-shadow: 0 0 10px 0 rgb(237, 243, 247, 0.24);
  z-index: 1;
}

.company .company-nav .company-nav-title {
  margin: 0 auto;
  font-size: 0.8125em;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.company .company-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
}

.company .company-nav-links li a {
  position: relative;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  color: rgb(34, 34, 34, 0.4);
  text-decoration: none;
}

.company .company-nav-links li.current a {
  color: #222;
}

.company .company-nav-links li.current a::before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 2px;
  height: 100%;
  background: #4fb3ff;
  content: "";
}

.company .company-main {
  position: relative;
  flex: 1;
  max-width: calc(100% - 230px - 104px);
}

.company .company-main > section {
  padding: 120px 0 0;
}

.company .company-main > p {
  margin: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.75;
}

.company .company-main h2 {
  position: relative;
  padding-bottom: 30px;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.5;
}

.company .company-main h2::before,
.company .company-main h2::after {
  position: absolute;
  bottom: 0;
  width: 24px;
  height: 3px;
  content: "";
}

.company .company-main h2::before {
  left: 0;
  background-color: var(--main-color-orange);
}

.company .company-main h2::after {
  left: 24px;
  background: var(--gradient-blue);
}

@media screen and (max-width: 1040px) {
  .company .company-nav {
    max-width: 200px;
  }
  .company .company-main {
    max-width: calc(100% - 200px - 40px);
  }
}

@media screen and (max-width: 768px) {
  .company .company-main {
    max-width: 100%;
  }

  .company .company-main > section {
    padding: 64px 0 0;
  }

  .company .company-main > p {
    font-size: 0.9375em;
  }

  .company .company-main h2 {
    padding-bottom: 20px;
    font-size: 2em;
  }

  .company .company-main h2::before,
  .company .company-main h2::after {
    width: 20px;
    height: 2px;
  }

  .company .company-main h2::before {
    left: 0;
  }

  .company .company-main h2::after {
    left: 20px;
  }
}

/* greeting */
.company .greeting .greeting-wrap {
  display: flex;
  column-gap: 63px;
  margin: 80px auto 0;
}

.company .greeting .greeting-wrap figure {
  width: 27.5%;
}

.company .greeting .greeting-wrap figure img {
  width: 100%;
}

.company .greeting .greeting-wrap .greeting-text {
  flex: 1;
}

.company .greeting .greeting-wrap .greeting-text h3 {
  font-size: 1.75em;
  line-height: 1.5;
}

.company .greeting .greeting-wrap .greeting-text p {
  margin: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.75;
}

.company .greeting .greeting-wrap .greeting-text h3 + p {
  margin: 24px 0 0;
}

.company .greeting .greeting-wrap .greeting-text p + p {
  margin: 20px 0 0;
}

.company .greeting .greeting-wrap .greeting-text .position {
  width: fit-content;
  margin: 44px 0 0 auto;
  font-size: 0.875em;
}

.company .greeting .greeting-wrap .greeting-text .president-name {
  width: fit-content;
  margin: 4px 0 0 auto;
  font-size: 1.5em;
}

@media screen and (max-width: 1040px) {
  .company .greeting .greeting-wrap {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
    margin: 44px auto 0;
  }

  .company .greeting .greeting-wrap figure {
    width: 54%;
  }

  .company .greeting .greeting-wrap .greeting-text h3 {
    font-size: 1.25em;
  }

  .company .greeting .greeting-wrap .greeting-text p {
    font-size: 0.9375em;
  }

  .company .greeting .greeting-wrap .greeting-text p + p {
    margin: 22px 0 0;
  }

  .company .greeting .greeting-wrap .greeting-text .position {
    margin: 28px 0 0 auto;
    font-size: 0.8125em;
  }

  .company .greeting .greeting-wrap .greeting-text .president-name {
    margin: 3px 0 0 auto;
    font-size: 1.25em;
  }
}

/* vision */
.company .company-main > .vision {
  position: relative;
  margin: 104px auto 0;
  padding: 120px 0 104px;
}

.company .vision::before {
  position: absolute;
  top: 0;
  left: calc(-230px - 104px - ((100vw - var(--scrollbar-width) - 1164px) / 2));
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background-color: #edf3f7;
  content: "";
}

.company .vision > * {
  position: relative;
}

.company .vision h3 {
  position: relative;
  margin: 64px 0 0;
  font-size: 1.75em;
  line-height: 1.5;
  padding-bottom: 27px;
}

.company .vision h3::before,
.company .vision h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
}

.company .vision h3::before {
  width: 100%;
  background-color: #dfdfdf;
}

.company .vision h3::after {
  width: calc(100% * (1 / 21));
  background: var(--gradient-blue);
}

.company .vision > figure {
  margin: 80px 0 0;
}

.company .vision > figure img {
  width: 100%;
}

.company .vision ol {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  counter-reset: number 0;
}

.company .vision ol li {
  position: relative;
  padding-left: 20px;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.75;
}

.company .vision ol li::before {
  position: absolute;
  margin-left: -20px;
  content: counter(number) ".";
  counter-increment: number 1;
}

@media screen and (max-width: 1204px) {
  .company .vision::before {
    left: calc(-230px - 104px - 20px);
  }
}

@media screen and (max-width: 1040px) {
  .company .vision::before {
    left: calc(-200px - 40px - 20px);
  }
}

@media screen and (max-width: 768px) {
  .company .company-main > .vision {
    margin: 64px auto 0;
    padding: 64px 0;
  }

  .company .vision::before {
    left: -20px;
    width: calc(100% + 40px);
  }

  .company .vision h3 {
    margin: 36px 0 0;
    font-size: 1.25em;
    padding-bottom: 12px;
  }

  .company .vision > figure {
    margin: 44px 0 0;
  }

  .company .vision ol {
    margin: 24px 0 0;
  }

  .company .vision ol li {
    padding-left: 24px;
    font-size: 0.9375em;
  }

  .company .vision ol li::before {
    margin-left: -24px;
  }
}

/* outline */
.company .outline .outline-data {
  margin: 80px 0 0;
}

.company .outline .outline-data dl {
  border: 1px solid #e4e3e0;
  border-radius: 8px;
  overflow: hidden;
}

.company .outline .outline-data dl > div {
  display: flex;
}

.company .outline .outline-data dl > div dt,
.company .outline .outline-data dl > div dd {
  padding: 15px 32px 16px;
  font-size: 1em;
  line-height: 1.75;
  border-bottom: 1px solid #e4e3e0;
}

.company .outline .outline-data dl > div dt {
  display: flex;
  align-items: center;
  min-width: 200px;
  border-right: 1px solid #e4e3e0;
  background-color: #edf3f7;
  font-weight: 700;
}

.company .outline .outline-data dl > div dd {
  display: flex;
  align-items: center;
  flex: 1;
  margin: 0;
  font-weight: 500;
}

.company .outline .outline-data dl > div dd a {
  color: var(--main-color-black);
  text-decoration: none;
}

.company .outline .outline-data dl > div:last-child dt,
.company .outline .outline-data dl > div:last-child dd {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .company .outline .outline-data {
    margin: 44px 0 0;
  }

  .company .outline .outline-data dl > div dt,
  .company .outline .outline-data dl > div dd {
    padding: 14px 18px 15px;
    font-size: 0.9375em;
    line-height: 1.5;
  }

  .company .outline .outline-data dl > div dt {
    min-width: 116px;
  }
}

/* offices */
.company .company-main > .offices {
  position: relative;
  margin: 104px auto 0;
  padding: 120px 0 104px;
}

.company .offices::before {
  position: absolute;
  top: 0;
  left: calc(-230px - 104px - ((100vw - var(--scrollbar-width) - 1164px) / 2));
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background-color: #edf3f7;
  content: "";
}

.company .offices > * {
  position: relative;
}

.company .offices ul {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin: 64px 0 0;
  padding: 0;
}

.company .offices ul li {
  display: flex;
  align-items: center;
  column-gap: 65px;
  padding-bottom: 64px;
  border-bottom: 1px solid #d9d9d9;
}

.company .offices ul li .office-info {
  /* width: 287px; */
}

.company .offices ul li .office-info h3 {
  font-size: 1.75em;
  line-height: 1.75;
}

.company .offices ul li .office-info p {
  margin: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.75;
}

.company .offices ul li .office-info p a {
  color: var(--main-color-black);
  text-decoration: none;
}

.company .offices ul li .office-info h3 + p {
  margin: 32px 0 0;
}

.company .offices ul li .office-info .office-links {
  display: flex;
  column-gap: 10px;
  margin: 24px auto 0;
}

.company .offices ul li .office-info .office-links .office-link {
  width: calc(50% - 5px);
  max-width: 139px;
}

.company .offices ul li .office-info .office-links .office-link a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 41px;
  padding: 0 34px 2px 16px;
  border: 2px solid #dfdfdf;
  border-radius: 40px;
  background-color: #fff;
  font-size: 0.8125em;
  font-weight: 500;
  color: var(--main-color-black);
  text-decoration: none;
}

.company .offices ul li .office-info .office-links .office-link a::before {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.company .offices ul li .office-info .office-links .map-link a::before {
  background-color: var(--main-color-black);
}

.company .offices ul li .office-info .office-links .contact-link a::before {
  background-color: var(--main-color-orange);
}

.company .offices ul li .office-info .office-links .office-link a::after {
  position: absolute;
  top: 50%;
  right: 19px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  content: "";
}

.company .offices ul li .office-info .office-links .map-link a::after {
  background: url(/assets/images/icon_outer.svg) center center / cover no-repeat;
}

.company .offices ul li .office-info .office-links .contact-link a::after {
  background: url(/assets/images/icon_arrow.svg) center center / cover no-repeat;
}

.company .offices ul li .office-info .office-links .office-link a:hover::before {
  transform: translateY(-50%) scale(1.3);
}

.company .offices ul li .office-info .office-links .contact-link a:hover::after {
  animation: slide-arrow-right 0.3s ease-in-out;
}

.company .offices ul li figure {
  flex: 1;
}

.company .offices ul li figure img {
  width: 100%;
}

@media screen and (max-width: 1204px) {
  .company .offices::before {
    left: calc(-230px - 104px - 20px);
  }
}

@media screen and (max-width: 1200px) {
  .company .offices ul li {
    column-gap: 20px;
  }
}

@media screen and (max-width: 1040px) {
  .company .offices::before {
    left: calc(-200px - 40px - 20px);
  }

  .company .offices ul li {
    row-gap: 32px;
    flex-direction: column;
  }

  .company .offices ul li {
    padding-bottom: 0;
    border-bottom: none;
  }

  .company .offices ul li .office-info {
    width: 100%;
  }

  .company .offices ul li .office-info .office-links {
    margin: 18px auto 0;
  }

  .company .offices ul li .office-info .office-links .office-link {
    width: calc(50% - 15px);
  }

  .company .offices ul li .office-info .office-links .office-link a {
    height: 45px;
    padding: 0 34px 1px 16px;
    font-size: 0.875em;
  }

  .company .offices ul li .office-info .office-links .office-link a::before {
    right: 15px;
  }

  .company .offices ul li .office-info .office-links .office-link a::after {
    top: 50%;
    right: 19px;
  }

  .company .offices ul li figure {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .company .company-main > .offices {
    margin: 64px auto 0;
    padding: 64px 0;
  }

  .company .offices::before {
    left: -20px;
    width: calc(100% + 40px);
  }

  .company .offices ul {
    gap: 56px;
    margin: 44px 0 0;
  }

  .company .offices ul li .office-info h3 {
    font-size: 1.25em;
  }

  .company .offices ul li .office-info h3 + p {
    margin: 14px 0 0;
    font-size: 0.9375em;
  }
}

/* iso */
.company .iso .iso-info {
  margin: 80px 0 0;
  padding: 67px 64px;
  border-radius: 16px;
  background-color: rgb(217, 217, 217, 0.12);
}

.company .iso .iso-info > figure {
  max-width: 404px;
  margin: 0 auto;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  overflow: hidden;
}

.company .iso .iso-info > figure img {
  width: 100%;
}

.company .iso .iso-info > p {
  margin: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.75;
}

.company .iso .iso-info > p b {
  color: var(--main-color-orange);
  font-weight: 500;
}

.company .iso .iso-info > figure + p {
  margin: 48px 0 0;
}

.company .iso ul {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
  margin: 64px 0 0;
  padding: 0;
}

.company .iso ul li a {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 50px;
  padding-bottom: 27px;
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  text-decoration: none;
}

.company .iso ul li a::before,
.company .iso ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
}

.company .iso ul li a::before {
  width: 100%;
  background-color: #dfdfdf;
}

.company .iso ul li a::after {
  width: calc(100% * (1 / 21));
  background: var(--gradient-blue);
}

.company .iso ul li a i {
  position: absolute;
  top: calc(50% - 13px);
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-blue);
  transform: translateY(-50%);
}

.company .iso ul li a i::before,
.company .iso ul li a i::after {
  display: inline-block;
  position: absolute;
  right: 13px;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 10px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
  content: "";
}

.company .iso ul li a i::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease;
}

.company .iso ul li.is-open a i::after {
  transform: translateY(-50%) rotate(180deg);
}

.company .iso ul li .iso-detail .iso-detail-title {
  margin: 48px 0 0;
  font-size: 1.5em;
  line-height: 1.5;
}

.company .iso ul li .iso-detail .iso-detail-title b {
  font-weight: 700;
}

.company .iso ul li .iso-detail p {
  margin: 16px 0 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.75;
}

.company .iso ul li .iso-detail ol {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  counter-reset: number 0;
}

.company .iso ul li .iso-detail ol li {
  position: relative;
  padding-left: 22px;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.75;
}

.company .iso ul li .iso-detail ol li::before {
  position: absolute;
  margin-left: -22px;
  content: counter(number) ".";
  counter-increment: number 1;
}

.company .iso ul li .iso-detail ol li ol {
  margin: 12px 0 0;
  padding: 0 0 0 16px;
}

@media screen and (max-width: 768px) {
  .company .iso .iso-info {
    margin: 47px 0 0;
    padding: 40px 24px;
  }

  .company .iso .iso-info > figure {
    width: 92%;
    max-width: 404px;
  }

  .company .iso .iso-info > figure + p {
    margin: 28px 0 0;
  }

  .company .iso ul {
    row-gap: 36px;
    margin: 36px 0 0;
  }

  .company .iso ul li a {
    padding-right: 30px;
    padding-bottom: 12px;
    font-size: 1.25em;
  }

  .company .iso ul li a i {
    position: absolute;
    top: calc(50% - 6px);
    width: 28px;
    height: 28px;
  }

  .company .iso ul li a i::before,
  .company .iso ul li a i::after {
    right: 9px;
    width: 10px;
    height: 2px;
  }

  .company .iso ul li .iso-detail .iso-detail-title {
    margin: 28px 0 0;
    font-size: 1.125em;
  }

  .company .iso ul li .iso-detail p {
    margin: 12px 0 0;
    font-size: 0.9375em;
  }

  .company .iso ul li .iso-detail ol {
    margin: 12px 0 0;
  }

  .company .iso ul li .iso-detail ol li {
    padding-left: 24px;
    font-size: 0.9375em;
  }

  .company .iso ul li .iso-detail ol li::before {
    margin-left: -24px;
  }

  .company .iso ul li .iso-detail ol li ol {
    margin: 10px 0 0;
  }

  .company .iso ul li .iso-detail ol li ol li {
    padding-left: 5px;
    font-size: 1em;
  }
}
