@charset "UTF-8";

/*メインビジュアル*/
.s_mv {
    width: 100%;
    height: 300px;
    background: url(../image/top/top_mv_2.jpg);
    /* background-position: center 100%; */
    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;
    /* スマホ(24px) 〜 PC(40px) の間でなだらかに変化 */
    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;
}

.privacy_title {
    position: absolute;
    top: 20%;
    right: 3%;
    font-size: clamp(2.625rem, 2.229rem + 1.69vw, 3.75rem);
    font-family: var(--font1);
    font-weight: 700;
    color: #D6D6D6;
}


.pp_title {
    font-size: 1.125em;
    font-weight: 700;
    margin: 50px 0 8px;
    line-height: 1.8;
}

.pp_box {
    font-size: 1rem;
    color: #333;
}

.pp_box_block {
    font-size: 0.9375rem;
    margin-bottom: 30px;
}

.sb_title h3 {
    font-size: 1rem;
    line-height: 1.8;
}

.block {
    font-size: 0.9375rem;
    padding: 10px 20px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.block_list {
    font-size: 0.875rem;
    padding: 0 0 20px 50px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.block_list_s {
    font-size: 0.875rem;
    margin: 15px 0 25px;
    padding-left: 80px;
    line-height: 2;
    list-style-type: disc;
    /* またはcircle, squareなど */
    margin-left: -12px;
}

.text-right {
    text-align: right;
    border-top: 1px solid #a1a1a1;
}

.text-right span {
    text-align: left;
}

/* 768px以下のときに変化する */
@media (max-width:768px) {
    .title_bk {
        position: relative;
        width: 100%;
        height: 140px;
        background-position: 0 100%;
    }

}

/* 580px以下のときに変化する */
@media (max-width: 580px) {
    .title_bk {
        position: relative;
        margin-top: 105px;
        width: 100%;
        height: 120px;
        background-position: 0 48%;
    }


    .top_text img {
        display: none;
    }


}