body {
    background-size: 100% auto;
}

.main-content {
  background-color: #e8edf5;
}

.mainvisual {
    padding-bottom: 0px;
}

.mainvisual img {}

@media screen and (max-width: 768px) {
  .mainvisual img {}

  .c-scroll__icon.--pages {
    top: -80px;
    right: 0px;
  }
}

.wrap {
    max-width: 1280px;
    margin: auto;
    /* padding: 0 30px; */
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@media screen and (max-width: 768px) {
    .wrap {}
}

/* Profile Section */
.profile-section {
    padding: 60px 0 40px;
    text-align: center;
}

.profile-name {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #3b3b3b;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.profile-title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3b3b3b;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
    .profile-section {
        padding: 32px 0 24px;
    }

    .profile-name {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .profile-title {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* Interview List */
.interview-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 40px 0 0;
}

@media screen and (max-width: 768px) {
    .interview-list {
        gap: 48px;
        padding: 24px 0 0;
    }
}

/* Interview Item */
.interview-item {
  position: relative;
  margin-bottom: 96px;
}

.interview-number {
  position: relative;
  margin-bottom: 20px;
  padding-left: 198px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #d32d26;
  line-height: 1;
  letter-spacing: 0.02em;
}

.interview-number::before {
  content: "";
  border-top: 1px solid #d32d26;
  padding-left: 188px;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
}

@media screen and (max-width: 768px) {
  .interview-item {
    margin-bottom: 48px;
  }

  .interview-number {
    margin-bottom: 16px;
    padding-left: 74px;
    font-size: 12px;
  }

  .interview-number::before {
    /* display: none; */
    padding-left: 64px;
  }
}

.interview-question {
  display: inline; /* 各行のテキスト幅に合わせる */
  line-height: 3.2; /* 行間 */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-left: 109px;
  margin-right: 30px;
  padding: 8px 18px 10px 16px;
  background-color: #121212;
  color: #fbfbfb;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.interview-question br {
  content: "";
  display: block;
  margin-bottom: 6px; /* 行間 */
}
.interview-question br.sp {
    display: none;
  }

.interview-question-wrapper {
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .interview-question {
      font-size: 16px;
      line-height: 2.6;
      margin-left: 24px;
      margin-right: 24px;
      padding: 6px 12px;
    }

  .interview-question br.sp {
    display: block;
  }

  .interview-question-wrapper {
    margin-bottom: 20px;
  }
}

.interview-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .interview-content {
        flex-direction: column;
        gap: 24px;
    }
}

.interview-text {
    flex: 1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3b3b3b;
    line-height: 2;
    letter-spacing: 0.04em;
}

.interview-text p {
  margin: 0;
  margin-left: 109px;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .interview-text {
    padding: 0 16px 0;
  }

  .interview-text p {
    margin-left: 24px;
    margin-right: 24px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  #new-kando-experiences .interview-text p {
    line-height: 2;
  }
}

.interview-image {
    flex: 0 0 auto;
    max-width: 400px;
    width: 40%;
}

.interview-image img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius: 12px; */
}

@media screen and (max-width: 768px) {
    .interview-image {
        max-width: 100%;
        width: 100%;
    }
}

.interview-section-dark {
  padding: 96px 0 49px;
  background-color: #01172a;
}

@media screen and (max-width: 768px) {
  .interview-section-dark {
    padding: 48px 0 24px;
  }
}

.interview-section-dark .interview-question {
  background-color: #fbfbfb;
  color: #121212;
}

.interview-section-dark .interview-text p {
  color: #c7c7c7;
}

#number07 .interview-question {
  margin-left: 139px;
  margin-right: 139px;
  background-color: #d32d26;
  color: #fff;
}

#number07 .interview-text p {
  margin-left: 139px;
  margin-right: 139px;
}

@media screen and (max-width: 768px) {
  #number07 .interview-question {
    margin-left: 0;
    margin-right: 0;
  }

  #number07 .interview-text p {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Final Section (No.07 + Tokyo Override Link) */
.interview-section-final {
    padding-top: 80px;
}

@media screen and (max-width: 768px) {
  .interview-section-final {
    padding-top: 48px;
  }
}

/* Layout variations for different interview items */
/* 偶数番号のアイテムを反転 */
@media screen and (min-width: 769px) {
    /* interview-list直下の偶数アイテム */
    .interview-list > .interview-item:nth-child(even) .interview-content {
        flex-direction: row-reverse;
    }

    /* interview-section-dark内の偶数アイテム（04, 06が該当） */
    .interview-section-dark .interview-item:nth-child(odd) .interview-content {
        flex-direction: row-reverse;
    }
}

@media screen and (max-width: 768px) {
    /* interview-list直下の偶数アイテム */
    .interview-list > .interview-item:nth-child(even) .interview-content {
        flex-direction: column-reverse;
    }

    /* interview-section-dark内の偶数アイテム（04, 06が該当） */
    .interview-section-dark .interview-item:nth-child(odd) .interview-content {
        flex-direction: column-reverse;
    }
}

/* Tokyo Override Link Section */
.tokyo-override-link {
    margin: 0 139px;
    padding: 60px 0 100px;
}

@media screen and (max-width: 768px) {
    .tokyo-override-link {
        margin: 0;
        padding: 40px 16px 60px;
    }
}

.tokyo-override-btn {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}

.tokyo-override-btn .bg {
    width: 100%;
    display: block;
}

.tokyo-override-btn .bg img {
    width: 100%;
    height: auto;
    display: block;
}

.tokyo-override-btn .btn-icon {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 45.7%;
  background-color: #d32d26;
  transition: background-color 0.3s ease;
}

.tokyo-override-btn:hover .btn-icon {
  background-color: #7b0500;
}

.tokyo-override-btn .btn-icon img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .tokyo-override-btn .btn-icon {
        width: 94.48%;
    }
}

.tokyo-override-link a {
    text-decoration: none;
    display: block;
}

/* Background images */
@media screen and (min-width: 769px) {
  .ltv-bg-image02 {
    background-image: url(/jp/profile/long-term-vision/img/new-kando-experiences_bg_default.png);
    background-repeat: no-repeat;
    background-size:  contain;
    background-position: center -7%;
  }

  .interview-section-dark {
    background-image: url(/jp/profile/long-term-vision/img/new-kando-experiences_bg_dark.png);
    background-repeat: no-repeat;
    background-size:  cover;
    background-position: center 20%;
  }

  .interview-section-final {
    background-image: url(/jp/profile/long-term-vision/img/new-kando-experiences_bg_final.png);
    background-repeat: no-repeat;
    background-size:  cover;
    background-position: center 30%;
  }

  /* .ltv-bg-image02 { */
  /*   position: relative; */
  /* } */
  /* .ltv-bg-image02::after { */
  /*   content: ""; */
  /*   position: absolute; */
  /*   inset: 0; */

  /*   background-image: url(/jp/profile/long-term-vision/img/new-kando-experiences_bg01.jpg), */
  /*                     url(/jp/profile/long-term-vision/img/new-kando-experiences_bg02.jpg); */
  /*   background-repeat: no-repeat; */
  /*   background-position: -25% -7%; */
  /*   background-size: 80% auto, 80% auto; */
  /*   mix-blend-mode: multiply; */
  /*   opacity: 0.06; */
  /* } */
}

@media screen and (max-width: 768px) {
  .ltv-bg-image02 {
    background-image: url(/jp/profile/long-term-vision/img/new-kando-experiences_bg_default_sp.png);
    background-repeat: no-repeat;
    background-size:  contain;
    background-position: center 29%;
  }

  .interview-section-dark {
    background-image: url(/jp/profile/long-term-vision/img/new-kando-experiences_bg_dark_sp.png);
    background-repeat: no-repeat;
    background-size:  cover;
    background-position: center 20%;
  }

  .interview-section-final {
    background-image: url(/jp/profile/long-term-vision/img/new-kando-experiences_bg_final_sp.png);
    background-repeat: no-repeat;
    background-size:  cover;
    background-position: center 30%;
  }
}

/* Footer adjustments */
@media screen and (max-width: 768px) {
    .footer-navi {
        padding: 64px 30px;
    }

    .footer-content__title {
        font-size: 12px;
    }
}
