body {
    /* font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Lucida Grande",
        "segoe UI", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
        Meiryo, "Verdana", Osaka, "ＭＳ Ｐゴシック", "MS PGothic","Font Awesome 5 Free", sans-serif; */
}

.hero {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%), url(/img/bg-hero-personal.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 10%;
    padding-bottom: 0px;
}

.hero--cta {
    padding-top: 80px;
    padding-bottom: 40px;
    display: grid;
    place-items: center;
    background-color: var(--primary-bland-color-transparent);

    .textBox {
        margin-bottom: 80px;
    }

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


    .grid-col2 {
        column-gap: 48px;
        width: 100%;
        max-width: var(--inner-medium);
    }

    .lineButton {
        background-color: var(--third-bland-color);
        width: 100%;
        padding: 18px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 12px;
        position: relative;
        filter: drop-shadow(0 4px var(--darkpink));
        /* grid-template-columns: 1fr 3fr 1fr; */
    }

    .lineButton--fukidashi {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -90%);
        font-size: 24px;
        color: var(--white);
        background-color: var(--green-of-line);
        border-radius: 8px;
        padding: 0.5em 1em;
        width: fit-content;
        white-space: nowrap;
    }
    
    .lineButton--fukidashi::after {
        position: absolute;
        display: block;
        content: "";
        bottom: 2px;
        left: 50%;
        transform: translate(-50%, 100%);
        /* width: 36px;
        height: 16px; */
        border-color: var(--green-of-line) transparent transparent transparent;
        border-width: 12px 16px 0 16px;
        border-style: solid;
    }

    .lineButton--iconBox {
        background-color: var(--white);
        padding: 8px;
        border-radius: 8px;
        line-height: 0;
        display: flex;
    }

    .lineButton--icon {
        width: 32px;
        height: 32px;
        line-height: 0;
    }

    .lineButton--text {
        /* flex: 1 0; */
        color: var(--white);
        font-size: 28px;
        font-weight: bold;
    }

    .lineButton--arrow {
        width: 32px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--white);
        position: relative;
    } 

    .lineButton--arrow::before {
        content: '';
        width: 12px;
        height: 12px;
        border: 0;
        border-top: solid 2px var(--third-bland-color);
        border-right: solid 2px var(--third-bland-color);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-70%, -50%) rotate(45deg);
    }

    .mailFormButton {
        background-color: var(--secondary-bland-color);
        width: 100%;
        padding: 18px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 12px;
        /* filter: drop-shadow(0 4px var(--deepgray)); */
        box-shadow: 0 4px 0 0 var(--deepgray);
        position: relative;
    }

    .mailFormButton--previewText {
        position: absolute;
        content: "";
        top: 0;
        left: 50%;
        transform: translate(-50%, -100%);
        font-size: 24px;
        color: var(--white);
        border-radius: 8px;
        padding-bottom: 8px;
        width: fit-content;
        white-space: nowrap;
        font-weight: bold;
    }

    .mailFormButton--iconBox {
        background-color: var(--white);
        padding: 8px;
        border-radius: 8px;
        line-height: 0;
        display: flex;
    }

    .mailFormButton--icon {
        width: 32px;
        height: 32px;
        line-height: 0;
    }

    .mailFormButton--text {
        /* flex: 1 0; */
        color: var(--black);
        font-size: 28px;
        font-weight: bold;
    }

    .mailFormButton--arrow {
        width: 32px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--white);
        position: relative;
    } 

    .mailFormButton--arrow::before {
        content: '';
        width: 12px;
        height: 12px;
        border: 0;
        /* border-top: solid 2px var(--secondary-bland-color);
        border-right: solid 2px var(--secondary-bland-color); */
        border-top: solid 2px var(--black);
        border-right: solid 2px var(--black);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-70%, -50%) rotate(45deg);
    }
}

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

    .hero--title {
        color: var(--white);
    }
    
    .hero--cta {
        padding-left: 5%;
        padding-right: 5%;

        .grid-col2 {
            grid-template-columns: repeat(1, 1fr);
            row-gap: 74px;
        }

        .lineButton {
            /* padding: 8px 16px; */
        }

        .lineButton--text {
            /* font-size: 20px; */
        }
    }
}

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

    .hero {
        padding-top: 80px;
        padding-bottom: 0px;
        background-position: 65% center;
    }

    .hero--inner {
        padding-bottom: 16px;
    }

    .hero--subTitle {
        font-size: 16px;
    }

    .hero--title {
        font-size: 32px;
    }

    .hero--title-bg {
        padding: 4px 8px;
    }

    .hero--imgBox {
    }

    .hero--img {
        max-width: 280px;
        margin-top: 16px;
    }
    
    .hero--cta {

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

        .grid-col2 {
            row-gap: 48px;
        }

        .lineButton {
            padding: 8px 16px;
        }

        .lineButton--fukidashi {
            font-size: 16px;
        }

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

        .lineButton--iconBox {
            padding: 6px;
        }

        .lineButton--icon {
            width: 20px;
            height: 20px;
        }

        .lineButton--arrow {
            width: 28px;
            height: 26px;
        }

        .mailFormButton {
            padding: 8px 16px;
        }

        .mailFormButton--previewText {
            font-size: 14px;
            padding-bottom: 4px;
        }

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

        .mailFormButton--iconBox {
            padding: 6px;
        }

        .mailFormButton--icon {
            width: 20px;
            height: 20px;
        }

        .mailFormButton--arrow {
            width: 28px;
            height: 26px;
        }
    }
}

.hero--inner {
    max-width: 1000px;
    text-align: left;
}

.hero .media--catchcopy * strong {
    color: var(--white);
}

.hero .media--catchcopyBox {
    background-color: var(--third-bland-color);
    border-radius: 24px;
}

.hero .media--catchcopy {
    color: var(--white);
    font-size: 36px;
    padding: 0.25em 0.5em;
    text-align: center;
    letter-spacing: 2px;
    vertical-align: text-bottom;
}

.hero .media--fukidashi {
    color: var(--third-bland-color);
    font-size: 28px;
    text-align: center;
    background-color: var(--white);
    padding: 0.25em 0.5em;
    margin-top: 32px;
    position: relative;
    border: 3px solid var(--third-bland-color);
}

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

.hero .media--fukidashi:after {
    top: 4px;
    border-color: transparent transparent var(--white) transparent;
}

.hero .media--catchcopyImg {
    width: 80%;
    margin-top: 8px;
}

.hero .media--text {
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
}

.hero .media--imgBox {
    width: 50%;
}


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

    .hero .media--fukidashi {
        font-size: 20px;
    }

    .hero .media--imgBox {
        width: 85%;
    }
}

.interestSection {
    padding: 80px 0;
    display: grid;
    position: relative;
    row-gap: 12px;
    place-items: center;
    background-color: rgba(255,255,255, 0.85);
    background-image: url(/img/bg-catchcopy.svg);
    background-repeat: no-repeat;
    background-size: 1200px;
    background-position: center;

    .fukidashi {
        color: var(--white);
        font-size: 40px;
        font-weight: bold;
        line-height: 1.5;
        letter-spacing: 4px;
        text-align: center;
        background-color: var(--primary-bland-color);
        padding: 18px 36px;
        /* margin: margin; */
        width: fit-content;
        min-width: 880px;
        border-radius: 9999px;
        position: relative;
    }

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

    .catchcopy {
        font-size: 64px;
        position: relative;
        min-width: 880px;
    }
}

.interestSection::after {
        position: absolute;
        display: block;
        content: "";
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 100%);
        width: 14px;
        height: 0;
        border-color: var(--bg-triple-circle-first) transparent transparent transparent;
        border-width: 36px 48px 0 48px;
        border-style: solid;
}

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

        background-size: 720px;
        padding-top: 40px;
        padding-bottom: 40px;

        .fukidashi {
            min-width: auto;
            font-size: 24px;
            padding: 8px 24px;
        }

        .fukidashi:after {
            width: 14;
            border-width: 14px 14px 0 14px;
        }

        .catchcopy {
            min-width: auto;
            font-size: 56px;
        }
    }
}

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

        background-size: 440px;
        padding-top: 24px;
        padding-bottom: 24px;

        .fukidashi {
            min-width: 320px;
            font-size: 16px;
            letter-spacing: 2px;
        }

        .catchcopy {
            min-width: auto;
            font-size: 28px;
        }
    }

    .interestSection::after {
        width: 14px;
        border-width: 20px 32px 0 32px;
    }
}

.recommendReasonSection {
    padding: 32px 16px;
    background-color: var(--lightgray);
}

.recommendReasonSection .section--title {
}

.recommendReasonSection .cards-3column {
    column-gap: 36px;
}

.recommendReasonSection .card-3column {
    width: 100%;
    text-align: justify;
}

.recommendReasonSection .card-3Column .media {
    align-items: stretch;
}

.recommendReasonSection .cardTitle-3Column {
    font-size: 20px;
    font-weight: normal;
    text-align: justify;
    background-color: gray;
    color: white;
    padding: 8px;
    margin-bottom: 0;
}

.recommendReasonSection .cardText-3Column {
    font-size: 20px;
    font-weight: bold;
    text-align: justify;
}

.recommendReasonSection .cardImage-3Column {
    height: auto;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .recommendReasonSection .grid-col3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .recommendReasonSection .card-3Column {
        display: flex;
    }

    .recommendReasonSection .cardImageBox-3Column {
        flex: 0 0 30%;
    }

    .recommendReasonSection .media {
        display: flex;
    }

    
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    
    .recommendReasonSection .grid-col3 {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 32px;
    }
    
    .recommendReasonSection .card {
        margin-bottom: 0;
    }
    
    .recommendReasonSection .card--questionText {
        font-size: 20px;
    }

    .recommendReasonSection .card--detailText {
        height: auto;
    }
}

.uniqueServiceSection {
    padding: 64px 5%;
    background-image: url(/img/bg-uniqueServiceSection.jpg);
    background-size: cover;
    display: grid;
    place-items: center;
}

.uniqueServiceSection .messageBox {
    width: 100%;
    max-width: var(--inner-small);
    padding: 56px 80px;
    background-color: var(--white);
    text-align: left;
}

.uniqueServiceSection .messageBox--title {
    font-size: 32px;
    text-align: center;
}

.uniqueServiceSection .messageBox--textBox {
    margin-top: 24px;
}

.uniqueServiceSection .messageBox--text {
    font-size: 24px;
    letter-spacing: 2px;
}

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

    .uniqueServiceSection .messageBox {
        padding: 24px;
    }

    .uniqueServiceSection .messageBox--title {
        font-size: 24px;
        text-align: center;
    }
    
    .uniqueServiceSection .messageBox--textBox {
        margin-top: 24px;
    }
    
    .uniqueServiceSection .messageBox--text {
        font-size: 16px;
    }
}

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

.revenuModelSection .modelBox--case {
    text-align: right;
}

.revenuModelSection .modelBox {
    position: relative;
    display: grid;
    gap: 8px;
}

.revenuModelSection .modelBox--row {
    display: flex;
}

.revenuModelSection .modelBox--itemBox {
    padding: 16px;
    width: 40%;
    background-color: var(--third-bland-color);
    border: 1px solid var(--third-bland-color);
}

.revenuModelSection .modelBox--item {
    color: var(--white);
    font-size: 20px;
}

.revenuModelSection .modelBox--valueBox {
    padding: 16px;
    width: 60%;
    background-color: var(--white);
    border: 1px solid var(--third-bland-color);
}

.revenuModelSection .modelBox--value {
    font-size: 20px;
}

.revenuModelSection .noteArea {
    margin-top: 32px;
    padding: 16px 0 16px 104px;
    border-top: 1px solid var(--notearea-color);
    border-bottom: 1px solid var(--notearea-color);
}

.revenuModelSection .noteArea--text {
    color: var(--notearea-color);
    font-size: 12px;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .revenuModelSection .grid-col2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

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

    .revenuModelSection .modelBox--case {
        font-size: 12px;
    }

    .revenuModelSection .modelBox--itemBox {
        padding: 12px;
    }

    .revenuModelSection .modelBox--item {
        font-size: 16px;
    }

    .revenuModelSection .modelBox--valueBox {
        padding: 12px;
    }

    .revenuModelSection .modelBox--value {
        font-size: 16px;
    }

    .revenuModelSection .noteArea {
        margin-top: 16px;
        padding-top: 8px;
        padding-left: 8px;
        padding-bottom: 8px;
    }

    .revenuModelSection .noteArea--text {
        font-size: 8px;
    }

}

.ownerInterview {
    padding-bottom: 64px;
}

.ownerInterview .bg-gradation {
    padding: 32px;
    background: linear-gradient(0deg, rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.1));
}

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

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

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

.ownerInterview .media--body {
    flex: 1 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) {
    /* 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) {
    /* 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) {
    /* 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) {
    /* 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;
    }
}

.worries {
    padding: 64px 0;
    background-color: var(--lightgray);
    background-image: url(/img/worries_lady.png);
    background-size: 25%;
    background-repeat: no-repeat;
    background-position: bottom 0 right 13%;
    /* background-size: contain; */
}

.worries .content--title {
    font-weight: bold;
    line-height: 1.5;
    color: var(--black);
    text-align: left;
}

.worries .skewText {
    width: fit-content;
    transform: skewX(15deg);
    color: var(--white);
    font-size: 48px;
}

.worries .skewBox {
    width: fit-content;
    transform: skewX(-15deg);
    background-color: var(--third-bland-color);
    margin-bottom: 8px;
    padding: 4px 12px;
}

.worries .checkList {
    margin-top: 32px;
}

.worries .checkItem {
    font-size: 32px;
    line-height: 1.5;
    font-weight: bold;
    position: relative;
    padding-left: 32px;
    margin-top: 24px;
    text-align: left;
    list-style: none;
}

.worries .checkItem::before {
    position: absolute;
    content: "";
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-image: url(/img/icon_check_red.png);
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .worries {
        background-image: url(/img/worries_lady.png);
        background-position: bottom 0 right;
    }

    .worries .skewText {
        font-size: 40px;
    }

    .worries .checkList {
        margin-top: 24px;
    }

    .worries .checkItem {
        font-size: 24px;
        padding-left: 28px;
    }

    .worries .checkItem::before {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .worries {
        padding-top: 24px;
        padding-bottom: 24px;
        background: none;
        background-color: var(--lightgray);
    }

    .worries .content--title {
        background-image: url(/img/worries_lady.png);
        background-position: center right 5%;
        background-size: contain;
        background-repeat: no-repeat;
        padding-left: 24px;
    }

    .worries .skewText {
        font-size: 24px;
        text-align: center;
    }

    .worries .skewBox {
        width: 75%;
        padding: 8px 32px;
        display: grid;
        place-items: center;
    }

    .worries .checkList {
        padding-left: 24px;
    }

    .worries .checkItem {
        font-size: 14px;
        padding-left: 20px;
        margin-top: 12px;
    }

    .worries .checkItem:before {
        width: 16px;
        height: 16px;
    }
}

.recommend {
}

.recommend .section--top {
    padding: 32px;
    background-color: var(--third-bland-color);
    background-color: var(--secondary-bland-color);
}

.recommend .media {
    column-gap: 40px;
}

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

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

.recommend .media--body {
    flex: 1 0;
}

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

.recommend .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;
}

.recommend .media--text {
    margin-bottom: 0;
}

.recommend .section--middle {
    display: grid;
    place-items: center;
    row-gap: 40px;
    padding-top: 40px;
    padding-bottom: 120px;
}

.recommend .section--middle .section--inner {
    display: grid;
    place-items: center;
    row-gap: 40px;
}

.recommend .section--middle .fukidashi {
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 4px;
    text-align: center;
    background-color: var(--primary-bland-color);
    padding: 18px 36px;
    /* margin: margin; */
    width: fit-content;
    min-width: 880px;
    border-radius: 9999px;
    position: relative;
}

.recommend .section--middle .fukidashi:after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 14;
    height: 0;
    border-color: var(--primary-bland-color) transparent transparent transparent;
    border-width: 20px 14px 0 14px;
    border-style: solid;
}

.recommend .section--middle .fukidashi .frip {
    color: var(--primary-bland-color);
    background-color: var(--white);
    padding: 8px;
    margin-right: 8px;
    border-radius: 8px;
}

.recommend .section--middle .text {
    font-size: 64px;
    position: relative;
    min-width: 880px;
}

.recommend .section--middle .catchcopy::after {
    /* position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 14;
    height: 0;
    border-color: var(--primary-bland-color) transparent transparent transparent;
    border-width: 40px 32px 0 32px;
    border-style: solid; */
}

.recommend .section--middle .arrow-3line {
    width: auto;
    height: 64px;
}

.recommend .section--bottom {
    background-color: var(--secondary-bland-color);
    position: relative;
    padding-top: 112px;
    padding-bottom: 112px;

    .section--inner {
        display: grid;
        place-items: center;
        row-gap: 40px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .fukidashi {
        position: absolute;
        top: 0;
        left: 50%;
        translate: -50% -50%;
        color: var(--white);
        font-size: 40px;
        font-weight: bold;
        line-height: 1.5;
        letter-spacing: 4px;
        text-align: center;
        background-color: var(--primary-bland-color);
        padding: 18px 36px;
        width: fit-content;
        min-width: 560px;
        border-radius: 9999px;
        /* position: relative; */
    }

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

    .text {
        font-size: 48px;
        font-weight: bold;
        position: relative;
        min-width: 880px;
        line-height: 1.75;
    }

    .font-emphasis {
        background-color: var(--white);
        color: var(--black);
        padding: 8px;
        margin: 0 8px;
        border-radius: 8px;
    }

    .imgBox {
        padding-top: 8px;
    }

    .img {
        width: 100%;
        max-width: 1024px;
    }
}


.recommend .section--moreBottom {
    position: relative;
    padding-top: 112px;
    padding-bottom: 0px;

    .section--inner {
        display: grid;
        place-items: center;
        row-gap: 40px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .fukidashi {
        position: absolute;
        top: 0;
        left: 50%;
        translate: -50% -50%;
        color: var(--white);
        font-size: 40px;
        font-weight: bold;
        line-height: 1.5;
        letter-spacing: 4px;
        text-align: center;
        background-color: var(--primary-bland-color);
        padding: 18px 36px;
        width: fit-content;
        min-width: 560px;
        border-radius: 9999px;
        /* position: relative; */
    }

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

    .text {
        font-size: 48px;
        font-weight: bold;
        position: relative;
        min-width: 880px;
        line-height: 1.75;
    }

    .font-emphasis {
        /* background-color: var(--white);
        color: var(--black);
        padding: 8px;
        margin: 0 8px;
        border-radius: 8px; */
    }

    .imgBox {
        /* padding-top: 8px; */
        line-height: 0;
    }

    .img {
        width: 100%;
        max-width: 1024px;
    }
}

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

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

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

    .recommend .media--fukidashi {
        font-size: 24px;
        padding: 1em;
    }

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

    .recommend .section--middle { 

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

        .fukidashi {
            font-size: 32px;
            line-height: 1.5;
            letter-spacing: 4px;
            min-width: 95%;
        }

        .text {
            font-size: 48px;
            min-width: 95%;
        }
    }

    .recommend .section--bottom {

        .fukidashi {
            font-size: 32px;
        }

        .text {
            font-size: 32px;
            min-width: 95%;
        }

        .font-emphasis {
            background-color: var(--white);
            color: var(--black);
            padding: 8px;
            margin: 0 8px;
            border-radius: 8px;
        }

    }

    .recommend .section--moreBottom {

        .fukidashi {
            font-size: 32px;
        }

        .text {
            font-size: 32px;
            min-width: 95%;
        }

    }
    
}

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

    .recommend .section--inner {
        /* padding: 0; */
    }

    .recommend .section--top {
        padding: 24px 0;

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

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

        .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: 16px;
            font-weight: bold;
            text-align: center;
        }
    }
    
    .recommend .section--middle {
        padding-top: 24px;
        padding-bottom: 64px;

        .section--inner {
            row-gap: 32px;
        }
        
        .fukidashi {
            font-size: 24px;
            padding: 12px 24px;

            .frip {
                padding: 4px;
            }
        }

        .text {
            font-size: 32px;
        }

        .arrow-3line {
            width: 48px;
            height: 48px;
        }
    }

    .recommend .section--bottom {

        padding-top: 80px;
        padding-bottom: 64px;

        .section--inner {
            row-gap: 8px;
        }

        .fukidashi {
            width: 90%;
            min-width: auto;
            font-size: 24px;
            padding: 12px 24px;
        }
        
        .text {
            font-size: 24px;

            .font-emphasis {
                padding: 4px;
            }
        }
    }

    .recommend .section--moreBottom {

        padding-top: 64px;

        .section--inner {
            row-gap: 8px;
        }

        .fukidashi {
            width: 90%;
            min-width: auto;
            font-size: 24px;
            padding: 12px 24px;
        }
        
        .text {
            font-size: 24px;

            .font-emphasis {
                padding: 4px;
            }
        }
    }
}

.ctaSection .ctaSection--header {
    background-color: var(--primary-bland-color);
    color: var(--white);
    display: grid;
    place-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;

    .ctaSection--subTitle {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .ctaSection--title {
        font-size: 64px;
        /* text-align: left; */
    }

    .font-emphasis {
        color: var(--secondary-bland-color);
    }

    .media {
        width: 100%;
        max-width: 1020px;
        column-gap: 28px;
    }

    .media--img {
        width: 320px;
    }
}

.ctaSection .ctaSection--header::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 14px;
    height: 0;
    border-color: var(--primary-bland-color) transparent transparent transparent;
    border-width: 36px 48px 0 48px;
    border-style: solid;

}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .ctaSection .ctaSection--header {
        .media {
            padding-left: 5%;
            padding-right: 5%;
            flex-direction: row;
        }

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

        .ctaSection--subTitle {
            font-size: 32px;
        }

        .ctaSection--title {
            font-size: 40px;
        }
    }
}

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

        padding-top: 16px;
        padding-bottom: 16px;

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

        .media--imgBox {
            z-index: 0;
        }

        .media--body {
            z-index: 1;
            background-color: transparent;
        }

        .media--img {
            position: absolute;
            top: 0;
            left: 3%;
            transform: translateY(-50%);
            width: 80px;
            /* filter: opacity(0.75); */
        }

        .ctaSection--subTitle {
            font-size: 16px;
            text-align: center;
        }

        .ctaSection--title {
            font-size: 32px;
            text-align: center;
            z-index: 3;
        }
    }

    .ctaSection .ctaSection--header::after {
        width: 14px;
        height: 0;
        border-width: 18px 24px 0 24px;

    }
}

.ctaSection .ctaSection--bottom {
    padding-top: 112px;
    padding-bottom: 64px;
    display: grid;
    place-items: center;

    .grid-col2 {
        column-gap: 48px;
        width: 100%;
        max-width: var(--inner-medium);
    }

    .lineButton {
        background-color: var(--third-bland-color);
        width: 100%;
        padding: 18px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 12px;
        position: relative;
        filter: drop-shadow(0 4px var(--darkpink));
        /* grid-template-columns: 1fr 3fr 1fr; */
    }

    .lineButton--fukidashi {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -90%);
        font-size: 24px;
        color: var(--white);
        background-color: var(--green-of-line);
        border-radius: 8px;
        padding: 0.5em 1em;
        width: fit-content;
        white-space: nowrap;
    }
    
    .lineButton--fukidashi::after {
        position: absolute;
        display: block;
        content: "";
        bottom: 2px;
        left: 50%;
        transform: translate(-50%, 100%);
        /* width: 36px;
        height: 16px; */
        border-color: var(--green-of-line) transparent transparent transparent;
        border-width: 12px 16px 0 16px;
        border-style: solid;
    }

    .lineButton--iconBox {
        background-color: var(--white);
        padding: 8px;
        border-radius: 8px;
        line-height: 0;
        display: flex;
    }

    .lineButton--icon {
        width: 32px;
        height: 32px;
        line-height: 0;
    }

    .lineButton--text {
        /* flex: 1 0; */
        color: var(--white);
        font-size: 28px;
        font-weight: bold;
    }

    .lineButton--arrow {
        width: 32px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--white);
        position: relative;
    } 

    .lineButton--arrow::before {
        content: '';
        width: 12px;
        height: 12px;
        border: 0;
        border-top: solid 2px var(--third-bland-color);
        border-right: solid 2px var(--third-bland-color);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-70%, -50%) rotate(45deg);
    }

    .mailFormButton {
        background-color: var(--secondary-bland-color);
        width: 100%;
        padding: 18px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 12px;
        /* filter: drop-shadow(0 4px var(--deepgray)); */
        box-shadow: 0 4px 0 0 var(--deepgray);
        position: relative;
    }

    .mailFormButton--previewText {
        position: absolute;
        content: "";
        top: 0;
        left: 50%;
        transform: translate(-50%, -100%);
        font-size: 24px;
        color: var(--black);
        border-radius: 8px;
        padding-bottom: 8px;
        width: fit-content;
        white-space: nowrap;
        font-weight: bold;
    }

    .mailFormButton--iconBox {
        background-color: var(--white);
        padding: 8px;
        border-radius: 8px;
        line-height: 0;
        display: flex;
    }

    .mailFormButton--icon {
        width: 32px;
        height: 32px;
        line-height: 0;
    }

    .mailFormButton--text {
        /* flex: 1 0; */
        color: var(--black);
        font-size: 28px;
        font-weight: bold;
    }

    .mailFormButton--arrow {
        width: 32px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--white);
        position: relative;
    } 

    .mailFormButton--arrow::before {
        content: '';
        width: 12px;
        height: 12px;
        border: 0;
        /* border-top: solid 2px var(--secondary-bland-color);
        border-right: solid 2px var(--secondary-bland-color); */
        border-top: solid 2px var(--black);
        border-right: solid 2px var(--black);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-70%, -50%) rotate(45deg);
    }
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    
    .ctaSection .ctaSection--bottom {
        padding-left: 5%;
        padding-right: 5%;

        .grid-col2 {
            grid-template-columns: repeat(1, 1fr);
            row-gap: 74px;
        }

        .lineButton {
            /* padding: 8px 16px; */
        }

        .lineButton--text {
            /* font-size: 20px; */
        }
    }
}

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

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

        .grid-col2 {
            row-gap: 56px;
        }

        .lineButton {
            padding: 8px 16px;
        }

        .lineButton--fukidashi {
            font-size: 16px;
        }

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

        .lineButton--iconBox {
            padding: 6px;
        }

        .lineButton--icon {
            width: 20px;
            height: 20px;
        }

        .lineButton--arrow {
            width: 28px;
            height: 26px;
        }

        .mailFormButton {
            padding: 8px 16px;
        }

        .mailFormButton--previewText {
            font-size: 16px;
            padding-bottom: 4px;
        }

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

        .mailFormButton--iconBox {
            padding: 6px;
        }

        .mailFormButton--icon {
            width: 20px;
            height: 20px;
        }

        .mailFormButton--arrow {
            width: 28px;
            height: 26px;
        }
    }
}

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

    li {
        list-style-type: none;
    }

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

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

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

    .point {
        width: 100%;
        border-radius: 16px;
    }

    .point--header {
        background-color: var(--primary-bland-color-deep);
        color: var(--white);
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        padding: 64px 5% 24px;
        position: relative;

        .point--title {
            font-size: 32px;
        }

        .point--subTitleBox {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 88px;
            height: 88px;
            display: grid;
            place-items: center;
            background-color: var(--white);
            border-radius: 50%;
        }

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

    .point--bottom {
        background-color: var(--white);
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        padding: 24px 5%;
        display: grid;
        row-gap: 32px;

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

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

        .media {
            column-gap: 32px;
            align-items: start;
        }

        .media--body {
            padding-top: 24px;
        }

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

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

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

        .point--bottom {

            .media--text,
            .point--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;
        }

        .pointList {
            row-gap: 56px;
        }

        .point--header {

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

            .point--title {
                font-size: 22px;
            }

            .point--subTitleBox {
                width: 64px;
                height: 64px;
            }

            .point--subTitle {
                font-size: 20px;
            }
        }

        .point--bottom {

            .point--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-deep);
    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;
    }
}

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

    li {
        list-style-type: none;
    }

    .media {
        width: 100%;
        column-gap: 32px;
    }

    .media--imgBox {
        flex-basis: 480px;
    }

    .media--img {
        width: 100%;
        border-radius: 8px;
    }

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

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

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

    .pointList {
        display: grid;
        place-items: center;
        row-gap: 48px;
    }

    .point {
        width: 100%;
        border-radius: 16px;
    }

    .point--header {
        background-color: var(--primary-bland-color-deep);
        color: var(--white);
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        padding: 32px 5%;
        position: relative;

        .point--title {
            font-size: 32px;
        }

        .point--subTitleBox {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 88px;
            height: 88px;
            display: grid;
            place-items: center;
            background-color: var(--white);
            border-radius: 50%;
        }

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

    .point--bottom {
        background-color: var(--white);
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        padding: 32px 5%;
        display: grid;
        row-gap: 32px;

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

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

        .media {
            column-gap: 32px;
            align-items: start;
        }

        .media--body {
            padding-top: 24px;
        }

        .media--imgBox {
            line-height: 0;
        }

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

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

        .modelBox--case {
            text-align: right;
        }

        .modelBox {
            position: relative;
            display: grid;
            gap: 8px;
        }

        .modelBox--row {
            display: flex;
        }

        .modelBox--itemBox {
            padding: 16px;
            width: 40%;
            background-color: var(--primary-bland-color-deep);
            border: 1px solid var(--primary-bland-color-deep);
            display: grid;
            place-items: center;
        }

        .modelBox--item {
            color: var(--white);
            font-size: 20px;
        }

        .modelBox--valueBox {
            padding: 16px;
            width: 60%;
            background-color: var(--white);
            border: 1px solid var(--primary-bland-color-deep);
            display: grid;
            place-items: center;
        }

        .modelBox--value {
            font-size: 20px;
        }

        .noteArea {
            /* margin-top: 32px; */
            padding: 16px 0 16px 104px;
            border-top: 1px solid var(--notearea-color);
            border-bottom: 1px solid var(--notearea-color);
        }

        .noteArea--text {
            color: var(--notearea-color);
            font-size: 12px;
            text-align: left;
        }

    }
}

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

        .point--bottom {

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

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

            .media--imgBox {
                flex-basis: 0;
                width: 100%;
            }

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

}

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

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

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

        .pointList {
            row-gap: 24px;
        }

        .point--header {

            padding-top: 16px;
            padding-bottom: 16px;

            .point--title {
                font-size: 24px;
            }

            .point--subTitleBox {
                width: 64px;
                height: 64px;
            }

            .point--subTitle {
                font-size: 24px;
            }
        }

        .point--bottom {

            padding-top: 20px;
            padding-bottom: 20px;
            row-gap: 20px;

            .grid-col2 {
                row-gap: 8px;
            }

            .media--body {
                padding-top: 0;
            }

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

            .modelBox--case {
                font-size: 12px;
            }

            .modelBox--itemBox {
                padding: 8px;
            }

            .modelBox--item {
                font-size: 16px;
            }

            .modelBox--valueBox {
                padding: 8px;
            }

            .modelBox--value {
                font-size: 16px;
            }

            .noteArea {
                margin-top: 0px;
                padding-top: 8px;
                padding-left: 8px;
                padding-bottom: 8px;
            }

            .noteArea--text {
                font-size: 8px;
            }
        }
    }
}

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

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

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

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

.qaSection {
    padding: 40px 5% 56px;
    display: grid;
    place-items: center;

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

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

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

        .qa-grid {
            row-gap: 20px;
        }

    }
}

.meritSection {
    padding: 64px 0 0;
}

.meritSection .section--inner-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 .section--inner {
    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;
        }
    }
}

.bottomNavigation {
    width: auto;
    position: fixed;
    /* bottom: 0; */
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
    border-top: 1px solid var(--lightgray);
    display: grid;
    place-items: center;

    z-index: 999;
    background-color: rgba(255,255,255, 0.3);
    backdrop-filter: brightness(180%) blur(12px);
    border-radius: 12px;
    display: grid;
    row-gap: 8px;

    opacity: 0;
    transition: 1s ease;

    .lineButton {
        background-color: var(--third-bland-color);
        width: 100%;
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 8px;
        border-radius: 12px;
        position: relative;
        /* filter: drop-shadow(0 4px var(--darkpink)); */
        /* grid-template-columns: 1fr 3fr 1fr; */
    }

    .lineButton--iconBox {
        background-color: var(--white);
        padding: 4px;
        border-radius: 8px;
        line-height: 0;
        display: flex;
    }

    .lineButton--icon {
        width: 28px;
        height: 28px;
        line-height: 0;
    }

    .lineButton--text {
        /* flex: 1 0; */
        color: var(--white);
        font-size: 16px;
        font-weight: bold;
    }

    .lineButton--arrow {
        width: 28px;
        height: 26px;
        border-radius: 50%;
        background-color: var(--white);
        position: relative;
    } 

    .lineButton--arrow::before {
        content: '';
        width: 12px;
        height: 12px;
        border: 0;
        border-top: solid 2px var(--third-bland-color);
        border-right: solid 2px var(--third-bland-color);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-70%, -50%) rotate(45deg);
    }

    .mailFormButton {
        background-color: var(--secondary-bland-color);
        width: 100%;
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 8px;
        border-radius: 12px;
        /* filter: drop-shadow(0 4px var(--deepgray)); */
        /* box-shadow: 0 4px 0 0 var(--deepgray); */
        position: relative;
    }

    .mailFormButton--iconBox {
        background-color: var(--white);
        padding: 4px;
        border-radius: 8px;
        line-height: 0;
        display: flex;
    }

    .mailFormButton--icon {
        width: 28px;
        height: 28px;
        line-height: 0;
    }

    .mailFormButton--text {
        /* flex: 1 0; */
        color: var(--black);
        font-size: 16px;
        font-weight: bold;
    }

    .mailFormButton--arrow {
        width: 28px;
        height: 26px;
        border-radius: 50%;
        background-color: var(--white);
        position: relative;
    } 

    .mailFormButton--arrow::before {
        content: '';
        width: 12px;
        height: 12px;
        border: 0;
        /* border-top: solid 2px var(--secondary-bland-color);
        border-right: solid 2px var(--secondary-bland-color); */
        border-top: solid 2px var(--black);
        border-right: solid 2px var(--black);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-70%, -50%) rotate(45deg);
    }
}

.bottomNavigation.isOffscreenHero {
    opacity: 1;
    transition: 1s ease;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .bottomNavigation {
        width: 100%;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        padding: 8px;
        display: grid;
        place-items: center;
        /* background-color: var(--white); */
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        row-gap: 8px;

        .lineButton {
            padding: 8px;
            column-gap: 8px;
            border-radius: 12px;
        }

        .lineButton--iconBox {
            background-color: var(--white);
            padding: 4px;
            border-radius: 8px;
            line-height: 0;
            display: flex;
        }

        .lineButton--icon {
            width: 28px;
            height: 28px;
            line-height: 0;
        }

        .lineButton--text {
            /* flex: 1 0; */
            color: var(--white);
            font-size: 16px;
            font-weight: bold;
        }

        .lineButton--arrow {
            width: 28px;
            height: 26px;
            border-radius: 50%;
            background-color: var(--white);
            position: relative;
        } 

        .lineButton--arrow::before {
            content: '';
            width: 12px;
            height: 12px;
            border: 0;
            border-top: solid 2px var(--third-bland-color);
            border-right: solid 2px var(--third-bland-color);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-70%, -50%) rotate(45deg);
        }

        .mailFormButton {
            background-color: var(--secondary-bland-color);
            width: 100%;
            padding: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            column-gap: 8px;
            border-radius: 12px;
            /* filter: drop-shadow(0 4px var(--deepgray)); */
            /* box-shadow: 0 4px 0 0 var(--deepgray); */
            position: relative;
        }

        .mailFormButton--iconBox {
            background-color: var(--white);
            padding: 4px;
            border-radius: 8px;
            line-height: 0;
            display: flex;
        }

        .mailFormButton--icon {
            width: 28px;
            height: 28px;
            line-height: 0;
        }

        .mailFormButton--text {
            color: var(--black);
            font-size: 16px;
            font-weight: bold;
        }

        .mailFormButton--arrow {
            width: 28px;
            height: 26px;
            border-radius: 50%;
            background-color: var(--white);
            position: relative;
        } 

        .mailFormButton--arrow::before {
            content: '';
            width: 12px;
            height: 12px;
            border: 0;
            /* border-top: solid 2px var(--secondary-bland-color);
            border-right: solid 2px var(--secondary-bland-color); */
            border-top: solid 2px var(--black);
            border-right: solid 2px var(--black);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-70%, -50%) rotate(45deg);
        }
    }
}

.bottomNavigation .contact--btn {
    font-size: 16px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 999px;
    border-bottom: solid 5px skyblue;
    background-color: navy;
    background-image: none;
    position: relative;
}

.bottomNavigation .contact--btnText {
    display: inline-block;
    position: relative;
    padding-left: 8px;
}

.bottomNavigation .contact--btnText::before {
    position: absolute;
    content: '';
    background-image: url(/img/icon_mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 32px;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
}