@charset "utf-8";



.intro .main {
    display: flex;
    flex-direction: column;
    gap: 43px;

}

.intro .main .js-catch,
.philosophy .main .js-ttl,
.greeting .sec-body .main .js-ttl {
    opacity: 0;
}

.intro .main.is-active .js-catch,
.philosophy .main.is-active .js-ttl,
.greeting .sec-body .main.is-active .js-ttl {
    --x: 0;
    opacity: 1;
}

.intro .main .js-catch .char-text {
    background: linear-gradient(to right, #000 0%, #3ea2b1 87.81%, #349fad 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(2rem, 1.302rem + 2.98vw, 4.875rem);
    opacity: 1;
}

.intro {
    background: url(/system_panel/uploads/images/20260416204915246009.jpg) no-repeat center/cover;
}

.intro .inner {
    padding: 180px 0 250px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.philosophy .inner {
    padding: 130px 0;
}

.philosophy .sec-title {
    margin-bottom: 80px;
}

.philosophy .sec-body {
    display: flex;
    align-items: center;
    width: 92%;
    margin: 0 auto;
    gap: 5%;
}

.philosophy .sec-img {
    position: relative;
    max-width: 500px;
    width: 100%;
    aspect-ratio: 498 / 548;
}

/* 中央の図形 */
.philosophy .sec-img .img-center>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    max-width: 365px;
    z-index: 1;
}

/* アイテムの共通スタイル */
/* --- アイテムの共通スタイル（アニメーション準備） --- */
.philosophy .sec-img .item {
    position: absolute;
    width: 110px;
    text-align: center;
    z-index: 2;

    /* フェードインの初期状態 */
    opacity: 0;
    pointer-events: none;
    /* transitionに対象を指定（transformがズレるのを防ぐためopacityをメインに） */
    transition: opacity 0.8s ease-out, filter 0.8s ease-out;
    filter: blur(4px);
}

.philosophy .sec-img .item img {
    width: clamp(3.438rem, 3.21rem + 0.97vw, 4.375rem);
    height: clamp(3.438rem, 3.21rem + 0.97vw, 4.375rem);
    display: block;
    margin: 0 auto 5px;
}

.philosophy .sec-img .item p {
    font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
    font-weight: bold;
    margin: 0;
}

.philosophy .sec-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.philosophy .sec-text .desc p {
    font-weight: 400;
}

.philosophy .main .js-ttl .char-text {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1.313rem, 1.024rem + 1.23vw, 2.5rem);
    color: #000;
}


/* 表示状態（JSでクラスが付与された時） */
.philosophy .sec-img .item.is-visible {
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
}

/* --- 個別位置（現在の設定を維持） --- */

/* 1. パートナー企業 */
.philosophy .item:nth-of-type(1) {
    top: 0;
    left: 65%;
    transform: translateX(-50%);
}

/* 2. メンバー */
.philosophy .item:nth-of-type(2) {
    top: 28%;
    right: -4%;
}

/* 3. 経営陣 */
.philosophy .item:nth-of-type(3) {
    top: 65%;
    right: -4%;
    transform: translateY(-50%);
}

/* 4. 日本 */
.philosophy .item:nth-of-type(4) {
    bottom: 0;
    right: 26%;
}

/* 5. 社会 */
.philosophy .item:nth-of-type(5) {
    bottom: 0;
    left: 36%;
    transform: translateX(-50%);
}

/* 6. 地域 */
.philosophy .item:nth-of-type(6) {
    bottom: 25%;
    left: -4%;
}

/* 7. 顧客 */
.philosophy .item:nth-of-type(7) {
    top: 37%;
    left: -30px;
    transform: translateY(-50%);
}

/* 8. 出資者 */
.philosophy .item:nth-of-type(8) {
    top: 0;
    left: 25%;
}

/* --- 順次表示の遅延（時計回り） --- */
/* HTMLの並び順に合わせて delay を調整してください */
.philosophy .item:nth-of-type(1).is-visible {
    transition-delay: 0.1s;
}

.philosophy .item:nth-of-type(2).is-visible {
    transition-delay: 0.2s;
}

.philosophy .item:nth-of-type(3).is-visible {
    transition-delay: 0.3s;
}

.philosophy .item:nth-of-type(4).is-visible {
    transition-delay: 0.4s;
}

.philosophy .item:nth-of-type(5).is-visible {
    transition-delay: 0.5s;
}

.philosophy .item:nth-of-type(6).is-visible {
    transition-delay: 0.6s;
}

.philosophy .item:nth-of-type(7).is-visible {
    transition-delay: 0.7s;
}

.philosophy .item:nth-of-type(8).is-visible {
    transition-delay: 0.8s;
}

.greeting .inner {
    padding-bottom: 100px;
}

.greeting .sec-title {
    margin-bottom: 94px;
}

.greeting .sec-body .main {
    margin-bottom: 40px;
    text-align: center;
}

.greeting .sec-body .main .js-ttl .char-text {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.25rem, 1.189rem + 0.26vw, 1.5rem);
    line-height: calc(40/24);

    color: #000;

    opacity: 1;
}

.greeting .sec-body .desc {
    margin-bottom: 20px;
}

.greeting .sec-body .desc p {
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    line-height: calc(30/16);
    font-weight: 400;
    text-align: center;
    color: #5c5c5c;
}

.greeting .sec-body .name {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(0.875rem, 0.814rem + 0.26vw, 1.125rem);
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.greeting .sec-body .carrier {
    border-radius: 10px;
    background: #eaf1f2;
    padding: 30px 24px;
    display: flex;
    gap: 5%;
    align-items: flex-start;
}

.greeting .sec-body .carrier .item-tit {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
    color: #000;
    position: relative;
    padding-left: 15px;
}

.greeting .sec-body .carrier .item-tit::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: #05a6bc;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
}

.greeting .sec-body .carrier .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 5%;
    flex: 1;
}

.greeting .sec-body .carrier .list .item {
    display: flex;
    gap: 4%;
}

.greeting .sec-body .carrier .list .item .year {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
    color: #000;
}

.greeting .sec-body .carrier .list .item .detail {
    font-weight: 400;
    font-family: var(--font-main);
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
    color: #000;
}

.company .inner {
    padding-bottom: 160px;
}

.company .sec-title {
    margin-bottom: 80px;
}

.company .list {
    max-width: 770px;
    width: 100%;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company .list .item {
    display: grid;
    grid-template-columns: 24% 1fr;
    padding-bottom: 30px;
    border-bottom: 0.8px solid #b2b2b2;
    position: relative;
}

.company .list .item::after {
    content: "";
    width: 66px;
    height: 1.5px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #05a6bc;
}

.company .list .item .ttl {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    color: #000;
    padding-left: 17px;
}

.company .list .item .detail {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: clamp(0.875rem, 0.845rem + 0.13vw, 1rem);
    color: #5c5c5c;
}

.company .map {
    max-width: 1015px;
    width: 100%;
    height: 448px;
    margin: 0 auto;
}

.company .map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact .sec-title {
    margin: 0 auto 80px;
}

.contact .w1344 {
    padding-bottom: 100px;
}

.contact .box {
    background: #eaf1f2;
    width: min(85%, 1344px);
    margin: 0 auto 80px;
    padding: 80px 0 100px;
}

.contact .sec-head {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 50px;
}

.contact .sec-head .main {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
    color: #000;
    text-align: center;
}

.contact .desc p {
    text-align: center;
    color: #000;
    line-height: calc(24/16);
    font-weight: 400;
}


.contact .telbox {
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    background: #f2f2f2;
    border: 1.8px solid #05a6bc;
}

.contact .telbox .inner {
    padding: 38px 150px;
}

.contact .telbox .main {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.723rem + 0.65vw, 1.5rem);
    color: #05a6bc;
    margin-bottom: 20px;
    text-align: center;
}

.contact .telbox .tel-link {
    border-radius: 57px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    max-width: 579px;
    width: 100%;
    gap: 8px;
    margin: 0 auto 10px;
    transition: var(--default);
}



.contact .telbox .link-text {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: clamp(1.5rem, 1.121rem + 1.62vw, 3.063rem);
    letter-spacing: -0.04em;
    color: transparent;
    background: linear-gradient(to right, #080808 0%, #212426 0.1%, #54c1d0 30%, #349fad 50%, #292a2b 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
    font-family: var(--font-main);
    font-weight: 500;
    line-height: 42px;
}

.contact .telbox:hover .link-text {
    background-position: 0 100%;
}

.contact .telbox .time {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #05a6bc;
}

.footer::after {
    content: none;
}

@media (max-width: 1366px) {
    .philosophy .sec-body {
        width: 100%;
    }

    .greeting .sec-body .carrier {
        flex-direction: column;
        gap: 20px;
    }

    .greeting .sec-body .carrier .list {
        width: 100%;
        grid-template-columns: 50% 40%;
    }
}

@media (max-width: 1200px) {
    .greeting .sec-body .carrier .list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .philosophy .sec-img {
        width: 55%;
    }

    .contact .box {
        width: 90%;
    }
}

@media (max-width: 1023px) {
    .philosophy .sec-body {
        flex-direction: column;
        gap: 30px;
    }

    .contact .box {
        width: 100%;
    }

    .contact .box .inner {
        width: 90%;
        margin: 0 auto;
    }
    .philosophy .sec-img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .intro .inner {
        padding: 90px 0 96px;
        gap: 60px;
        width: 86%;
    }

    .intro .main {
        gap: 19px;
    }

    .philosophy .inner {
        padding: 40px 0 74px;
    }

    .philosophy .sec-title {
        margin-bottom: 40px;
    }

    .philosophy .sec-img {
        max-width: 350px;
        aspect-ratio: 350/373;
    }

    .philosophy .sec-img .img-center>img {
        max-width: 208px;
        width: 100%;
    }

    .philosophy .item:nth-of-type(7) {
        left: -4%;
    }

    .greeting .sec-title {
        margin-bottom: 32px;
    }

    .greeting .sec-body .main {
        margin-bottom: 36px;
    }

    .greeting .sec-body .desc {
        width: 96%;
        margin: 0 auto 10px;
    }

    .greeting .sec-body .name {
        margin-bottom: 40px;
    }

    .greeting .sec-body .carrier {
        padding: 24px 15px;
    }

    .greeting .sec-body .carrier .list .item .detail {
        width: 82%;
    }

    .greeting .inner {
        padding-bottom: 80px;
    }

    .company .inner {
        padding-bottom: 80px;
    }

    .company .sec-title {
        margin-bottom: 60px;
    }

    .company .list .item .ttl {
        padding-left: 0;
    }

    .company .list .item {
        grid-template-columns: 32% 1fr;
        padding-bottom: 20px;
    }

    .company .list {
        gap: 16px;
        margin-bottom: 40px;
    }

    .company .map {
        height: 326px;
    }

    .contact .sec-title {
        margin-bottom: 40px;
    }

    .contact .box {
        padding: 53px 0 56px;
        margin-bottom: 30px;
    }

    .contact .sec-head {
        gap: 36px;
        margin-bottom: 60px;
    }

    .contact .telbox .inner {
        padding: 16px 0;
    }

    .contact .telbox .tel-link {
        padding: 13px 0;
        max-width: 229px;

    }

    .contact .telbox .icon {
        width: 13px;
        height: auto;
    }


}

.gjs-dashed .intro .main .js-catch,
.gjs-dashed .philosophy .main .js-ttl,
.gjs-dashed .philosophy .sec-img .item {
    opacity: 1;
    filter: none;
    pointer-events: auto;
}