@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}
.wcm {
    max-width: 1180px;
    width: 95%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .wcm {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
}
.l-sec{
    padding: 50px 0;
}
@media screen and (max-width: 767px) {
    .l-sec {
        padding: 40px 0;
    }
}
.u-flex {
    display: flex;
}

@media screen and (max-width: 767px) {
    .u-flex {
        display: block;
    }
}
.align-center{
    align-items: center;
}
.u-pc{
    display: block;
}
@media screen and (max-width: 767px) {
    .u-pc {
        display: none;
    }
}
.u-sp{
    display: none;
}
@media screen and (max-width: 767px) {
    .u-sp {
        display: block;
    }
}
.u-center{
    text-align: center;
}
.u-uppercase{
    text-transform: uppercase;
}
.u-red{
    color: #fa0303;
}
.u-blue{
    color: #101164;
}
.c-ttl{
    font-weight: bold;
    font-size: 35px;
    border: 4px solid #232ab9;
    background: linear-gradient(45deg, #1a1054, #255ff1);
    padding: 6px 30px;
    color: #fff
}
@media screen and (max-width: 1080px) {
    .c-ttl {
        font-size: 28px;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl {
        font-size: 20px;
        padding: 4px 10px;
        letter-spacing: 0;
        border-width: 2px;
    }
}

.c-txt-base{
    font-size: 18px;
    line-height: 1.65;
}
@media screen and (max-width: 767px) {
    .c-txt-base {
        font-size: 16px;
        line-height: 1.5;
    }
}
.c-txt-base p+p{
    margin-top: 15px;
}
@media screen and (max-width: 767px) {
    .c-txt-base p+p {
        margin-top: 10px;
    }
}
.c-btn {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 24px;
    background: #003366;
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    padding: 10px 10px 15px;
    border: 4px solid #232ab9;
    font-size: 30px;
    transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
    .c-btn {
        max-width: 280px;
        font-size: 20px;
        padding: 5px 10px 8px;
        border-radius: 10px;
        border-width: 2px;
    }
}
/* hover effect */
.c-btn:hover {
    color: #fff;
    background: #0055aa;
    border-color: #1a1fd1;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.u-txt-linear{
    font-size: 18px;
    background: linear-gradient(45deg, #1a1054, #255ff1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
    .u-txt-linear {
        font-size: 16px;
    }
}

.u-mb10{
    margin-bottom: 10px;
}
.u-mb20{
    margin-bottom: 20px;
}
.u-mb30{
    margin-bottom: 30px;
}
.u-mb40{
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .u-mb10 {
        margin-bottom: 5px;
    }

    .u-mb20 {
        margin-bottom: 10px;
    }

    .u-mb30 {
        margin-bottom: 15px;
    }

    .u-mb40 {
        margin-bottom: 20px;
    }
}
.u-line{
    text-decoration: underline;
}
.txt-red{
    color: #fa0303;
}
.txt-blue {
    color: #232ab9;
}
.txt-green{
    color: #148159;
}

.c-openAccount {
    font-size: 25px;
}

@media screen and (max-width: 767px) {
    .c-openAccount {
        font-size: 17px;
    }
}
.c-openAccount .wcm{
    padding: 0 50px 40px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .c-openAccount .wcm {
        padding: 150px 0 20px;
    }
}
.c-openAccount .wcm:before{
    content: "";
    width: 100px;
    height: 150px;
    background: url(https://hiroseag.com/wp/staging/wp-content/uploads/2026/03/Hirose_kun13.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 2%;
    left: 15%;
}
@media screen and (max-width: 767px) {
    .c-openAccount .wcm:before {
        width: 80px;
        height: 130px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.c-openAccount__btn {
    display: block;
    text-decoration: underline;
    max-width: 360px;
    margin: 10px auto;
    background: #003366;
    border: 3px solid #311b92;
    color: #fff;
    padding: 8px 10px 14px;
    font-size: 26px;
    font-weight: bold;
    border-radius: 15px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .c-openAccount__btn {
        width: 90%;
        margin: 10px auto;
        max-width: 280px;
        font-size: 20px;
        border-radius: 10px;
    }
}

.c-openAccount__btn:hover {
    background: #0066ff;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.c-trade{
    background: #f1f8ff;
    border-radius: 21px;
    border: 2px solid #003366;
    padding: 30px 50px 20px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .c-trade {
        padding: 30px 15px;
        margin-top: 35px;
    }
}
.c-trade__head{
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
    top: -23px;
    font-weight: bold;
    font-size: 30px;
    color: #fff;
    padding: 4px 20px;
    background: #222AB9;
}
@media screen and (max-width: 950px) {
    .c-trade__head {
        font-size: 24px;
    }
}
@media screen and (max-width: 767px) {
    .c-trade__head {
        font-size: 19px;
        white-space: unset;
        width: 90%;
        max-width: 400px;
        top: -15px;
        padding: 2px 16px;
    }
}
@media screen and (max-width: 450px) {
    .c-trade__head {
        top: -30px;
        max-width: 250px;
    }
}
.c-trade__logo{
    position: absolute;
    top: 18px;
    left: 10px;
    max-width: 180px;
    width: 100%;
}
@media screen and (max-width: 1080px) {
    .c-trade__logo {
        max-width: 150px;
        top: 24px;
    }
}
@media screen and (max-width: 767px) {
    .c-trade__logo {
        max-width: 120px;
        top: 35px;
        left: 14px;
    }
}
@media screen and (max-width: 450px) {
    .c-trade__logo {
        max-width: 100px;
        top: 46px;
    }
}
.c-trade__logo img{
    display: block;
    width: 100%;
    mix-blend-mode: multiply;
}
.c-trade__relationship{
    margin: 50px 0 20px;
}
@media screen and (max-width: 450px) {
    .c-trade__relationship {
        margin-top: 60px;
    }
}

.c-trade__relationship .relation-item{
    width: 45%;
}
@media screen and (max-width: 767px) {
    .c-trade__relationship .relation-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
.c-trade__relationship .relation-item__image img{
    display: block;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .c-trade__relationship .relation-item__image img {
        max-width: 170px;
    }
}
.c-trade__relationship .relation-arrow{
    width: 10%;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .c-trade__relationship .relation-arrow {
        width: 50px;
        margin: 10px auto;
        transform: rotate(90deg);
    }
    .icon-subtract{
        transform: rotate(-90deg);
    }
}
 .c-trade__relationship .relation-arrow img {
     display: block;
     width: 100%;
 }
.c-trade__relationship .relation-item .relation-item__head {
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 0 auto 10px;
    background: #2a7abd;
    color: #fff;
    padding: 4px 10px;
}
@media screen and (max-width: 767px) {
    .c-trade__relationship .relation-item .relation-item__head {
        max-width: 130px;
        padding: 2px 5px;
    }
}
.c-trade__relationship .relation-item .relation-item__head.bg-red{
    background: #bf1700;
}

.c-trade.-style1 .c-trade__relationship .relation-item{
    border-radius: 13px;
    background: #cbdef6;
    padding: 5px;
}
@media screen and (max-width: 767px) {
    .c-trade.-style1 .c-trade__relationship .relation-item {
        padding: 5px 10px;
    }
}
.c-trade.-style1 .c-trade__relationship .relation-item:last-of-type{
    background: #fff;
}

.c-trade.-style1 .c-trade__relationship .relation-item:last-of-type .relation-item__image img {
    max-width: 230px;
}
@media screen and (max-width: 767px) {
    .c-trade.-style1 .c-trade__relationship .relation-item:last-of-type .relation-item__image img {
        max-width: 170px;
    }
}
.list01{
    padding: 0 0 0 30px;
    margin: 0 !important;
}
.list01 li{
    margin-left: 0;
    margin-right: 0;
}
.list01 li.u-mb20{
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .list01 {
        padding-left: 23px;
    }
    .list01 li.u-mb20 {
        margin-bottom: 10px;
    }
}
.net-model{
    max-width: 700px;
    margin: 20px auto;
}
@media screen and (max-width: 767px) {
    .net-model {
        margin-bottom: 30px;
    }
    .net-model:last-of-type{
        margin-bottom: 15px
    }
    .net-model:last-of-type .relation-item:last-of-type{
        margin-top: -5px;
    }
}
p.c-txt-base.relation-item__txt.u-red{
    margin-bottom: 0;
}
.net-model .relation-item{
    width: 40%;
    position: relative;
}
@media screen and (max-width: 767px) {
    .net-model .relation-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 380px) {
    .net-model .relation-item {
        max-width: 220px;
    }
}
.net-model .relation-item__image img{
    max-width: 200px;
}
@media screen and (max-width: 767px) {
    .net-model .relation-item__image img {
        max-width: 100%;
    }
}
/* .net-model .relation-item:last-child .relation-item__image img {
    margin-top: 35px;
} */
.net-model .relation-arrow{
    width: 20%;
    padding: 0 4%;
    flex-direction: column;
}
@media screen and (max-width: 767px) {
    .net-model .relation-arrow {
        padding: 0;
    }
    .txt-trade{
        text-align: left;
    }
}
.net-model .relation-arrow p{
    margin-bottom: 0;
}
.net-model .relation-arrow img{
    display: block;
    width: 100%;
}
.net-model .relation-item:last-child .relation-item__image img{
    max-width: 240px;
}
/* .net-model .relation-item__txt{
    position: absolute;
    left: 0;
} */

/* Main CSS */
.p-kpi{
    color: #000;
}

.p-kpiMv{
    padding: 100px 0;
    background: url(https://hiroseag.com/wp/staging/wp-content/uploads/2026/03/mv-2-scaled.png) no-repeat right center;
    background-size: cover;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-kpiMv {
        padding: 50px 0 70px;
    }
}
.p-kpiMv .wcm{
    position: relative;
    z-index: 9;
}
.p-kpiMv:after{
    content: "";
    width: 30%;
    height: 77%;
    background: url("https://hiroseag.com/wp/staging/wp-content/uploads/2026/03/mv-kpi.png") no-repeat center;
    background-size: contain;
    position: absolute;
    right: 10px;
    bottom: 15%;
}
@media screen and (max-width: 1024px) {
    .p-kpiMv:after {
        bottom: 0;
        right: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-kpiMv:after {
        width: 30%;
        height: 45%;
        right: 10px;
        bottom: 0;
    }
    .p-kpiMv .c-btn{
        max-width: 200px;
        margin: 0;
        font-size: 16px;
    }
}
@media screen and (max-width: 380px) {
    .p-kpiMv:after {
        width: 40%;
        height: 35%;
    }
}
.p-kpiMv-inner{
	width: 69%;
}
@media screen and (max-width: 767px) {
	.p-kpiMv-inner{
		width: 100%;
	}
}
.p-kpiMv__head{
    font-size: 32px;
    line-height: 1.5;
    color: #311b92;
}
@media screen and (max-width: 767px) {
    .p-kpiMv__head {
        font-size: 22px;
    }
}
.p-kpiValue-box{
    background: #e7f2ff;
    padding: 20px 80px;
    margin-bottom: 60px;
    border: 3px dotted #003366;
    position: relative;
}
@media screen and (max-width: 1024px) {
    .p-kpiValue-box {
        padding: 20px 40px;
    }
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box {
        padding: 10px 20px;
        margin-bottom: 40px;
    }
}
.p-kpiValue-box .number{
    background: #222AB9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    left: -30px;
    top: -30px;
}
@media screen and (max-width: 1024px) {
    .p-kpiValue-box .number {
        width: 80px;
        height: 80px;
        left: -20px;
    }
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box .number {
        width: 40px;
        height: 40px;
        left: -16px;
        top: -16px;
        font-size: 30px;
    }
}
.p-kpiValue-box__ttl{
    font-size: 30px;
    text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
    .p-kpiValue-box__ttl {
        font-size: 25px;
    }
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box__ttl {
        font-size: 20px;
    }
}
.icon-money,
.icon-scale{
    position: relative;
}
@media screen and (max-width: 767px) {
    .icon-money,
    .icon-scale {
        padding-top: 65px;
    }
}
.icon-money:before{
    content: "";
    width: 60px;
    height: 65px;
    background: url(https://hiroseag.com/wp/staging/wp-content/uploads/2026/03/icon-plant.png) no-repeat center;
    background-size: contain; 
    position: absolute;
    left: -65px;
    top: -8px;
}
@media screen and (max-width: 1024px) {
    .icon-money:before {
        width: 50px;
        height: 50px;
        left: -44px;
    }
}
@media screen and (max-width: 767px) {
    .icon-money:before {
        width: 45px;
        height: 55px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}
.icon-scale:before {
    content: "";
    width: 70px;
    height: 88px;
    background: url(https://hiroseag.com/wp/staging/wp-content/uploads/2026/03/icon-scale.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: -75px;
    top: 0;
}
@media screen and (max-width: 1024px) {
    .icon-scale:before {
        width: 50px;
        height: 55px;
        left: -46px;
    }
}
@media screen and (max-width: 767px) {
    .icon-scale:before {
        width: 60px;
        height: 60px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}
.p-kpiValue-box__flow{
    margin: 0 -30px;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box__flow {
        margin: 0;
    }
}
.p-kpiValue-box__flow .flow-item{
    width: 25%;
    padding: 0 25px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box__flow .flow-item {
        width: 100%;
        padding: 0 0 60px;
        margin: 0 auto;
    }
}

.p-kpiValue-box__flow .flow-item:after{
    content: "";
    width: 60px;
    height: 40px;
    background: url(https://hiroseag.com/wp/staging/wp-content/uploads/2026/03/arrow-next.png) no-repeat center;
    background-size: contain;
    position: absolute;
    right: -9%;
    top: 32%;
}
@media screen and (max-width: 1150px) {
    .p-kpiValue-box__flow .flow-item:after {
        width: 50px;
        height: 30px;
        right: -25px;
    }
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box__flow .flow-item:after {
        width: 40px;
        right: unset;
        bottom: 14px;
        top: unset;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
}
.p-kpiValue-box__flow .flow-item:last-of-type:after{
    display: none;
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box__flow .flow-item:last-of-type{
        padding-bottom: 10px;
    }
}
.p-kpiValue-box__flow .flow-item img{
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 0 auto 10px;
}
@media screen and (max-width: 1150px) {
    .p-kpiValue-box__flow .flow-item img {
        max-width: 150px;
    }
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box__flow .flow-item img {
        margin: 0 auto;
        max-width: 200px;
    }
}
@media screen and (max-width: 380px) {
    .p-kpiValue-box__flow .flow-item img {
        max-width: 150px;
    }
}
.p-kpiValue-box__flow .flow-item .flow-item__txt{
    font-size: 16px;
}
.p-kpiValue-box.-style2{
    padding: 10px;
}
.p-kpiValue-box__wrap {
    padding: 0 70px;
}
@media screen and (max-width: 1024px) {
    .p-kpiValue-box__wrap {
        padding: 0 40px;
    }
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box__wrap {
        padding: 0 20px;
    }
}
.p-kpiValue-box .value-effect img{
    display: block;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box .value-effect img {
        min-width: 700px;
        margin: auto;
    }
}
@media screen and (max-width: 380px) {
    .p-kpiValue-box .value-effect img {
        min-width: 600px;
    }
}
.p-kpiValue-box .value-gallery{
    justify-content: space-between;
    margin-top: 30px;
    padding: 0 30px;
}
@media screen and (max-width: 1024px) {
    .p-kpiValue-box .value-gallery {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
}
@media screen and (max-width: 450px) {
    .p-kpiValue-box .value-gallery {
    }
}
.p-kpiValue-box .value-gallery .value-gallery__image{
    width: 33.33%;
    max-width: 200px;
}
@media screen and (max-width: 1024px) {
    .p-kpiValue-box .value-gallery .value-gallery__image {
        width: 50%;
        margin: 0 20px;
    }
}
@media screen and (max-width: 450px) {
    .p-kpiValue-box .value-gallery .value-gallery__image {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
}
.p-kpiValue-box .value-gallery .value-gallery__image img{
    display: block;
    width: auto;
    height: 150px;
}
@media screen and (max-width: 1024px) {
    .p-kpiValue-box .value-gallery .value-gallery__image img {
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width: 767px) {
    .p-kpiValue-box .value-gallery .value-gallery__image img {
        margin: 10px auto;
    }
}
@media screen and (max-width: 450px) {
    .p-kpiValue-box .value-gallery .value-gallery__image img {
        height: 100px;
        width: auto;
    }
}
.p-kpiValue__ad{
    margin-top: 80px;
    align-items: center;
    padding: 8px 10px;
    background: #e7f2ff;
    border: 3px solid #311b92;
    border-radius: 20px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-kpiValue__ad {
        margin-top: 60px;
    }
}
.p-kpiValue__ad:before{
    content: "";
    width: 40px;
    height: 70px;
    background: url("https://hiroseag.com/wp/staging/wp-content/uploads/2026/03/icon-plant.png") no-repeat center;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: -65px;
}
@media screen and (max-width: 767px) {
    .p-kpiValue__ad:before {
        width: 30px;
        height: 50px;
        top: -49px;
    }
}
.p-kpiValue__ad .image{
    width: 70px;
}
@media screen and (max-width: 767px) {
    .p-kpiValue__ad .image {
        margin: 0 auto;
    }
}
@media screen and (max-width: 480px) {
    .p-kpiValue__ad .image {
        width: 50px;
    }
}
.p-kpiValue__ad .image img{
    display: block;
    width: 100%;
}
.p-kpiValue__ad .c-txt-base{
    width: calc(100% - 70px);
}
@media screen and (max-width: 767px) {
    .p-kpiValue__ad .c-txt-base {
        width: 100%;
        margin-top: 14px;
    }
}

.p-kpiMind{

}
.p-kpiMind__head{
    max-width: 692px;
    margin: 0 auto 20px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-kpiMind__head {
        width: 90%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 450px) {
    .p-kpiMind__head {
        padding-top: 20px;
    }
}
.p-kpiMind__head:before{
    content: "";
    width: 200px;
    height: 200px;
    background: url(https://hiroseag.com/wp/staging/wp-content/uploads/2026/03/icon-doc.png) no-repeat center;
    background-size: contain;
    position: absolute;
    right: -30%;
    top: -10%;
}
@media screen and (max-width: 1150px) {
    .p-kpiMind__head:before {
        width: 120px;
        height: 120px;
        right: -15%;
        top: -5%;
    }
}
@media screen and (max-width: 950px) {
    .p-kpiMind__head:before {
        width: 100px;
        height: 100px;
        right: -5%;
        top: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-kpiMind__head:before {
        width: 80px;
        height: 80px;
    }
}
@media screen and (max-width: 580px) {
    .p-kpiMind__head:before {
        width: 60px;
        height: 60px;
    }
}

.p-kpiMind__head img{
    display: block;
    width: 100%;
}
.p-kpiMind__txt{
    max-width: 565px;
    margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
    .p-kpiMind__txt {
        margin: 10px auto;
    }
}
.p-kpiMind__cont .mind-item{
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 18px;
    background: #E8F3FF;
}
@media screen and (max-width: 767px) {
    .p-kpiMind__cont{
        display: flex;
        flex-wrap: wrap;
    }
    .p-kpiMind__cont .mind-item {
        width: 50%;
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
    .p-kpiMind__cont {
        display: block;
    }

    .p-kpiMind__cont .mind-item {
        width: 100%;
    }
}
.p-kpiMind__cont .mind-item:nth-child(2){
    background: #CCDEF6;
}
.p-kpiMind__cont .mind-item:nth-child(3) {
    background: #BCD2EF;
}
.p-kpiMind__cont .mind-item:last-of-type {
    background: #90B2DD;
}
.p-kpiMind__cont .mind-item img{
    display: block;
    width: auto;
    height: 100px;
    margin: 0 auto 5px;
}
@media screen and (max-width: 767px) {
    .p-kpiMind__cont .mind-item img {
        height: 80px;
    }
}
@media screen and (max-width: 480px) {
    .p-kpiMind__cont .mind-item img {
        height: 60px;
    }
}
.p-kpiMind__subtxt{
    max-width: 850px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .p-kpiMind__subtxt {
        margin-top: 15px;
    }
}
.p-kpiMind__subtxt p.u-txt-linear{
    font-size: 21px;
}
@media screen and (max-width: 767px) {
    .p-kpiMind__subtxt p.u-txt-linear {
        font-size: 17px;
    }
}