.page-title {
  background-image: url(../images/company/title-bg-company.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 30.52vw;
  max-height: 417px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 12px;
}

.page-title .container {
  width: 100%;
}

.page-title .page-title-inner {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 95px;
  margin-left: -0.8em;
}

.page-title .title {
  font-size: 15px;
  line-height: 1;
  color: #fff;
  padding-bottom: 16px;
}

.page-title .caveat {
  font-size: 110px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}

.page-title .breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.page-title .breadcrumb ul li {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #fff;
  display: flex;
  align-items: center;
}

.page-title .breadcrumb ul li:not(:last-child)::after {
  content: ">";
  display: inline-block;
  margin-left: 10px;
  font-size: 1.5em;
}

.page-title .breadcrumb ul li a {
  color: #fff !important;
}

@media screen and (min-width: 768px) and (max-width: 1366px) {
  .page-title {
    padding-bottom: 0.9vw;
  }

  .page-title .page-title-inner {
    gap: 2.2vw;
    margin-bottom: 6.9vw;
  }

  .page-title .title {
    font-size: 1.1vw;
    padding-bottom: 1.2vw;
  }

  .page-title .caveat {
    font-size: 8vw;
  }

  .page-title .breadcrumb ul {
    gap: 0.75vw;
  }

  .page-title .breadcrumb ul li {
    font-size: 0.9vw;
  }

  .page-title .breadcrumb ul li:not(:last-child)::after {
    margin-left: 0.75vw;
  }
}

@media screen and (max-width: 767px) {
  .page-title {
    background-image: url(../images/company/title-bg-company-sp.png);
    height: 77.6vw;
    max-height: unset;
    padding-bottom: 1.6vw;
  }

  .page-title .page-title-inner {
    gap: 7vw;
    margin-bottom: 16vw;
    margin-left: 0;
  }

  .page-title .title {
    font-size: 4vw;
    padding-bottom: 3vw;
  }

  .page-title .caveat {
    font-size: 20vw;
    letter-spacing: 0.04em;
  }

  .page-title .breadcrumb ul {
    gap: 4vw;
  }

  .page-title .breadcrumb ul li {
    font-size: 3vw;
  }

  .page-title .breadcrumb ul li:not(:last-child)::after {
    margin-left: 4vw;
  }
}

/* 会社案内 */

.company-content {
  padding-bottom: 70px;
  background-image: url(../images/company/bg.png);
  background-size: 100% auto;
  background-position: center top min(59vw, 810px);
  background-repeat: no-repeat;
}

.company-content-inner {
  margin-top: 70px;
}

.company-content-inner .company-content-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.company-content-inner .company-content-subtitle {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  font-size: 15px;
  line-height: 1;
  color: #4764dd;
  margin-bottom: 40px;
}

.company-content-inner .company-content-items,
.company-content-inner .company-content-history-items {
  padding: 20px 60px 50px;
  border-radius: 20px;
  border: 1px solid #4764dc;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.company-content-inner .company-content-item {
  display: flex;
  align-items: stretch;
  padding-top: 1.8em;
}

.company-content-inner .company-content-item-title {
  font-size: 18px;
  font-weight: bold;
  width: 150px;
  border-bottom: 2px solid #4764dc;
}

.company-content-inner .company-content-item-text-inner {
  padding-bottom: 2em;
  border-bottom: 2px solid #bebebe;
  padding-left: 2.5em;
  width: calc(100% - 150px);
}

.company-content-inner .company-content-item-text {
  font-size: 16px;
  letter-spacing: 0;
}

.company-content-inner .company-content-item-text-inner iframe {
  margin-top: 15px;
  max-width: 100%;
}

.company-content-inner .company-content-history-items {
  padding-top: 50px;
  padding-bottom: 30px;
}

.company-content-inner .company-content-history-item {
  display: flex;
}

.company-content-inner .company-content-history-item-year {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  color: #4764dc;
  text-align: right;
  position: relative;
  padding-right: 25px;
  width: 90px;
  height: fit-content;
  z-index: 2;
}

.company-content-inner .company-content-history-item-year::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #4764dc;
  border-radius: 50%;
  z-index: 2;
}

.company-content-inner .company-content-history-item-year::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  width: 46px;
  height: 1px;
  background-color: #4764dc;
  z-index: 1;
}

.company-content-inner .company-content-history-item-text-inner {
  padding-left: 60px;
  padding-bottom: 30px;
  position: relative;
}

.company-content-inner .company-content-history-item-text-inner::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #bebebe;
  z-index: 0;
}

.company-content-inner .company-content-history-item:last-of-type .company-content-history-item-text-inner {
  padding-bottom: 0;
}

.company-content-inner .company-content-history-item:first-of-type .company-content-history-item-text-inner::before {
  height: 90%;
  bottom: 0;
  top: unset;
}

.company-content-inner .company-content-history-item-text {
  margin-bottom: 20px;
}

.company-content-inner .company-content-history-item-text-month {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.company-content-inner .company-content-history-item-text-text {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}


@media screen and (max-width: 1200px) {
  .company-content {
    padding-bottom: 5.8vw;
  }
  
  .company-content-inner {
    margin-top: 5.8vw;
  }
  
  .company-content-inner .company-content-title {
    font-size: 2.6vw;
    margin-bottom: 1.25vw;
  }
  
  .company-content-inner .company-content-subtitle {
    font-size: 1.2vw;
    margin-bottom: 3.3vw;
  }
  
  .company-content-inner .company-content-items,
  .company-content-inner .company-content-history-items {
    padding: 1.7vw 5vw 4.2vw;
    border-radius: 1.7vw;
    border: 0.1vw solid #4764dc;
  }
  
  
  .company-content-inner .company-content-item-title {
    font-size: 1.5vw;
    width: 12.5vw;
    border-bottom: 0.1vw solid #4764dc;
  }
  
  .company-content-inner .company-content-item-text-inner {
    border-bottom: 0.16vw solid #bebebe;
    width: calc(100% - 12.5vw);
  }
  
  .company-content-inner .company-content-item-text {
    font-size: 1.3vw;
  }
  
  .company-content-inner .company-content-item-text-inner iframe {
    margin-top: 1.2vw;
  }
  
  .company-content-inner .company-content-history-items {
    padding-top: 4.2vw;
    padding-bottom: 2.7vw;
  }
  
  .company-content-inner .company-content-history-item-year {
    font-size: 2.1vw;
    padding-right: 2.1vw;
    width: 7.5vw;
  }
  
  .company-content-inner .company-content-history-item-year::before {
    width: 0.7vw;
    height: 0.7vw;
  }
  
  .company-content-inner .company-content-history-item-year::after {
    width: 4.2vw;
  }
  
  .company-content-inner .company-content-history-item-text-inner {
    padding-left: 5vw;
    padding-bottom: 2.7vw;
  }
  
  .company-content-inner .company-content-history-item-text-inner::before {
    width: 0.16vw;
  }
  
  .company-content-inner .company-content-history-item-text {
    margin-bottom: 1.7vw;
  }
  
  .company-content-inner .company-content-history-item-text-month {
    font-size: 1.5vw;
    margin-bottom: 1.7vw;
  }
  
  .company-content-inner .company-content-history-item-text-text {
    font-size: 1.3vw;
  }
}

@media screen and (max-width: 767px) {
  .company-content {
    padding-bottom: 18.6vw;
    background-image: url(../images/company/bg-sp.png);
    background-position: center top 138vw;
  }
  
  .company-content-inner {
    margin-top: 11.6vw;
  }
  
  .company-content-inner .company-content-title {
    font-size: 5.8vw;
    margin-bottom: 4.5vw;
  }
  
  .company-content-inner .company-content-subtitle {
    font-size: 4vw;
    margin-bottom: 11vw;
    letter-spacing: 0;
  }
  
  .company-content-inner .company-content-items,
  .company-content-inner .company-content-history-items {
    padding: 3vw 5vw 8vw;
    border-radius: 2.5vw;
    border: 0.5vw solid #4764dc;
  }

  .company-content-inner .company-content-item {
    padding-top: 2.5em;
    flex-direction: column;
  }
  
  
  .company-content-inner .company-content-item-title {
    font-size: 4.4vw;
    width: 100%;
    border-bottom: unset;
    margin-bottom: 3vw;
  }
  
  .company-content-inner .company-content-item-text-inner {
    border-bottom: 0.5vw solid #bebebe;
    width: 100%;
    padding-left: 0;
    position: relative;
  }

  .company-content-inner .company-content-item-text-inner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.5vw;
    width: 26.6vw;
    height: 0.5vw;
    background-color: #4764dc;
  }
  .company-content-inner .company-content-item-text {
    font-size: 4vw;
  }
  
  .company-content-inner .company-content-item-text-inner iframe {
    margin-top: 3vw;
    width: 81.3vw;
    height: 39.7vw;
  }
  
  .company-content-inner .company-content-history-items {
    padding: 8vw 4.5vw 2.7vw;
  }
  
  .company-content-inner .company-content-history-item-year {
    font-size: 5.5vw;
    padding-right: 3.5vw;
    min-width: 17vw;
  }
  
  .company-content-inner .company-content-history-item-year::before {
    width: 2vw;
    height: 2vw;
  }
  
  .company-content-inner .company-content-history-item-year::after {
    width: 7vw;
    height: 0.25vw;
  }
  
  .company-content-inner .company-content-history-item-text-inner {
    padding-left: 11vw;
    padding-bottom: 4vw;
  }
  
  .company-content-inner .company-content-history-item-text-inner::before {
    width: 0.5vw;
  }
  
  .company-content-inner .company-content-history-item-text {
    margin-bottom: 3vw;
  }
  
  .company-content-inner .company-content-history-item-text-month {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
  
  .company-content-inner .company-content-history-item-text-text {
    font-size: 4vw;
  }
  
}