html {
    scroll-behavior: smooth;
}

.value .pc-only {
    display: block;
}

.value .sp-only {
    display: none;
}

.br-sp430 {
    display: none;
}

@media screen and (max-width: 768px) {
    .value .pc-only {
        display: none;
    }

    .value .sp-only {
        display: block;
    }
}

/* 幅430px以下のときだけ表示 */
@media screen and (max-width: 430px) {
    .br-sp430 {
        display: inline;
    }
}

.value .content-wrapper {
    padding-left: 0;
    padding-right: 0;
    max-width: 1200px;
}


.tree-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    min-width: 1000px;
}

.svg-container {
    width: 100%;
    max-width: 1200px;
    min-width: 1000px;
    display: flex;
    justify-content: center;
}

svg {
    width: 100%;
    height: auto;
}

/* グローバルなセクションのコンテンツ */

.value_tx_area {
    line-height: 1.4;
}

.section-content {
    width: 100%;
    text-align: center;
    max-width: 1000px;
    min-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: absolute;
    top: 16%;
}


.section-content h2 {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 45px;
    color: #d70c18;
}

.section-content p {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #333;
}


.section-content .top_tx_box {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
}

.section-content .top_tx_box2 {
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 25%;
}

.section-content .btn {
    display: inline-flex;
    /* アイコンとテキストを横並びにする */
    align-items: center;
    /* 縦位置を中央揃え */
    padding: 3px 20px;
    font-size: 1.8rem;
    line-height: 1.6;
    background-color: #d70c18;
    color: white;
    font-weight: bold;
    text-decoration: none;
    text-align: left;
}

.section-content .btn::after {
    content: "";
    display: inline-block;
    width: 16px;
    /* 画像の幅 */
    height: 16px;
    /* 画像の高さ */
    background-image: url('/asset/img/icon_btn_value.svg');
    /* 画像のパスを指定 */
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
    /* テキストとの間隔 */
    transition: transform 0.3s ease-out;
}

.section-content .btn:hover::after {
    transform: translateX(5px);
}

.top_btn_wrp .btn {
    display: inline-flex;
    /* アイコンとテキストを横並びにする */
    align-items: center;
    /* 縦位置を中央揃え */
    padding: 3px 30px;
    font-size: 1.8rem;
    line-height: 1.6;
    background-color: #d70c18;
    color: white;
    font-weight: bold;
    text-decoration: none;
    text-align: left;
}

.top_btn_wrp {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.top_btn_wrp .btn::after {
    content: "";
    display: inline-block;
    width: 16px;
    /* 画像の幅 */
    height: 16px;
    /* 画像の高さ */
    background-image: url('/asset/img/icon_btn_value.svg');
    /* 画像のパスを指定 */
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 8px;
    /* テキストとの間隔 */
    transform: rotate(-90deg);
    transition: transform 0.3s ease-out;
}

.top_btn_wrp .btn:hover::after {
    transform: rotate(-90deg) translateY(-5px);
}


.info-item1-1 {
    position: absolute;
    top: 120%;
    left: 114px;
}

.info-item1-2 {
    position: absolute;
    right: 6px;
    top: 148%;
}

.info-item1-3 {
    position: absolute;
    top: 214%;
    right: 11%;
}

.info-item img {
    max-height: 55px;
    /* 画像サイズの上限 */
    height: auto;
}

/* グローバルネットワークエリア */
.global-network {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 245%;

}

.global-network h3 {
    font-size: 2.8rem;
    font-weight: normal;
    color: #d70c18;
    margin-bottom: 0;
}

.global-network_sub {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.global-network img {
    position: absolute;
    top: 38%;
    left: 0;
    z-index: -2;
    transform-origin: center top;
}

.info-item .info_ttl {
    font-size: 1.8rem;
    color: #000;
    font-weight: bold;
    margin: 0;
    text-align: left;
}

.info-item .tx_red {
    color: #D70C18;
}

.info-item .info_tx {
    display: flex;
    align-items: flex-end;
    font-size: 2.5rem;
    font-weight: bold;
    color: #D70C18;
    margin-top: 5px;

}

/* セクション全体 */
#sec2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
    max-width: 1200px;
    min-width: 1000px;
    gap: 40px;

}

/* コンテンツブロック */
.content-block {
    position: absolute;
    padding: 0px;
    text-align: left;
    width: 52%;
    margin-bottom: 50px;
}

.content-block img {
    height: 40px;
    width: auto;
}

.block2 img {
    height: 70px;
    width: auto;
}

/* 🔹 それぞれのブロックの位置（SVGの曲線に沿うよう調整） */
.block1 {
    top: 5%;
    right: 0%;
}

.block2 {
    top: 24%;
    left: 0;
}

.block3 {
    top: 46%;
    right: 0;
}

.block4 {
    top: 66%;
    left: 0;
}

.block5 {
    top: 82%;
    right: 25%;
}

/* 各ブロックのスタイル */
.content-block h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    margin-top: 10px;
}

.content-block p {
    margin-top: 0;
    font-size: 2.4rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}

.content-block .last_message {
    font-size: 3.2rem;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

/* タグ */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
}

.item_colum {
    flex-direction: column;
}

.tags span {
    background-image: url(/asset/img/value/bg_txarea.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 5px 10px;
    font-size: 1.2rem;
    width: 49%;
    text-align: center;
}


@media screen and (max-width: 1024px) {

    svg {
        width: 100%;
        max-width: 1000px;
        min-width: 800px;
    }

    .svg-container {
        width: 100%;
        max-width: 1000px;
        min-width: 800px;
    }


    .info-item img {
        max-height: 45px;
    }

    .section-content h2 {
        line-height: 1.3;
    }

    .info-item .info_tx {
        font-size: 2.2rem;
    }

    .info-item .info_ttl {
        font-size: 1.6rem;
    }

    #sec2 {
        max-width: 1000px;
        min-width: 800px;
    }

    .tree-section {
        max-width: 1000px;
        min-width: 800px;
    }


    .section-content .top_tx_box2 {
        padding-left: 18%;
        margin-bottom: 13px;
        margin-top: 1rem;
    }

    .section-content {
        top: 16%;

    }

    .section-content p {
        line-height: 1.4;
        margin-bottom: 20px;
    }


    .info-item1-1 {
        top: 108%;
        left: 17%;
    }

    .info-item1-2 {
        right: 7%;
        top: 133%;
    }

    .info-item1-3 {
        top: 193%;
        right: 13%;
    }

    .global-network {
        width: 90%;
        top: 217%;
    }


    .global-network img {
        top: 65%;
    }

    .content-block {
        position: absolute;
        padding: 0px;
        text-align: left;
        width: 50%;
        margin-bottom: 50px;
    }


    .content-block {
        position: absolute;
        padding: 0px;
        text-align: left;
        width: 50%;
        margin-bottom: 50px;
    }

    .block1 {
        top: 5%;
        right: 3%;
    }

    .block2 {
        top: 24%;
        left: 5%;
    }

    .block4 {
        top: 66%;
        left: 8%;
    }

    .block5 {
        top: 85%;
        right: 42%;
    }


}

@media screen and (max-width: 860px) {
    .section-content p {
        margin-top: 0%;
        font-size: 1.5rem;

    }

    .section-content h2 {
        line-height: 1.2;
        margin-bottom: 0;
    }

    .section-content .top_tx_box2 {
        padding-left: 16%;
    }

    .info-item img {
        max-height: 40px;
    }

    .info-item .info_ttl {
        font-size: 1.4rem;
    }

    .info-item .info_tx {
        font-size: 1.8rem;
    }

    .info-item1-1 {
        top: 108%;
    }

    .info-item1-2 {
        top: 132%;
        right: 5%;
    }

    .info-item1-3 {
        top: 192%;
    }

    .global-network {
        top: 215%;
    }

    .content-block p {
        font-size: 2rem;
    }

    .content-block h3 {
        margin-bottom: 5px;
    }

    .tags span {
        padding: 1px 3px;
        font-size: 1.2rem;
        width: 49%;
    }

    .content-block .last_message {
        font-size: 2.8rem;
    }


}

@media screen and (max-width: 768px) {
    #sec2 {
        width: 100%;
        max-width: 768px;
        min-width: 300px;
    }

    .svg-container {
        width: 100%;
        max-width: 768px;
        min-width: 300px;
    }

    .tree-section {
        width: 100%;
        max-width: 768px;
        min-width: 300px;
    }

    svg {
        width: 100%;
        max-width: 768px;
        min-width: 300px;
    }

    .section-content .top_tx_box {
        margin-top: 10%;
        margin-bottom: 0;
    }

    .section-content .top_tx_box2 {
        margin-top: 1rem;
        margin-bottom: 80px;
    }

    .section-content {
        top: 20%;
        max-width: 800px;
        min-width: 300px;
    }

    .section-content .top_tx_box2 {
        padding-left: 30%;
    }

    .info-item .info_ttl {
        font-size: 1.5rem;
    }

    .svg-container {
        min-width: auto;
    }

    .info-item .info_tx {
        font-size: 2rem;
    }

    .info-item1-1 {
        top: 126%;
        left: 8%;
    }

    .info-item1-2 {
        right: 4%;
        top: 137%;
    }

    .info-item1-3 {
        top: 176%;
        right: 11%;
    }

    .global-network {
        top: 190%;
    }

    .global-network img {
        top: 80%;
    }

    .content-block h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .content-block p {
        font-size: 1.5rem;
    }

    .tags span {
        font-size: 1rem;
        padding: 1px 5px;
    }

    .block1 {
        top: 19%;
        right: 7%;
    }

    .block2 {
        top: 32%;
        left: 5%;
    }

    .block3 {
        top: 53%;
        right: 25px;
    }

    .block4 {
        top: 69%;
        left: 5%;
    }

    .block5 {
        top: 83%;
        right: 30%;
    }


    .content-block .last_message {
        font-size: 2.5rem;
    }

    #sec2 {
        min-height: auto;
        max-height: fit-content;
    }

    svg {
        width: 100%;
        height: auto;

    }

    .section-content p {
        font-size: 1.8rem;
    }


}


@media screen and (max-width: 660px) {

    .section-content {
        top: 18%;
    }

    .info-item .info_ttl {
        font-size: 1.3rem;
    }

    .info-item .info_tx {
        font-size: 1.6rem;
    }

    .section-content .top_tx_box2 {
        padding-left: 18%;
    }

    .info-item1-1 {
        top: 116%;
        left: 9%;

    }

    .info-item1-2 {
        top: 124%;
        right: 2%;

    }

    .info-item1-3 {
        top: 157%;
    }


    .global-network {
        top: 170%;
    }

    .global-network h3 {
        font-size: 2.5rem;
    }

    .global-network_sub {
        font-size: 1.8rem;
    }

    .block5 {
        top: 85%;
        right: 45%;
    }
}

@media screen and (max-width: 630px) {
    .section-content h2 {
        font-size: 2.3rem;
    }

    .section-content .top_tx_box {
        font-size: 1.5rem;
        margin-top: 100px;
    }

    .section-content .top_tx_box2 {
        font-size: 1.5rem;
    }

    .info-item .info_ttl {
        font-size: 1.2rem;
        font-weight: normal;
    }

    .info-item img {
        height: 38px;
    }

    .info-item1-1 {
        top: 137%;
        left: 12%;
    }

    .info-item1-2 {
        top: 145%;
        right: 13%;
    }

    .info-item1-3 {
        top: 186%;
        right: 23%;
    }

    .global-network h3 {
        font-size: 1.5rem;
        text-align-last: left;
    }

    .global-network_sub {
        font-size: 1.5rem;
        text-align-last: left;
    }

    .global-network {
        top: 204%;
    }

    .global-network img {
        top: 45%;
    }

    .content-block h3 {
        font-size: 1rem;
    }

    .content-block p {
        font-size: 0.9rem;
    }

    .content-block img {
        height: 25px;
    }

    .block2 img {
        height: 50px;
    }

    .tags span {
        font-size: 0.8rem;
        font-weight: normal;
    }

    .content-block .last_message {
        font-size: 1.5rem;
        font-weight: normal;
    }

}

@media screen and (max-width: 600px) {
    .info-item1-1 {
        top: 132%;
        left: 12%;
    }

    .info-item1-2 {
        top: 139%;
        right: 12%;
    }

    .info-item1-3 {
        top: 178%;
        right: 22%;
    }

    .global-network {
        top: 198%;
    }

    .global-network img {
        top: 45%;
        transform: scale(0.8);
    }




}

@media screen and (max-width: 550px) {

    .info-item1-1 {
        top: 121%;
        left: 11%;
    }

    .info-item1-2 {
        top: 127%;
        right: 10%;
    }

    .info-item1-3 {
        top: 163%;
        right: 21%;
    }

    .global-network {
        top: 180%;
    }




}

@media screen and (max-width: 520px) {

    .info-item1-1 {
        top: 111%;
        left: 9%;
    }

    .info-item1-2 {
        top: 118%;
        right: 8%;
    }

    .info-item1-3 {
        top: 153%;
        right: 21%;
    }

    .global-network {
        top: 169%;
    }
}

@media screen and (max-width: 490px) {

    .section-content .top_tx_box {
        margin-top: 13%;
        padding-left: 0;
    }

    .section-content .top_tx_box2 {
        margin-bottom: 5%;
        padding-left: 0;
    }

    .info-item .info_tx {
        font-size: 1.5rem;
    }

    .info-item1-1 {
        top: 125%;
        left: 10%;
    }

    .info-item1-2 {
        top: 135%;
    }

    .info-item1-3 {
        top: 170%;
    }

    .global-network {
        top: 191%;
    }

    .content-block h3 {
        margin-top: 2px;
        margin-bottom: 4px;
    }

    .tags span {
        width: 70%;
    }

    .block1 {
        top: 18%;
        right: 3%;
    }





}





@media screen and (max-width: 450px) {



    .section-content {
        padding: 10px;
    }

    .section-content .top_tx_box {
        margin-top: 20px;
    }

    .section-content .top_tx_box2 {
        margin-bottom: 15px;
    }

    .value .content-wrapper {
        padding: 0px 10px;
    }

    .section-content h2 {
        font-size: 2.3rem;
        margin-bottom: 35px;
    }

    .section-content p {
        font-size: 1.2rem;
    }

    .section-content .btn {
        font-size: 1.5rem;
        padding: 5px 20px;
        font-weight: normal;
    }

    .info-item .info_ttl {
        font-size: 1.2rem;
        font-weight: normal;
    }

    .info-item .info_tx {
        font-size: 0.9rem;
    }

    .info-item img {
        height: 24px;
    }

    .content-block .last_message {
        font-size: 1.5rem;
        font-weight: normal;
    }

    .content-block h3 {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .content-block p {
        font-size: 0.9rem;
        font-weight: normal;
    }

    .tags span {
        font-size: 0.5rem;
        width: 48%;
        padding: 1px;
        gap: 3px;

    }

    .block5 {
        top: 80%;
        right: 25%;
    }

    .top_btn_wrp .btn {
        font-size: 1.5rem;
    }



    .section-content p {
        margin-top: 0;
        line-height: 1.2;

    }

    .info-item1-1 {
        top: 110%;
    }

    .info-item1-2 {
        top: 116%;
    }

    .info-item1-3 {
        top: 149%;
        right: 5%;
    }

    .global-network h3 {
        font-size: 1.3rem;
    }

    .global-network {
        text-align: left;
        top: 167%;
    }

    .global-network_sub {
        text-align: left;
        font-size: 1.3rem;
    }

    .global-network img {
        width: 75%;
        left: 36px;
        top: 65%;
        z-index: -2;
    }

    .block5 {
        top: 86%;
        right: 36%;
    }


}

@media screen and (max-width: 440px) {

    .global-network img {
        transform: scale(1.3);
    }
}

@media screen and (max-width: 420px) {

    .section-content .top_tx_box {
        font-size: 1.2rem;
    }

    .section-content .top_tx_box2 {
        font-size: 1.2rem;
    }

    .info-item1-1 {
        top: 115%;
        left: 9%;
    }

    .info-item1-2 {
        top: 122%;
        right: 5%;
    }

    .info-item1-3 {
        top: 158%;
        right: 3%;
    }

    .global-network {
        text-align: left;
        top: 176%;
    }

    .block5 {
        top: 86%;
        right: 32%;
    }

    .section-content h2 {
        margin-bottom: 20px;
    }



}

@media screen and (max-width: 400px) {
    .section-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .section-content .top_tx_box {
        margin-top: 20px;

    }


    .section-content .top_tx_box2 {
        font-size: 1.2rem;
    }

    .info-item .info_ttl {
        font-size: 1rem;


    }

    .info-item1-1 {
        top: 130%;
    }

    .info-item1-2 {
        right: 53px;
        top: 136%;
    }

    .info-item1-3 {
        top: 176%;
    }

    .global-network h3 {
        font-size: 1.2rem;

    }

    .global-network_sub {
        font-size: 1rem;
    }

    .global-network {
        top: 194%;
    }

    .content-block img {
        height: 18px;
    }

    .content-block h3 {
        margin-top: 5px;
    }

    .block2 img {
        height: 30px;
    }

    .block5 {
        right: 40%;
    }

    .block5 {
        top: 86%;
    }

}

@media screen and (max-width: 375px) {

    .section-content {
        top: 17%;
    }

    .info-item img {
        height: 20px;
    }

    .info-item1-1 {
        top: 109%;
        left: 9%;
    }

    .content-block img {
        height: 15px;
    }

    .block2 img {
        height: 27px;
    }

    .info-item1-2 {
        top: 116%;
        right: 9%;
    }

    .info-item1-3 {
        top: 149%;
        right: 5%;
    }

    .global-network {
        top: 165%;
    }

    .global-network img {
        top: 30%;
    }

    .content-block p {
        margin-bottom: 5px;
    }

    .block5 {
        top: 85%;
        right: 49%;
    }

}