@charset "UTF-8";

/* 共通 */
@font-face {
    font-family: 'Noto Sans JP';
    font-display: swap;
    font-style: normal;
    font-weight: normal;
    src: url('/camp/biz_owners_pp/font/NotoSansJP-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Noto Sans JP';
    font-display: swap;
    font-style: normal;
    font-weight: bold;
    src: url('/camp/biz_owners_pp/font/NotoSansJP-Bold.woff') format('woff');
}
:root {
    --Design-black: #000000;
    --design-black-35: rgba(0, 0, 0, 0.35);
    --Design-white: #FFFFFF;
    --design-white-25: rgba(255, 255, 255, 0.35);
    --Design-gray-01: #999999;
    --Design-gray-02: #666666;
    --Design-gray-03: #444444;
    --Design-gray-04: #333333;
    --Design-gradation: linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 49.63%, #BBDDF1 75%, #C6B5D7 100%);
    --Design-gradation-01: linear-gradient(90deg, #EDC4B8 0%, #E6DFBA 25%, #C1DBDA 50%, #BBDDF1 75%, #C6B5D7 100%);
    --Design-gradation-02: linear-gradient(90deg, #202020 0%, #868483 100%);
    --Design-gold-01: linear-gradient(90deg, #FCD277 0%, #FEDE99 72%, #FFE5A4 83%, #FFE6A7 85%, #FFDD95 100%);
    --Design-gold-02: linear-gradient(90deg, #E6AA32 3.37%, #FFD787 14%, #F1B53E 25%, #E6AA32 48.08%, #E1A224 100%);
}
* {
    box-sizing: border-box;
}
.main-bg {
    background-image: url('/camp/biz_owners_pp/img/bg_01_sp.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.note,
.list {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}

.note {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 16.5px */
}

.list {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.note li {
    position: relative;
    padding-left: 1em;
    text-indent: -1em;
}
.note > li[data-note] {
    padding-left: calc(1.5em + 4px);
    text-indent: calc(-1.5em - 4px);
}
.note li::before {
    content: '※';
}
.note li[data-note]::before {
    content: "※" attr(data-note);
    margin-right: 4px;
}
.note li.no-mark {
    padding-left: 0;
    text-indent: 0;
}
.note li.no-mark::before {
    content: "";
}
.list li {
    position: relative;
    padding-left: 1.2em;
    text-indent: -1em;
}
.list li::before {
    content: '・';
}
.pc_only {
    display: none !important;
}
.sp_only {
    display: block !important;
}
sup {
    vertical-align: middle;
    font-size: 60%;
}
a:hover {
    opacity: 0.8;
}
.textlink {
    font-family: "Noto Sans JP";
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    position: relative;
}
.textlink::after {
    position: absolute;
    content: '';
    background-image: url(/camp/biz_owners_pp/img/icon_popup.svg);
    filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(922%) hue-rotate(152deg) brightness(90%) contrast(91%);
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
    right: calc(100vw * (-16 / 375));
    display: inline-block;
    margin-top: calc(100vw * (2 / 375));
}
@media screen and (min-width: 768px) {
    .main-bg {
        background-image: url('/camp/biz_owners_pp/img/bg_01_pc.png');
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }
    .note,
    .list {
        gap: 4px;
    }
    .note {
        font-size: 12px;
    }
    .list {
        font-size: 13px;
    }
    .pc_only {
        display: block !important;
    }
    .sp_only {
        display: none !important;
    }
    .textlink::after {
        width: 12px;
        height: 12px;
        right: -16px;
        top: 0;
        bottom: 0;
        margin: auto;
    }
}

.modal-ttl {
    color: var(--Design-black, #000);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: calc(100vw * (-0.4 / 375));
    padding-bottom: calc(100vw * (24 / 375));
}
.modal-txt {
    color: var(--Design-black, #000);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
@media (min-width: 769px) {
    .modal-ttl {
        letter-spacing: -0.48px;
        font-size: 24px;
        padding-bottom: 24px;
    }
    .modal-txt {
        font-size: 16px;
    }
}



.modal-area_btn{
    display: flex;
    height: calc(100vw * (54 / 375));
    padding: calc(100vw * (6 / 375)) calc(100vw * (32 / 375));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border: 2px solid var(--Design-black, #000);
    background: var(--Design-white, #FFF);
    gap: calc(100vw * (10 / 375));
    margin: calc(100vw * (12 / 375)) 0;
    position: relative;
    font-family: "Noto Sans JP";
}
.modal-area_btn span{
    color: #1A1A1A;
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.modal-area_btn::before {
    position: absolute;
    content: '';
    background-image: url(/camp/biz_owners_pp/img/icon_phone.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (16 / 375));
    height: calc(100vw * (16 / 375));
    left: calc(100vw * (16 / 375));
    top: 50%;
    transform: translateY(-50%);
}
.modal-area_btn::after{
    position: absolute;
    content: '';
    background-image: url(/camp/biz_owners_pp/img/icon_link.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (14 / 375));
    height: calc(100vw * (14 / 375));
    right: calc(100vw * (16 / 375));
    top: 50%;
    transform: translateY(-50%);
}
.modal-date {
    color: var(--Design-black, #000);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.modal-area_inner{
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    max-width: calc(100vw * (240 / 375));
    margin: 0 auto;
}
.modal_bg {
    background: rgba(0, 0, 0, 0.50);
    position: fixed;
    z-index: 12;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
}
.modal_content{
    position: fixed;
    z-index: 13;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (24 / 375));
    width: 91.5%;
    padding: calc(100vw * (48 / 375)) calc(100vw * (16 / 375)) calc(100vw * (24 / 375));
    border-radius: calc(100vw * (10 / 375));
    background-color: #FFF;
    box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.10);
    opacity: 0;
    pointer-events: none;
    transition: .4s;
    max-height: 95%;
}
.modal_content#contact_modal {
    padding: calc(100vw * (40 / 375)) 0;
}
.modal_bg.active,.modal_content.active {
    opacity: 1;
    pointer-events: initial;
}
.modal_wrap {
    text-align: center;
}
.modal_content .modal_close {
    position: absolute;
    top: calc(100vw * (13 / 375));
    right: calc(100vw * (13 / 375));
    width: calc(100vw * (24 / 375));
    height: calc(100vw * (24 / 375));
}
.modal_content .modal_close img {
    width: 100%;
}
@media (min-width: 769px) {
    .modal_content {
        gap: 24px;
        padding: 48px 16px 24px;
        border-radius: 10px;
    }
    .modal_content .modal_close {
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
    }
    .modal_content {
        max-width: 544px;
        padding: 40px 40px 24px;
    }
    .modal_content .modal_close {
        top: 12.5px;
        right: 12px;
    }
}

/* モーダル_全画面用 */
.modal_content.modal_content--large {
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-image: url(/camp/biz_owners_pp/img/bg_01_sp.png);
    background-size: cover;
    border-radius: 0;
    padding: 0;
}

.modal_content.modal_content--large  .modal_close {
    filter: brightness(0) saturate(100%) invert(100%) sepia(97%) saturate(2%) hue-rotate(132deg) brightness(105%) contrast(101%);
}

.modal_content.modal_content--large .modal_wrap {
    overflow: auto;
    padding: calc(100vw * (60 / 375)) calc(100vw * (16 / 375));
}


@media (min-width: 769px) {
    .modal_content.modal_content--large {
        background-image: url(/camp/biz_owners_pp/img/bg_01_pc.png);
        max-width: 100%;
    }

    .modal_content.modal_content--large .modal_wrap {
        overflow: auto;
        padding: 0;
        height: 100%;
    }

    .modal_content.modal_content--large .modal_close {
        right: 41.5px;
        top: 41.5px;
    }
}

.main_inr {
    padding: calc(100vw * (60 / 375)) calc(100vw * (16 / 375)) calc(100vw * (32 / 375));
}
@media (min-width: 769px) {
    .main_inr {
        padding: 100px 0 60px;
        max-width: 736px;
        width: 100%;
        margin: 0 auto;
    }
}

.owner img {
    width: 100%;
}

/* aco */
.aco-wrap {
    padding-left: 1.5em;
}

.note .aco-wrap {
    padding-left: 1em;
}

.note .aco-wrap .aco-label::after {
    content: "＋";
    background-image: none;
    top: 0;
    transform: translateY(0);
    right: auto;
}

.note .aco-wrap .aco-label.open::after {
    content: "－";
}

.aco-content {
    display: none;
}

.aco-label {
    position: relative;
    text-decoration: underline;
    cursor: pointer;
}
.aco-label::after {
    position: absolute;
    content: '';
    background-image: url(/camp/biz_owners_pp2type/img/icon_accordion-close-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(100vw * (24 / 375));
    height: calc(100vw * (24 / 375));
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.aco-label.open::after {
    background-image: url(/camp/biz_owners_pp2type/img/icon_accordion-open-white.svg);
}
.aco-label:hover {
    opacity: 0.7;
}

@media screen and (min-width: 769px) {
    .aco-label::after {
        width: 24px;
        height: 24px;
    }
}

/* h1 */
.h1_wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: calc(100vw * (32 / 375));
}

.h1_ttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
    letter-spacing: calc(100vw * (-0.4 / 375));
}

@media (min-width: 769px) {
    .h1_ttl {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .h1_wrap {
        margin-bottom: 40px;
    }
}

/* h2 */
.h2_ttl-sub {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
    letter-spacing: calc(100vw * (-0.4 / 375));
}

.h2_warp {
    display: flex;
    flex-direction: column;
}

.h2_ttl-main {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (28 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: calc(100vw * (-0.64 / 375));
}

@media (min-width: 769px) {
    .h2_ttl-sub {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .h2_ttl-main {
        font-size: 36px;
        letter-spacing: -0.72px;
    }
}

/* owner */
.owner {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (40 / 375));
}

.owner + .owner {
    margin-top: calc(100vw * (60 / 375));
}

.owner_block {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (10 / 375));
}

.owner_txt {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.owner_block-item {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}

@media (min-width: 769px) {
    .owner {
        gap: 60px;
    }

    .owner + .owner {
        margin-top: 80px;
    }

    .owner_block {
        gap: 16px;
    }

    .owner_txt {
        font-size: 16px;
    }

    .owner_block-item {
        gap: 24px;
    }
}

/* owner_detail */
.owner_detail {
    border: 1px solid var(--Design-white, #FFF);
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
    padding: calc(100vw * (12 / 375)) calc(100vw * (8 / 375));
}

.owner_detail-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.owner_detail-head-txt {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.owner_detail-head.aco-label::after {
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
}

.owner_detail .note {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 16.5px */
}

.comparison_link {
    color: var(--Design-gray-01, #999);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    position: relative;
}

.comparison_link.comparison_link--out::after {
    content: "";
    background-image: url(/camp/biz_owners_pp2type/img/icon_popup.svg);
    filter: brightness(0) saturate(100%) invert(68%) sepia(0%) saturate(922%) hue-rotate(152deg) brightness(90%) contrast(91%);
    background-size: 100% 100%;
    width: calc(100vw * (11 / 375));
    height: calc(100vw * (11 / 375));
    position: absolute;
    right: calc(100vw * (-15 / 375));
    top: 0;
    bottom: 0;
    margin: auto;
}

.owner_detail-body {
    padding-top: calc(100vw * (12 / 375));
}

@media screen and (min-width: 769px) {
    .owner_detail {
        padding: 12px;
        max-width: 546px;
        width: 100%;
        margin: 0 auto;
    }

    .owner_detail-head-txt {
        font-size: 16px;
    }

    .owner_detail-head.aco-label::after {
        width: 16px;
        height: 16px;
    }

    .owner_detail .note {
        font-size: 12px;
    }

    .comparison_link {
        font-size: 13px;
        cursor: pointer;
    }

    .comparison_link.comparison_link--out::after {
        width: 13px;
        height: 13px;
        position: relative;
        display: inline-block;
        left: 5px;
        right: 0;
    }

    .owner_detail-body {
        padding-top: 12px;
    }
}


/* anchor */
.anchor_ttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (24 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 33.6px */
    letter-spacing: calc(100vw * (-0.48 / 375));
}

.anchor_list {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (16 / 375));
}

.anchor_list-item {
    display: flex;
    flex-direction: row;
    gap: calc(100vw * (12 / 375));
    padding: 0 calc(100vw * (8 / 375)) calc(100vw * (8 / 375));
    border-bottom: 1px solid var(--Design-white, #FFF);
    align-items: center;
}

.anchor_list-txt {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    flex: 1;
}

.anchor_list-icon {
    width: calc(100vw * (24 / 375));
}

.anchor {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (16 / 375));
}

.anchor_list-item::after {
    content:"";
    background-image: url(/camp/biz_owners_pp/img/icon_anchor.svg);
    background-size: 100%;
    width: calc(100vw * (14 / 375));
    height: calc(100vw * (14 / 375));
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(0deg) brightness(106%) contrast(102%);
}

@media (min-width: 769px) {
    .anchor_ttl {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .anchor {
        gap: 16px;
    }

    .anchor_list-item {
        gap: 16px;
        border-bottom: 1px solid var(--Design-white, #FFF);
        padding: 0 8px 8px;
    }

    .anchor_list-icon {
        width: 28px;
    }

    .anchor_list-txt {
        font-size: 16px;
    }

    .anchor_list-item::after {
        width: 16px;
        height: 16px;
        background-repeat: no-repeat;
    }

    .anchor_list {
        gap: 16px;
    }
}


/*category*/
.category {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (32 / 375));
}

.category_head {
    display: flex;
    align-items: center;
    gap: calc(100vw * (8 / 375));
}

.category_icon {
    width: calc(100vw * (40 / 375));
}

.category_ttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 28px */
    letter-spacing: calc(100vw * (-0.4 / 375));
    flex: 1;
}

.category_item {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (16 / 375));
}

@media (min-width: 769px) {
    .category {
        gap: 48px;
    }
    .category_ttl {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .category_icon {
        width: 48px;
    }

    .category_head {
        gap: 12px;
    }

    .category_item {
        gap: 16px;
    }
}


/* カルーセル */
.slick-dots {
    border: none;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    margin: calc(100vw * (16 / 375)) 0 0;
    height: calc(100vw * (10 / 375));
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: calc(100vw * (10 / 375));
    height: calc(100vw * (10 / 375));
    margin: 0 calc(100vw * (6 / 375));
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: calc(100vw * (10 / 375));
    height: calc(100vw * (10 / 375));
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li.slick-active button:before {
    opacity: 0.6;
    background-color: var(--Design-gray-01, #999);
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: calc(100vw * (10 / 375));
    line-height: calc(100vw * (10 / 375));
    position: absolute;
    top: calc(100vw * (-10 / 375));
    left: 0;
    width: calc(100vw * (10 / 375));
    height: calc(100vw * (10 / 375));
    content: '';
    opacity: 0.6;
    border: 1px solid var(--Design-gray-01, #999);
    text-align: center;
    border-radius: calc(100vw * (100 / 375));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) { 
    .slick-dots {
        margin: 16px 0 0;
        height: 10px;
    }
    .slick-dots li {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
    .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    .slick-dots li button:before {
        font-size: 10px;
        line-height: 10px;
        top: -10px;
        width: 10px;
        height: 10px;
        border-radius: 100px;
    }
}

/* partner_list */
.partner_list.js-partner-col {
    margin: 0 calc(100vw * (-16 / 375));
}

.partner_list .slick-list {
    padding: 0 calc(100vw * (16 / 375));
}

.partner_list-item {
    padding: calc(100vw * (6 / 375));
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}

.partner_list-item.js-modal {
    cursor: pointer;
}

.partner_list-item.js-modal:hover {
    opacity: 0.7;
}

.partner_list-bg {
    border-radius: calc(100vw * (4 / 375));
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
    padding: calc(100vw * (12 / 375));
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (4 / 375));
}

.partner_list-ttl {
    color: var(--Design-white, #FFF);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 17.5px */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner_list-ttl .-small {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (11 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
}

.partner_list-body {
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (8 / 375));
}

@media (min-width: 769px) {
    .partner_list.is-pc-static {
        display: flex;
        margin: 0;
        gap: 30px 16px;
        flex-wrap: wrap;
    }

    .partner_list-item {
        width: calc((100% - (16px * 3)) / 4);
        padding: 0;
        gap: 8px;
    }

    .partner_list-bg {
        padding: 16px 12px;
        border-radius: 4px;
    }

    .partner_list-ttl {
        font-size: 16px;
    }

    .partner_list-ttl .-small {
        font-size: 11px;
    }

    .partner_list-body {
        gap: 12px;
    }
}


/* comingsoon */
.comingsoon {
    color: var(--Design-gray-01, #999);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (40 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 56px */
    letter-spacing: calc(100vw * (-0.8 / 375));
}

@media (min-width: 769px) {
    .comingsoon {
        font-size: 42px;
        letter-spacing: -0.84px;
    }
}

/* partner-detail */
.partner-detail {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (16 / 375));
}

.partner-detail_card {
    border-radius: calc(100vw * (4 / 375));
    background: var(--design-black-35, rgba(0, 0, 0, 0.35));
    padding: calc(100vw * (24 / 375)) calc(100vw * (16 / 375));
}

.partner-detail_ttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (24 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 33.6px */
    letter-spacing: calc(100vw * (-0.48 / 375));
}

.partner-detail_card-item {
    padding: calc(100vw * (16 / 375)) 0;
    display: flex;
    flex-direction: column;
    gap: calc(100vw * (8 / 375));
}

.partner-detail_card-ttl {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
    letter-spacing: calc(100vw * (-0.32 / 375));
}

.partner-detail_card-txt {
    color: var(--Design-white, #FFF);
    font-family: "Noto Sans JP";
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.partner-detail_card-item + .partner-detail_card-item {
    border-top: calc(100vw * (1 / 375)) solid var(--Design-gray-02, #666);
}

.partner-detail_card-txt .textlink::after {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(322deg) brightness(104%) contrast(104%);
}

@media (min-width: 769px) {
    .partner-detail_ttl {
        font-size: 28px;
        letter-spacing: -0.56px;
    }

    .partner-detail_card {
        padding: 16px 48px;
    }

    .partner-detail {
        max-width: 736px;
        margin: 0 auto;
        width: 100%;
        gap: 24px;
        padding: 100px 0 60px;
    }

    .partner-detail_card-ttl {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .partner-detail_card-item {
        padding: 24px 0;
        gap: 12px;
    }

    .partner-detail_card-txt {
        font-size: 13px;
    }

    .partner-detail_card-item + .partner-detail_card-item {
        border-top: 2px solid var(--Design-gray-02, #666);
    }
}



/* footer */
footer {
    display: flex;
    padding: calc(100vw * (24 / 375)) calc(100vw * (16 / 375)) calc(100vw * (72 / 375)) calc(100vw * (16 / 375));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(100vw * (24 / 375));
    background: var(--Design-black, #000);
    font-family: "Noto Sans JP";
}
.footer-item_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(100vw * (16 / 375));
    color: var(--Design-white, #FFF);
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.footer-copyright {
    text-align: center;
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: var(--Design-white, #FFF);
}
footer .textlink::after {
    background-image: url(/camp/biz_owners_pp/img/icon_popup-white.svg);
    width: 12px;
    height: 12px;
    right: -16px;
    margin-top: 2px;
}

@media screen and (min-width: 769px) {
    footer {
        padding: 48px 16px 107px 16px;
        gap: 32px;
    }
    .footer-item_wrap {
        gap: 16px;
        font-size: 12px;
    }
    .footer-copyright {
        font-size: 11px;
    }
}



/* セクション名 */

@media screen and (min-width: 768px) {
/* SPレスポンシブ設定（設定後に本コメントアウト部分削除）
    .example { 
        font-size: ●●px; 
    }
    ↓
    .example { 
        font-size: calc(100vw * (●● / 375));
    }
*/
}


