/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #060f31;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background: #f4f1e5;
    position: relative;

}

.box-limit {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 196px;
    position: absolute;
    margin-top: 0;
    top: 50%;
    transform: translate(0, -50%);
    left: 5%;
    z-index: 99999;
}

/* Utility classes */
.text-center {
    text-align: center;
}

/* Header */
header {
    position: fixed;
    margin-top: 38px;
    left: 0;
    width: 100%;
    z-index: 999999;
}
.page .header{
    background: #ffffff;
    margin-top: 0;
}
/* Header にトランジション追加  */
header {
    /* 既存のスタイル */
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.logo {
    /* 既存のスタイル */
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



.header-container {
    width: 68.5%;
    max-width: 800px;
    margin-left: auto;
    right: 5%;
    position: relative;
    padding: 30px 0;
    background: #060f31;
}

.page .header .header-container{
    background: none;
}

.top-nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0 4%;
}

.top-nav-item {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;

}

.top-nav-item a .en {
    display: block;
    font-family: 'acumin-variable', sans-serif;
    font-variation-settings: "slnt"0, "wdth"90, "wght"700;
    font-size: 12px;
    color: #ffffff;
}
.page .header .header-container .top-nav-item a .en{
    color: #333333;
}
.top-nav-item a .jp {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;

    color: rgba(255, 255, 255, 0.7);
    margin-bottom: -1px;
}
.page .header .header-container .top-nav-item a .jp{
    color: #060f31;
}
.fv-container {
    position: relative;
    width: 100%;
}
#fv-video{
    width: 100%;
}
.fv {
    width: 100%;
    height: 56.4vw;
    background: #f4f1e5;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-container {
    width: 44.6%;
    max-width: 610px;
    margin: 0 auto;
    text-align: left;
}

.hero-ttl {
    margin-bottom: 30px;
    position: relative;

}

.icon {
    position: relative;
}

.icon:before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(img/icon.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
}

.hero-ttl .jp {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-ttl .en {
    font-family: 'roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #808080;
    display: block;
}

.hero p {
    text-align: justify;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.85;
    display: block;
}

.btn {
    position: relative;
    overflow: hidden;
    width: 260px;
    margin: 70px auto 0;
    text-align: center;
    padding: 20px 0;
    display: block;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;

    transition: all 0.3s ease;
    border-radius: 30px;
    text-decoration: none;
    /* 文字色の変化用のtransition */
    transition-property: all !important;
    background: linear-gradient(90deg, #060F31 0%, #060F31 25%, #060F31 50%, #0e89e2 51%, #e31d16 100%);
    background-position: 0% 50%;
    background-size: 210% auto;
}


.btn:hover { 
    background-position: 100% 51%;
    transform: scale(1);
}

/* hover時の背景色を擬似要素で作成 */

/* ボタンテキストを前面に */
.btn span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}



/* Sections */
.section {

    position: relative;
}

.eff01 {
    width: 32.5%;
    max-width: 444px;
    position: absolute;
    left: -7%;
    top: -3%;
}

.eff02 {
    width: 32.5%;
    max-width: 444px;
    position: absolute;
    right: -7%;
    top: 34%;
}

.eff03 {
    width: 26.2%;
    max-width: 358px;
    position: absolute;
    left: -12%;
    top: -34%;
}

.eff04 {
    width: 32.5%;
    max-width: 444px;
    position: absolute;
    right: -11%;
    top: -98%;
}

.eff05 {
    width: 32.5%;
    max-width: 444px;
    position: absolute;
    left: -11%;
    top: -3%;
}

.eff06 {
    width: 25.6%;
    max-width: 356px;
    position: absolute;
    right: -9%;
    top: -65%;
}

.section-ttl {
    text-align: left;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-ttl .jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #e31d16;
    display: inline-block;
    margin-left: 37px;
    margin-bottom: 8px;
}

.section-ttl .en {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    width: 80.5%;
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: left;
}

.section-container {
    width: 80.5%;
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: left;
}


/* Works Section */
#works {
    margin-bottom: 120px;
}
#works .p-eff04{
    top: 1.5%;
    left: -2%;
    z-index: 0;
        width: 13.5%;
}
#works .p-eff06{
    top:40%;
   right: -2%;
    z-index: 0;
        width: 13.5%;
}
.works-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.work-item {
    width: 32.1%;
    margin-bottom: 105px;
}

.work-item:nth-last-child(1),
.work-item:nth-last-child(2),
.work-item:nth-last-child(3) {
    margin-bottom: 0;
}

.work-img {
    width: 100%;
    position: relative;
}

.scroll-img {
    aspect-ratio: 16 / 11;
    /* 16:9の比率 */
    width: 78%;
    position: absolute;
    top: 5%;
    left: 5%;
    overflow: auto;
    /* スクロール有効 */
}

.work-img img {
    width: 100%;
    height: auto;
    display: block;
}

.work-content {
    margin-top: 30px;
}

.work-ttl {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.work-txt {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.tag {
    display: inline-block;
    padding: 2px 15px;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    color: white;
    border-radius: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    margin-right: 5px;
    margin-bottom: 7px;
}

/* Service Section */
#service {
    margin-bottom: 120px;
    padding: 107px 0 70px;
    width: 100%;
    max-width: unset;
    margin: 0 auto 95px;
    position: relative;
}

#service::after {
    content: "";
    width: 50.3%;
    padding-bottom: 50.3%;
    border-radius: 50%;
    background: #e63832;
    position: absolute;
    top: calc(50% - 25px);
    left: 50%;
    z-index: -1;
    filter: blur(25px);
    transform: translate(-50%, -50%);
}

#service::before {
    content: "";
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    background: #0e89e2;
    position: absolute;
    top: -25px;
    left: 0;
    z-index: -2;
    filter: blur(40px);
    opacity: 0.6;
}

#service .section-ttl {
    z-index: 2;
    position: relative;
}

#service .section-container {
    width: 90.1%;
    max-width: unset;
}

#service .section-header {
    width: 80.5%;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}

.service-diagram {
    width: 100%;
    margin: 0 auto 0;
    z-index: 2;
    position: relative;
}

#service .btn {
    margin-top: 130px;
    background: #ffffff;
    transition: all 0.3s ease;

}
#service .btn:hover{
    background: #060F31;
    color: #ffffff;
}
#service .btn span {
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}
#service .btn:hover span{
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* News Section */
#news {
    margin-bottom: 120px;
    position: relative;
}
#news .p-eff04{
    top: 1.5%;
    left: -2%;
    z-index: 0;
        width: 13.5%;
}
#news .p-eff06{
    top:40%;
   right: -2%;
    z-index: 0;
        width: 13.5%;
}

.news-list {
    max-width: 625px;
    width: 56.8%;
    margin: 0 auto;
}

.news-item {
    display: flex;
    justify-content: space-between;
    padding: 40px 25px;
    border-top: 1px solid #060f31;
}


.news-date {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: block;
}

.news-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    display: block;
    width: 82.6%;
}

.news-item:last-child {
    border-bottom: 1px solid #060f31;
}

/* challenges Section */
#challenge {
    margin-bottom: 160px;
}

#challenge .btn {
    margin-top: 55px;
}

.challenges-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.challenge-item {
    width: 48.2%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.challenge-item:first-child {
    width: 100%;
    padding-bottom: 65px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    margin-bottom: 45px;
}

.challenge-item:first-child .challenge-img {
    width: 47%;
    position: relative;
}

.challenge-item:first-child .challenge-content {
    padding-top: 25px;
}

.challenge-item:first-child .challenge-content {
    width: 49.4%;
}

.challenge-img {
    width: 33.2%;
    position: relative;
}

.challenge-content {
    width: 61.6%;
}

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

.challenge-ttl {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.challenge-txt {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
}

.challenge-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    width: 80%;
}

.tag {
    display: inline-block;
    padding: 2px 15px;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    color: white;
    border-radius: 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    margin-right: 5px;
    margin-bottom: 7px;
    transition: 0.5s all ease-in-out;
}

.tag:hover {
    transform: rotateX(360deg);
}

.p-section-nav-item span {
    display: inline-block;
}



.p-section-nav-item:hover span {
    transition: .5s;
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
    color: #ff0000;
}

.p-section-content02 .p-section-nav-item:hover span,
.p-section-content04 .p-section-nav-item:hover span {
    transition: .5s;
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
    color: #ff0000;
}

.p-section-nav-item:hover span:nth-of-type(1) {
    -webkit-transition-delay: .02s;
    transition-delay: .02s;
}

.p-section-nav-item:hover span:nth-of-type(2) {
    -webkit-transition-delay: .04s;
    transition-delay: .04s;
}

.p-section-nav-item:hover span:nth-of-type(3) {
    -webkit-transition-delay: .06s;
    transition-delay: .06s;
}

.p-section-nav-item:hover span:nth-of-type(4) {
    -webkit-transition-delay: .08s;
    transition-delay: .08s;
}

.p-section-nav-item:hover span:nth-of-type(5) {
    -webkit-transition-delay: .10s;
    transition-delay: .10s;
}

.p-section-nav-item:hover span:nth-of-type(6) {
    -webkit-transition-delay: .12s;
    transition-delay: .12s;
}

/* Footer */
footer {
    background-color: #0D1B3E;
    color: white;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
    z-index: 10000;
}

.footer-eff01 {
    position: absolute;
    width: 26.2%;
    left: 4%;
    top: -4%;
}

.footer-eff02 {
    position: absolute;
    width: 25.6%;
    left: 37%;
    top: 51%;
}

.footer-eff03 {
    position: absolute;
    width: 39.3%;
    right: -11%;
    top: -6%;
}

.footer-eff04 {
    position: absolute;
    width: 32.5%;
    right: -14.5%;
    top: 40%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    margin-top: 90px;
    font-size: 12px;
    text-align: left;
}

.footer-policy {
    font-size: 12px;
    color: #ffffff;
    display: inline-block;
    margin-left: 2em;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .footer-container {
        flex-direction: column;
    }
}

/* AOS */

[data-aos].aos-init {
    visibility: hidden;
}

[data-aos].aos-animate {
    visibility: visible;
}

/* フェードインアニメーション用CSS */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* アニメーションのバリエーション */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* 遅延アニメーション */
.fade-in.delay-1 {
    transition-delay: 0.1s;
}

.fade-in.delay-2 {
    transition-delay: 0.2s;
}

.fade-in.delay-3 {
    transition-delay: 0.3s;
}

.fade-in.delay-4 {
    transition-delay: 0.4s;
}

footer {
    background: #060f31;
    color: #ffffff;
    padding-top: 85px;
    padding-bottom: 240px;
}

.footer-inner {
    position: relative;
    z-index: 1;
    width: 89%;
    max-width: 1216px;
    margin: 0 auto;
}

.footer-logo {
    width: 158px;
    margin-bottom: 15px;
}

.footer-logo img {
    display: block;
}

.footer-inner p {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    color: #ffffff;
}

/* p-Sections */
.section-container {
    position: relative;
    z-index: 1;
}

.p-section {
    width: 80.5%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}
#p-about.p-section {
        width: 87.8%;
    max-width: 1200px;

}
#p-service {
    padding-top: 226px;
}

#p-service .p-section-header {
    width: 90.9%;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}

#p-service .p-section-ttl {
    text-align: left;
    margin-top: 140px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#p-service .p-section-ttl .jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;

}

#p-service .p-section-txt {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.14;
    color: #060F31;
    margin-bottom: 55px;
    text-align: left;
}

.p-section-content01 {
    position: relative;
   max-width: 1000px;
    margin: 0 auto;
    z-index: 100;
    margin-bottom: 0;
    padding-bottom: 70px;
    border-top: 1px solid #808080;
    border-bottom: 1px solid #808080;
}

.p-section-content02 {
    position: relative;
   max-width: 1000px;
    margin: 0 auto;
    z-index: 100;
    border-bottom: 1px solid #808080;
    margin-bottom:0;
    padding-bottom: 70px;
}

.p-section-content03 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 99;
    border-bottom: 1px solid #808080;
    margin-bottom: 0;
    padding-bottom: 70px;
}

.p-section-content04 {
    position: relative;
   max-width: 1000px;
    margin: 0 auto;
    z-index: 100;
    border-bottom: 1px solid #808080;
    padding-bottom: 70px;
    margin-bottom: 120px;

}

.p-section-content-flex {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 95px 0 0;
}

.p-section-content-left {
    width: 29%;
}

.p-section-content-right {
    width: 71%;
}

.p-section-content01-ttl {
    font-family: 'Noto Sans JP';
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    position: relative;
    margin-bottom: 23px;
}

.p-section-content01-subttl {
    font-family: 'Noto Sans JP';
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    position: relative;
    margin-bottom: 10px;
}

.p-section-content01-txt {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
    color: #ffffff;
    position: relative;
    margin-bottom: 40px;
}

.p-section-content01-ttl.icon:before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(img/icon_w.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
    mix-blend-mode: screen;
}

.p-section-nav {
    display: flex;
    flex-direction: column;
}

.p-section-nav-item {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
    line-height: 2.42;
    color: #666666;
    list-style: none;
    position: relative;
}

.p-section-nav-item.active:before {
    content: "●";
    font-family: 'Noto Sans JP';
    font-size: 7px;
    font-weight: 500;
    line-height: 4.84;
    color: #ffffff;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translate(0, -50%);
    transition: 0.3s;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-section-nav-item.active:hover:before {
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.p-section-nav-item.active {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
    line-height: 2.42;
    color: #ffffff;
}

.p-section-content01-ttl {
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.p-section-content01-subttl {
    color: #060F31;
    position: relative;
}

.p-section-content01-txt {
    color: #060F31;
    position: relative;
}

.p-section-content01-ttl.icon:before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(img/icon.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
    mix-blend-mode: screen;
}

.p-section-nav-item {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
    line-height: 2.42;
    color: #CCCCCC;
    list-style: none;
    position: relative;
}

.p-section-nav-item.active:before {
    content: "●";
    font-family: 'Noto Sans JP';
    font-size: 7px;
    font-weight: 500;
    line-height: 4.84;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translate(0, -50%);
}

.p-section-nav-item.active {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
    line-height: 2.42;
    color: #ff0000;
}


.p-section-content04 .p-section-content01-ttl {
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.p-section-content04 .p-section-content01-subttl {
    color: #060F31;
    position: relative;
}

.p-section-content04 .p-section-content01-txt {
    color: #060F31;
    position: relative;
}

.p-section-content04 .p-section-content01-ttl.icon:before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(img/icon.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
    mix-blend-mode: screen;
}

.p-section-content04 .p-section-nav-item {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
    line-height: 2.42;
    color: #CCCCCC;
    list-style: none;
    position: relative;
}

.p-section-content04 .p-section-nav-item.active:before {
    content: "●";
    font-family: 'Noto Sans JP';
    font-size: 7px;
    font-weight: 500;
    line-height: 4.84;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translate(0, -50%);
}

.p-section-content04 .p-section-nav-item.active {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
    line-height: 2.42;
    color: #ff0000;
}

/* カスタムカーソル */


.custom-cursor.active {
    opacity: 1;
}

.custom-cursor.clicked {
    transform: translate(-50%, -50%) scale(0.8);
}

/* カーソルが変わるエリアのスタイル調整 */
.gradient-cursor-area {
    cursor: none;
    /* デフォルトカーソルを非表示 */
}

.gradient-cursor-area * {
    cursor: none;
    /* 子要素のカーソルも非表示 */
}


/* about */
.p-section-header {
    text-align: center;
}

.p-about-ttl {
    font-family: "Roboto";
    font-size: 32px;
    line-height: 1;
    color: #060f31;
    text-align: center;
    padding: 252px 0 142px;
}
.p-about-bg{
    text-align: center;
    background: #ffffff;
padding: 70px 0 100px;
margin-bottom: 100px;
position: relative;
z-index: 100;
}

.c-title {
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 28px;
    line-height: 1.42;
    text-align: center;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;

    position: relative;
    z-index: 10;
margin: 0 auto 30px;
}

.c-text {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
    line-height: 2.14;
    text-align: center;
    color: #060f31;
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.company-list-container {
    width: 69.4%;
    margin: 0 auto 0;
    z-index: 10;
    position: relative;
    text-align: left;
}
.company-list-container .company-list{
    margin-bottom: 100px;
}
.p-section-content02-ttl {
    font-family: 'Noto Sans JP';
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    margin-bottom: 4px;
    margin-left: 40px;
}

.p-section-content02-ttl.icon:before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(img/icon.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translate(0, -50%);
    mix-blend-mode: screen;
}

.subtitle {
    font-family: "Roboto";
    font-size: 14px;
    color: #808080;
    margin-bottom: 17px;
    margin-left: 40px;
}

.company-item {
    width: 100%;
    display: flex;
    border-top: 1px solid rgba(6, 15, 49, 0.75);
    padding: 15px 0;
}

.company-item:last-child {
    border-bottom: 1px solid rgba(6, 15, 49, 0.75);
}

.sub-item {
    border-top: 1px dashed rgba(6, 15, 49, 0.75);
}

.company-left {
    width: 120px;
}

.company-bg {
    background: #f4f1e5;
    width: 95px;
    text-align: center;
    margin-right: auto;
    font-family: "Noto Sans JP";
    font-size: 14px;
    color: #060F31;
    line-height: 2.14;
}

.company-right {
    width: calc(100% - 120px);
    font-family: "Noto Sans JP";
    font-size: 14px;
    color: #060F31;
    line-height: 2.14;
}

.company-right .link {
    color: #ffffff;
    font-family: "Noto Sans JP";
    font-size: 14px;
    background-color: #C9BB75;
    line-height: 2;
    padding: 2px 8px;
    margin-left: 20px;
}

.company-full {
    width: 100%;
    display: flex;
    justify-content: center;
}

.company-full .tel_link {
    color: #ffffff;
    font-family: "Noto Sans JP";
    font-size: 14px;
    background-color: #C9BB75;
    line-height: 2;
    padding: 0 20px;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.p-eff01 {
position: absolute;
    top: -2.7%;
    left: -11%;
    width: 14.1%;
    z-index: 9;
}

.p-eff02 {
    position: absolute;
    top: -6%;
    left: 10.5%;
    width: 16%;
    z-index: 8;
}

.p-eff03 {
    position: absolute;
    top: 4%;
    right: 8.5%;
    width: 18.3%;
    z-index: 7;
}

.p-eff04 {
position: absolute;
    top: 28.5%;
    left: -12%;
    width: 16.1%;
    z-index: 6;
}

.p-eff05 {
position: absolute;
    top: 7%;
    right: -8%;
    width: 16.1%;
}

.p-eff06 {
    position: absolute;
    top: 52%;
    right: -10%;
    width: 16.1%;
}

.p-section-content02 .p-eff06 {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 16.1%;
}
.p-section-content04 .p-eff06 {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 16.1%;
}
#p-about .p-eff01 {
position: absolute;
    top: -1%;
    left: -11%;
    width: 14.1%;
    z-index: 9;
}

#p-about .p-eff02 {
    position: absolute;
    top: -3%;
    left: 10.5%;
    width: 16%;
    z-index: 8;
}

#p-about .p-eff03 {
    position: absolute;
    top: 1%;
    right: 8.5%;
    width: 18.3%;
    z-index: 7;
}

#p-about .p-eff04 {
position: absolute;
    top: 28.5%;
    left: -12%;
    width: 16.1%;
    z-index: 6;
}

#p-about .p-eff05 {
position: absolute;
    top: 5%;
    right: -8%;
    width: 16.1%;
}

#p-about .p-eff06 {
    position: absolute;
    top: 52%;
    right: -10%;
    width: 16.1%;
}
.company-after{
    width: 29px;
    margin: 0 auto 90px;
}
.p-section .section-header {
    padding: 255px 0 155px;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    width: 53%;
    max-width: 725px;
    margin: 0 auto 75px;
}

.btn-container .category-btn {
    display: block;
    width: 27.5%;
    font-family: "Roboto";
    font-size: 16px;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg, #999999 0%, #999999 25%, #999999 50%, #0e89e2 51%, #e31d16 100%);
    background-position: 0% 50%;
    background-size: 200% auto;
    border-radius: 30px;
    font-weight: 700;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.btn-container .category-btn:hover {
    background-position: 100% 50%;
    transform: scale(0.97);
}

.btn-container .category-btn.active {
    background: linear-gradient(90deg, #0e89e2 0%, #e31d16 100%);
}

.p-eff01-works {
    position: absolute;
    top: -44%;
    left: -11%;
    width: 60.7%;
}

.p-eff02-works {
    position: absolute;
    top: -45%;
    right: -11%;
    width: 57.7%;
}

.single-works-container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 45px;
    margin-bottom: 100px;
    position: relative;
}

.single-works-container::after {
    content: "";
    width: 50px;
    height: 1px;
    background: #060F31;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.single-works-left {
    width: 42.1%;
}

.single-works-right {
    width: 54.1%;
}

.single-works-title {
    font-family: 'Noto Sans JP';
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
}

.single-works-title-en {
    font-family: 'Noto Sans JP';
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
    display: block;
    margin-bottom: 15px;
}

.single-works-text {
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    display: block;
    margin-bottom: 15px;
}

.section#news .news-list {
    width: 95%;
    max-width: 625px;
    margin: -80px auto 0;
}

.num {
    width: 32%;
    max-width: 322px;
    margin: 100px auto 0;
}

.single-container {
    width: 74%;
    max-width: 740px;
    margin: 0 auto;
}

.single-date {
    font-family: "Noto Sans JP";
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #060F31;
}

.single-title {
    font-family: "Noto Sans JP";
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #060F31;
}

.single-text {
    font-family: "Noto Sans JP";
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #060F31;
}

.single-img {
    width: 100%;
    margin: 25px auto 25px;
}

.single-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}

.single-before {
    display: inline-block;
    font-family: "Noto Sans JP";
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #060F31;
}

.single-center {
    display: inline-block;
    font-family: "Noto Sans JP";
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #060F31;
}

.single-after {
    display: inline-block;
    font-family: "Noto Sans JP";
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #060F31;
}
