.anchor {
  margin-bottom: 128px;
}
.anchor .container {
  background-color: #F4F4F4;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 32px 50px;
  gap: 20px 56px;
}
.anchor a {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.5s ease;
}
.anchor a path {
  transition: all 0.5s ease;
}
.anchor a:hover {
  color: #0A6ADD;
}
.anchor a:hover path {
  stroke: #0A6ADD;
}

@media screen and (max-width: 768px) {
  .anchor .container {
    padding: 20px 30px;
  }
}
.under_ttl_wrap {
  margin-bottom: 60px;
}
.under_ttl_wrap .en {
  color: #0A6ADD;
  font-weight: 700;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}
.under_ttl_wrap h2 {
  margin-top: 12px;
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 26px;
  border-bottom: 1px solid #C9C9C9;
}

@media screen and (max-width: 768px) {
  .under_ttl_wrap {
    margin-bottom: 40px;
  }
  .under_ttl_wrap h2 {
    font-size: 30px;
  }
}
main .container {
  max-width: 1280px;
  margin: 0 auto 128px;
  scroll-margin: 82px;
}
main .container:last-child {
  margin-bottom: 144px;
}

@media screen and (max-width: 1440px) {
  main .container {
    padding: 0 4vw;
    scroll-margin: 76px;
  }
}
@media screen and (max-width: 1024px) {
  main .container {
    margin-bottom: 80px;
    scroll-margin: 86px;
    margin: 0 auto 80px;
  }
  main .container:last-child {
    margin-bottom: 80px;
  }
}
.message .flex_box {
  display: flex;
  gap: 90px;
  align-items: center;
}
.message .flex_box .left {
  width: 480px;
}
.message .flex_box .right {
  width: 710px;
}
.message .flex_box .right h3 {
  font-size: 32px;
  line-height: 1.625;
}
.message .flex_box .right .text {
  margin: 38px 0 50px;
  font-weight: 400;
  line-height: 1.75;
}
.message .flex_box .right .president {
  font-weight: 400;
}
.message .flex_box .right .name {
  margin-top: 10px;
  font-size: 20px;
}

@media screen and (max-width: 1440px) {
  .message .flex_box {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .message .flex_box {
    flex-direction: column;
  }
  .message .flex_box .left {
    width: 100%;
  }
  .message .flex_box .right {
    width: 100%;
  }
  .message .flex_box .right h3 {
    font-size: max(4.5vw, 20px);
  }
}
.outline .table li {
  display: flex;
  font-weight: 400;
  line-height: 1.5;
  gap: 12px;
}
.outline .table li .left {
  width: 340px;
  padding: 24px 32px 24px 16px;
  border-top: 1px solid #0A6ADD;
}
.outline .table li .right {
  width: 930px;
  padding: 24px 32px;
  border-top: 1px solid #C9C9C9;
}
.outline .table li:last-child .left {
  border-bottom: 1px solid #0A6ADD;
}
.outline .table li:last-child .right {
  border-bottom: 1px solid #C9C9C9;
}

@media screen and (max-width: 768px) {
  .outline .table li {
    flex-direction: column;
    gap: 0;
  }
  .outline .table li .left {
    width: 100%;
    padding: 1em 1.5em;
  }
  .outline .table li .right {
    width: 100%;
    padding: 1em 1.5em;
  }
  .outline .table li:last-child .left {
    border-bottom: none;
  }
  .outline .table li:last-child .right {
    border-bottom: 1px solid #0A6ADD;
  }
}
.org_chart .chart {
  max-width: 1000px;
  margin: 0 auto;
}

.history .data {
  padding-left: 60px;
}
.history .data li {
  display: flex;
  align-items: center;
}
.history .data li .dots {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: #0A6ADD;
  position: relative;
  border-radius: 50%;
}
.history .data li .dots::before {
  content: "";
  width: 1px;
  height: var(--dot-height, 0px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  background-color: #0A6ADD;
}
.history .data li .year {
  margin-left: 24px;
  font-size: 24px;
  width: 88px;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
}
.history .data li .era_text {
  margin-left: 52px;
  display: flex;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid #C9C9C9;
  width: 1040px;
  gap: 42px;
  font-weight: 400;
}
.history .data li .era_text .era {
  flex-shrink: 0;
  text-align: right;
  line-height: 1.5;
  width: 100px;
}
.history .data li .era_text .text {
  flex-grow: 1;
  line-height: 1.5;
}
.history .data li:last-child .dots::before {
  display: none;
}

@media screen and (max-width: 1024px) {
  .history .data {
    padding-left: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .history .data {
    padding-left: 0;
  }
  .history .data li {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #C9C9C9;
  }
  .history .data li .dots {
    display: none;
  }
  .history .data li .year {
    margin: 0;
  }
  .history .data li .era_text {
    flex-direction: column;
    width: 100%;
    margin: 0;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
    border: none;
  }
  .history .data li .era_text .era {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.locations .ttls {
  display: flex;
  align-items: center;
  gap: 28px;
  line-height: 1.5;
}
.locations .ttls h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  font-weight: 700;
}
.locations .ttls p {
  font-family: "Roboto", sans-serif;
  color: #0A6ADD;
}
.locations .ttls p span {
  font-weight: 600;
}
.locations .google_btn {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 9px 24px 13px;
  border: 1px solid #0A6ADD;
  border-radius: 50px;
  color: #0A6ADD;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  transition: all 0.5s ease;
}
.locations .google_btn path {
  transition: all 0.5s ease;
}
.locations .google_btn:hover {
  color: #fff;
  background-color: #0A6ADD;
}
.locations .google_btn:hover path {
  fill: #fff;
}
.locations .head {
  border-top: 3px solid #E6EDF5;
  position: relative;
  padding: 56px 0 80px;
  display: flex;
  align-items: center;
  gap: 40px 77px;
}
.locations .head::before {
  content: "";
  width: 25%;
  height: 3px;
  position: absolute;
  top: -3px;
  left: 0;
  background-color: #0A6ADD;
}
.locations .head .left {
  flex-grow: 1;
}
.locations .head .left .address {
  margin: 34px 0 32px;
  font-weight: 400;
  line-height: 1.5;
}
.locations .head .left .table {
  margin-top: 32px;
}
.locations .head .left .table table {
  line-height: 1.5;
  width: 100%;
}
.locations .head .left .table table th {
  width: 160px;
  padding: 16px 24px;
  color: #0A6ADD;
  border: 1px solid #C9C9C9;
  font-weight: 400;
}
.locations .head .left .table table td {
  padding: 16px 20px;
  border: 1px solid #C9C9C9;
  font-weight: 400;
}
.locations .head .right {
  width: 560px;
}

@media screen and (max-width: 1024px) {
  .locations .ttls {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .locations .ttls h3 {
    font-size: max(3.5vw, 24px);
  }
  .locations .head {
    gap: 40px;
  }
  .locations .head .left .table table th, .locations .head .left .table table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .locations .head .left .table table tr:last-child td {
    border-bottom: 1px solid #C9C9C9;
  }
}
@media screen and (max-width: 768px) {
  .locations .head {
    flex-direction: column;
  }
  .locations .head .left, .locations .head .right {
    width: 100%;
  }
}
.branches {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 56px;
}
.branches:last-child {
  margin-bottom: 0;
}
.branches li {
  width: calc(50% - 20px);
  position: relative;
  border-top: 3px solid #E6EDF5;
  padding-top: 56px;
}
.branches li::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 38.7%;
  height: 3px;
  background-color: #0A6ADD;
}
.branches li .address {
  margin: 32px 0;
  line-height: 1.5;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .branches li {
    width: 100%;
  }
}
main h4 {
  display: block;
  background-color: #F4F4F4;
  font-weight: 700;
  font-size: 24px;
  padding: 20px 40px;
  margin-bottom: 40px;
}/*# sourceMappingURL=company.css.map */