@charset "UTF-8";

/*メインビジュアル*/
.s_mv {
    width: 100%;
    height: 300px;
    background: url(../image/top/top_mv_2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    /* スマホなどで幅が狭まった時、アスペクト比を維持して縮小させる */
    /* 例：PCで横1200px / 縦300px なら 「4 / 1」 */
    aspect-ratio: 4 / 1;
}

.s_mv_inner {
    color: #fff;
    position: absolute;
    top: 32%;
    right: 5%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.s_mv_title {
    display: block;
    font-size: clamp(1.5rem, 0.786rem + 3.57vw, 4rem);
    font-family: var(--font3);
    font-weight: 500;
    text-align: right;
}

.breadcrumb ul {
    display: flex;
    color: #555;
    font-size: 0.8125rem;
    font-weight: 400;
    padding: 4px 30px;
}

.breadcrumb li {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.breadcrumb li a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

.breadcrumb li+li::before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-right: 1px solid #555;
    border-bottom: 1px solid #555;
    transform: rotate(-45deg);
    margin-right: 10px;
}

.b_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 80px auto;
    font-size: clamp(2.5rem, 2.173rem + 1.63vw, 3.5rem);
    font-weight: 600;
    color: #2574EB;
    line-height: 1em;
    letter-spacing: -0.05rem;
}

.b_title span {
    background: linear-gradient(135deg, #0FC9F7, #2574EB);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: var(--font3);
}

.section_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 54px 8px 24px 0;
    border-left: 5px solid #2574EB;
    padding-left: 8px;
    line-height: 1.5;
    letter-spacing: -0.08rem;
}

.description_top {
    text-align: center;
    margin-bottom: 80px;
    font-size: 1.12rem;
    font-weight: 500;
}

.used_minilab_item {
    margin-bottom: 100px;
}

.used_minilab_item img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.used_minilab_item_text {
    font-size: 1.125rem;
    margin: 8px 0;
    font-weight: 500;

}

.used_item_description {
    font-size: 1rem;
    margin: 12px 0 80px;
    font-weight: 500;
}

/* スマホ用レスポンシブ（文字サイズ調整） */
@media (max-width: 768px) {
    .s_mv {
        height: auto;
    }
}