@charset "UTF-8";

/* === トップメインビジュアル === */
.start-main {
    background: linear-gradient(98deg, #1B9F96 0%, #1788C3 100%);
    color: white;
    position: relative;
    min-height: calc(500px + 15vw);
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 5vw),
            50% 100%,
            0 calc(100% - 5vw));
    padding: 60px 0 0;
}

.start-main::before {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    color: rgb(146, 54, 54);
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 7vw),
            50% 100%,
            0 calc(100% - 7vw));
    z-index: 2;
    top: 0;
    left: 0;
}

.start-main .content-wrap {
    position: relative;
    z-index: 2;
}

.start-main-title {
    text-align: center;
    font-family: var(--en-font);
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 20px;
}

.start-main .hero-txt {
    width: 80%;
    max-width: 740px;
    margin: 0 auto;
}

.start-main .txt-block {
    position: relative;
    padding: 50px 0 140px;
}

.start-main .txt-block p {
    text-align: center;
    font-size: min(2.6vw, 1.3rem);
    line-height: 2.4em;
    padding-bottom: 20px;
}

.dot-txt-wrap {
    padding: 60px 0;
}

.dot-txt {
    text-align: center;
    font-size: min(2.6vw, 1.3rem);
    line-height: 40px;
    letter-spacing: 1px;
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 10%;
    text-underline-offset: 25%;
    text-underline-position: from-font;
}

.popup-box-wrap {
    position: relative;
}

.popup-box-wrap::after {
    content: "";
    display: block;
    position: absolute;
    background: #F2F6F6;
    width: 100%;
    height: calc(100% - 100px);
    top: 100px;
}

.start .popup-box {
    border: 2px solid #000;
    background: #FFF;
    position: relative;
    width: 90%;
    max-width: 940px;
    margin: 0 auto;
    padding: 50px;
    z-index: 2;
    transform-style: preserve-3d;
    transition: top 1s, left 1s;
}

.start .popup-box::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 100%;
    height: 100%;
    left: 15px;
    top: 15px;
    z-index: -1;
    transform: translateZ(-1px);
    transition: top 1s, left 1s;
}

.popup-box.eft {
    left: 15px;
    top: 15px;
}

.popup-box.eon {
    left: 0;
    top: 0;
}

.popup-box.eft::after {
    left: 0;
    top: 0;
}

.popup-box.eon::after {
    left: 15px;
    top: 15px;
}

.start .popup-box .box-title {
    color: #FFF;
    font-size: 18px;
    text-align: center;
    line-height: 2.2em;
    width: 80%;
    max-width: 400px;
    margin: 0 auto 20px;
    border-radius: 40px;
    background: #0F846E;
}

.start .popup-box .hero-txt {
    text-align: center;
    font-size: min(3vw, 2.4rem);
    line-height: 1.8em;
    font-weight: 600;
}

.start .popup-box .hero-txt~p {
    text-align: center;
}

.sub-txt-box {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
    max-width: 550px;
}

.sub-txt-box.centered {
    text-align: center;
}

.sub-txt-box.fin {
    transition-delay: .2s;
}

.sub-txt-box p span {
    font-size: 18px;
	color: var(--main-color);
}

.sub-txt-box p.mb {
    margin-bottom: 1.8em;
}
.start-related-btns-title {
    width: 90%;
    max-width: 450px;
    margin: 20px auto 10px;
}

.start-related-btns-title~p {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    font-size: min(2.4vw, 18px);
    text-align: center;
    line-height: 2.2em;
    width: 80%;
    max-width: 700px;
    margin: 0 auto 30px;
    border-radius: 40px;
    background: #0F846E;
    top: -3px;
}


/* SP調整 */
@media screen and (max-width: 768px) {

    .start-main .txt-block {
        position: relative;
        padding: 30px 0 30px;
    }

    .start-main .txt-block p {
        text-align: center;
        font-size: min(4vw, 1.1rem);
        line-height: 2em;
        padding-bottom: 20px;
    }

    .dot-txt-wrap {
        padding: 60px 0;
    }

    .dot-txt {
        text-align: center;
        font-size: min(3.6vw, 1.2rem);
        line-height: 2em;
        letter-spacing: 1px;
    }

    .popup-box-wrap {
        position: relative;
    }

    .popup-box-wrap::after {
        content: "";
        display: block;
        position: absolute;
        background: #F2F6F6;
        width: 100%;
        height: calc(100% - 50px);
        top: 50px;
    }

    .start .popup-box {
        border: 2px solid #000;
        background: #FFF;
        position: relative;
        width: 90%;
        max-width: 940px;
        margin: 0 auto;
        padding: 30px 15px;
        z-index: 2;
        transform-style: preserve-3d;
        transition: top 1s, left 1s;
    }

    .start .popup-box::after {
        content: "";
        display: block;
        position: absolute;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        width: 100%;
        height: 100%;
        left: 10px;
        top: 10px;
        z-index: -1;
        transform: translateZ(-1px);
        transition: top 1s, left 1s;
    }

    .popup-box.eft {
        left: 10px;
        top: 10px;
    }

    .popup-box.eon {
        left: 0;
        top: 0;
    }

    .popup-box.eft::after {
        left: 0;
        top: 0;
    }

    .popup-box.eon::after {
        left: 10px;
        top: 10px;
    }

    .start .popup-box .box-title {
        color: #FFF;
        font-size: 13px;
        text-align: center;
        line-height: 2.2em;
        width: 70%;
        max-width: 400px;
        margin: 0 auto 10px;
        border-radius: 40px;
        background: #0F846E;
    }

    .start .popup-box .hero-txt {
        text-align: center;
        font-size: min(5vw, 2.4rem);
        line-height: 1.8em;
        font-weight: 600;
        padding-bottom: 10px;
    }

    .start .popup-box .hero-txt~p {
        text-align: center;
    }

    .sub-txt-box {
        position: relative;
        z-index: 2;
        width: 90%;
        margin: 0 auto;
        padding: 30px 0;
        max-width: 550px;
    }

    .sub-txt-box.fin {
        transition-delay: .2s;
    }

    .sub-txt-box p span {
        color: var(--main-color);
    }

    .start-related-btns-title {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }

    .start-related-btns-title~p {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        color: #FFF;
        font-size: min(2.4vw, 18px);
        text-align: center;
        line-height: 2.2em;
        width: 90%;
        max-width: 700px;
        margin: 0 auto 20px;
        border-radius: 40px;
        background: #0F846E;
    }
}

/* ホバー */
@media (hover: hover) {}


/* === 早わかり前田建設 === */


.about-main {
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-main .main-visual {
    width: 100%;
    position: relative;
    z-index: -1;
    overflow: hidden;
}

/* テキストコンテンツ */
.about-main .mv-content {
    position: absolute;
    display: inline-block;
    bottom: 50px;
    left: 5%;
    z-index: 4;
}

.about-main .mv-content .wipe-group {
    position: relative;
}

.about-main .mv-content .wipe-group .wipe {
    width: 100%;
    transition-delay: 1s;
    transition-duration: 3s;
}

.wipe01 {
    display: inline-block;
    font-size: min(5vw, 30px);
    color: #000;
    background: #FFF;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.wipe02 {
    display: inline-block;
    font-size: min(3vw, 1.1rem);
    line-height: 1.6em;
    color: #FFF;
    padding: 10px 20px;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
}




/* 装飾（三角形） */
.mv-triangle-left {
    background: #FFF;
    width: 12vw;
    height: 100%;
    top: 0;
    left: -5vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 3;
    position: absolute;
    transition: all .8s .5s ease-out;
}

.mv-triangle-left.eon {
    opacity: 1;
    left: 0;
}

.mv-triangle-left2 {
    background: rgba(0, 145, 157, 0.6);
    width: 14vw;
    height: 100%;
    top: 0;
    left: -6vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    z-index: 2;
    position: absolute;
    transition: all .8s .55s ease-in-out;
}

.mv-triangle-left2.eon {
    opacity: 1;
    left: 0;
}

.mv-triangle-right {
    background: #FFF;
    width: 12vw;
    height: 100%;
    top: 0;
    right: -5vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 3;
    position: absolute;
    transition: all .8s .5s ease-out;
}

.mv-triangle-right.eon {
    opacity: 1;
    right: 0;
}

.mv-triangle-right2 {
    background: rgba(32, 159, 239, 0.6);
    width: 14vw;
    height: 100%;
    top: 0;
    right: -6vw;
    opacity: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    z-index: 2;
    position: absolute;
    transition: all .8s .55s ease-in-out;
}

.mv-triangle-right2.eon {
    opacity: 1;
    right: 0;
}




.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: infinite-scroll 240s linear infinite;
}

.slider-item {
    width: 18vw;
    min-width: 150px;
    height: auto;
    flex-shrink: 0;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.about .title-sub {
    width: 350px;
    padding: 10px;
    color: #FFF;
    text-align: center;
    position: relative;
    top: 20px;
    border: 2px solid #000;
    background: var(--base_g, linear-gradient(98deg, #4BBE8D 0%, #076480 100%));
    z-index: 5;
}

.about .popup-title {
    border: 2px solid #000;
    background: #FFF;
    position: relative;
    width: 60%;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px;
    z-index: 2;
    transform-style: preserve-3d;
    transition: top 1s, left 1s;

}

.about .popup-title::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 100%;
    height: 100%;
    left: 15px;
    top: 15px;
    z-index: -1;
    transform: translateZ(-1px);
    transition: top 1s, left 1s;
}

.about .popup-title h2 {
    font-size: min(5vw, 64px);
    text-align: center;
}

.popup-title.eft {
    left: 15px;
    top: 15px;
}

.popup-title.eon {
    left: 0;
    top: 0;
}

.popup-title.eft::after {
    left: 0;
    top: 0;
}

.popup-title.eon::after {
    left: 15px;
    top: 15px;
}

.about section {
    padding: 50px 0;
}

.section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 80px 0;
}

.section-content .txt {
    width: 48%;
    display: flex;
    align-items: center;
}

.section-content .figure {
    width: 48%;
}

.about-question {
    padding-bottom: 80px;
}

.about-question .question-title {
    text-align: center;
    font-family: var(--en-font);
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
}

.about-topic01,
.about-topic03 {
    background: #F2F6F6;
}

.about-topic02,
.about-topic04 {
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
}

.narrow-block {
    width: 80%;
    margin: 0 auto;
    max-width: 550px;
}

.about-topic01 {
    padding: 80px 0 0;
}

.about-topic02 {
    padding: 0 0 80px;
}

.about-topic03 {
    padding: 80px 0 140px;
}

.about-topic01 .topic-title,
.about-topic03 .topic-title {
    font-size: min(4vw, 1.7rem);
    line-height: 1.8em;
    text-align: center;
    padding-bottom: 20px;
}

.topic01-skyline {
    position: relative;
    padding: 10vw 0 0;
}

.topic01-skyline ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    max-width: 1000px;
    z-index: 2;
    position: relative;
    bottom: 3vw;
}

.topic01-skyline ul li {
    width: 12%;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.topic01-skyline ul li.is-active {
    opacity: 1;
    transform: translateY(0);
}

.topic01-skyline ul li:nth-child(even) {
    top: -3vw;
}

.topic01-skyline .bg {
    position: absolute;
    width: 100%;
    max-width: 1400px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-topic02 .narrow-block {
    padding: 40px 0 0;
}

.about-topic02 .narrow-block>p {
    color: #FFF;
}

.about-link-btn {
    padding: 40px 0 0;
}

.about-link-btn .btn-description {
    text-align: center;
}

.about-topic02 .about-link-btn .btn-description {
    color: #FFF;
}

.about-link-btn ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2%;
    margin: 10px auto 0;
    width: 90%;
    max-width: 900px;
}

.about-link-btn ul li {
    width: 48%;
    height: 90px;
    padding: 0 5px;
    position: relative;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    transition: all .4s;
}

.about-link-btn ul li a {
    text-align: center;
    text-decoration: none;
    color: #231815;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-link-btn ul li a p {
    font-size: min(1.7vw, 1.2rem);
    line-height: 1.4em;
}

.about-link-btn ul li a p span {
    display: block;
    font-size: min(1vw, 0.7rem);
    color: var(--main-color);
}

.about-link-btn ul li:before {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 10px;
    height: 10px;
    background-image: url(../img/common_img/arrow-green.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.about-topic03 {
    position: relative;
}

.about-topic03 .content-wrap,
.about-topic03 .about-link-btn {
    position: relative;
    z-index: 2;
}

.about-topic03 .grow-arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: bottom center;
    width: 100%;
    max-width: 1400px;
    z-index: 1;
    transition: all 1.2s .5s;
}

.about-topic03 .grow-arrow.eon {
    transform: translateX(-50%) scaleY(1);
}


.about-topic04 {
    padding: 80px 0;
}

.about-topic04 .topic-title {
    font-size: min(5vw, 3rem);
    line-height: 1.8em;
    text-align: center;
    padding-bottom: 20px;
    color: #FFF;
}

.about-topic04 .sub-title {
    font-size: min(3vw, 1.7rem);
    line-height: 1.6em;
    text-align: center;
    padding-bottom: 20px;
    color: #FFF;
}

.about-topic04 .narrow-block>p {
    color: #FFF;
}

.egg.eon img {
    animation: boyoyon 6s 1s forwards;
    transform-origin: center bottom;
}

.business-models {
    position: relative;
}

.business-models ul {
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.business-models ul li {
    width: 48%;
    position: relative;
    background: #FFF;
    padding: 30px;
    margin-bottom: 40px;
}

.business-models ul li:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/start_img/about-arrow-white.svg');
    width: 36px;
    height: 36px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.business-models ul li:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/start_img/about-arrow-white.svg');
    width: 36px;
    height: 36px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.business-models ul li .title {
    text-align: center;
    font-size: min(4vw, 1.6rem);
    padding-bottom: 15px;
}

.business-models ul li .title span {
    color: var(--main-color);
}

.about-section05 .narrow-block {
    padding: 60px 0 10px;
}

.about-section05 .narrow-block~.popup-title {
    margin-top: 30px;
}

.words-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 4%;
}

.words-list li {
    width: 20%;
    border: 2px solid #000;
    background: #FFF;
    position: relative;
    padding: 30px 20px;
    z-index: 2;
    transform-style: preserve-3d;
    transition: top 1s, left 1s;

}

.words-list li::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 100%;
    height: 100%;
    left: 15px;
    top: 15px;
    z-index: -1;
    transform: translateZ(-1px);
    transition: top 1s, left 1s;
}

.words-list li p {
    font-size: min(5vw, 34px);
    font-weight: 600;
    text-align: center;
}

.words-list li.eft {
    left: 12px;
    top: 12px;
}

.words-list li.eon {
    left: 0;
    top: 0;
}

.words-list li.eft::after {
    left: 0;
    top: 0;
}

.words-list li.eon::after {
    left: 12px;
    top: 12px;
}

.about-end-txt {
    padding: 80px 0 0;
}

.about-end-txt p {
    text-align: center;
    font-size: min(3vw, 1.8rem);
    padding-bottom: 1em;
    line-height: 1.8em;
}

.about-end-txt p span {
    color: var(--main-color);
}

@media (hover: hover) {
    .about-link-btn ul li:hover {
        box-shadow: 0 0 2px 0 rgba(10, 98, 101, 0.45);
    }
}




@keyframes boyoyon {
    0% {
        transform: scale(1, 1) translateY(0);
    }

    5% {
        transform: scale(1.1, 0.9) translateY(0);
    }

    10% {
        transform: scale(0.9, 1.1) translateY(-5px);
    }

    15% {
        transform: scale(1.05, 0.95) translateY(0);
    }

    20% {
        transform: scale(1, 1) translateY(0);
    }

    100% {
        transform: scale(1, 1) translateY(0);
    }
}


@media screen and (max-width: 768px) {
    .about section {
        padding: 30px 0;
    }

    .about-main .main-visual img {
        object-fit: cover;
        min-height: 180px;
    }

    /* テキストコンテンツ */
    .about-main .mv-content {
        position: relative;
        display: inline-block;
        bottom: 20px;
        left: 0;
        z-index: 4;
    }

    .about-main .mv-content .wipe-group {
        position: relative;
    }

    .about-main .mv-content .wipe-group .wipe {
        width: 100%;
        transition-delay: 1s;
        transition-duration: 3s;
    }

    .wipe01 {
        display: inline-block;
        font-size: min(4vw, 20px);
        color: #000;
        background: #FFF;
        padding: 5px 15px;
        margin-bottom: 10px;
    }

    .wipe02 {
        display: inline-block;
        font-size: min(3vw, 1.1rem);
        line-height: 1.6em;
        color: #FFF;
        padding: 10px 15px;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    }


    .slider-container {
        width: 100%;
        overflow: hidden;
    }

    .slider-track {
        display: flex;
        width: max-content;
        animation: infinite-scroll 240s linear infinite;
    }

    .slider-item {
        width: 14vw;
        min-width: 100px;
        height: auto;
        flex-shrink: 0;
    }

    .about .title-sub {
        width: 80%;
        max-width: 240px;
        padding: 10px;
        color: #FFF;
        text-align: center;
        position: relative;
        top: 15px;
        border: 2px solid #000;
        background: var(--base_g, linear-gradient(98deg, #4BBE8D 0%, #076480 100%));
        z-index: 5;
        font-size: min(2.4vw, 12px);
        line-height: 1.6em;
    }

    .about .popup-title {
        border: 2px solid #000;
        background: #FFF;
        position: relative;
        width: 80%;
        max-width: 340px;
        margin: 0 auto;
        padding: 30px 15px;
        z-index: 2;
        transform-style: preserve-3d;
        transition: top 1s, left 1s;
    }

    .about .popup-title::after {
        content: "";
        display: block;
        position: absolute;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        width: 100%;
        height: 100%;
        left: 10px;
        top: 10px;
        z-index: -1;
        transform: translateZ(-1px);
        transition: top 1s, left 1s;
    }

    .about .popup-title h2 {
        font-size: min(8vw, 34px);
        text-align: center;
    }

    .popup-title.eft {
        left: 10px;
        top: 10px;
    }

    .popup-title.eon {
        left: 0;
        top: 0;
    }

    .popup-title.eft::after {
        left: 0;
        top: 0;
    }

    .popup-title.eon::after {
        left: 10px;
        top: 10px;
    }


    .section-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 40px 0;
    }

    .section-content .txt {
        width: 100%;
        display: flex;
        align-items: center;
        padding-bottom: 20px;
    }

    .section-content .figure {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-question {
        padding-bottom: 40px;
    }

    .about-question .question-title {
        text-align: center;
        font-family: var(--en-font);
        color: var(--main-color);
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .narrow-block {
        width: 85%;
        margin: 0 auto;
        max-width: 550px;
    }

    .about-topic01 {
        padding: 40px 0 0;
    }

    .about-topic02 {
        padding: 0 0 40px;
    }

    .about-topic03 {
        padding: 4dvh 0 100px;
    }

    .about-topic01 .topic-title,
    .about-topic03 .topic-title {
        font-size: min(5vw, 1.7rem);
        line-height: 1.8em;
        text-align: center;
        padding-bottom: 20px;
    }

    .topic01-skyline {
        position: relative;
        padding: 10vw 0 0;
    }

    .topic01-skyline ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 80%;
        margin: 0 auto;
        max-width: 1000px;
        z-index: 2;
        position: relative;
        bottom: 3vw;
    }

    .topic01-skyline ul li {
        width: 12%;
        position: relative;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.6s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .topic01-skyline ul li.is-active {
        opacity: 1;
        transform: translateY(0);
    }

    .topic01-skyline ul li:nth-child(even) {
        top: -3vw;
    }

    .topic01-skyline .bg {
        position: absolute;
        width: 100%;
        max-width: 1400px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-topic02 .narrow-block {
        padding: 40px 0 0;
    }

    .about-topic02 .narrow-block>p {
        color: #FFF;
    }

    .about-link-btn {
        padding: 40px 0 0;
    }

    .about-link-btn .btn-description {
        text-align: center;
    }

    .about-topic02 .about-link-btn .btn-description {
        color: #FFF;
        font-size: 12px;
    }

    .about-link-btn ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 2%;
        margin: 10px auto 0;
        width: 90%;
        max-width: 900px;
    }

    .about-link-btn ul li {
        width: 100%;
        height: auto;
        padding: 10px 5px;
        margin-bottom: 5px;
        position: relative;
        background: #FFF;
        box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
        transition: all .4s;
    }

    .about-link-btn ul li a {
        text-align: center;
        text-decoration: none;
        color: #231815;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-link-btn ul li a p {
        font-size: min(3.4vw, 1.2rem);
        line-height: 1.4em;
    }

    .about-link-btn ul li a p span {
        display: block;
        font-size: min(2.2vw, 0.7rem);
        color: var(--main-color);
    }

    .about-link-btn ul li:before {
        content: "";
        position: absolute;
        right: 10px;
        bottom: 10px;
        width: 10px;
        height: 10px;
        background-image: url(../img/common_img/arrow-green.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .about-topic03 {
        position: relative;
    }

    .about-topic03 .content-wrap,
    .about-topic03 .about-link-btn {
        position: relative;
        z-index: 2;
    }

    .about-topic03 .grow-arrow {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleY(0);
        transform-origin: bottom center;
        width: 100%;
        max-width: 1400px;
        z-index: 1;
        transition: all 1.2s .5s;
    }

    .about-topic03 .grow-arrow.eon {
        transform: translateX(-50%) scaleY(1);
    }


    .about-topic04 {
        padding: 40px 0;
    }

    .about-topic04 .topic-title {
        font-size: min(6vw, 3rem);
        line-height: 1.8em;
        text-align: center;
        padding-bottom: 15px;
        color: #FFF;
    }

    .about-topic04 .sub-title {
        font-size: min(4.3vw, 1.2rem);
        line-height: 1.6em;
        text-align: center;
        padding-bottom: 15px;
        color: #FFF;
    }

    .about-topic04 .narrow-block>p {
        color: #FFF;
    }

    .egg.eon img {
        animation: boyoyon 6s 1s forwards;
        transform-origin: center bottom;
    }

    .business-models {
        position: relative;
    }

    .business-models ul {
        margin: 30px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .business-models ul li {
        width: 48%;
        position: relative;
        background: #FFF;
        padding: 20px 15px;
        margin-bottom: 40px;
    }

    .business-models ul li:nth-child(1)::after {
        content: "";
        display: block;
        position: absolute;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url('../img/start_img/about-arrow-white.svg');
        width: 26px;
        height: 26px;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
    }

    .business-models ul li:nth-child(2)::after {
        content: "";
        display: block;
        position: absolute;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url('../img/start_img/about-arrow-white.svg');
        width: 26px;
        height: 26px;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .business-models ul li .title {
        text-align: center;
        font-size: min(4.2vw, 1.2rem);
        padding-bottom: 10px;
    }

    .business-models ul li .title span {
        color: var(--main-color);
    }

    .business-models ul li .title~p {
        line-height: 1.6em;
    }

    .about-section05 .narrow-block {
        padding: 30px 0 10px;
    }

    .about-section05 .narrow-block~.popup-title {
        margin-top: 30px;
    }

    .words-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 4%;
    }

    .words-list li {
        width: 20%;
        border: 2px solid #000;
        background: #FFF;
        position: relative;
        padding: 20px 10px;
        z-index: 2;
        transform-style: preserve-3d;
        transition: top 1s, left 1s;

    }

    .words-list li::after {
        content: "";
        display: block;
        position: absolute;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        width: 100%;
        height: 100%;
        left: 15px;
        top: 15px;
        z-index: -1;
        transform: translateZ(-1px);
        transition: top 1s, left 1s;
    }

    .words-list li p {
        font-size: min(5vw, 34px);
        font-weight: 600;
        text-align: center;
    }

    .words-list li.eft {
        left: 10px;
        top: 10px;
    }

    .words-list li.eon {
        left: 0;
        top: 0;
    }

    .words-list li.eft::after {
        left: 0;
        top: 0;
    }

    .words-list li.eon::after {
        left: 10px;
        top: 10px;
    }

    .about-end-txt {
        padding: 40px 0 0;
    }

    .about-end-txt p {
        text-align: center;
        font-size: min(4vw, 1.3rem);
        padding-bottom: 1em;
        line-height: 1.8em;
    }

    .about-end-txt p span {
        color: var(--main-color);
    }
}



.message {
    padding: 80px 0 0;
}

.message-main {
    position: relative;
}

.message-main .name-card {
    background: #FFF;
    padding: 24px 30px;
    width: 80%;
    min-width: 300px;
}

.message-main .name-card p:nth-child(1) {
    font-size: 1rem;
    padding-bottom: 10px;
}

.message-main .name-card p:nth-child(2) {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    line-height: 1em;
}

.message-main .name-card p:nth-child(2) span {
    font-family: var(--en-font);
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    padding-left: 10px;
}

.message-main .wipe-group {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
}

.message-main .wipe-group .wipe {
    width: 100%;
    transition-delay: 1s;
    transition-duration: 3s;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
}

.message .main-hero-text {
    text-align: center;
    font-size: min(3.6vw, 1.7rem);
    line-height: 1.6em;
    color: var(--main-color);
    padding: 30px 0 80px;
}

.message-article {
    padding-bottom: 60px;
}

.message-article .hero-text {
    font-size: min(3.4vw, 1.5rem);
    line-height: 1.6em;
    padding-bottom: 20px;
}

.message-article p:not([class]) {
    font-size: 1.1rem;
}

.message .insert-image {
    padding-bottom: 60px;
}


@media screen and (max-width: 768px) {
    .message {
        padding: 20px 0 0;
    }

    .message-main {
        position: relative;
    }

    .message-main .image img {
        min-height: 200px;
        object-fit: cover;
    }

    .message-main .name-card {
        background: #FFF;
        padding: 20px 25px;
        width: 220px;
        min-width: auto;
        margin: 10px;
        box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    }

    .message-main .name-card p:nth-child(1) {
        font-size: 0.9rem;
        padding-bottom: 10px;
    }

    .message-main .name-card p:nth-child(2) {
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        line-height: 1em;
    }

    .message-main .name-card p:nth-child(2) span {
        font-family: var(--en-font);
        color: var(--main-color);
        font-size: 12px;
        font-weight: 600;
        padding-left: 10px;
    }

    .message-main .wipe-group {
        position: relative;
        bottom: 20px;
        width: 240px;
        left: 2%;
        z-index: 3;
    }

    .message-main .wipe-group .wipe {
        width: 100%;
        transition-delay: 1s;
        transition-duration: 3s;
    }

    .message .main-hero-text {
        text-align: center;
        font-size: min(5vw, 1.7rem);
        line-height: 1.6em;
        color: var(--main-color);
        padding: 0 0 40px;
    }

    .message-article {
        padding-bottom: 30px;
    }

    .message-article .hero-text {
        font-size: min(5vw, 1.2rem);
        line-height: 1.6em;
        padding-bottom: 10px;
    }

    .message-article p:not([class]) {
        font-size: min(3.6vw, 0.9rem);
        line-height: 1.8em;
    }

    .message .insert-image {
        padding-bottom: 30px;
    }
}

.links-content {
    padding: 80px 0 0;
}

.links-content .links-block {
    margin-bottom: 80px;
}

.links-block ul li {
    position: relative;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    transition: all .4s;
}

.links-block ul li:before {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 10px;
    height: 10px;
    background-image: url(../img/common_img/window.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.links-block ul li a {
    padding: 20px;
    display: block;
    box-sizing: border-box;
    align-items: center;
}

.links-list01 {
    padding: 15px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 2%;
}

.links-list01 li {
    width: 32%;
    margin-bottom: 20px;
}

.links-list02 li {
    margin-bottom: 20px;
}

.links-block ul li .text-title {
    font-size: min(4vw, 1.1rem);
    line-height: 1.6em;
    padding-bottom: 10px;
}

.links-block ul li .text-type {
    font-size: 12px;
    line-height: 1em;
    padding-bottom: 5px;
}

.links-block ul li .text-url {
    font-size: 11px;
    color: var(--main-color);
    line-height: 1em;
}

@media (hover: hover) {
    .links-block ul li:hover {
        box-shadow: 0 0 2px 0 rgba(10, 98, 101, 0.45);
    }
}

@media screen and (max-width: 768px) {
    .links-content {
        padding: 20px 0 0;
    }
    .links-block ul li a {
        padding: 15px;
    }

    .links-list01 li {
        width: 100%;
        margin-bottom: 10px;
    }
}