@charset "UTF-8";

/* =============================
common
============================= */

:root {
    --white: #FFF;
    --text-black: #202020;
    --text-red: #B80000;
    --cta-orange: #F59403;
    --cta-blue: #599DD9;
    --line-green: #06C755;
    --blue-100: #EBFAFF;
    --blue-200: #A2E8FF;
    --blue-300: #70DBFF;
    --blue-400: #47D1FF;
    --blue-500: #19C5FF;
    --yellow-100: #FFF8E6;
    --yellow-200: #FFEBB5;
    --yellow-300: #F9C66A;
    --yellow-400: #EFB14A;
    --yellow-500: #EB9E1C;
    --green-100: #E0F8F0;
    --green-200: #AFEDD6;
    --green-300: #64DC9F;
    --green-400: #3AD27C;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family:
        "Noto Sans JP",
        sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--text-black, #202020);
    background-color: var(--white, #FFF);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

.pcOnly {
    display: none;
}

/* common tablet */
@media screen and (min-width: 769px) {
    .spOnly {
        display: none;
    }

    .pcOnly {
        display: block;
    }
}
/* common tablet */

/* common pc */
@media screen and (min-width: 1024px) {

}
/* common pc */

/* =============================
header
============================= */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 22px 4.3%;
    background-color: var(--white, #FFF);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

.header__topic img {
    width: 171.973px;
}

.header__btn {
    width: 35px;
    cursor: pointer;
}

.nav {
    background-color: var(--white, #FFF);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    transform: translateX(200%);
    transition: transform 0.6s;
}

.nav.active {
    transform: translateX(0);
}

.nav__btn {
    width: 24.756px;
    position: absolute;
    top: 23px;
    right: 5.7%;
    cursor: pointer;
}

.nav__list {
    width: 203px;
    margin: 90px auto 0;
}

.nav__item {
    margin-top: 24px;
    font-size: 1.8rem;
    line-height: 1;
}

.nav__item:nth-of-type(1) {
    font-family:
        "Roboto",
        sans-serif;
}

.nav__item:nth-of-type(1), .nav__item:nth-of-type(2), .nav__item:nth-of-type(6), .nav__item:nth-of-type(11) {
    font-weight: 700;
}

.nav__item:nth-of-type(3), .nav__item:nth-of-type(4), .nav__item:nth-of-type(5), .nav__item:nth-of-type(7), .nav__item:nth-of-type(8), .nav__item:nth-of-type(9), .nav__item:nth-of-type(10) {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 5px;
}

.nav__item:nth-of-type(3)::before, .nav__item:nth-of-type(4)::before, .nav__item:nth-of-type(5)::before, .nav__item:nth-of-type(7)::before, .nav__item:nth-of-type(8)::before, .nav__item:nth-of-type(9)::before, .nav__item:nth-of-type(10)::before {
    content: '';
    width: 10px;
    height: 1px;
    background-color: var(--text-black, #202020);
}

.nav__item a:hover {
    color: var(--cta-orange, #F59403);
}

/* header tablet */
@media screen and (min-width: 769px) {
    .header .spOnly {
        display: inline-block;
    }

    .header .pcOnly {
        display: none;
    }
}
/* header tablet */

/* header pc */
@media screen and (min-width: 1024px) {
    .header .spOnly {
        display: none;
    }

    .header .pcOnly {
        display: block;
    }

    .header {
        padding: 21px 1.7%;
        height: 90px;
    }
    
    .header__topic img {
        width: 284.418px;
    }
    
    .nav.pcOnly {
        display: none;
    }
    
    .nav {
        border-radius: 0 40px 40px 0;
        background-color: rgba(255, 255, 255, 0.60);
        box-shadow: 0 0 49px -20px #F59403;
        width: 165px;
        height: 329px;
        padding: 29px 10px;
        position: fixed;
        left: 0;
        top: 150px;
        z-index: 200;
        transform: none;
        transition: none;
    }
    
    .nav.active {
        transform: none;
    }
    
    .nav__list {
        width: 160px;
        margin: 0;
    }
    
    .nav__item {
        margin-top: 14px;
        font-size: 1.2rem;
        line-height: 1;
    }
    
    .nav__item:nth-of-type(1) {
        margin-top: 0;
    }
    
    .nav__item a.current {
        color: var(--cta-orange, #F59403);
        font-weight: 700;
    }
    
    .nav__item.current::before {
        height: 2px;
        background-color: var(--cta-orange, #F59403);
    }
}
/* header pc */

/* header pcEx */
@media screen and (min-width: 1300px) {
    .nav {
        width: 210px;
        height: 362px;
        padding: 29px 25px;
    }

    .nav__item {
        margin-top: 15px;
        font-size: 1.4rem;
    }
}
/* header pcEx */

/* =============================
main - common
============================= */

/* background */
.section--worries, .cta, .section--kane8shopFlow, .section--line, .footer {
    position: relative;
    background-color: var(--white, #FFF);
}

.section--kane8friendAbout, .section--kane8friendFeature, .section--kane8friendAttention, .cta--last {
    position: relative;
    background-color: var(--blue-100, #EBFAFF);
}

.section--kane8shopAbout, .section--kane8shopFeature, .section--kane8shopAttention {
    position: relative;
    background-color: var(--yellow-100, #FFF8E6);
}

.section--worries::after, .cta::after, .section--kane8shopFlow::after, .section--line::after {
    content: '';
    position: absolute;
    background-color: var(--white, #FFF);
    top: 100%;
    left: 0;
    width: 100%;
    height: 115px;
    clip-path: ellipse(52vw 115px at center top);
    z-index: 10;
}

.cta--last::after {
    content: none;
}

.section--kane8friendFeature::after, .section--kane8friendAttention::after {
    content: '';
    position: absolute;
    background-color: var(--blue-100, #EBFAFF);
    top: 100%;
    left: 0;
    width: 100%;
    height: 115px;
    clip-path: ellipse(52vw 115px at center top);
    z-index: 10;
}

.section--kane8shopFeature::after, .section--kane8shopAttention::after {
    content: '';
    position: absolute;
    background-color: var(--yellow-100, #FFF8E6);
    top: 100%;
    left: 0;
    width: 100%;
    height: 115px;
    clip-path: ellipse(52vw 115px at center top);
    z-index: 10;
}

/* padding */
.section, .cta {
    padding-top: 212px;
    padding-bottom: 20px;
}

.section--worries {
    padding-top: 128px;
}

.section--kane8friendAbout, .section--kane8shopAbout {
    padding-bottom: 80px;
}

.section--kane8friendFeature, .section--kane8shopFeature {
    padding-top: 80px;
}

.cta--last {
    padding-bottom: 128px;
}

/* width */
.section__topic, .section__content {
    width: 87.2%;
    max-width: 980px;
    margin: 0 auto;
}

.section__content {
    margin-top: 48px;
}

.section--kane8friendAttention .section__topic, .section--kane8shopFeature .section__content, .section--line .section__topic {
    width: 100%;
}

.section--worries .section__content, .section--kane8shopFeature .section__content {
    max-width: 1120px;
}

/* topic */
.section__topic {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
}

.section--kane8shopAbout .section__topic, .section--line .section__topic {
    margin-top: 5px;
}

.section__topic::after {
    content: '';
    display: block;
    width: 54px;
    height: 10px;
    background-image: url(../images/section_topic_decoration_orange.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 10px auto;
}

.section--kane8shopAbout .section__topic::after, .section--kane8shopFeature .section__topic::after, .section--kane8shopFlow .section__topic::after, .section--kane8shopAttention .section__topic::after {
    background-image: url(../images/section_topic_decoration_blue.svg);
}

/* topic strong */
.section__topic--strong {
    color: var(--text-red, #B80000);
    position: relative;
}

.section__topic--strong::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../images/attention_topic_decoration_SP.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: -25px;
    left: 16px;
}

.section--kane8shopAttention .section__topic--strong::before {
    transform: rotate(50deg);
    top: -15px;
    left: 57px;
}

/* underline */
.underline {
    background: linear-gradient(transparent 60%, rgba(245, 148, 3, 0.44) 60%);
    padding-bottom: 0.05em;
}

/* red */
.red {
    color: var(--text-red, #B80000);
}

/* decoration */
.section__decoration {
    display: block;
    margin: 0 auto;
}

/* main - common tablet */
@media screen and (min-width: 769px) {
    /* background */
    .section--worries::after, .cta::after, .section--kane8shopFlow::after, .section--line::after {
        height: 130px;
        clip-path: ellipse(52vw 130px at center top);
    }

    .section--kane8friendFeature::after, .section--kane8friendAttention::after {
        height: 130px;
        clip-path: ellipse(52vw 130px at center top);
    }

    .section--kane8shopFeature::after, .section--kane8shopAttention::after {
        height: 130px;
        clip-path: ellipse(52vw 130px at center top);
    }

    /* padding */
    .section, .cta {
        padding-top: 244px;
        padding-bottom: 20px;
    }

    .section--worries {
        padding-top: 128px;
    }

    .section--kane8friendAbout, .section--kane8shopAbout {
        padding-bottom: 64px;
    }

    .section--kane8friendFeature, .section--kane8shopFeature {
        padding-top: 64px;
    }

    .cta--last {
        padding-bottom: 176px;
    }

    /* width */
    .section__topic, .section__content {
        width: 66.9%;
    }

    .section__content {
        margin-top: 64px;
    }

    .section--kane8shopAttention .section__topic {
        width: 100%;
    }

    .section--worries .section__content, .section--kane8shopFeature .section__content {
        width: 73.4%;
    }

    .section__content.section__content--kane8friendSummary {
        width: 88%;
    }

    /* topic */
    .section__topic {
        font-size: 3.2rem;
    }

    .section--kane8shopAbout .section__topic, .section--line .section__topic {
        margin-top: 25px;
    }

    .section__topic::after {
        width: 75px;
    }

    /* topic__strong */
    .section__topic--strong::before, .section--kane8shopAttention .section__topic--strong::before {
        width: 43px;
        height: 17px;
        background-image: url(../images/attention_topic_decoration_PC.svg);
        transform: rotate(0);
        top: -20px;
        left: 27px;
    }

    /* decoration */
    .section__decoration {
        display: block;
        margin: 0 auto;
    }
}
/* main - common tablet */

/* main - common pc */
@media screen and (min-width: 1024px) {
    /* width */
    .section__content.section__content--kane8friendSummary {
        width: 94%;
    }
}
/* main - common pc */

/* main - common pcEx */
@media screen and (min-width: 1078px) {
    /* width */
    .section__content.section__content--kane8friendSummary {
        width: 73%;
    }
}
/* main - common pcEx */

/* =============================
article__header
============================= */

.article__header {
    background-image: url(../images/mainvisual_SP_01.png), url(../images/mainvisual_SP_02.png), url(../images/mainvisual_SP_03.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: image_anime 9s ease infinite;
    animation-delay: 2s;
    height: 530px;
    margin-top: 70px;
    position: relative;
}

@keyframes image_anime {
    0% {
        background-image: url(../images/mainvisual_SP_01.png);
    }
    33% {
        background-image: url(../images/mainvisual_SP_02.png);
    }
    66% {
        background-image: url(../images/mainvisual_SP_03.png);
    }
    100% {
        background-image: url(../images/mainvisual_SP_01.png);
    }
}

.article__header::before {
    content: '';
    position: absolute;
    background-image: url(../images/arrow_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 55vw;
    height: 55vw;
    bottom: -8vw;
    left: -5vw;
}

.mainvisual img {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 79vw;
    max-width: 313px;
}

.article__header .cta__btn {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
}

/* article__header tablet */
@media screen and (min-width: 769px) {
    .article__header .spOnly {
        display: inline-block;
    }

    .article__header .pcOnly {
        display: none;
    }

    .article__header::before {
        width: 405px;
        height: 405px;
        bottom: -15vw;
        left: -1vw;
    }
}
/* article__header tablet */

/* article__header pc */
@media screen and (min-width: 1024px) {
    .article__header .spOnly {
        display: none;
    }

    .article__header .pcOnly {
        display: block;
    }

    .article__header {
        background-image: url(../images/mainvisual_PC_01.png), url(../images/mainvisual_PC_02.png), url(../images/mainvisual_PC_03.png);
        background-position: center;
        height: 710px;
        margin-top: 90px;
    }
    
    @keyframes image_anime {
        0% {
            background-image: url(../images/mainvisual_PC_01.png);
        }
        33% {
            background-image: url(../images/mainvisual_PC_02.png);
        }
        66% {
            background-image: url(../images/mainvisual_PC_03.png);
        }
        100% {
            background-image: url(../images/mainvisual_PC_01.png);
        }
    }

    .article__header::before {
        width: 460px;
        height: 460px;
        bottom: -7vw;
        left: -5vw;
    }

    .mainvisual img {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70.3vw;
        max-width: 1012px;
    }
}
/* article__header pc */

/* article__header pcEx */
@media screen and (min-width: 1388px) {
    .article__header::before {
        width: 490px;
        height: 490px;
        bottom: -7vw;
        left: -5vw;
    }
}
/* article__header pcEx */

/* =============================
worries
============================= */

.section__content--worries {
    text-align: center;
}

.worries__item {
    margin-top: 45px;
}

.worries__img {
    max-width: 327px;
}

.worries__txt {
    font-size: 1.6rem;
    margin-top: 18px;
}

.section__content--worries .arrow__large--orange {
    width: 60px;
    margin-top: 40px;
}

.solution {
    color: var(--text-red, #B80000);
    font-size: 1.7rem;
    margin-top: 30px;
}

.strong {
    font-size: 2.4rem;
    font-weight: 700;
}

/* worries tablet */
@media screen and (min-width: 769px) {
    .worries__list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .worries__item {
        margin-top: 0;
        width: 40%;
    }

    .section__content--worries .arrow__large--orange {
        width: 80px;
        margin-top: 60px;
    }

    .solution {
        font-size: 2.4rem;
        margin-top: 30px;
    }

    .strong {
        font-size: 4.0rem;
    }
}
/* worries tablet */

/* worries pc */
@media screen and (min-width: 1024px) {
    .worries__list {
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: normal;
    }

    .worries__item {
        margin-top: 0;
        width: 33%;
    }
}
/* worries pc */

/* worries pcEx */
@media screen and (min-width: 1388px) {
    .worries__txt {
        font-size: 2.0rem;
        margin-top: 18px;
    }
}
/* worries pcEx */

/* =============================
kane8friendAbout
============================= */

.kane8friendAbout__txt {
    text-align: center;
    font-size: 1.6rem;
}

/* kane8friendAbout tablet */
@media screen and (min-width: 769px) {
    .section--kane8friendAbout .spOnly {
        display: block;
    }

    .section--kane8friendAbout br.spOnly {
        display: none;
    }

    .section--kane8friendAbout .pcOnly {
        display: none;
    }

    .kane8friendAbout__txt {
        font-size: 2.0rem;
    }
}
/* kane8friendAbout tablet */

/* kane8friendAbout pc */
@media screen and (min-width: 1024px) {
    .section--kane8friendAbout .spOnly {
        display: none;
    }

    .section--kane8friendAbout .pcOnly {
        display: block;
    }
}
/* kane8friendAbout pc */

/* =============================
kane8friendFeature - Summary
============================= */

.section__content--kane8friendSummary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.kane8friendSummary {
    width: 327px;
    height: 172px;
    padding: 20px 0 0 20px;
    border-radius: 42px;
    border: 2px solid var(--blue-500, #19C5FF);
    background-color: var(--white, #FFF);
}

.kane8friendSummary__num {
    color: var(--blue-500, #19C5FF);
    font-family:
        "Roboto",
        sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.kane8friendSummary__content {
    margin-top: 8px;
    display: flex;
    gap: 14px;
}

.kane8friendSummary__img {
    width: 88px;
}

.kane8friendSummary__topic {
    font-size: 1.6rem;
    font-weight: 700;
}

.kane8friendSummary__toDetail {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border-bottom: 2px solid;
    color: var(--blue-500, #19C5FF);
    font-size: 1.4rem;
    margin-top: 10px;
    transition: font-size 0.3s, font-weight 0.3s;
}

.arrow__small--blue {
    width: 22px;
}

.kane8friendSummary__toDetail:hover {
    font-size: 1.45rem;
    font-weight: 700;
}

.kane8friendSummary__toDetail:hover .arrow__small--blue {
    animation: down-up 0.6s ease;
}

@keyframes down-up {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
    100% {
        transform: translateY(0);
    }
}

/* kane8friendFeature - Summary tablet */
@media screen and (min-width: 769px) {

}
/* kane8friendFeature - Summary tablet */

/* kane8friendFeature - Summary pc */
@media screen and (min-width: 1024px) {
    
}
/* kane8friendFeature - Summary pc */

/* kane8friendFeature - Summary pcEx */
@media screen and (min-width: 1388px) {
    .section__content--kane8friendSummary {
        gap: 24px;
    }

    .kane8friendSummary {
        width: 465px;
        height: 215px;
        padding: 24px 0 0 24px;
    }

    .kane8friendSummary__num {
        font-size: 2.6rem;
    }

    .kane8friendSummary__content {
        margin-top: 13px;
        gap: 15px;
    }

    .kane8friendSummary__img {
        width: 164px;
    }

    .kane8friendSummary__topic {
        font-size: 2.0rem;
    }

    .kane8friendSummary__toDetail {
        font-size: 1.8rem;
        margin-top: 14px;
    }

    .kane8friendSummary__toDetail:hover {
        font-size: 1.85rem;
    }
}
/* kane8friendFeature - Summary pcEx */

/* =============================
kane8friendFeature - Detail
============================= */

.section__content--kane8friendDetail {
    margin-top: 0;
}

.kane8friendDetail {
    padding-top: 64px;
}

.kane8friendDetail__num {
    color: var(--blue-500, #19C5FF);
    font-family:
        "Roboto",
        sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
}

.kane8friendDetail__topic {
    font-size: 2.0rem;
    font-weight: 700;
    margin-top: 12px;
}

.kane8friendDetail__txt {
    font-size: 1.6rem;
    margin-top: 24px;
}

.kane8friendDetail__figure {
    padding: 25px 17px 29px;
    margin-top: 24px;
    text-align: center;
    border-radius: 42px;
    border: 2px solid var(--blue-400, #47D1FF);
    background: var(--white, #FFF);
}

.kane8friendDetail--flex {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.toPoint, .toKane8shop {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: fit-content;
    border-bottom: 2px solid;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 24px;
    transition: color 0.3s, font-size 0.3s;
}

.toPoint {
    color: var(--blue-500, #19C5FF);
}

.toKane8shop {
    color: var(--yellow-400, #EFB14A);
}

.toPoint .arrow__small--blue, .arrow__small--orange {
    width: 20px;
}

.toPoint:hover, .toKane8shop:hover {
    font-size: 1.85rem;
}

.toPoint:hover .arrow__small--blue, .toKane8shop:hover .arrow__small--orange {
    animation: down-up 0.6s ease;
}

@keyframes down-up {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
    100% {
        transform: translateY(0);
    }
}

.kane8friendDetail__img {
    width: 80%;
    max-width: 375px;
}

.kane8friendMerit {
    margin-top: 64px;
}

.kane8friendMerit__content {
    text-align: center;
}

.kane8friendMerit__txt {
    font-size: 2.0rem;
    font-weight: 700;
}

.kane8friendMerit__figure {
    margin-top: 18px;
    padding: 15px 14px;
    text-align: center;
    border-radius: 42px;
    border: 2px solid var(--blue-400, #47D1FF);
    background: var(--white, #FFF);
}

.kane8friendMerit__figure img {
    width: 100%;
    max-width: 385px;
}

/* kane8friendFeature - Detail tablet */
@media screen and (min-width: 769px) {
    .kane8friendDetail {
        padding-top: 120px;
    }

    .kane8friendDetail__num {
        font-size: 3.6rem;
    }

    .kane8friendDetail__topic {
        font-size: 2.4rem;
    }

    .kane8friendDetail__txt {
        font-size: 2.0rem;
    }

    .kane8friendDetail__figure {
        padding: 36px;
        border-radius: 51px;
    }

    .kane8friendDetail__figure img {
        margin: 0 auto;
    }
    
    .toPoint, .toKane8shop {
        font-size: 2.2rem;
    }

    .toPoint {
        min-width: 386.34px;
    }

    .toKane8shop {
        min-width: 347.66px;
    }

    .toPoint:hover, .toKane8shop:hover {
        font-size: 2.25rem;
    }

    .toPoint .arrow__small--blue, .arrow__small--orange {
        width: 25px;
    }

    .kane8friendMerit {
        margin-top: 160px;
    }

    .kane8friendMerit__txt {
        font-size: 2.4rem;
    }

    .kane8friendMerit__figure {
        margin-top: 22px;
        padding: 54px 41px;
    }

    .kane8friendMerit__figure .spOnly {
        display: inline-block;
    }

    .kane8friendMerit__figure .pcOnly {
        display: none;
    }

    .kane8friendMerit__figure img {
        max-width: 385px;
    }
}
/* kane8friendFeature - Detail tablet */

/* kane8friendFeature - Detail pc */
@media screen and (min-width: 1024px) {
    .kane8friendDetail--flex {
        flex-wrap: nowrap;
        align-items: center;
        gap: 24px;
    }

    .kane8friendDetail--flex:nth-of-type(2), .kane8friendDetail--flex:nth-of-type(4) {
        flex-direction: row-reverse;
    }

    .kane8friendDetail--flex .kane8friendDetail__content {
        width: 50%;
    }

    .kane8friendDetail__img {
        width: 50%;
    }

    .kane8friendMerit__figure .spOnly {
        display: none;
    }

    .kane8friendMerit__figure .pcOnly {
        display: inline-block;
    }

    .kane8friendMerit__figure img {
        max-width: 100%;
    }
}
/* kane8friendFeature - Detail pc */

/* =============================
kane8friendAttention
============================= */

.kane8friendAttention__num {
    color: var(--blue-500, #19C5FF);
    font-family:
        "Roboto",
        sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
}

.kane8friendAttention:nth-of-type(2), .kane8friendAttention:nth-of-type(3) {
    padding-top: 70px;
}

.kane8friendAttention__topic {
    margin-top: 12px;
    font-size: 2.0rem;
    font-weight: 700;
}

.kane8friendAttention__txt {
    margin-top: 24px;
    font-size: 1.6rem;
}

.kane8friendAttention--03 .kane8friendAttention__txt {
    padding-left: 15px;
    position: relative;
}

.kane8friendAttention--03 .kane8friendAttention__txt:nth-of-type(2), .kane8friendAttention--03 .kane8friendAttention__txt:nth-of-type(3) {
    margin-top: 16px;
}

.kane8friendAttention--03 .kane8friendAttention__txt::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--blue-500, #19C5FF);
    border-radius: 50%;
    top: 12px;
    left: 0px;
}

.kane8friendAttention__content {
    margin-top: 24px;
}

.kane8friendAttention__figure {
    display: none;
}

.figure__topic {
    display: flex;
}

.figure__topic--01, .figure__topic--02 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 101px;
    border-radius: 43px 43px 0 0;
    border: 2px solid var(--blue-400, #47D1FF);
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.5;
}

.kane8friendAttention__figure--01 .figure__topic--01, .kane8friendAttention__figure--02 .figure__topic--02 {
    background-color: var(--blue-400, #47D1FF);
    color: var(--white, #FFF);
}

.kane8friendAttention__figure--01 .figure__topic--02, .kane8friendAttention__figure--02 .figure__topic--01 {
    background-color: var(--white, #FFF);
    color: var(--blue-500, #19C5FF);
    transition: 0.2s;
}

.kane8friendAttention__figure--01 .figure__topic--02:hover, .kane8friendAttention__figure--02 .figure__topic--01:hover {
    background-color: var(--blue-400, #47D1FF);
    color: var(--white, #FFF);
    cursor: pointer;
}

.figure__content {
    padding: 53px 18.5px 43px;
    border-radius: 0 0 43px 43px;
    border: 2px solid var(--blue-400, #47D1FF);
    border-top: none;
    background: var(--white, #FFF);
}

.figure__img--01, .figure__img--02 {
    display: block;
    margin: 0 auto;
}

.figure__txt {
    font-size: 1.6rem;
    margin-top: 24px;
    padding-left: 15px;
    position: relative;
}

.figure__txt:first-of-type {
    margin-top: 48px;
}

.figure__txt::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--blue-500, #19C5FF);
    border-radius: 50%;
    top: 12px;
    left: 0px;
}

/* kane8friendAttention tablet */
@media screen and (min-width: 769px) {
    .kane8friendAttention__num {
        font-size: 3.6rem;
    }

    .kane8friendAttention:nth-of-type(2), .kane8friendAttention:nth-of-type(3) {
        padding-top: 120px;
    }

    .kane8friendAttention__topic {
        font-size: 2.4rem;
    }

    .kane8friendAttention__txt {
        font-size: 2.0rem;
    }

    .kane8friendAttention--03 .kane8friendAttention__txt::before {
        top: 15px;
    }

    .kane8friendAttention__content {
        margin-top: 27px;
    }

    .figure__topic--01, .figure__topic--02 {
        border-radius: 51px 51px 0 0;
        font-size: 2.4rem;
        line-height: 1.7;
    }

    .figure__img--01, .figure__img--02 {
        width: 70%;
    }

    .figure__txt {
        font-size: 2.0rem;
        margin-top: 20px;
    }

    .figure__txt::before {
        top: 15px;
    }
}
/* kane8friendAttention tablet */

/* kane8friendAttention pc */
@media screen and (min-width: 1024px) {
    .figure__content {
        display: flex;
        justify-content: space-evenly;
        padding: 56px 36px;
        border-radius: 0 0 51px 51px;
    }

    .figure__img {
        width: 50%;
    }

    .figure__img--01, .figure__img--02 {
        width: 90%;
        margin-right: 32px;
    }

    .figure__txtList {
        width: 50%;
    }

    .figure__txt:first-of-type {
        margin-top: 0;
    }
}
/* kane8friendAttention pc */

/* =============================
kane8shopAbout
============================= */

.kane8shopAbout__txt {
    text-align: center;
    font-size: 1.6rem;
}

/* kane8shopAbout tablet */
@media screen and (min-width: 769px) {
    .kane8shopAbout__txt {
        font-size: 2.0rem;
    }
}
/* kane8shopAbout tablet */

/* kane8shopAbout pc */
@media screen and (min-width: 1024px) {

}
/* kane8shopAbout pc */

/* =============================
kane8shopFeature
============================= */

.kane8shopFeature__txt {
    text-align: center;
    font-size: 1.6rem;
}

.kane8shopFeature__item {
    margin: 45px auto 0;
    max-width: 483px;
}

.kane8shopFeature__img {
    display: block;
    margin: 0 auto;
    width: 87.2%;
}

.kane8shopFeature__decoration {
    margin: -25px -12px 10px -3px;
}

.kane8shopFeature__num {
    display: inline-block;
    color: var(--yellow-500, #EB9E1C);
    font-family:
        "Roboto",
        sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
}

.kane8shopFeature__topic {
    width: 87.2%;
    margin: 12px auto 0;
    font-size: 2.0rem;
    font-weight: 700;
}

.kane8shopFeature__detail {
    width: 87.2%;
    margin: 16px auto 0;
    font-size: 1.6rem;
}

/* kane8shopFeature tablet */
@media screen and (min-width: 769px) {
    .kane8shopFeature__txt {
        font-size: 2.0rem;
    }

    .kane8shopFeature__list--01, .kane8shopFeature__list--02 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 19px;
        row-gap: 72px;
        margin-top: 72px;
    }

    .kane8shopFeature__item {
        width: 327px;
        margin: 0;
    }

    .kane8shopFeature__img {
        width: 100%;
    }

    .kane8shopFeature__decoration {
        margin-left: -30px;
    }

    .kane8shopFeature__topic {
        width: 327px;
    }

    .kane8shopFeature__detail {
        width: 327px;
    }
}
/* kane8shopFeature tablet */

/* kane8shopFeature pc */
@media screen and (min-width: 1024px) {

}
/* kane8shopFeature pc */

/* =============================
kane8shopFlow
============================= */

.kane8shopFlow__topic {
    text-align: center;
    font-size: 2.0rem;
}

.kane8shopFlow__item {
    margin-top: 16px;
    padding: 24px;
    width: 100%;
    background-color: var(--yellow-100, #FFF8E6);
}

.kane8shopFlow__item:first-of-type {
    margin-top: 24px;
}

.kane8shopFlow__topicGroup {
    display: flex;
    gap: 16px;
    align-items: center;
}

.kane8shopFlow__num {
    color: var(--yellow-500, #EB9E1C);
    font-family:
        "Roboto",
        sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
}

.kane8shopFlow__subtopic {
    font-size: 2.0rem;
    font-weight: 700;
}

.kane8shopFlow__txt {
    margin-top: 16px;
    font-size: 1.6rem;
}

.kane8shopFlow__txt a {
    color: var(--cta-blue, #599DD9);
    font-weight: 700;
    text-decoration-line: underline;
    text-underline-position: from-font;
}

.kane8shopFlow__txtImgSet:nth-of-type(3), .kane8shopFlow__txtImgSet:nth-of-type(4) {
    margin-top: 32px;
}

.kane8shopFlow__imgLayout {
    text-align: center;
}

.kane8shopFlow__img {
    width: 100%;
    max-width: 450px;
    margin-top: 16px;
}

.kane8shopFlow__table {
    width: 100%;
    max-width: 750px;
    border-radius: 11px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--yellow-400, #EFB14A);
    margin-top: 16px;
}

.table__header {
    width: 90px;
    padding: 10px 12px;
    vertical-align: middle;
    background-color: var(--yellow-400, #EFB14A);
    color: var(--white, #FFF);
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
}

.table__row--01 .table__header {
    border-radius: 11px 0 0 0;
}

.table__row--02 .table__header {
    border-radius: 0 0 0 11px;
    border-top: 1px solid var(--white, #FFF);
}

.table__data {
    padding: 10px 12px;
    vertical-align: middle;
    background-color: var(--white, #FFF);
    font-size: 1.4rem;
}

.table__row--01 .table__data {
    border-radius: 0 11px 0 0;
}

.table__row--02 .table__data {
    border-radius: 0 0 11px 0;
    border-top: 1px solid var(--yellow-400, #EFB14A);
}

.section__content--kane8shopFlow .arrow__large--orange {
    display: block;
    width: 50px;
    margin: 16px auto 0;
}

.section__content--kane8shopFlow:nth-of-type(2) {
    margin-top: 64px;
}

/* kane8shopFlow smartphone~tablet */
@media screen and (min-width: 450px) {
    .kane8shopFlow__subtopic .spOnly {
        display: none;
    }
}
/* kane8shopFlow smartphone~tablet */

/* kane8shopFlow tablet */
@media screen and (min-width: 769px) {
    .kane8shopFlow__img.spOnly {
        display: inline-block;
    }

    .kane8shopFlow__img.pcOnly {
        display: none;
    }
}
/* kane8shopFlow tablet */

/* kane8shopFlow pc */
@media screen and (min-width: 1024px) {
    .kane8shopFlow__img.spOnly {
        display: none;
    }

    .kane8shopFlow__img.pcOnly {
        display: inline-block;
    }

    .kane8shopFlow__topic {
        font-size: 2.4rem;
    }

    .kane8shopFlow__item {
        padding: 40px 72px;
    }

    .kane8shopFlow__topicGroup {
        gap: 24px;
    }

    .kane8shopFlow__num {
        font-size: 4.8rem;
    }

    .kane8shopFlow__subtopic {
        font-size: 2.4rem;
    }

    .kane8shopFlow__txt {
        margin-top: 24px;
        font-size: 2.0rem;
    }

    .kane8shopFlow__txtImgSet {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 24px;
    }

    .kane8shopFlow__txtImgSet:nth-of-type(2), .kane8shopFlow__txtImgSet:nth-of-type(3), .kane8shopFlow__txtImgSet:nth-of-type(4) {
        margin-top: 24px;
    }

    .kane8shopFlow__txtImgSet .kane8shopFlow__txt {
        margin-top: 0;
    }

    .kane8shopFlow__img {
        width: 320px;
        margin-top: 0;
    }

    .kane8shopFlow__table {
        margin-top: 24px;
    }

    .table__header {
        width: 170px;
        padding: 18.5px 12px;
        font-size: 2.2rem;
    }

    .table__data {
        font-size: 1.6rem;
    }

    .section__content--kane8shopFlow:nth-of-type(2) {
        margin-top: 72px;
    }
}
/* kane8shopFlow pc */

/* =============================
kane8shopAttention
============================= */

.kane8shopAttention__num {
    color: var(--yellow-500, #EB9E1C);
    font-family:
        "Roboto",
        sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
}

.kane8shopAttention:nth-of-type(2) {
    margin-top: 70px;
}

.kane8shopAttention__topic {
    margin-top: 12px;
    font-size: 2.0rem;
    font-weight: 700;
}

.kane8shopAttention__txt {
    margin-top: 24px;
    font-size: 1.6rem;
}

/* kane8shopAttention tablet */
@media screen and (min-width: 769px) {
    .kane8shopAttention__num {
        font-size: 3.6rem;
    }

    .kane8shopAttention:nth-of-type(2) {
        margin-top: 120px;
    }

    .kane8shopAttention__topic {
        font-size: 2.4rem;
    }

    .kane8shopAttention__txt {
        font-size: 2.0rem;
    }
}
/* kane8shopAttention tablet */

/* kane8shopAttention pc */
@media screen and (min-width: 1024px) {

}
/* kane8shopAttention pc */

/* =============================
line
============================= */

.line__txt {
    text-align: center;
    font-size: 1.6rem;
}

.section__content--lineFlow {
    margin-top: 32px;
}

.lineFlow__topic {
    text-align: center;
    font-size: 2.0rem;
}

.lineFlow__item {
    margin-top: 16px;
    padding: 24px;
    width: 100%;
    background-color: var(--green-100, #E0F8F0);
}

.lineFlow__item:first-of-type {
    margin-top: 24px;
}

.lineFlow__topicGroup {
    display: flex;
    gap: 16px;
    align-items: center;
}

.lineFlow__num {
    color: var(--line-green, #06C755);
    font-family:
        "Roboto",
        sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
}

.lineFlow__subtopic {
    font-size: 2.0rem;
    font-weight: 700;
}

.lineFlow__txt {
    margin-top: 16px;
    font-size: 1.6rem;
}

.lineFlow__txt a {
    color: var(--line-green, #06C755);
    font-weight: 700;
    text-decoration-line: underline;
    text-underline-position: from-font;
}

.lineFlow__imgLayout {
    text-align: center;
}

.lineFlow__img {
    width: 100%;
    max-width: 220px;
    margin-top: 16px;
}

.section__content--lineFlow .arrow__large--green {
    display: block;
    width: 50px;
    margin: 16px auto 0;
}

.line__merit {
    margin-top: 64px;
    text-align: center;
}

.line__meritTxt {
    color: var(--line-green, #06C755);
    font-size: 1.5rem;
    font-weight: 700;
}

.line__meritImg {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.line__meritImg img {
    width: 100%;
    max-width: 327px;
}

.line__meritImg img:nth-of-type(2) {
    width: 85%;
    max-width: 294px;
}

/* line tablet */
@media screen and (min-width: 769px) {
    .lineFlow__img {
        max-width: 170px;
    }

    .line__merit {
        margin-top: 88px;
    }

    .line__meritTxt {
        font-size: 2.2rem;
    }

    .line__meritImg {
        flex-direction: row;
        justify-content: center;
        gap: 28px;
    }

    .line__meritImg img, .line__meritImg img:nth-of-type(2) {
        width: 40%;
    }
}
/* line tablet */

/* line pc */
@media screen and (min-width: 1024px) {
    .line__txt {
        font-size: 2.0rem;
    }

    .section__content--lineFlow {
        margin-top: 64px;
    }

    .lineFlow__topic {
        font-size: 2.4rem;
    }

    .lineFlow__item {
        padding: 40px 72px;
    }

    .lineFlow__topicGroup {
        gap: 24px;
    }

    .lineFlow__num {
        font-size: 4.8rem;
    }

    .lineFlow__subtopic {
        font-size: 2.4rem;
    }

    .lineFlow__txt {
        margin-top: 24px;
        font-size: 2.0rem;
    }

    .lineFlow__txtImgSet {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 24px;
    }

    .lineFlow__img {
        width: 170px;
        margin-top: 0;
    }
}
/* line pc */

/* =============================
cta
============================= */

.cta {
    text-align: center;
}

.cta__img {
    width: 327px;
}

.cta__content {
    margin-top: 24px;
}

.cta__txt {
    font-size: 1.6rem;
}

.cta__btn {
    display: flex;
    justify-content: end;
    width: 327px;
    height: 48px;
    border-radius: 51px;
    background-color: var(--cta-orange, #F59403);
    box-shadow: 0px 3px #CF7C00;
    padding: 16px 12px;
    text-align: center;
    color: var(--white, #FFF);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 24px auto 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta__btn:hover {
    box-shadow: none;
    transform: translateY(3px);
}

.cta__arrow {
    margin-left: 8px;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--white, #FFF);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta__fixed {
    position: fixed;
    z-index: 50;
    bottom: 20px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cta__fixed.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cta__fixed .cta__btn {
    box-shadow:
        0px 3px #CF7C00,
        0 4px 4px 1px rgba(0, 0, 0, 0.25);
}

.cta__fixed .cta__btn:hover {
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.25);
}

/* cta tablet */
@media screen and (min-width: 769px) {
    .cta .spOnly {
        display: inline-block;
    }

    .cta .pcOnly {
        display: none;
    }
}
/* cta tablet */

/* cta pc */
@media screen and (min-width: 1024px) {
    .cta .spOnly {
        display: none;
    }

    .cta .pcOnly {
        display: block;
    }

    .cta__content {
        position: relative;
        width: fit-content;
        margin: 0 auto;
    }

    .cta__content::before {
        content: '';
        position: absolute;
        display: inline-block;
        width: 150px;
        height: 167px;
        background-image: url('../images/CTA_people_left_PC.svg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        left: -170px;
        top: -25px;
        z-index: 15;
    }

    .cta__content::after {
        content: '';
        position: absolute;
        display: inline-block;
        width: 150px;
        height: 167px;
        background-image: url('../images/CTA_people_right_PC.svg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        right: -177px;
        bottom: -19px;
        z-index: 15;
    }

    .cta__txt {
        font-size: 2.0rem;
    }

    .cta__btn {
        width: 528px;
        box-shadow: 0px 4px #CF7C00;
        padding: 12px 18.5px;
        font-size: 2.4rem;
        line-height: 1;
        margin: 48px auto 0;
    }

    .cta__btn:hover {
        transform: translateY(4px);
    }

    .cta__arrow {
        width: 26px;
        height: 26px;
        stroke-width: 4;
    }

    .header .cta__btn {
        margin: 0;
    }

    .section--kane8friendAbout .cta__btn {
        margin-top: 40px;
    }
}
/* cta pc */

/* =============================
footer
============================= */

.footer {
    padding: 80px 6.4%;
}

.footer__logo {
    width: 218px;
    margin: 0 auto;
}

.footer__navList {
    width: 158px;
    margin: 48px auto 0;
}

.footer__navListSub {
    margin-top: 32px;
}

.footer__navItem {
    margin-top: 12px;
    font-size: 1.4rem;
    line-height: 1;
}

.footer__navItem:nth-of-type(1) {
    font-family:
        "Roboto",
        sans-serif;
}

.footer__navItem:nth-of-type(1) {
    font-weight: 700;
}

.footer__navItem:nth-of-type(2), .footer__navItem:nth-of-type(3), .footer__navItem:nth-of-type(4), .footer__navItem:nth-of-type(5) {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer__navItem:nth-of-type(2)::before, .footer__navItem:nth-of-type(3)::before, .footer__navItem:nth-of-type(4)::before, .footer__navItem:nth-of-type(5)::before {
    content: '';
    width: 10px;
    height: 1px;
    background-color: var(--text-black, #202020);
}

.footer__navItem a:hover {
    color: var(--cta-orange, #F59403);
}

.copyright {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 112px;
}

/* footer tablet */
@media screen and (min-width: 769px) {
    .footer .spOnly {
        display: inline-block;
    }

    .footer .pcOnly {
        display: none;
    }
}
/* footer tablet */

/* footer pc */
@media screen and (min-width: 1024px) {
    .footer .spOnly {
        display: none;
    }

    .footer .pcOnly {
        display: block;
    }

    .footer {
        padding: 64px 8.5%;
    }

    .footer__content {
        display: flex;
        justify-content: space-between;
        align-items: start;
    }

    .footer__logo {
        width: 218px;
        margin: 0;
    }

    .footer__navList {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        width: auto;
        margin: 0;
    }

    .footer__navListSub {
        margin-top: 0;
    }

    .footer__navItem {
        margin-top: 16px;
    }

    .footer__navItem:first-of-type {
        margin-top: 0;
    }

    .copyright {
        font-size: 1.4rem;
        margin-top: 80px;
    }
}
/* footer pc */
