@charset "utf-8";

.serviceList {
    background-color: var(--white);
    padding: 48px 5% 64px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .serviceList {
        padding-bottom: 32px;
    }
    
}

.aboutShop .message .media--img {
    width: 148px;
}

.recommend {
    padding: 40px 5% 80px;
    background-color: var(--primary-bland-color);
    position: relative;
    overflow: hidden;
}

.recommend .bg-triangle {
    position: absolute;
    content: '';
    top: 0;
    left: 40%;
    width: 70vw;
    height: 40vw;
    background-image: url(../img/recommend_triangle_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.recommend .bg-diagonal {
    position: absolute;
    width: 100%;
    height: 40vw;
    top: 10vw;
    background-color: var(--background-color-transparentwhite-deep);
    transform: skewY(-15deg);
}

.recommend .content--inner-medium {
    z-index: 1;
}

.recommend .content--titleBox {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 32px;
}

.recommend .content--imgBox {
    width: 300px;
    height: 200px;
}

.recommend .content--img {
    width: 100%;
}

.recommend .content--title {
    color: var(--white);
}

.recommend .content--titleRow {
    color: var(--white);
    display: flex;
}

.recommend .content--titleText {
    font-size: 3.6rem;
    width: fit-content;
    background-color: var(--secondary-bland-color);
    margin-top: 12px;
    padding: 12px;
}

.recommend .content--multiText-left {
    padding-right: 0;
}

.recommend .content--multiText-right {
    padding-left: 0;
}

.recommend .content--textBox {
    width: 100%;
    margin-top: 64px;
}

.recommend .content--text {
    font-size: 3rem;
    font-weight: bold;
}

.recommend .localLargeFont {
    color: var(--secondary-bland-color);
}

.recommend .flex-col3 {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 16px;
    margin-top: 32px;
}

.recommend .flex-col3--img {
    width: 25%;
}

.recommend .flex-col3--dummy {
    width: 0.01%;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .recommend .bg-triangle {
        top: -140px;
    }

    .recommend .bg-diagonal {
        height: 30%;
        top: 22.5%;
        transform: skewY(-7deg);
    }
    
    .recommend .content--imgBox {
        width: 210px;
        height: 140px;
    }

    .recommend .content--titleText {
        font-size: 3rem;
    }

    .recommend .content--titleRow {
        margin-top: 12px;
    }

    .recommend .content--text {
        font-size: 3rem;
        font-weight: bold;
    }
}

@media screen and (max-width: 820px) {

    .recommend .bg-triangle {
        top: -60px;
    }

    .recommend .bg-diagonal {
        height: 30vw;
        top: 27.5%;
        transform: skewY(-7deg);
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .recommend {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .recommend .bg-triangle {
        top: 0;
    }

    .recommend .bg-diagonal {
        top: 14%;
        height: 42%;
        transform: skewY(-7deg);
    }
    
    .recommend .content--imgBox {
        width: 150px;
        height: 100px;
    }

    .recommend .content--titleBox {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .recommend .content--titleText {
        font-size: 2.6rem;
        padding: 0 12px
    }

    .recommend .content--titleRow {
        color: var(--white);
        flex-direction: column;
    }

    .recommend .content--multiText-left {
        padding-right: 12px;
    }
    
    .recommend .content--multiText-right {
        padding-left: 12px;
    }

    .recommend .content--textBox {
        margin-top: 24px;
    }

    .recommend .content--text {
        font-size: 1.6rem;
    }

    .recommend .flex-col3 {
        margin-top: 16px;
        row-gap: 16px;
    }

    .recommend .flex-col3--img {
        width: calc(100% / 2.5);
    }

    .recommend .flex-col3--dummy {
        width: 30%;
    }
}

.different {
    padding: 80px 5% 100px;
    background-color: var(--white);
}

.different .content--title {
    text-align: center;
}

.different .content--textBox {
    margin-top: 24px;
}

.different .content--text {
    font-weight: bold;
    text-align: center;
}

.different .grid-col3 {
    width: 100%;
    max-width: 960px;
    margin: 48px auto 0;
}

.different .title-fukidashi {
    color: var(--white);
    font-size: 2.8rem;
    text-align: center;
    background-color: var(--background-color-darkgrey);
    padding: 12px;
    position: relative;
    margin-bottom: 40px;
}

.different .feature .title-fukidashi::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%); 
    width: 0;
    height: 0;
    border-color: var(--background-color-darkgrey) transparent transparent transparent;
    border-width: 15px 15px 0 15px;
    border-style: solid;
}

.different .feature .textBox {
    height: 120px;
}

.different .feature .text {
    line-height: 1.9;
}

.different .horizontalTable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 24px;
}

.different .horizontalTable--row {
    border-bottom: 1px solid var(--table-border-color-darkgrey);
}

.different .horizontalTable--row:last-of-type {
    border-bottom: 1px solid var(--table-border-color-darkgrey);
}

.different .horizontalTable--titleBox {
    padding-left: 16px;
    width: 36%;
    text-align: left;
}

.different .horizontalTable--title {
    display: inline-block;
    font-size: 1.7rem;
    line-height: 2;
    font-weight: bold;
    color: var(--secondary-bland-color);
    transform: translateY(-5px);
}

.different .horizontalTable--marks {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    column-gap: 12px;
    padding: 16px 8px;
}

.different .horizontalTable--mark {
    width: 26px;
    height: 26px;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .different .title-fukidashi {
        font-size: 2.4rem;
    }

    .different .feature .textBox {
        height: 180px;
    }

    .different .horizontalTable {
        margin-top: 8px;
    }

    .different .horizontalTable--titleBox {
        padding-left: 8px;
    }

    .different .horizontalTable--title {
        font-size: 1.6rem;
        letter-spacing: -1;
    }

    .different .horizontalTable--marks {
        column-gap: 4px;
    }

    .different .horizontalTable--mark {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .different {
        padding-top: 40px;
        padding-bottom: 48px;
    }

    .different .grid-col3 {
        margin-top: 0;
    }

    .different .feature {
        margin-top: 32px;
    }
    
    .different .feature .textBox {
        height: auto;
    }

    .different .horizontalTable--marks {
        justify-content: space-around;
    }
}

.aboutShop {
    padding: 80px 5% 40px;
    background-color: var(--background-color-lightgrey);
}

.aboutShop .content--title {
    text-align: center;
    font-weight: bold;
}

.aboutShop .content--textBox {
    margin-top: 48px;
}

.aboutShop .content--text {
    text-align: center;
    font-weight: bold;
}

.aboutShop .feature .mediaBox {
    width: 100%;
    margin-top: 48px;
}

.aboutShop .feature .mediaBox--inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.aboutShop .feature .media {
    background-color: var(--white);
    margin-bottom: 120px;
    margin-left: 7.1428571428571vw;
    position: relative;
    justify-content: space-between;
    align-items: flex-start;
}

.aboutShop .feature .media-rowReverse {
    margin-left: 0;
    margin-right: 7.1428571428571vw;
}

.aboutShop .feature .media::after {
    background-color: var(--white);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100vw;
    height: 100%;
    content: "";
}

.aboutShop .feature .media-rowReverse::after {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

.aboutShop .feature .media--index {
    display: block;
    position: absolute;
    top: 20px;
    right: calc( 5vw + 2.8571428571429vw);
    font-size: 13.68rem;
    line-height: 1;
    z-index: 1;
    font-style: italic;
    color: var(--secondary-bland-color);
}

.aboutShop .feature .media-rowReverse .media--index {
    left: 4.2857142857143vw;
}

.aboutShop .feature .media--body {
    flex-basis: 50%;
    padding: 50px 5vw 60px 5vw;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aboutShop .feature .media--bodyTop {
}

.aboutShop .feature .media--bodyBottom {
}

.aboutShop .feature .media--titleBox {
}

.aboutShop .feature .media--title {
    color: var(--font-color-darkgrey);
    font-size: 2.2rem;
}

.aboutShop .feature .media--textBox {
    margin-top: 32px;
}

.aboutShop .feature .media--text {
    color: var(--font-color-darkgrey);
    font-size: 1.5rem;
    margin-top: 2em;
    text-align: justify;
}

.aboutShop .feature .media--imgBox {
    flex-basis: 50%;
    transform: translateY(60px);
    line-height: 0;
}

.aboutShop .feature .media--imgTitle {
    position: absolute;
    top: -40px;
    right: calc( 5vw + 2.8571428571429vw);
    font-size: 13.68rem;
    font-style: italic;
    line-height: 1;
}

.aboutShop .feature .media-rowReverse .media--imgTitle {
    left: 4.2857142857143vw;
}

.aboutShop .feature .media--img {
    width: 100%;
    height: auto;
}

.aboutShop .emphasis {
    color: var(--secondary-bland-color);
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .aboutShop .feature .media::after {
        width: 4%;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .aboutShop {
        margin: 0;
        padding-top: 48px;
    }

    .aboutShop .content--title {
        white-space: normal;
    }

    .aboutShop .content--titleBorder-vertical {
        height: 40px;
    }

    .aboutShop .content--text {
        white-space: normal;
    }

    /* common.css上書き */
    .aboutShop .widthFullsizeIgnoreParentElement-spOnly {
        margin-top: 32px;
    }

    .aboutShop .widthFullsizeIgnoreParentElement-spOnly:first-of-type {
        margin-top: 0;
    }

    .aboutShop .feature .media {
        width: 100%;
        margin-bottom: 0;
        margin-left: 0;
        padding: 24px;
        position: relative;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }

    .aboutShop .feature .media-rowReverse {
        margin-right: 0;
    }

    .aboutShop .feature .media::after,
    .aboutShop .feature .media-rowReverse::after {
        width: 0;
        height: 0;
    }

    .aboutShop .feature .media--index,
    .aboutShop .feature .media-rowReverse .media--index {
        position: static;
        font-size: 7rem;
        width: 100%;
        z-index: 1;
    }

    .aboutShop .feature .media--body {
        flex: initial;
        width: 100%;
        padding: 16px 0;
    }

    .aboutShop .feature .media--textBox {
        margin-top: 1em;
    }

    .aboutShop .feature .media--text {
        margin-top: 1em;
    }

    .aboutShop .feature .media--imgBox {
        flex: initial;
        width: 100%;
        transform: translateY(0);
    }

    .aboutShop .feature .media--imgTitle,
    .aboutShop .feature .media-rowReverse .media--imgTitle {
        position: static;
        font-size: 7rem;
        z-index: 1;
    }
}

.aboutShop .message .media {
    align-items: center;
    column-gap: 40px;
}

.aboutShop .message .media--text-fukidashi {
    font-size: 2.6rem;
    padding: 32px 96px;
    letter-spacing: 1.4;
    background-color: var(--white);
    border-radius: 24px;
    position: relative;
}

.aboutShop .message .media--text-fukidashi::after {
    position: absolute;
    content: '';
    bottom: 50%;
    right: 0;
    transform: translate(100%, 50%); 
    width: 0;
    height: 0;
    border-color: transparent transparent transparent var(--white);
    border-width: 12.5px 0 12.5px 18px;
    border-style: solid;
}

.aboutShop .message .media--imgBox {
    width: 148px;
}

.aboutShop .message .media--img {
    /* width: 100%; */
    border-radius: 50%;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .aboutShop .message .media--text-fukidashi {
        font-size: 1.6rem;
        padding: 32px;
    }

}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .aboutShop .message .media {
        margin-top: 32px;
        row-gap: 32px;
    }
    
    .aboutShop .message .media {
        flex-direction: column;
    }
    
    .aboutShop .message .media--text-fukidashi {
        font-size: 1.6rem;
        padding: 16px;
    }
    
    .aboutShop .message .media--text-fukidashi::after {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 100%);
        border-width: 15px 15px 0 15px;
        border-color: var(--white) transparent transparent transparent;
        /* border-width: 12.5px 0 12.5px 18px; */
    }

    .aboutShop .message .media--imgBox {
        width: 160px;
        height: 160px;
    }

    .aboutShop .message .media--img {
        width: 100%;
        height: auto;
    }

}

/* support */

.support {
    padding: 80px 0 80px;
    background-color: var(--white);
}

.support .content--inner-medium {
    padding-left: 5%;
    padding-right: 5%;
}

.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;
    column-gap: 24px;
}

.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;
    text-align: justify;
}

.support .lineup .arrowBtn {
    margin-top: 40px;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .support .content--inner-medium {
        padding-left: 0;
        padding-right: 0;
    }

    .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;
        margin-top: 32px;
    }

    .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 .mediaBox {
        margin-top: 20px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 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;
    }

}

.review {
    padding: 40px 5%;
    background-color: var(--background-color-darkgrey);
    position: relative;
    z-index: 0;
}

.review::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: inherit;
    filter: grayscale(75%) brightness(30%);
    z-index: -1;
}

.review .content--titleBox {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}

.review .content--title {
    color: var(--white);
    line-height: 1.8;
    white-space: normal;
    font-size: 3.2rem;
    margin: 0 auto;
}

.review .content--textBox {
    width: 100%;
    max-width: 880px;
    margin: 32px auto 0;
}

.review .content--text {
    color: var(--white);
    line-height: 1.8;
    white-space: normal;
    font-size: 3.2rem;
    text-align: center;
    font-weight: bold;
}

.review .grid-col2 {
    margin-top: 48px;
}

.review .arrowBtn {
    padding: 0.5em;
    font-size: 2.8rem;
    background-color: var(--secondary-bland-color);
}

.review .googleReview {
    margin-top: 32px;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .review {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    
    .review .titleBox {
        max-width: 100%;
    }
    
    .review .textBox {
        max-width: 100%;
    }

    .review .content--title,
    .review .content--text {
        font-size: 2.8rem;
    }

    .review .grid-col2 {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
        row-gap: 24px;
    }

    .review .arrowBtn {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .review {
        padding-top: 24px;
        padding-bottom: 24px;
    }
    
    .review .content--title,
    .review .content--text  {
        font-size: 2.1rem;
        text-align: left;
    }

    .review .arrowBtn {
        font-size: 1.7rem;
        padding: 0.5em;
    }

    .review .grid-col2 {
        margin-top: 32px;
    }
}

.imgSeparator {
    height: 1px;
}