body {
    background-color: var(--color-gray-50);
}
.layout {
    padding: 90px 0 0;
}

@media (min-width: 769px) {
    .layout {
        padding: 124px 0 0;
    }
}

.page-title {
    margin: 0 auto 11.1111111111vw;
    max-width: calc(1200px + var(--c-pad)*2);
    padding: 0 5.5555555556vw;
    width: 100%;
}

@media (min-width: 768px) {
    .page-title {
        margin: 0 auto 40px;
        padding: 0 var(--c-pad);
    }
}

.page-title__en {
    color: #cdcfd3;
    font-size: 3.8888888889vw;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 1.1111111111vw;
    padding: 0 0 0 3.8888888889vw;
    position: relative;
    text-align: left;
}

@media (min-width: 768px) {
    .page-title__en {
        font-size: var(--fs20);
        margin: 0 0 4px;
        padding: 0 0 0 14px;
    }
}

.page-title__en:before {
    background-color: var(--color-red-primary);
    border-radius: 50%;
    bottom: 0;
    content: "";
    display: block;
    height: 1.6666666667vw;
    left: 0;
    margin: auto 0;
    position: absolute;
    right: auto;
    top: 0;
    width: 1.6666666667vw;
}

@media (min-width: 768px) {
    .page-title__en:before {
        height: 10px;
        width: 10px;
    }
}

.page-title__ja {
    color: var(--color-black);
    font-size: 7.2222222222vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
    text-align: left;
}

@media (min-width: 768px) {
    .page-title__ja {
        font-size: 3.75rem;
    }
}

h2.document-request_title {
    text-align: center;
    padding: 0 16px 16px;
}
p.document-request_description {
    text-align: center;
    padding: 0 16px 0;
}

section.btob-document-request {
  width: 90%;
  margin: 60px auto 40px;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
}
.document-sample {
  width: 60%;
}
.fomr-area {
  width: 35%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.document-slider {
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  margin: 0 auto 30px;
  padding-bottom: 40px;
  border: 1px solid #4e4e4e3b;
  box-shadow: 0px 5px 20px 0px rgba(67, 75, 80, 0.32);
  animation: slide-up-fade 0.6s ease-out forwards;
  border-radius: 16px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ea580c; /* Matches orange theme */
}

.swiper-pagination-bullet-active {
  background: #ea580c;
}


@media screen and (max-width: 640px) {
  section.btob-document-request {
    flex-direction: column;
  }
  .document-sample,
  .fomr-area {
    width: 100%;
  }
  .fomr-area {
    position: static;
    width: 100%;
    margin-top: 24px;
  }
}

.document-info {
    width: 100%;
    max-width: 800px;
    margin: 24px auto 0;
    padding: 24px 28px;
    border: 1px solid #4e4e4e3b;
    background: #fff;
    box-shadow: 0px 5px 20px 0px rgba(67, 75, 80, 0.32);
    box-sizing: border-box;
    animation: slide-up-fade 0.6s ease-out forwards;
    border-radius: 16px;
}
.document-info__head {
    color: #1e6fb8;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5eef6;
}
.document-info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.document-info__list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
.document-info__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 50%;
    background: #1e6fb8;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.5l2.5 2.5L12 5.5'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
}
.document-info__tel {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 14px;
    border-top: 1px dashed #e5eef6;
}
.document-info__tel__label {
    font-size: 13px;
    color: #555;
}
.document-info__tel__number {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.document-info__tel__number:hover {
    color: #1e6fb8;
}
@media (max-width: 600px) {
    .document-info {
        margin: 0 0 30px 0;
        padding: 16px;
    }
    .document-info__list {
        flex-direction: column;
        gap: 6px;
    }
    .document-info__tel {
        justify-content: center;
        text-align: center;
    }
    .document-info__tel__number {
        font-size: 22px;
    }
}