body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

.hero {
    width: 100%;
    height: auto;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 22%, rgba(255, 255, 255, 0) 100%), url(/img/bg-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 10%;
    padding: 0;

    display: grid;

    .hero--top {
        width: 100%;
        padding: 12px 5%;
        background-color: var(--primary-bland-color);
        display: grid;
        place-items: center;

        .hero--top--text {
            font-size: var(--fontsize-medium);
            color: var(--white);
        }
    }

    .hero--bottom {

        width: 100%;
        padding-top: 64px;
        padding-bottom: 64px;

        .hero--inner {
            width: 100%;
            max-width: var(--inner-medium);
            height: auto;
            margin: 0 auto;
            text-align: left;
            
            display: grid;
            /* grid-template-columns: repeat(2, 1fr); */
            place-items: center;
        }

        .hero--firstBox {
            width: 100%;
            display: grid;
            row-gap: 8px;
            /* padding-top: 16px;
            padding-bottom: 32px;
            padding-right: 2px; */
            /* padding-left: calc((100vw - 1200px) / 2); */
            /* background-color: var(--white); */
            /* background-color: var(--primary-bland-color); */
        }

        .hero--subTitle {
            font-size: 28px;
            color: black;
            text-align: left;
            width: fit-content;
            font-weight: bold;
        }

        .hero--title {
            font-size: 60px;
            color: var(--primary-bland-color);
            /* color: var(--white); */
            text-align: left;
            width: fit-content;
            line-height: 1.35;
        }

        .hero--title-bg {
            background-color: var(--primary-bland-color);
            background-color: var(--white);
            padding: 24px 16px 8px 16px;
            border: 4px solid var(--primary-bland-color);
        }

        .hero--title-bg-none {
            text-shadow: 3px 3px 0 rgb(0 0 0 / 20%);
            /* line-height: 1;
            font-weight: 100; */
        }

        .hero--img {
            width: 90%;
            max-width: 600px;
        }
    }
}

@media screen and (max-width: 1024px) {

    .hero {

        .hero--bottom {

            padding-top: 32px;
            padding-bottom: 32px;

            .hero--firstBox {
                padding-left: 10%;
            }

            .hero--secondBox {
                padding-right: 10%;
            }

            .hero--title {
                font-size: 36px;
                line-height: 1.65;
            }
            
            .hero--title-bg {
                padding: 16px 8px 8px 8px;
            }

            .hero--img {
                width: 100%;
            }
        }
    }
}

@media screen and (max-width: 599px) {

    .hero {
        background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%), url(/img/bg-hero.png);
        background-position: center 60%;
        
        .hero--top {

            padding-top: 8px;
            padding-bottom: 8px;

            .hero--top--text {
                font-size: var(--fontsize-xsmall);
            }
        }

        .hero--bottom {

            .hero--inner {
                grid-template-columns: repeat(1, 1fr);
            }

            .hero--firstBox {
                padding-left: 0;
                display: grid;
                place-items: center;
                row-gap: 8px;
                background-color: transparent;
                margin-top: 32px;
            }

            .hero--secondBox {
                padding-right: 0;
                display: grid;
                place-items: center;
            }

            .hero--title-bg {
                padding: 16px 8px 8px 8px;
                border: 2px solid var(--primary-bland-color);
            }

            .hero--title {
                width: 90%;
                font-size: 2.8rem;
                margin-left: 12px;
                line-height: 1.65;
            }

            .hero--subTitle {
                font-size: 1.6rem;
            }

            .hero--imgBox {
                width: 90%;
            }
        }
    }
}

.franchisorSection {

    display: grid;
    place-items: center;

    .franchisorSection--header {

        width: 100%;
        
        .media {
            width: 100%;
            gap: 0;
            align-items: end;
        }

        .media--imgBox {
            width: 560px;
            z-index: 3;
        }

        .media--img {
            width: 100%;
            aspect-ratio: 16/9;
        }

        .media--body {
            background-color: var(--whitegray);
            padding: 40px 40px 40px 120px;
            margin-bottom: -40px;
            margin-left: -80px;
            justify-content: left;
        }

        .media--notes {
            font-size: var(--fontsize-medium);
            text-align: left;
        }

        .media--title {
            text-align: left;
        }

        .meta--list {
            display: grid;
            row-gap: 12px;
        }

        .meta--item {
            display: flex;
            column-gap: 32px;
        }

        .meta--term {
            width: 20%;
            min-width: 160px;
            padding: 4px;
            color: var(--white);
            background-color: var(--primary-bland-color);
        }

        .meta--definition {
            padding: 4px;
        }

        .media--text {
            font-size: var(--fontsize-medium);
            text-align: left;
        }
    }

    .franchisorSection--middle {

        width: 100%;
        display: grid;
        row-gap: 56px;
        margin-top: 56px;
        
        .media {
            /* margin-left: 56px; */
            padding: 56px;
            column-gap: 32px;
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .media::after {
            position: absolute;
            content: "";
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 100%);
            width: 0;
            height: 0;
            border-left: 56px solid transparent;
            border-right: 56px solid transparent;
            border-top: 32px solid var(--lightgray-bright);
        }

        .media:last-of-type::after {
            border: none;
        }

        .media--title,
        .media--subTitle,
        .media--text,
        .media--list {
            text-align: left;
        }

        .media--title {
            margin-bottom: 8px;
        }

        .media--title-fill {
            color: var(--white);
            background-color: var(--primary-bland-color);
            padding: 4px 8px;
        }

        .media--subTitle {
            font-size: var(--fontsize-xmedium);
            font-weight: bold;
        }

        .media--list {
            padding-left: 1.2em;
            font-size: var(--fontsize-medium);
            line-height: 2;
        }

        .media--imgBox {
            width: 280px;
        }
    }

    .franchisorSection--bottom {

        width: 100%;

        .media {
            width: 100%;
            place-items: center;
        }

        .media--body {
            flex-grow: 1;
            padding: 0;
        }

        .media--imgBox {
            width: 360px;
        }

        .media--fukidashi {
            color: var(--black);
            text-align: left;
            background-color: var(--white);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--black);
            position: relative;
            display: grid;
            row-gap: 1.5em;

        }
        
        .media--fukidashi:before {
            content: "";
            position: absolute;
            display: block;
            top: 50%;
            right: -24px;
            transform: translate(-50%, 0) rotate(45deg);
            transform-origin: center center; /* 回転の基準位置を中心に指定 */
            width: 24px;
            height: 24px;
            /* border-color: transparent transparent transparent var(--black);
            border-style: solid;
            border-width: 12px 24px 0 1.5em; */
            border-right: 1px solid #666;
            border-top: 1px solid #666;
            background-color: var(--white);
        }

        .media--text {
            font-size: var(--fontsize-xmedium);
            font-weight: bold;
        }
    }
}

@media screen and (max-width: 1024px) {
    
    .franchisorSection {

        .franchisorSection--header {

            .media {
                align-items: center;
            }

            .media--imgBox {
                width: 280px;
            }

            .media--body {
                margin-bottom: 0;
                padding: 28px 28px 28px 108px;
            }

            .meta--item {
                column-gap: 16px;
            }

            .meta--term {
                min-width: 144px;
            }
        }

        .franchisorSection--middle {
            .media {
                padding: 24px;
            }
        }

        .franchisorSection--bottom {
            .media {
                flex-direction: column;
            }
        
            .media--fukidashi:before {
                content: "";
                position: absolute;
                display: block;
                top: 100%;
                right: 50%;
                transform: translate(-50%, -50%) rotate(135deg);
                transform-origin: center center; /* 回転の基準位置を中心に指定 */
                width: 24px;
                height: 24px;
            }
        }
    }
}

@media screen and (max-width: 599px) {
    
    .franchisorSection {

        .franchisorSection--header {
            .media--imgBox {
                width: 100%;
            }

            .media--body {
                width: 100%;
                padding: 16px 24px;
                margin-left: 0;
            }

            .media--title {
                font-size: var(--fontsize-medium);
            }

            .media--notes {
                font-size: var(--fontsize-small);
            }

            .meta--item {
                column-gap: 16px;
            }

            .meta--term {
                width: 120px;
                font-size: var(--fontsize-medium);
            }

            .meta--definition {
                font-size: var(--fontsize-medium);
            }

        }

        .franchisorSection--middle {

            margin-top: 0px;

            .media {
                padding: 16px;
                row-gap: 16px;
            }

            .media--body {
                padding: 0;
                row-gap: 8px;
            }

            .media--imgBox {
                width: 100%;
            }

            .media--title {
                font-size: var(--fontsize-medium);
            }

            .media--subTitle {
                font-size: var(--fontsize-medium);
            }

            .media--item {
                font-size: var(--fontsize-medium);
            }
        }

        .franchisorSection--bottom {

            .media--imgBox {
                width: 100%;
            }
        }
    }
}

.featureSection {
    padding: 64px 5%;
    background-color: var(--whitegray);
    background-color: var(--bg-yellow-tuning-color);
    background-color: var(--bg-primary-tuning-color);
}

@media screen and (max-width: 1024px) {

    .featureSection {

        padding-top: 48px;
        padding-bottom: 48px;

        .cards {
            column-gap: 24px;
        }

        .card--body {
            padding-left: 0;
            padding-right: 0;
        }

        .card--title {
            font-size: var(--fontsize-xmedium);
        }

        .card--text {
            font-size: var(--fontsize-medium);
            text-align: justify;
        }
    }

}

@media screen and (max-width: 599px) {
    .featureSection {

        padding-top: 32px;
        padding-bottom: 32px;

        .cards {
            row-gap: 16px;
        }
    }
}


.worrySection {
    padding-top: 32px;
    padding-bottom: 0;
    background-color: var(--primary-bland-color);

    .inner-small {
        row-gap: 64px;
    }

    .title {
        color: var(--white);
    }

    .grid-col3 {
        column-gap: 64px;
    }

    .worryBox {
        display: grid;
        place-items: center;
        row-gap: 24px;
    }

    .fukidashi {
        width: 100%;
        font-size: var(--fontsize-large);
        text-align: center;
        background-color: var(--white);
        padding: .5em 1em;
        /* border-radius: 8px; */
        position: relative;
    }

    .fukidashi:after {
        position: absolute;
        display: block;
        content: "";
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 100%);
        width: 0;
        height: 0;
        border-color: var(--white) transparent transparent transparent;
        border-width: 12px 12px 0 12px;
        border-style: solid;
    }

    .human {
        width: 70%;
        /* aspect-ratio: 1/1; */
        /* height: 200px; */
    }
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .worrySection {
        .grid-col3 {
            column-gap: 20px;
        }

        .fukidashi {
            font-size: var(--fontsize-medium);
            padding-left: .5em;
            padding-right: .5em;
        }

        .human {
            width: 70%;
        }
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */

    .worrySection {

        padding-bottom: 32px;

        .inner-small {
            row-gap: 32px;
        }

        .grid-col3 {
            row-gap: 20px;
        }
    
        .worryBox {
            display: flex;
            flex-direction: row-reverse;
            column-gap: 16px;
        }

        .fukidashi {
            min-width: 240px;
        }

        .fukidashi:after {
            top: 50%;
            left: 0;
            transform: translate(-100%, -50%);
            width: 0;
            height: 0;
            border-color: transparent var(--white) transparent transparent;
            border-width: 12px 12px 12px 0;
            border-style: solid;
        }

        .human {
            width: 64px;
        }
    }
}

.followSection {
    width: 100%;
    padding: 32px;
    background-color: var(--secondary-bland-color);
    display: grid;
    place-items: center;

    .media {
        column-gap: 40px;
        justify-content: space-between;
        align-items: center;
    }

    .media--imgBox {
        width: 240px;
    }

    .media--img {
        width: 100%;
    }

    .media--body {
        flex: 1 0;
        background-color: transparent;
    }

    .media--fukidashi {
        color: var(--black);
        text-align: left;
        background-color: var(--white);
        font-size: 32px;
        padding: 0.75em 1em;
        border-radius: 16px;
        position: relative;
    }

    .media--fukidashi:before {
        position: absolute;
        display: block;
        content: "";
        bottom: 50%;
        left: 0;
        transform: translate(-100%, 50%);
        width: 0;
        height: 0;
        border-color: transparent var(--white) transparent transparent;
        border-width: 16px 24px 16px 0;
        border-style: solid;
    }

    .media--text {
        margin-bottom: 0;
        font-size: var(--fontsize-xlarge);
    }
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .followSection {
        /* padding: 24px; */

        .media {
            flex-direction: row;
            column-gap: 20px;
        }

        .media--imgBox {
            width: 160px;
        }

        .media--fukidashi {
            padding: .5em;
        }

        .media--fukidashi::before {
            border-width: 12px 16px 12px 0;
        }

        .media--text {
            font-size: var(--fontsize-xmedium);
        }
    }
    
}

@media screen and (max-width: 599px) {

    .followSection {
        padding: 24px 0;

        .media {
            flex-direction: column-reverse;
            row-gap: 24px;
        }

        .media--body {
            min-width: 100%;
            padding-top: 0;
        }

        .media--fukidashi {
            padding: 12px;

            .localLargeFont {
                font-size: 1.25em;
            }
        }
        
        .media--fukidashi::before {
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 100%);
            border-color: var(--white) transparent transparent transparent;
            border-width: 16px 12px 0 12px;
        }

        .media--text {
            margin-left: 0;
            font-size: var(--fontsize-medium);
            font-weight: bold;
            text-align: center;
        }
    }
}

.dontWorrySection {

    background-color: var(--whitegray);
    display: grid;
    place-items: center;

    .reason {
        width: 100%;
        background-color: var(--white);
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        padding: 40px;
        display: grid;
        row-gap: 12px;

        .reason--header {
            display: flex;
            justify-content: center;
            align-items: center;
            column-gap: 24px;
        
            .reason--index {
                line-height: 1;
                color: var(--white);
                background-color: var(--black);
                width: fit-content;
                padding: 10px 12px 6px 14px;
            }

            .reason--title {
                text-align: center;
                font-size: var(--fontsize-xxlarge);
            }
        }

        .reason--hr {
            width: 100%;
        }

        .reason--bottom {

            display: grid;
            row-gap: 12px;

            .reason--text {
                font-size: var(--fontsize-large);
            }

            .reason--emphasis {
                font-size: var(--fontsize-xxlarge);
                font-weight: bold;
                color: var(--red);
            }
        }
    }
}

@media screen and (max-width: 1024px) {
    
    .dontWorrySection {

        .reason {

            padding-top: 32px;
        
            .reason--header {
            
                .reason--title {
                    font-size: var(--fontsize-xlarge);
                }
            }

            .reason--bottom {

                .reason--text {
                    font-size: var(--fontsize-xmedium);
                }

                .reason--emphasis {
                    font-size: var(--fontsize-xlarge);
                }
            
            }
        }
    }
}

@media screen and (max-width: 599px) {
    
    .dontWorrySection {

        .reason {
            padding: 16px;

            .reason--header {

                column-gap: 12px;

                .reason--index {
                    padding: 6px 8px 4px 10px;
                    font-size: var(--fontsize-small);
                }
            
                .reason--title {
                    font-size: var(--fontsize-large);
                }
            }

            .reason--bottom {

                .reason--text {
                    font-size: var(--fontsize-medium);
                }

                .reason--emphasis {
                    font-size: var(--fontsize-large);
                }
            }
        }
    }
}

/* .ownerInterview {
    padding-bottom: 64px;
}

.ownerInterview .bg-gradation {
    width: 100%;
    padding: 32px;
    background: linear-gradient(0deg, rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.1));
    display: grid;
    place-items: center;
}

.ownerInterview .media {
    width: 100%;
    max-width: 960px;
    flex-direction: row;
    margin: 0 auto;
    column-gap: 40px;
    align-items: center;
}

.ownerInterview .media--imgBox {
    width: 280px;
}

.ownerInterview .media--img {
    width: 100%;
    border-radius: 50%;
}

.ownerInterview .media--body {
    flex: 1 0;
    row-gap: 0;
}

.ownerInterview .media--text-bgRed {
    font-size: 24px;
    color: var(--white);
    text-align: center;
    background-color: var(--third-bland-color);
    padding: 0.5em;
}

.ownerInterview .media--title {
    font-size: 56px;
    margin-top: 16px;
    text-align: center;
}

.ownerInterview .media--text-bgWhite {
    font-size: 24px;
    color: var(--black);
    text-align: center;
    background-color: var(--white);
    padding: 0.5em;
}

@media screen and (max-width: 1024px) {
    
    .ownerInterview .media--imgBox {
        width: 200px;
    }

    .ownerInterview .media--text-bgRed {
        font-size: 20px;
    }
    
    .ownerInterview .media--title {
        font-size: 40px;
    }
    
    .ownerInterview .media--text-bgWhite {
        font-size: 20px;
    }
}

@media screen and (max-width: 599px) {

    .ownerInterview {
        padding-bottom: 16px;
    }
    
    .ownerInterview .media {
        flex-direction: column-reverse;
        row-gap: 24px;
    }

    .ownerInterview .bg-gradation {
        padding-bottom: 16px;
        padding-left: 2.5%;
        padding-right: 2.5%;
    }

    .ownerInterview .media--text-bgRed {
        font-size: 16px;
    }
    
    .ownerInterview .media--title {
        font-size: 28px;
    }
    
    .ownerInterview .media--text-bgWhite {
        font-size: 16px;
    }
}

.ownerInterview .qa {
    padding: 32px 16px;
}

.ownerInterview .qa .grid-col3 {
    column-gap: 36px;
}

.ownerInterview .qa .card {
    width: 100%;
    text-align: justify;
}

.ownerInterview .qa .card--questionText {
    font-size: 24px;
    font-weight: bold;
    text-align: justify;
}

.ownerInterview .qa .card--answerText {
    font-size: 16px;
    font-weight: bold;
    margin-top: 16px;
    text-align: justify;
}

.ownerInterview .qa .card--detailText {
    font-size: 16px;
    margin-top: 16px;
    text-align: justify;
    height: 120px;
}

.ownerInterview .qa .card--imgBox {
    margin-top: 16px;
}

.ownerInterview .qa .card--img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .ownerInterview .qa .grid-col3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .ownerInterview .qa .card--detailText {
        height: 144px;
    }
}

@media screen and (max-width: 599px) {
    
    .ownerInterview .qa .grid-col3 {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 32px;
    }
    
    .ownerInterview .qa .card {
        margin-bottom: 0;
    }
    
    .ownerInterview .qa .card--questionText {
        font-size: 20px;
    }

    .ownerInterview .qa .card--detailText {
        height: auto;
    }
} */

.aboutSection {
    row-gap: 40px;
    padding-left: 0;
    padding-right: 0;

    .media-bodyOnImage--body {
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    }
}

@media screen and (max-width: 1024px) {
    
    .aboutSection {

        .media-bodyOnImage--body {
            padding: 24px 16px;
        }

    }

}

@media screen and (max-width: 599px) {
    
    .aboutSection {

        .media-bodyOnImage--body {
            margin-top: -56px;
        }
    }
}

.chooseReasonSection {
    background-color: var(--bg-primary-tuning-color);
    padding: 40px 5%;
    display: grid;
    place-items: center;

    li {
        list-style-type: none;
    }

    .inner-medium {
        display: grid;
        place-items: center;
        row-gap: 64px;
        width: 100%;
        max-width: var(--inner-medium);
    }

    .reasonList {
        display: grid;
        place-items: center;
        row-gap: 80px;
    }

    .reasonList:first-of-type {
        margin-top: -16px;
    }

    .reason {
        width: 100%;
        /* border-radius: 16px; */
    }

    .reason--header {
        background-color: var(--primary-bland-color-dark);
        color: var(--white);
        padding: 64px 5% 24px;
        position: relative;

        .reason--title {
            font-size: 32px;
        }
        
        .reason--indexBox {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 88px;
            height: 88px;
            display: grid;
            place-items: center;
            background-color: var(--white);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        }

        .reason--index {
            font-size: 32px;
            font-weight: bold;
            color: var(--primary-bland-color-dark);
            line-height: 1.15;
        }

        .reason--subTitleBox {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 88px;
            height: 88px;
            display: grid;
            place-items: center;
            background-color: var(--white);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        }

        .reason--subTitle {
            font-size: 32px;
            font-weight: bold;
            color: var(--primary-bland-color-dark);
            line-height: 1.15;
        }
    }

    .reason--bottom {
        background-color: var(--white);
        padding: 24px;
        display: grid;
        row-gap: 32px;

        .reason--textBox {
            display: grid;
            row-gap: 16px;
        }

        .reason--video {
            width: 100%;
        }

        .priceTable {
            background-color: var(--whitegray);
        }

        .media {
            column-gap: 32px;
            align-items: start;
            background-color: var(--whitegray);
            padding: 32px;
        }

        .reason--text {
            font-size: 16px;
        }

        .vertical-table {
            margin-bottom: 0;
        }
    }
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .chooseReasonSection {

        .reason--bottom {

            .media {
                flex-direction: column;
                row-gap: 24px;
            }

            .media--text,
            .reason--text {
                text-align: left;
                margin-left: 0;
            }

            .media--imgBox {
                width: 100%;
            }

            .media--img {
                width: 100%;
            }
        }
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .chooseReasonSection {

        padding-top: 24px;
        padding-bottom: 24px;

        .content--inner-medium {
            row-gap: 40px;
        }

        .reasonList {
            row-gap: 56px;
        }

        .reason--header {

            padding-top: 48px;
            padding-bottom: 16px;
        
            .reason--indexBox {
                width: 64px;
                height: 64px;
            }

            .reason--index {
                font-size: 24px;
            }

            .reason--title {
                font-size: var(--fontsize-xmedium);
            }
        }

        .reason--bottom {

            padding: 16px;

            .media {
                padding: 16px;
                row-gap: 16px;
            }

            .reason--textBox {
                display: grid;
                row-gap: 16px;
            }
        }
    }
}

.section--subTitleBox {
    margin-top: 40px;
}

.messageSection {
    padding: 64px 5% 64px;
    display: grid;
    place-items: center;
}

.messageSection .content--title {
    color: var(--primary-bland-color-dark);
    color: var(--redpink);
    font-size: 32px;
}

.messageSection .content--box {
    width: 100%;
    max-width: var(--inner-small);
    padding: 48px;
    text-align: center;
    border: 2px solid var(--black);
    border-radius: 16px;
}

.messageSection .content--textBox {
    margin-top: 32px;
    display: grid;
    gap: 24px;
}

.messageSection .content--text {
    font-size: 24px;
}

@media screen and (max-width: 1024px) {
    /* pxまでの幅の場合に適応される */
    
    .messageSection .content--box {
        padding: 32px;
    }

    .messageSection .content--title {
        font-size: 28px;
    }

    .messageSection .content--text {
        font-size: 20px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .messageSection {
        padding-top: 24px;
        padding-bottom: 32px;
    }
    
    .messageSection .content--box {
        padding: 20px;
    }

    .messageSection .content--title {
        font-size: 24px;
    }

    .messageSection .content--textBox {
        font-size: 24px;
        margin-top: 16px;
        row-gap: 16px;
    }

    .messageSection .content--text {
        font-size: 15px;
        text-align: left;
    }
}

.openFlowSection {
    padding: 40px 5% 56px;

    .inner-small {
        padding: 0;
        display: grid;
        row-gap: 40px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .openFlowSection {
        padding-top: 24px;

        .inner-medium-small {
            row-gap: 24px;
        }
    }
}

.qaSection {
    background-color: var(--whitegray);
    display: grid;
    place-items: center;

    .qa-list {
        display: grid;
        place-items: center;
        row-gap: 32px;
    }

    .qa-item {
        width: 100%;
        border: 1px solid var(--primary-bland-color);
    }

    .qa-question {
        width: 100%;
        font-size: var(--fontsize-medium);
        text-align: justify;
        color: var(--white);
        
        background-color: var(--primary-bland-color);
        padding: 0.5em 1em;
    }

    .qa-answer {
        width: 100%;
        font-size: var(--fontsize-medium);
        text-align: justify;
        
        background-color: var(--white);
        padding: 0.5em 1em;
    }
}

.meritSection {
    padding: 64px 0 0;
}

.meritSection .inner-medium-small {
    padding-left: 0;
    padding-right: 0;
}

.meritSection .section--title {
    margin-bottom: 0;
}

.meritSection .merit {
    padding: 40px 5%;
}

.meritSection .merit:last-of-type {
    margin-bottom: 0;
}

.meritSection .merit .smallMedia--imageWrapper {
    flex: 1 0 38.2%;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .meritSection {
        padding-top: 32px;
    }
}

.structureSection {
    padding: 56px 5%;
}

.structureSection .inner-medium {
    display: grid;
    row-gap: 32px;
}

.structure .section--title {
    font-size: 24px;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .structureSection {
        padding-bottom: 32px;
    }
}

.factoryOfTeacherSection {
    padding: 0;
    background-color: var(--gray);

    .content--title {
        font-size: 24px;
        color: var(--white);
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .factoryOfTeacherSection {
        .content--title {
            font-size: 12px;
        }
    }
}
