
.serviceList {
    background-color: var(--white);
    padding: 48px 5% 64px;
}

.appeal {
    background-color: var(--primary-bland-color);
    padding: 80px 5%;
    position: relative;
}

.appeal .content--imgBox {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 600px;
    height: 600px;
    transform: translateY(-50%);
}

.appeal .content--img {
    width: 100%;
}

.appeal .content--text {
    font-size: 3.2rem;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.appeal .content--titleBox {
    margin-top: 32px;
}

.appeal .content--title {
    display: block;
    white-space: normal;
}

.appeal .content--titleRow {
    color: var(--white);
    display: flex;
    /* padding: 8px; */
}

.appeal .content--titleText {
    width: fit-content;
    font-size: 4rem;
    background-color: var(--secondary-bland-color);
    color: var(--white);
    margin-top: 16px;
    padding: 12px;
}

.appeal .content--multiText-left {
    padding-right: 0;
}

.appeal .content--multiText-right {
    padding-left: 0;
}

.appeal .media {
    justify-content: flex-start;
    align-items: center;
    column-gap: 40px;
    margin-top: 48px;
}

.appeal .media--text-fukidashi {
    max-width: 800px;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 32px;
    letter-spacing: 1.4;
    background-color: var(--white);
    border-radius: 24px;
    position: relative;
}

.appeal .media--text-fukidashi .emphasis {
    color: var(--secondary-bland-color);
    font-size: 3.2rem;
}

.appeal .media--text-fukidashi::after {
    position: absolute;
    content: '';
    bottom: 50%;
    left: 0;
    transform: translate(-100%, 50%); 
    width: 0;
    height: 0;
    border-color: transparent var(--white) transparent transparent;
    border-width: 15px 18px 15px;
    border-style: solid;
}

.appeal .media--imgBox {
    width: 148px;
}

.appeal .media--img {
    width: 148px;
    border-radius: 50%;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .appeal {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .appeal .content--imgBox {
        display: none;
    }
    
    .appeal .media--text-fukidashi {
        font-size: 1.6rem;
        padding: 32px;
    }

    .appeal .media--text-fukidashi .emphasis {
        font-size: 2.8rem;
    }

}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .appeal {
        padding-top: 16px;
        padding-bottom: 24px;
    }

    .appeal .content--text {
        font-size: 2.1rem;
    }

    .appeal .content--titleBox {
        width: 100%;
        margin-top: 16px;
        justify-content: stretch;
    }

    .appeal .content--title {
        width: 100%;
    }

    .appeal .content--titleRow {
        flex-direction: column;
    }

    .appeal .content--titleText {
        width: 100%;
        font-size: 3rem;
        text-align: left;
    }

    .appeal .content--multiText-left {
        padding-right: 12px;
    }

    .appeal .content--multiText-right {
        padding-left: 12px;
    }
    
    .appeal .media {
        margin-top: 32px;
        row-gap: 32px;
    }
    
    .appeal .media {
        flex-direction: column;
    }
    
    .appeal .media--text-fukidashi {
        font-size: 1.6rem;
        padding: 16px;
    }
    
    .appeal .media--text-fukidashi::after {
        top: 0;
        left: 50%;
        transform: translate(-50%, -100%);
        border-width: 15px 15px 15px ;
        border-color: transparent transparent var(--white) transparent;
        /* border-width: 12.5px 0 12.5px 18px; */
    }
    
    .appeal .media--text-fukidashi .emphasis {
        font-size: 2rem;
    }

    .appeal .media--imgBox {
        width: 160px;
        height: 160px;
    }

    .appeal .media--img {
        width: 100%;
        height: auto;
    }

}

.point {
    background-color: var(--background-color-lightgrey);
    padding: 64px 5%;
}

.point .content--subTitleBox .media {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.point .content--subTitleBox .media--imgBox {
    width: 265px;
}

.point .content--subTitleBox .media--img {
    width: 100%;
}

.point .content--subTitleBox .media--body {
    flex: 1 0;
}

.point .content--subTitleBox .media--text {
    font-size: 2.6rem;
}

.point .content--titleBox {
    justify-content: center;
    margin-top: 48px;
}

.point .content--title {
    font-size: 3.8rem;
    text-align: center;
    line-height: 1.5;
    white-space: normal;
}

.point .pointList {
    margin-top: 48px;
}

.point .pointItem {
    padding: 32px 0;
    border-top: 1px solid var(--table-border-color-darkgrey);
}

.point .pointItem:last-of-type {
    border-bottom: 1px solid var(--table-border-color-darkgrey);
}

.point .media {
    align-items: center;
    justify-content: space-between;
    column-gap: 24px;
}

.point .media--numberBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 50%;
    width: 140px;
    height: 140px;
}

.point .media--numberPrefix {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.point .media--number {
    font-size: 8rem;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-bland-color);
}

.point .media--body {
    flex: 1 0;
}

.point .media--title {
    font-size: 3.2rem;
}

.point .media--textBox {
    margin-top: 24px;
}

.point .media--text {
    font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .point {
        padding: 32px;
    }

    .point .content--subTitleBox .media {
        flex-direction: column;
        /* row-gap: 24px; */
    }

    .point .content--subTitleBox .media--text {
        font-size: 2rem;
    }

    .point .content--titleBox {
        margin-top: 32px;
    }

    .point .content--title {
        font-size: 2.6rem;
    }

    .point .media {
        flex-direction: column;
    }

    .point .media--body {
        margin-top: 16px;
    }

    .point .media--title {
        font-size: 2.1rem;
    }

    .point .media--textBox {
        margin-top: 16px;
    }
}

.achievement {
    background-color: var(--background-color-lightgrey);
}


/* support */

.support {
    padding: 80px 0 80px;
    background-color: var(--white);
}

.support .content--title {
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
}

.support .movie {
    width: 100%;
    padding: 56px;
    display: grid;
    place-content: end;
    margin-top: 64px;
}

.support .movie .media {
    width: 100%;
    max-width: 1300px;
    justify-content: center;
    column-gap: 56px;
}

.support .darkTheme {
    background-color: var(--black);
}

.support .media--body {
    width: 100%;
    max-width: 530px;
}

.support .darkTheme .media--title {
    color: var(--white);
    font-size: 3.2rem;
    line-height: 1.4;
}

.support .darkTheme .media--text {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    margin-top: 32px;
}

.support .movie .media--imgBox {
    max-width: 650px;
    line-height: 0;
}

.support .movie .media--img {
    width: 100%;
    line-height: 0;
}

.support .lineup {
    width: 100%;
    /* background-color: var(--background-color-lightgrey); */
    padding: 90px 5% 0px;
    display: grid;
    place-items: center;
}

.support .lineup .mediaBox {
    background-color: var(--background-color-lightgrey);
    margin-top: 40px;
    padding: 60px;
}

.support .lineup .mediaBox:first-of-type {
    margin-top: 0px;
}

.support .lineup .mediaBox--line {
    width: 100%;
    height: 1.5px;
    background-color: var(--decoration-color-lightgrey);
    position: relative;;
}

.support .lineup .mediaBox--line::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 120px;
    height: 1.5px;
    background-color: var(--decoration-color-dimgrey);
}

.support .lineup .media {
    margin-top: 40px;
}

.support .lineup .media--title {
    font-size: 2.2rem;
    line-height: 1.6;
}

.support .lineup .media--textBox {
    margin-top: 32px;
}

.support .lineup .media--text {
    font-size: 1.5rem;
    line-height: 2;
}

.support .lineup .arrowBtn {
    margin-top: 40px;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .support .movie {
        padding-right: 0;
        padding-left: 80px;
    }

    .support .movie .media {
        column-gap: 32px;
    }

    .support .movie .media--body {
        max-width: 320px;
    }

    .support .darkTheme .media--title {
        font-size: 2.8rem;
    }
    
    .support .darkTheme .media--text {
        font-size: 1.5rem;
    }

    .support .lineup .mediaBox {
        padding: 32px 24px 24px;
    }

    .support .lineup .mediaBox--line {
        height: 2px;
    }
    
    .support .lineup .mediaBox--line::before {
        height: 2px;
    }

    .support .lineup .media {
        flex-direction: column;
        row-gap: 24px;
        margin-top: 24px;
    }

    .support .lineup .media--body {
        max-width: 100%;
    }

    .support .lineup .media--textBox {
        margin-top: 16px;
    }

    .support .lineup .arrowBtn {
        margin-top: 24px;
    }

    .support .lineup .media--imgBox {
        width: 100%;
        max-width: 100%;
    }

    .support .lineup .media--img {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .support {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    
    .support .movie {
        margin-top: 32px;
        padding-top: 32px;
        padding-right: 5%;
        padding-left: 5%;
    }
    
    .support .movie .media {
        flex-direction: column;
        row-gap: 32px;
    }

    .support .movie .media--body {
        max-width: 100%;
    }
    
    .support .movie .media--title {
        font-size: 2.2rem;
    }
    
    .support .movie .media--text {
        font-size: 1.4rem;
        font-weight: normal;
    }

    .support .movie .media--imgBox {
        max-width: 100%;
    }

    .support .lineup {
        padding-top: 24px;
    }

    .support .lineup .media--title {
        font-size: 1.8rem;
    }

    .support .lineup .media--text {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .support .lineup .arrowBtn {
        font-size: 1.4rem;
    }

    .support .lineup .arrowBtn::after {
        width: 20px;
        height: 16px;
    }

}