@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.page-header {
  position: relative;
  background-image: url(../img/company/header-bg.webp);
  background-repeat: no-repeat;
  background-position: center 40%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .page-header {
    overflow: hidden;
    background-image: url(../img/company/header-bg-sp.webp);
  }
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(7, 70, 127, 0.6);
}

section.headline-section .wrapper > ul {
  display: grid;
}

main section:nth-of-type(2n + 1) {
  background-color: #f7f9ff;
}

main section .wrapper .with-subtitle {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  main section .wrapper .with-subtitle {
    margin-bottom: 3.2rem;
  }
}
main section .wrapper .text-and-image {
  display: grid;
  grid-template-columns: 1fr 49.6rem;
  gap: 13rem 10rem;
}
@media screen and (max-width: 768px) {
  main section .wrapper .text-and-image {
    grid-template-columns: 100%;
    gap: 3.2rem;
  }
}
main section .wrapper .text-and-image .left > p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  color: #222;
  text-align: justify;
}
main section .wrapper .text-and-image .left > p.lead {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
}
main section .wrapper .text-and-image .left .signature {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  color: #222;
  text-align: right;
  margin-top: 2rem;
}
main section .wrapper .text-and-image .right > img {
  width: 49.6rem;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  main section .wrapper .text-and-image .right > img {
    width: 100%;
  }
}
main section .wrapper .text-and-image .bottom-image {
  grid-column: 1/3;
}
@media screen and (max-width: 768px) {
  main section .wrapper .text-and-image .bottom-image {
    grid-column: 1/2;
  }
}
main section .wrapper .text-and-image .bottom-image img {
  display: block;
  width: 50rem;
  object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main section .wrapper .text-and-image .bottom-image img {
    width: 30rem;
  }
}
main section .wrapper > p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  color: #222;
  text-align: center;
}
main section .wrapper .mottos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 4rem 0 12rem;
  counter-reset: mottos-counter;
}
@media screen and (max-width: 768px) {
  main section .wrapper .mottos {
    grid-template-columns: repeat(1, 1fr);
    margin: 2rem 0 5.6rem;
  }
}
main section .wrapper .mottos li {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  color: #1e4f84;
  text-align: center;
  background-color: #fff;
  border-radius: 2rem;
  padding: 8.4rem 2rem 2rem;
  counter-increment: mottos-counter;
}
@media screen and (max-width: 768px) {
  main section .wrapper .mottos li {
    font-size: 2rem;
  }
}
main section .wrapper .mottos li::before {
  content: counter(mottos-counter, decimal-leading-zero);
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 0.15rem #1e4f84;
}
main section .wrapper .action-points {
  display: grid;
  grid-template-columns: repeat(1fr);
  gap: 4rem;
  counter-reset: action-points-counter;
}
main section .wrapper .action-points li {
  position: relative;
  border-radius: 2rem;
  background-color: #fff;
  padding: 2rem;
  display: flex;
  gap: 4rem;
  counter-increment: action-points-counter;
}
@media screen and (max-width: 768px) {
  main section .wrapper .action-points li {
    flex-direction: column;
  }
}
main section .wrapper .action-points li > h4 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  background-color: #f7f9ff;
  width: 29.2rem;
  flex-shrink: 0;
  color: #1e4f84;
  height: 14.5rem;
}
main section .wrapper .action-points li > h4::before {
  content: counter(action-points-counter, decimal-leading-zero);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: transparent;
  -webkit-text-stroke: 0.15rem #1e4f84;
}
main section .wrapper .action-points li > p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  color: #222;
}
main section .wrapper .action-points li:nth-child(2) > h4,
main section .wrapper .action-points li:nth-child(4) > h4 {
  height: 15rem;
}
main section .wrapper .action-points li:nth-child(5) > h4 {
  height: 11.6rem;
}
main section .wrapper > ol {
  --timeline-gap: 4rem;
  --timeline-line-width: 0.085rem;
  --timeline-dot-offset: 4rem;
  --timeline-dot-center-y: 1.8rem;
  --timeline-line-shift: calc(var(--timeline-line-width) / 2);
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  main section .wrapper > ol {
    --timeline-gap: 3.2rem;
  }
}
main section .wrapper > ol > li {
  position: relative;
  width: calc(50% - 4rem);
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  main section .wrapper > ol > li {
    width: calc(100% - 4rem);
    margin-left: 4rem;
    margin-bottom: 3.2rem;
  }
}
main section .wrapper > ol > li::after {
  content: "";
  position: absolute;
  top: var(--timeline-dot-center-y);
  width: var(--timeline-line-width);
  background-color: #000;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main section .wrapper > ol > li::after {
    left: calc(-1 * var(--timeline-dot-offset) - var(--timeline-line-shift));
    right: auto;
  }
}
main section .wrapper > ol > li:not(:last-child)::after {
  height: calc(100% + var(--timeline-gap));
}
main section .wrapper > ol > li:last-child::after {
  height: calc(100% - var(--timeline-dot-center-y));
}
main section .wrapper > ol > li:nth-child(2n+1)::after {
  right: calc(-1 * var(--timeline-dot-offset) - var(--timeline-line-shift));
}
main section .wrapper > ol > li:nth-child(2n)::after {
  left: calc(-1 * var(--timeline-dot-offset) - var(--timeline-line-shift));
}
main section .wrapper > ol > li:last-child {
  margin-bottom: 0;
}
main section .wrapper > ol > li > h3 {
  display: flex;
  width: fit-content;
  margin-left: auto;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1%;
  color: #fff;
  padding: 0.8rem 1.4rem;
  background-color: #8b8b8b;
  position: relative;
  z-index: 1;
  border-radius: 0.5rem;
}
main section .wrapper > ol > li > h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.9rem;
  transform: translateY(-50%);
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 1rem solid #8b8b8b;
}
main section .wrapper > ol > li > h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 3.2rem);
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: #8b8b8b;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  main section .wrapper > ol > li > h3 {
    margin-left: 0;
    margin-right: auto;
  }
  main section .wrapper > ol > li > h3::after {
    right: auto;
    left: -0.9rem;
    border-right: 1rem solid #8b8b8b;
    border-left: 0;
  }
  main section .wrapper > ol > li > h3::before {
    right: calc(100% + 3.2rem);
    left: auto;
  }
}
main section .wrapper > ol > li > p {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 4%;
  color: #222;
  text-align: right;
}
@media screen and (max-width: 768px) {
  main section .wrapper > ol > li > p {
    margin-top: 1.2rem;
    text-align: left;
  }
}
main section .wrapper > ol > li:nth-child(2n) {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  main section .wrapper > ol > li:nth-child(2n) {
    margin-left: 4rem;
  }
}
main section .wrapper > ol > li:nth-child(2n) > h3 {
  margin-right: auto;
  margin-left: 0;
}
main section .wrapper > ol > li:nth-child(2n) > h3::after {
  right: auto;
  left: -0.9rem;
  border-right: 1rem solid #8b8b8b;
  border-left: 0;
}
main section .wrapper > ol > li:nth-child(2n) > h3::before {
  right: calc(100% + 3.2rem);
  left: auto;
}
main section .wrapper > ol > li:nth-child(2n) > p {
  text-align: left;
}
main section .wrapper .tabs > .tab-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.4rem;
}
main section .wrapper .tabs > .tab-bars > .tab-bar {
  position: relative;
  appearance: none;
  border: 0;
  background-color: #e7e7e7;
  color: #6d7785;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  padding: 1.4rem 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 768px) {
  main section .wrapper .tabs > .tab-bars > .tab-bar {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    text-align: left;
    padding: 1.4rem 0.47rem;
  }
}
main section .wrapper .tabs > .tab-bars > .tab-bar:not(.is-active) {
  border-bottom: 0.1rem solid #8b8b8b;
}
main section .wrapper .tabs > .tab-bars > .tab-bar:first-child {
  border-left: 0;
}
main section .wrapper .tabs > .tab-bars > .tab-bar:last-child {
  border-right: 0;
}
main section .wrapper .tabs > .tab-bars > .tab-bar.is-active {
  background-color: #fff;
  color: #222;
  border: 0.1rem solid #8b8b8b;
  border-bottom: none;
}
main section .wrapper .tabs .tab-contents {
  background-color: #fff;
  padding: 4rem;
  border: 0.1rem solid #8b8b8b;
  border-top: none;
}
main section .wrapper .tabs .tab-contents .tab-content {
  display: none;
}
main section .wrapper .tabs .tab-contents .tab-content.is-active {
  display: block;
}
main section .wrapper .tabs .tab-contents .tab-content img {
  width: 100%;
  height: auto;
  display: block;
}
main section .wrapper .tabs .tab-contents .tab-content * + h3 {
  margin-top: 8rem;
}
main section .wrapper .tabs .tab-contents .holders .tables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
main section .wrapper .tabs .tab-contents .holders .tables .right {
  display: flex;
  flex-direction: column;
}
main section .wrapper .tabs .tab-contents .holders .tables .right > p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  color: #222;
  text-align: right;
  margin-top: auto;
}
main section .wrapper .tabs .tab-contents table:not(.colored) {
  border-collapse: collapse;
}
main section .wrapper .tabs .tab-contents table:not(.colored) tr:nth-child(1) th,
main section .wrapper .tabs .tab-contents table:not(.colored) tr:nth-child(1) td {
  background-color: #1e4f84;
  color: #fff;
}
main section .wrapper .company-info {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  main section .wrapper .company-info {
    flex-direction: column;
  }
}
main section .wrapper .company-info > dt, main section .wrapper .company-info > dd {
  padding: 2rem 0;
}
main section .wrapper .company-info > dt {
  width: 30rem;
  margin: 0;
  border-top: 0.1rem solid #7d95ab;
  color: #222;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
main section .wrapper .company-info > dd {
  position: relative;
  width: calc(100% - 30rem);
  margin: 0;
  border-top: 0.1rem solid #7d95ab;
  font-family: "Yu Gothic", sans-serif;
  color: #4c525b;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  main section .wrapper .company-info > dd {
    border-top: none;
    width: 100%;
    padding-top: 0;
  }
}
main section .wrapper .company-info > dd a {
  display: block;
  width: fit-content;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  line-height: 1;
}
main section .wrapper .company-info > dd a:first-of-type, main section .wrapper .company-info > dd a:nth-of-type(13) {
  margin-top: 1rem;
}
main section .wrapper .company-info > dt:last-of-type + dd a:first-of-type {
  margin-top: 0;
}
main section .wrapper .company-info > dt:first-of-type, main section .wrapper .company-info > dt:first-of-type + dd {
  border-top: 0;
}
main section .wrapper .company-info > dt:last-of-type, main section .wrapper .company-info > dt:last-of-type + dd {
  border-bottom: 0.1rem solid #7d95ab;
}
@media screen and (max-width: 768px) {
  main section .wrapper .company-info > dt:last-of-type {
    border-bottom: none;
  }
}

section.management-plan .wrapper .bottom-border {
  margin-bottom: 1rem;
}
section.management-plan .wrapper .lead {
  text-align: center;
  margin-bottom: 4rem;
}
section.management-plan .wrapper > p {
  text-align: justify;
}
section.management-plan .wrapper > h4 {
  margin: 4rem 0 2rem;
  border-radius: 2rem;
  border: 0.1rem solid #1e4f84;
  padding: 2rem;
  color: #1e4f84;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  section.management-plan .wrapper > h4 {
    font-size: 2rem;
  }
}
section.management-plan .wrapper .blue-box {
  background-color: #f7f9ff;
  display: flex;
  flex-direction: column;
  margin: 4rem 0;
  border-radius: 2rem;
  padding: 2rem;
}
section.management-plan .wrapper .blue-box > h4 {
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 700;
  color: #1e4f84;
  text-align: center;
}
section.management-plan .wrapper .blue-box > p {
  color: #1e4f84;
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section.management-plan .wrapper .blue-box > p {
    font-size: 2rem;
    letter-spacing: 0;
    text-align: left;
  }
}
section.management-plan .wrapper > img {
  display: block;
  width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.management-plan .wrapper > img {
    width: 100%;
  }
}

section.access .wrapper .with-subtitle {
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  section.access .wrapper .with-subtitle {
    margin-bottom: 5.6rem;
  }
}
section.access .wrapper .expanders > .expander-item.office-list.is-open > .content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem 6rem;
}
@media screen and (max-width: 768px) {
  section.access .wrapper .expanders > .expander-item.office-list.is-open > .content {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
section.access .wrapper .expanders > .expander-item.office-list > .content .place.no-map {
  margin-bottom: 0;
}
section.access .wrapper .expanders > .expander-item > .content .place {
  display: grid;
  grid-template-columns: 1fr 60rem;
  margin-bottom: 4rem;
  gap: 4rem;
}
section.access .wrapper .expanders > .expander-item > .content .place.no-map {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 768px) {
  section.access .wrapper .expanders > .expander-item > .content .place {
    grid-template-columns: 100%;
  }
}
section.access .wrapper .expanders > .expander-item > .content .place:last-child {
  margin-bottom: 0;
}
section.access .wrapper .expanders > .expander-item > .content .place .text {
  flex: 0 0 50rem;
}
@media screen and (max-width: 768px) {
  section.access .wrapper .expanders > .expander-item > .content .place .text {
    flex: 0 0 100%;
  }
}
section.access .wrapper .expanders > .expander-item > .content .place .text h4 {
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: #222;
}
section.access .wrapper .expanders > .expander-item > .content .place .text p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #222;
}
section.access .wrapper .expanders > .expander-item > .content .place .text p a {
  color: #1e4f84;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
section.access .wrapper .expanders > .expander-item > .content .place .map {
  height: 30rem;
}
@media screen and (max-width: 768px) {
  section.access .wrapper .expanders > .expander-item > .content .place .map {
    width: 100%;
    height: 17.6rem;
    margin: 0 auto;
  }
}
section.access .wrapper .expanders > .expander-item > .content .place .map iframe {
  width: 100%;
  height: 100%;
}

table.colored {
  table-layout: fixed;
  border-collapse: collapse;
}
table.colored tr th,
table.colored tr td {
  padding: 0 0.4rem;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}
table.colored tr th {
  width: 16rem;
  color: #fff;
  background: #1e4f84;
  border: 0.1rem solid #fff;
}
table.colored tr td {
  border: 0.1rem solid #222;
}

section.company-info-section .images .image img {
  width: 100%;
  max-width: 100%;
}
section.company-info-section .images .image + .image {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  section.company-info-section .images .image + .image {
    margin-top: 5.6rem;
  }
}
section.company-info-section dl {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  section.company-info-section dl {
    margin-top: 5.6rem;
  }
}

/*# sourceMappingURL=company.css.map */
