.breadcrumb.-top {
  padding: 25px 0;
  margin-top: 0;
  margin-bottom: 0;
}

.mainpart {
  padding: 2rem 0 7rem;
}

.bg-curve {
  position: relative;
}

.bg-curve::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 123rem;
  background: #F5F5F5;
  border-radius: 50%;
  top: 4%;
  left: -30%;
  transform: rotate(-8deg);
  z-index: -2;
}

main::before {
  content: "";
  position: absolute;
  top: 19%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/enterpri/innovation/assets/img/finance/bg_pc.png);
  background-size: cover;
  z-index: -1;
}

/* ---------- MV ---------- */
.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mv picture,
.mv img {
  display: block;
  width: 100%;
  height: auto;
}

.mv__title {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  font-size: clamp(24px, 4vw, 55px);
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.container {
  padding: 0 15px;
}

.title-xl {
  border-left: unset;
  padding-left: 0;
}

.txt-normal {
  margin-top: 3.5rem;
  font-size: 1.6rem;
}

/* ---------- interview ---------- */
.interview-card {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 800px;
  margin: 132px auto 0;
}

.interview-card__inner {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  padding: 40px 60px 30px;
  /* border-radius: 6px; */
  position: relative;
  /* overflow: hidden; */
  transition: .3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.interview-card__content {
  max-width: 55%;
  text-align: center;
}

.interview-card__title {
  font-size: 4rem;
  font-weight: 800;
  color: #014694;
  margin-bottom: 24px;
  border-bottom: 2px solid #014694;
  display: inline-block;
  padding-bottom: 16px;
}

.interview-card__lead {
  font-size: 18px;
  text-align: center;
  line-height: 1.7;
  font-weight: 800;
  margin-bottom: 32px;
}

.interview-card__name {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.interview-card__cta {
  display: inline-flex;
  align-items: center;
  background: #014694;
  color: #fff;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: .3s ease;
  width: 100%;
  justify-content: center;
  position: relative;
  font-size: 2rem;
}

.interview-card__cta .arrow {
  position: absolute;
  right: 24px;
  background: #fff;
  color: #014694;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

.interview-card__image {
  position: absolute;
  right: 60px;
  bottom: 0;
}

.interview-card__image img {
  max-width: 309px;
  height: auto;
  display: block;
}

.credit {
  position: absolute;
  right: 30px;
  bottom: 8px;
  z-index: 100;
  font-size: 1.4rem;
  background: linear-gradient(90deg, #fff 0%, #000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.interview-card:hover .interview-card__cta {
  background: #c40000;
}

.interview-card:hover .interview-card__cta .arrow {
  background: #fff;
  color: #c40000;
}

/* ---------- PROJECTS ---------- */
.projects {
  margin-top: 48px;
  /* position: relative; */
}

/* .projects:nth-of-type(2)::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 45%;
  background: #F5F5F5;
  border-radius: 50%;
  top: 4%;
  left: -30%;
  transform: rotate(-8deg);
  z-index: -2;
} */

.projects__title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #014694;
  margin-bottom: 16px;
}

.accordion {
  border: 2px solid #001469;
}

.accordion__header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 40px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.accordion__head-left {
  display: flex;
  align-items: center;
  gap: 80px;
}

.accordion__logo img {
  width: 245px;
}

.accordion__service {
  font-weight: 500;
  font-size: 1.6rem;
}

.accordion__company {
  font-size: 1.6rem;
  margin-top: 8px;
}

.accordion__icon {
  width: 14px;
  height: 14px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: .3s ease;
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(-135deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: #fff;
}

.accordion__inner {
  border-top: 2px solid #001469;
  margin: 0 40px;
  padding: 40px 0;
}

.accordion__inner h4 {
  font-size: 2.6rem;
  font-weight: bold;
  color: #001469;
  margin-top: 56px;
  margin-bottom: 16px;
}

.accordion__inner h4:first-child {
  margin-top: 0;
}

.accordion__inner p {
  font-size: 1.6rem;
  line-height: 2;
}

.accordion__inner a {
  color: #0000ff;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.accordion__inner p:not(:first-child) {
  margin-top: 20px;
}

/* ---------- CONTACT ---------- */
.contact {
  background: #f5f5f5;
  max-width: 1100px;
  margin: 120px auto 0;
  padding: 60px 40px;
}

.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact__ttl {
  color: #174a8b;
  font-size: 3rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: min(650px, 90%);
  margin: 0 auto 24px;
  padding: 20px 40px;
  text-decoration: none;
  color: #174a8b;
  font-size: 20px;
  letter-spacing: 3px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  transition: .25s ease;
}

.contact__btnIcon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #174a8b;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  transition: .25s ease;
}

.contact__btn:hover {
  color: #c40000;
}

.contact__btn:hover .contact__btnIcon {
  background: #c40000;
}

.contact__note {
  font-size: 1.4rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .cards-block {
    margin-top: 5rem;
  }
}

@media (max-width: 767px) {
  .mainpart .main-section:first-child {
    margin-top: 4rem;
  }

  .mainpart {
    padding: 0;
  }

  .mv__title {
    top: 20%;
    font-size: 8vw;
  }

  .title-xl {
    font-size: 2.7rem;
  }

  .txt-normal {
    margin-top: 2.4rem;
    font-size: 1.2rem;
  }

  .bg-curve::before {
    height: 31%;
    width: 199%;
    top: 6%;
    border-radius: 35%;
    transform: rotate(-13deg);
  }

  .interview-card {
    max-width: 500px;
    margin-top: 36px;
  }

  .interview-card__inner {
    padding: 16px 20px 12px;
  }

  .interview-card__title {
    font-size: 18px;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }

  .interview-card__lead {
    font-size: 8px;
    margin-bottom: 15px;
  }

  .interview-card__name {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .interview-card__cta {
    padding: 8px 12px;
    font-size: 9px;
  }

  .interview-card__cta .arrow {
    width: 13px;
    height: 13px;
    right: 12px;
  }

  .interview-card__image {
    right: 12px;
  }

  .interview-card__image img {
    width: 134px;
  }

  .credit {
    font-size: .6rem;
    right: 10px;
    bottom: 5px;
  }

  .projects {
    margin-top: 40px;
  }

  .projects:nth-of-type(1) {
    margin-top: 24px;
  }

  .projects__title {
    font-size: 2.3rem;
  }

  .accordion__header {
    position: relative;
    padding: 24px;
    text-align: center;
    justify-content: center;
  }

  .accordion__head-left {
    flex-direction: column;
    gap: 15px;
  }

  .accordion__logo img {
    width: 190px;
  }

  .accordion__service {
    font-size: 1.2rem;
  }

  .accordion__company {
    font-size: 1.2rem;
  }

  .accordion__icon {
    position: absolute;
    right: 16px;
  }

  .accordion__inner {
    margin: 0 8px;
    padding: 24px 0;
  }

  .accordion__inner h4 {
    font-size: 2rem;
    margin-top: 35px;
    margin-bottom: 16px;
  }

  .accordion__inner h4:first-child {
    margin-top: 0;
  }

  .accordion__inner p {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .accordion__inner a {
    text-underline-offset: 4px;
    line-height: 2;
  }

  .accordion__inner p:not(:first-child) {
    margin-top: 13px;
  }

  .contact {
    padding: 30px 12px;
    margin: 60px 12px 0;
  }

  .contact__ttl {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .contact__btn {
    padding: 12px 18px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    gap: 14px;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  }

  .contact__btnIcon {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .contact__note {
    font-size: .9rem;
    line-height: 1.8;
  }

  .breadcrumb-item {
    font-size: 1.1rem;
  }
}