/* PC用コンテンツ */

.pc-nav {
    position: fixed;
    top: 50%;
    left: calc(158 / 1440 * 100vw);
    translate: 0 -50%;
}

@media screen and (max-width: 1220px) {
    .pc-nav {
        left: 10px;
    }
}

.pc-nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    gap: 1em;
}

.pc-nav_link {
    position: relative;
    color: #acacac;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-inline-start: 28px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pc-nav_link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 19px;
    height: 16px;
    mask: url(../images/chevron2.svg) center/contain no-repeat;
    background: #00c5c5;
    opacity: 0;
}

.pc-nav_link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: 0;
    translate: 0 -50%;
    width: calc(100% - 28px);
    height: 2px;
    background: #00c5c5;
    opacity: 0;
}

.pc_nav-item.current .pc-nav_link {
    color: #00c5c5;
}

.pc_nav-item.current > .pc-nav_link::before,
.pc_nav-item.current > .pc-nav_link::after {
    opacity: 1;
}

.pc_nav-item:hover {
    opacity: 1;
}

.pc_nav-item:hover > .pc-nav_link {
    color: #00c5c5;
    opacity: 1;
}

.pc_nav-item:hover > .pc-nav_link::before,
.pc_nav-item:hover > .pc-nav_link::after {
    opacity: 1;
}

.pc-cta {
    max-width: 331px;
    margin-inline: auto;
    position: fixed;
    top: 50%;
    translate: 0 -50%;
    left: calc(50% + 20vw);
}

@media screen and (max-width: 1220px) {
    .pc-cta {
        left: calc(50% + 16vw);
    }
}

@media screen and (max-width: 1024px) {
    .pc-cta {
        display: none;
    }
}

.pc-cta_block {
    padding-block-start: 42px;
}

@media screen and (max-height: 620px) {
    .pc-cta_block {
        padding-block-start: 3px;
    }
}

.pc-cta_block-inner {
    padding-block-start: calc(32 / 915 * 100vh);
    background: var(--white);
    border-radius: 15px;
}

.pc-cta_block-icon {
    aspect-ratio: 1;
    width: min(84px, calc(84 / 1440 * 100vw));
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    display: grid;
    place-items: center;
}

@media screen and (max-height: 620px) {
    .pc-cta_block-icon {
        display: none;
    }
}

.pc-cta_block-icon img {
    aspect-ratio: 1;
    width: min(44px, calc(44 / 1440 * 100vw));
    margin-inline: auto;
    display: block;
    object-fit: contain;
}

.pc-cta_block-title {
    color: #00c5c5;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: center;
    padding-inline: 13px;
    position: relative;
    max-width: 280px;
    display: block;
    margin-inline: auto;
    width: max-content;
}

.pc-cta_block-title::before,
.pc-cta_block-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 2px;
    height: 50px;
    background-color: #00c5c5;
    rotate: -25deg;
}

.pc-cta_block-title::after {
    left: auto;
    right: 0;
    rotate: 25deg;
}

.pc-cta_block-line {
    width: calc(208 / 1440 * 100vw);
    max-width: 208px;
    margin-inline: auto;
    margin-block-start: 6px;
}

.pc-cta_block-desc {
    color: var(--text);
    font-size: 1.3rem;
    line-height: 1.5;
    display: block;
    width: calc(274 / 1440 * 100vw);
    max-width: 274px;
    margin-inline: auto;
    margin-block-start: 8px;
}

.pc-cta_block-qr {
    aspect-ratio: 234/80;
    width: calc(234 / 1440 * 100vw);
    max-width: 234px;
    margin-inline: auto;
    margin-block: 9px;
}

.pc-cta_block-footer {
    background: #00c5c5;
    padding: calc(21 / 915 * 100vh) 22px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.pc-cta_block-logo {
    display: flex;
    justify-content: center;
    align-self: center;
}

.pc-cta_block-logo span {
    font-size: min(1.4rem, 2.2vw);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    display: flex;
    align-items: center;
}

.pc-cta_block-footer-text {
    color: var(--white);
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
}

.pc-cta_btn {
    margin-block-start: calc(26 / 915 * 100vh);
    display: block;
    border: 2px solid #00c5c5;
    border-radius: 999px;
    background: var(--white);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 0 rgb(0 0 0 / 25%);
    padding-block: 8px;
    position: relative;
    color: #00c5c5;
}

.pc-cta_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    translate: 0% -50%;
    width: 10px;
    height: 14px;
    background-color: #00c5c5;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.pc-cta_btn-inner {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.5;
}
