/* =========================
   Base
========================= */

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

body {
    font-family: sans-serif;
    color: #2C2C2C;
    background-color: #ffffff;
    line-height: 1.8;
}

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

main {
    padding-top: 100px;
}

/* =========================
   Header
========================= */

.header {
    position: fixed;
    top: 0;

    width: 100%;
    height: 100px;

    z-index: 1000;
    left: 0;

    background-color: transparent;
}

.header-inner {
    height: 100%;
    padding: 0 64px;

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo {
    position: absolute;
    left: 64px;
    top: 50%;
    transform: translateY(-50%);

    font-size: clamp(20px, 2vw, 32px);
    font-weight: 900;
    line-height: 1;
    color: #2C2C2C;
}

.header-right {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    list-style: none;

    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item a {
    font-size: 16px;
    font-weight: 400;
    color: #2C2C2C;
}

.menu-button {
    position: relative;
    z-index: 1001;

    width: 60px;
    height: 17px;

    border: none;
    background: transparent;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 0;

    cursor: pointer;
}

.menu-button span {
    width: 60px;
    height: 2px;

    background-color: #2C2C2C;

    transition: 0.3s;
}

/* 黒背景上で白に変更 */
.header.is-light .logo,
.header.is-light .nav-item a {
    color: #ffffff;
}

.header.is-light .menu-button span {
    background-color: #ffffff;
}

.header.is-light .header-inner {
    align-items: center;
}

/* 黒背景上でも現在ページは青 */
.header.is-light .nav-item a.current-page {
    color: #1D76FF;
}

/* メニュー開いた時は横並びナビを非表示 */
.header.is-menu-open .nav {
    opacity: 0;
    visibility: hidden;
}

/* ハンバーガー → バツ印 */
.menu-button.is-open span:first-child {
    transform: translateY(7.5px) rotate(25deg);
}

.menu-button.is-open span:last-child {
    transform: translateY(-7.5px) rotate(-25deg);
}

/* 黒背景上でもバツ印は黒固定 */
.header.is-light .menu-button.is-open span {
    background-color: #2C2C2C;
}

@media (max-width: 1024px) {
    .logo {
        left: 24px;
        font-size: 24px;
    }

    .header-right {
        right: 24px;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 440px) {
    .logo {
        left: 20px;
        font-size: 24px;
    }

    .header-right {
        right: 20px;
    }

    .nav {
        display: none;
    }
}

/* =========================
   Drawer Menu
========================= */

.menu-overlay {
    position: fixed;
    inset: 0;

    background-color: rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 900;
}

.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.menu-panel {
    position: fixed;
    top: 0;
    right: 0;

    width: 25vw;
    min-width: 320px;
    height: 100vh;

    background-color: #ffffff;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    z-index: 950;
}

.menu-panel.is-open {
    transform: translateX(0);
}

.menu-panel-inner {
    padding: 180px 64px 0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
}

.drawer-link,
.drawer-toggle {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.05em;

    color: #2C2C2C;

    background: transparent;
    border: none;

    text-align: left;

    padding: 0;
    margin-bottom: 50px;

    cursor: pointer;
}

.drawer-submenu {
    display: none;
    flex-direction: column;
    gap: 10px;

    margin-top: -40px;
    margin-bottom: 50px;

    padding-left: 16px;
}

.drawer-submenu.is-open {
    display: flex;
}

.drawer-submenu a {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.05em;

    color: #2C2C2C;
}

.drawer-submenu a.current-section {
    color: #1D76FF;
}

@media (max-width: 440px) {

    .menu-overlay {
        z-index: 900;
    }

    .menu-panel {
        top: 0;
        right: 0;
        left: auto;
        bottom: 0;

        width: 100%;
        min-width: 0;
        height: 100dvh;

        background-color: rgba(245, 245, 245, 1);

        z-index: 9999;
    }

    .menu-panel-inner {
        padding: 140px 24px 0;
    }

    .menu-button {
        z-index: 10000;
    }

    .header.is-menu-open {
        z-index: 10000;
    }

    .header.is-menu-open .logo {
        opacity: 0;
        visibility: hidden;
    }

    .header.is-menu-open .menu-button {
        z-index: 10001;
    }


}

/* =========================
   Loading
========================= */

.loader {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    transition: visibility .2s ease 2.4s;
}

.loader-bg {
    position: absolute;
    width: 100%;
    height: 100%;

    background: #2C2C2C;

    transition: transform .8s cubic-bezier(0.77, 0, 0.175, 1) 1.6s;
}

.loader-wrapper {
    position: relative;
    z-index: 1;

    width: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

    transition:
        transform .8s cubic-bezier(0.77, 0, 0.175, 1) 1.6s,
        opacity .8s ease 1.6s;
}

/* ロゴ */

.loading-logo {
    display: flex;
    justify-content: center;

    overflow: hidden;

    margin-bottom: 0;

    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.loading-logo span {
    display: block;

    transform: translateY(110%);

    animation: loadingLogoReveal .5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.loading-logo span:nth-child(1) { animation-delay: 1.25s; }
.loading-logo span:nth-child(2) { animation-delay: 1.28s; }
.loading-logo span:nth-child(3) { animation-delay: 1.31s; }
.loading-logo span:nth-child(4) { animation-delay: 1.34s; }
.loading-logo span:nth-child(5) { animation-delay: 1.37s; }
.loading-logo span:nth-child(6) { animation-delay: 1.40s; }
.loading-logo span:nth-child(7) { animation-delay: 1.43s; }
.loading-logo span:nth-child(8) { animation-delay: 1.46s; }
.loading-logo span:nth-child(9) { animation-delay: 1.49s; }
.loading-logo span:nth-child(10) { animation-delay: 1.52s; }
.loading-logo span:nth-child(11) { animation-delay: 1.55s; }
.loading-logo span:nth-child(12) { animation-delay: 1.58s; }
.loading-logo span:nth-child(13) { animation-delay: 1.61s; }
.loading-logo span:nth-child(14) { animation-delay: 1.64s; }
.loading-logo span:nth-child(15) { animation-delay: 1.67s; }
.loading-logo span:nth-child(16) { animation-delay: 1.70s; }
.loading-logo span:nth-child(17) { animation-delay: 1.73s; }
.loading-logo span:nth-child(18) { animation-delay: 1.76s; }

@keyframes loadingLogoReveal {
    0% {
        transform: translateY(110%);
    }

    100% {
        transform: translateY(0);
    }
}

/* バー */

.loading-bar {
    position: relative;

    width: 100%;
    height: 4px;

    overflow: hidden;

    border-radius: 999px;
}

.loading-bar::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, .15);
}

.loading-bar::after {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 100%;

    background: #ffffff;

    animation: loadingFill 1.2s ease forwards;
}

@keyframes loadingFill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* 終了 */

.loader.is-action {
    visibility: hidden;
}

.loader.is-action .loader-bg {
    transform: translateY(-100%);
}

.loader.is-action .loader-wrapper {
    transform: translateY(-120px);
    opacity: 0;
}

@media (max-width: 440px) {
    .loader-wrapper {
        width: calc(100% - 40px);
        gap: 18px;
    }

    .loading-logo {
        font-size: 28px;
        letter-spacing: 0.03em;
    }

    .loading-bar {
        width: 100%;
        max-width: 280px;
        height: 3px;
    }

    .loader.is-action .loader-wrapper {
        transform: translateY(-80px);
    }
}

/* =========================
   FV
========================= */

.fv {
    width: 100%;
    min-height: clamp(320px, 45vw, 500px);
    background-color: #ffffff;
}

.fv-inner {
    padding-top: clamp(40px, 5vw, 77px);
    padding-left: clamp(24px, 4vw, 64px);
    padding-right: clamp(24px, 4vw, 64px);
}

.fv-title {
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: #2C2C2C;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.fv-title-sp {
    display: none;
}

.fv-title-line,
.fv-title-line span {
    display: block;
}

.fv-title-line {
    overflow: hidden;
}

.fv-title-line span {
    transform: translateY(100%);
    opacity: 0;
    transition:
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fv-anim.is-animated .fv-title-line span {
    transform: translateY(0);
    opacity: 1;
}

.fv-title-line:nth-child(2) span {
    transition-delay: 0.15s;
}

.fv-title-line:nth-child(3) span {
    transition-delay: 0.3s;
}

@media (max-width: 546px) {

    .fv {
        min-height: 420px;
    }

}

@media (max-width: 440px) {

    .fv {
        min-height: 340px;
    }

    .fv-inner {
        padding-left: 20px;
        padding-right: 0;
    }

    .fv-title-pc {
        display: none;
    }

    .fv-title-sp {
        display: block;
    }

    .fv-title {
        font-size: 38px;
        line-height: 1.3;
        letter-spacing: -0.03em;
    }

    .fv-title-sp .fv-title-line:last-child {
        font-size: 1.2em;
    }
}

@media (max-width: 392px) {

    .fv-title-sp .fv-title-line:last-child {
        font-size: 1.2em;
    }
}

/* =========================
   Common
========================= */

.section-heading {
    display: flex;
    gap: 5px;

    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;

    color: #727272;

    margin-bottom: 10px;
}

.bg-text {
    position: absolute;
    left: 0;

    font-size: clamp(120px, 26vw, 580px);
    font-weight: 900;
    line-height: 1;

    z-index: 0;
    pointer-events: none;
}

.button {
    width: 280px;
    height: 80px;

    margin: 50px auto 100px;

    background-color: #2C2C2C;
    color: #ffffff;

    font-size: 24px;
    font-weight: 500;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);

    position: relative;
    overflow: hidden;
    z-index: 1;

    transition:
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.button::after {
    content: "";

    position: absolute;
    inset: 0;

    background-color: #ffffff;

    transform: scaleX(0);
    transform-origin: left top;

    transition: transform 0.3s cubic-bezier(0.45, 0, 0.55, 1);

    z-index: -1;
}

.button:hover {
    color: #2C2C2C;

    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1);
}

.button:hover::after {
    transform: scaleX(1);
}

.button:not(:hover)::after {
    transform-origin: right top;
}

.button:hover {
    background-color: #3D3D3D;

    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1);
}

.hover-link {
    transition: color 0.3s ease;
}

.hover-link:hover {
    color: #1D76FF;
}

.current-page {
    color: #1D76FF;
}

.nav-item a.current-page,
.drawer-nav a.current-page {
    color: #1D76FF;
}

@media (max-width: 1024px) {
    .button {
        height: 60px;
    }

    .works-button-wrap {
        width: 100%;
    }

    .works-button-wrap .button {
        width: 100%;
    }

}

/* =========================
   Text Reveal
========================= */

.text-reveal,
.text-reveal span {
    display: block;
}

.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    transform: translateY(100%);
    opacity: 0;

    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-animated .text-reveal span {
    transform: translateY(0);
    opacity: 1;
}

/* =========================
   Top-Works section
========================= */

.works {
    position: relative;
    width: 100%;

    padding-bottom: 100px;

    background-color: #ffffff;

    overflow: visible;
}

.works-bg-text {
    top: -70px;

    background: linear-gradient(
        135deg,
        rgba(231, 241, 255, 0.5) 0%,
        rgba(228, 250, 255, 0.5) 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.works-content {
    position: relative;
    z-index: 1;

    padding: 198px 64px 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    
    gap: 32px;
}

.works-card {
    width: 100%;
}

.works-card img {
    width: 100%;
    aspect-ratio: 16 / 9;

    object-fit: cover;

    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

.works-card h4 {
    margin-top: 26px;

    font-size: clamp(20px, 2vw, 32px);
    font-weight: 500;

    color: #727272;
}

.works-line {
    width: clamp(24px, 3vw, 40px);
    height: 2px;

    margin-top: 16px;

    background-color: #E2E2E2;
}

@media (max-width: 1024px) {
    .works-content {
        padding: 170px 24px 0;
        padding-top: 30px;
    }

    .works-bg-text {
        top: -100px;
    }

    .works-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .works .button {
        width: 360px;
    }


}

@media (max-width: 440px) {

    .works-content {
        padding: 20px 20px 0;
    }

    .works-grid {
        margin-top: -60px;
    }

    .works .button {
        width: 100%;
    }

}


/* =========================
   Top-About　section
========================= */

.about-section {
    position: relative;
    width: 100%;

    background-color: #2C2C2C;

    overflow: visible;
}

.about-bg-text {
    top: -30px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 80%,
        rgba(47, 47, 47, 0.03) 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-content {
    position: relative;
    z-index: 1;

    display: flex;
    gap: 42px;
    align-items: stretch;

    padding: 280px 64px 100px;
}

.about-image {
    width: clamp(300px, 44vw, 630px);
    height: 534px;

    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.about-text {
    min-height: 534px;

    display: flex;
    flex-direction: column;
}
.about-title {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;

    line-height: 1.6;
    letter-spacing: 0.05em;

    color: #ffffff;

    margin-bottom: 30px;
}

.about-description {
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 400;

    line-height: 2.25;
    letter-spacing: 0.05em;

    color: #a1a1a1;
}

.about-text .button {
    margin: auto 0 0;
}

@media (max-width: 1024px) {
    .about-bg-text {
        top: 50px;
    }

    .about-content {
        padding: 280px 24px 100px;
        padding-top: 200px;
    }

    .about-text .button {
        width: 100%;
    }

}

@media (max-width: 440px) {

    .about-content {
        flex-direction: column;
        gap: 32px;
        padding: 180px 20px 80px;
    }

    .about-image {
        width: 100%;
        height: auto;

        margin-top: -30px;
    }

    .about-image img {
        aspect-ratio: 630 / 534;
        height: auto;
    }

    .about-title br {
        display: none;
    }

    .about-text {
        width: 100%;
        min-height: auto;
    }

    .about-text .button {
        margin-top: 40px;
    }

}

/* =========================
   Works Page
========================= */

.works-page {
    background-color: #ffffff;
}

.works-page-inner {
    padding: 40px 64px 100px;

    display: grid;
    grid-template-columns: 276px 1fr;
    gap: 64px;
}

.works-filter {
    width: 276px;
}

.filter-select-wrap {
    position: relative;

    width: 276px;
    height: 60px;
}

.filter-select-wrap + .filter-select-wrap {
    margin-top: 30px;
}

.filter-select {
    width: 100%;
    height: 100%;

    border-radius: 10px;

    padding: 0 56px 0 27px;

    border: 1px solid #727272;
    background-color: #ffffff;

    font-size: 16px;
    font-weight: 400;
    color: #727272;

    appearance: none;
    cursor: pointer;
}

.filter-select:hover {
    background-color: #f5f5f5;
}

.filter-select-wrap::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 27px;

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #727272;

    transform: translateY(-50%);

    pointer-events: none;
}

.filter-reset {
    width: 276px;
    height: 60px;
    border-radius: 10px;

    margin-top: 30px;

    border: none;
    background-color: #727272;

    font-size: 16px;
    font-weight: 400;
    color: #ffffff;

    cursor: pointer;
}

.filter-reset:hover {
    opacity: 0.85;
}

.works-page-content {
    min-width: 0;
}

.works-page-grid {
    padding: 0;
}

.works-page-inner {
    display: grid;
    grid-template-columns: 276px 1fr;
    gap: 50px;
}

.works-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 24px;
}

.works-card img {
    width: 100%;
    aspect-ratio: 16 / 9;

    object-fit: cover;
    display: block;
}

.works-card h3 {
    margin-top: 24px;

    font-size: 32px;
    font-weight: 500;
    color: #727272;
}

.works-card p {
    margin-top: 16px;

    font-size: 16px;
    line-height: 2;
    color: #2C2C2C;
}

.works-card-link {
    display: block;

    margin-top: 16px;

    text-align: right;

    font-size: 16px;
    color: #2C2C2C;
}

.works-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 16px;
}

.works-card-tags span {
    padding: 6px 20px;

    border: 1px solid #AEAEAE;
    border-radius: 999px;

    font-size: 14px;
    color: #2C2C2C;
}

.works-card {
    display: flex;
    flex-direction: column;
}

.works-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;
}

.works-tag-button {
    min-width: 120px;
    padding: 6px 14px;

    border: 1px solid #727272;
    border-radius: 999px;

    background: #fff;
    color: #727272;

    font: inherit;
    cursor: pointer;

    transition: 0.3s;
}

.works-tag-button:hover {
    background: #727272;
    color: #fff;
}

.works-card-tags span,
.works-tag-button {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 999px;
    font-size: 14px;
}

/* =========================
   coming-soon
========================= */

.coming-soon {
    width: 100%;
    min-height: 350px;

    grid-column: 1 / -1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.coming-soon-box {
    width: 100%;
    max-width: 760px;
    height: 110px;

    margin: 0 auto;

    background: #7d7d7d;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.coming-soon-box span {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;

    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.coming-soon-message {
    margin-top: 32px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.coming-soon-message p {
    margin: 0;

    color: #727272;
    font-size: 1rem;
    font-weight: 500;

    white-space: nowrap;
}

.coming-soon-message .line {
    width: 120px;
    height: 1px;

    background: #727272;
}

/* =========================
   Hover Effect
========================= */

.works-card-image {
    display: block;
    overflow: hidden;
    position: relative;
}

.works-card-image::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.3);

    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.works-card-image img {
    display: block;
    width: 100%;

    transition: transform 0.3s ease;
}

.works-card:hover .works-card-image img {
    transform: scale(1.08);
}

.works-card:hover .works-card-image::before {
    opacity: 1;
}

/* =========================
   Work Detail
========================= */

.work-detail {
    padding: 100px 0;
}

.work-detail-inner {
    padding: 0 64px;
}

.work-detail-title {
    font-size: 48px;
    font-weight: 500;
    color: #727272;
}

.work-detail-line {
    width: 100%;
    height: 1px;

    background: #727272;

    margin-top: 30px;
}

.work-detail-text {
    white-space: pre-line;
}

.work-detail-main-image {
    margin-top: 30px;
    position: relative;
}

.work-detail-block {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);

    gap: 80px;

    margin-top: 60px;
}

.work-detail-left h4 {
    font-size: 36px;
    font-weight: 500;
    color: #727272;
}

.work-detail-right {
    width: min(1000px, 100%);
    margin-left: auto;
}

.work-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-info-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: start;
}

.work-info-item dt {
    font-size: 16px;
    color: #000000;

    margin-bottom: 8px;
}

.work-info-item dd {
    font-size: 20px;
    color: #2C2C2C;
}

.work-info-item dt {
    margin-bottom: 0;

    font-size: 16px;
    color: #000000;
}

.work-info-item dd {
    font-size: 20px;
    color: #2C2C2C;
}

.work-detail-text {
    font-size: 16px;
    line-height: 2.2;
    color: #2C2C2C;
}

.work-detail-main-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 50px;

    color: #727272;

    font-size: 18px;
    font-weight: 500;

    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1D76FF;
}

/* =========================
   画像下のグラデーション
========================= */

.work-detail-main-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        #ffffff
    );

    pointer-events: none;
}

@media (max-width: 1024px) {
    .work-detail {
        padding: 80px 0;
    }

    .work-detail-inner {
        padding: 0 24px;
    }

    .work-detail-title {
        font-size: 40px;
    }

    .work-detail-block {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 48px;
        margin-top: 56px;
    }

    .work-detail-left h4 {
        font-size: 30px;
    }

    .work-info-item {
        grid-template-columns: 160px 1fr;
    }

    .work-info-item dd {
        font-size: 18px;
    }

    .work-detail-text {
        font-size: 15px;
        line-height: 2.2;
    }

    .back-link {
        margin-top: 48px;
        font-size: 17px;
    }
}

@media (max-width: 440px) {
    .breadcrumb.breadcrumb-detail {
        left: 20px;
        bottom: 20px;

        width: calc(100% - 40px);

        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 10px;
        align-items: start;

        font-size: 14px;
        line-height: 1.8;
    }

    .breadcrumb-prefix {
        display: inline-flex;
        gap: 10px;
        align-items: flex-start;

        white-space: nowrap;
        line-height: 1.8;
    }

    .breadcrumb-prefix a,
    .breadcrumb-prefix span {
        line-height: 1.8;
    }

    .breadcrumb-title {
        display: block;

        min-width: 0;

        line-height: 1.8;

        overflow-wrap: break-word;
        word-break: normal;
    }

    .work-detail {
        padding: 56px 0 80px;
    }

    .work-detail-inner {
        padding: 0 20px;
    }

    .work-detail-title {
        font-size: 26px;
        line-height: 1.6;
    }

    .work-detail-line {
        margin-top: 20px;
    }

    .work-detail-main-image {
        margin-top: 24px;
    }

    .work-detail-block {
        display: block;
        margin-top: 48px;
    }

    .work-detail-block+.work-detail-block {
        margin-top: 80px;
    }

    .work-detail-left h4 {
        font-size: 20px;
        line-height: 1.5;
    }

    .work-detail-right {
        width: 100%;

        margin-top: 28px;
        margin-left: 0;
    }

    .work-info-list {
        gap: 24px;
    }

    .work-info-item {
        display: grid;
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 16px;
        align-items: start;
    }

    .work-info-item dt {
        margin-bottom: 0;

        font-size: 14px;
        line-height: 1.8;
    }

    .work-info-item dd {
        min-width: 0;

        font-size: 16px;
        line-height: 1.8;

        overflow-wrap: break-word;
        word-break: break-word;
    }

    .work-info-item dd a {
        overflow-wrap: break-word;
        word-break: break-all;
    }

    .work-detail-text {
        font-size: 14px;
        line-height: 2.2;
    }

    .back-link {
        margin-top: 48px;

        font-size: 16px;
    }

    .work-detail-main-image::after {
        height: 100px;
    }
}

/* =========================
   Works Page
========================= */

.works-page {
    background-color: #ffffff;
}

.works-page-inner {
    padding: 40px 64px 100px;

    display: grid;
    grid-template-columns: 276px 1fr;
    gap: 50px;
}

.works-filter {
    width: 276px;
}

.filter-select-wrap {
    position: relative;

    width: 276px;
    height: 60px;
}

.filter-select-wrap+.filter-select-wrap {
    margin-top: 30px;
}

.filter-select {
    width: 100%;
    height: 100%;

    border-radius: 10px;

    padding: 0 56px 0 27px;

    border: 1px solid #727272;
    background-color: #ffffff;

    font-size: 16px;
    font-weight: 400;
    color: #727272;

    appearance: none;
    cursor: pointer;
}

.filter-select:hover {
    background-color: #f5f5f5;
}

.filter-select-wrap::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 27px;

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #727272;

    transform: translateY(-50%);

    pointer-events: none;
}

.filter-reset {
    width: 276px;
    height: 60px;
    border-radius: 10px;

    margin-top: 30px;

    border: none;
    background-color: #727272;

    font-size: 16px;
    font-weight: 400;
    color: #ffffff;

    cursor: pointer;
}

.filter-reset:hover {
    opacity: 0.85;
}

.works-page-content {
    min-width: 0;
}

.works-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 24px;

    padding: 0;
}

.works-card {
    display: flex;
    flex-direction: column;
}

.works-card img {
    width: 100%;
    aspect-ratio: 16 / 9;

    object-fit: cover;
    display: block;
}

.works-card h3 {
    margin-top: 24px;

    font-size: 32px;
    font-weight: 500;
    color: #727272;
}

.works-card p {
    margin-top: 16px;

    font-size: 16px;
    line-height: 2;
    color: #2C2C2C;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;
}

.works-card-link {
    display: block;

    margin-top: 16px;

    text-align: right;

    font-size: 16px;
    color: #2C2C2C;
}

.works-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 16px;
}

.works-card-tags span,
.works-tag-button {
    display: inline-block;

    padding: 4px 10px;

    border: 1px solid #d9d9d9;
    border-radius: 999px;

    font-size: 14px;
}

.works-card-tags span {
    color: #2C2C2C;
}

.works-tag-button {
    min-width: 120px;

    background: #fff;
    color: #727272;

    font: inherit;
    cursor: pointer;

    transition: 0.3s;
}

.works-tag-button:hover {
    background: #727272;
    color: #fff;
}

@media (max-width: 1024px) {

    .works-page-inner {
        padding: 60px 24px 100px;

        grid-template-columns: 1fr;
        gap: 50px;
    }

    .works-filter {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr 1fr 180px;
        gap: 5px;
        align-items: center;
    }

    .filter-select-wrap {
        width: 100%;
        height: 60px;
    }

    .filter-select-wrap+.filter-select-wrap {
        margin-top: 0;
    }

    .filter-reset {
        width: 100%;
        height: 60px;

        grid-column: auto;

        margin-top: 0;

        font-size: 15px;
    }

    .coming-soon {
        min-height: 320px;
    }

    .coming-soon-box {
        max-width: 100%;
        height: 100px;
    }

    .coming-soon-box span {
        font-size: 2.5rem;
    }

    .coming-soon-message {
        gap: 20px;
    }

    .coming-soon-message .line {
        width: 100px;
    }

    .works-page-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .works-card h3 {
        font-size: 28px;
    }

    .works-pagination {
        margin-top: 80px;
    }

}

@media (max-width: 440px) {
    .works-page-inner {
        padding: 24px 20px 80px;
        display: block;
    }

    .works-filter {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .filter-select-wrap {
        width: 100%;
        height: 56px;
    }

    .filter-select-wrap+.filter-select-wrap {
        margin-top: 0;
    }

    .filter-select {
        padding: 0 48px 0 20px;
        font-size: 15px;
    }

    .filter-select-wrap::after {
        right: 20px;
    }

    .filter-reset {
        width: 100%;
        height: 56px;
        margin-top: 0;
        font-size: 15px;
    }

    .works-page-content {
        margin-top: 100px;
    }

    .works-page-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .works-card h3 {
        margin-top: 20px;
        font-size: 24px;
    }

    .works-card p {
        margin-top: 12px;
        font-size: 14px;
        line-height: 2;
    }

    .works-card-link {
        margin-top: 14px;
        font-size: 14px;
    }

    .works-card-tags {
        gap: 10px;
        margin-top: 14px;
    }

    .works-card-tags span,
    .works-tag-button {
        padding: 4px 10px;
        font-size: 12px;
    }

    .coming-soon {
        min-height: 260px;
    }

    .coming-soon-box {
        height: 80px;
        border-radius: 10px;
    }

    .coming-soon-box span {
        font-size: 1.8rem;
        letter-spacing: 0.06em;
    }

    .coming-soon-message {
        margin-top: 24px;

        flex-direction: column;
        gap: 12px;
    }

    .coming-soon-message p {
        font-size: 14px;
        line-height: 1.8;

        white-space: normal;
        text-align: center;
    }

    .coming-soon-message .line {
        display: none;
    }

    .works-pagination {
        gap: 24px;
        margin-top: 60px;
    }

    .works-pagination-button,
    .works-pagination-prev,
    .works-pagination-next {
        font-size: 18px;
    }
}

/* =========================
   Design Modal
========================= */

.design-modal {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.85);

    z-index: 9999;

    display: none;
}

.design-modal.is-open {
    display: block;
}

.design-modal-bar {
    height: 80px;

    background: #2C2C2C;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 64px;
}

.design-modal-switch {
    display: flex;
    gap: 20px;
}

.design-modal-button {
    width: 160px;
    height: 48px;

    border: 1px solid #ffffff;
    background: transparent;
    border-radius: 999px;

    color: #ffffff;
    font-size: 16px;

    cursor: pointer;
}

.design-modal-button.is-active {
    background: #ffffff;
    color: #2C2C2C;
}

.design-modal-close {
    border: none;
    background: transparent;

    color: #ffffff;
    font-size: 40px;
    line-height: 1;

    cursor: pointer;
}

.design-modal-image-wrap {
    height: calc(100vh - 80px);

    overflow-y: auto;
}

.design-modal-image {
    width: 100%;
    display: block;
}

.design-modal-button,
.design-modal-close {
    cursor: pointer;
}

.design-modal-image-wrap {
    height: calc(100vh - 80px);

    overflow-y: auto;

    background: #2C2C2C;

    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.design-modal-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.design-modal-image.is-pc {
    width: 100%;
}

.design-modal-image.is-sp {
    width: 550px;
    max-width: 90%;
}

.design-modal-image-wrap:has(.design-modal-image.is-sp) {
    background: rgba(112, 112, 112, 0.6);
}

.design-modal-image-wrap::-webkit-scrollbar {
    display: none;
}

.design-modal-image-wrap {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (max-width: 1024px) {
    .design-modal-bar {
        padding: 0 24px;
    }

    .design-modal-switch {
        gap: 12px;
    }

    .design-modal-button {
        width: 140px;
        height: 44px;

        font-size: 15px;
    }

    .design-modal-close {
        font-size: 36px;
    }

    .design-modal-image.is-sp {
        width: 420px;
        max-width: 90%;
    }
}

@media (max-width: 440px) {
    .design-modal-bar {
        height: 72px;

        padding: 0 20px;
    }

    .design-modal-switch {
        gap: 8px;
    }

    .design-modal-button {
        width: 104px;
        height: 40px;

        font-size: 13px;
    }

    .design-modal-close {
        font-size: 34px;
    }

}

/* =========================
   Pagination
========================= */

.works-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;

    margin-top: 120px;
}

.works-pagination-button,
.works-pagination-prev,
.works-pagination-next {
    border: none;
    background: transparent;

    font-size: 20px;
    font-weight: 400;
    color: #727272;

    cursor: pointer;

    transition: .3s;
}

.works-pagination-button:hover,
.works-pagination-prev:hover,
.works-pagination-next:hover {
    opacity: .6;
}

.works-pagination-button.is-active {
    color: #2C2C2C;
    font-weight: 700;
}

/* =========================
   Profile
========================= */

.profile-section {
    padding: 40px 64px 100px;
    background-color: #ffffff;
}

.profile-inner {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.profile-text {
    flex: 1;
}

.profile-name {
    width: fit-content;

    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-bottom: 20px;
}

.profile-name-en {
    display: flex;
    justify-content: space-between;
    gap: 25px;

    font-size: clamp(14px, 0.9vw, 16px);
    font-weight: 400;
    letter-spacing: 0.16em;
    color: #727272;
}

.profile-name-ja {
    display: flex;
    justify-content: space-between;
    gap: 25px;

    font-size: clamp(28px, 2vw, 36px);
    font-weight: 700;
    letter-spacing: 0;
    color: #2C2C2C;
}

.profile-line {
    width: 40px;
    height: 2px;

    margin: 20px 0;

    background-color: #2C2C2C;
    border-radius: 999px;
}

.profile-meta {
    display: flex;
    justify-content:left;
    gap: 50px;
    margin-bottom: 30px;
}

.profile-meta-item {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #2c2c2c;
}

.profile-description {
    font-size: clamp(14px, 0.9vw, 16px);
    font-weight: 400;
    line-height: 2.3;
    letter-spacing: 0.08em;
    color: #2C2C2C;
}

.profile-image {
    width: clamp(420px, 35vw, 600px);

    margin-left: auto;

    flex-shrink: 0;

    display: flex;

    flex-shrink: 0;

    aspect-ratio: auto;

    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);

    overflow: hidden;
}

.profile-image img {
    flex: 1;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* =========================
   Skill
========================= */

.skill-section {
    min-height: 760px;
    background-color: #2C2C2C;
}

.skill-inner {
    padding: 100px 64px 100px;
}

.skill-heading {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

.skill-line {
    width: 40px;
    height: 2px;

    margin-top: 20px;

    background-color: #ffffff;
    border-radius: 999px;
}

.skill-level-list {
    margin-top: 40px;
}

.skill-level-item {
    display: flex;
    align-items: center;

    margin-bottom: 20px;
}

.skill-level-item:last-child {
    margin-bottom: 0;
}

.skill-stars {
    width: 128px;

    display: flex;
    gap: 10px;
}

.skill-stars img {
    width: 36px;
    height: 36px;

    object-fit: contain;
}

.skill-dots {
    margin-left: 32px;
    margin-right: 32px;

    font-size: 16px;
    letter-spacing: 0.08em;
    color: #AEAEAE;
}

.skill-level-item p {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #AEAEAE;
}

.skill-group {
    margin-top: 60px;
}

.skill-group h4 {
    font-size: 32px;
    font-weight: 500;
    color: #AEAEAE;
}

.skill-card-list {
    margin-top: 40px;

    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.skill-card-list img {
    width: 304px;
    height: 100px;

    object-fit: contain;
}

/* =========================
   Strength
========================= */

.strength-section {
    background-color: #ffffff;
}

.strength-inner {
    padding: 100px 64px;

    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 80px;
}

.strength-heading {
    font-size: 36px;
    font-weight: 700;
    color: #2C2C2C;
}

.strength-right {
    width: min(1000px, 100%);
    margin-left: auto;
}

.strength-line {
    width: 40px;
    height: 2px;

    margin-top: 20px;

    background-color: #2C2C2C;
    border-radius: 999px;
}

.strength-item {
    padding-bottom: 40px;
    margin-bottom: 40px;

    border-bottom: 1px solid #E5E5E5;
}

.strength-item:last-child {
    margin-bottom: 0;
}

.strength-item h4 {
    font-size: 32px;
    font-weight: 500;
    color: #727272;
}

.strength-item p {
    margin-top: 28px;

    font-size: 16px;
    font-weight: 400;
    line-height: 2.4;
    letter-spacing: 0.08em;

    max-width: 100%;
    overflow-wrap: break-word;

    color: #2C2C2C;
}

@media (max-width: 1024px) {
    .profile-section {
        padding: 60px 24px 100px;
    }

    .profile-inner {
        flex-direction: column;
        gap: 48px;
    }

    .profile-text {
        width: 100%;
    }

    .profile-image {
        width: 100%;
        height: auto;
        margin-left: 0;
        aspect-ratio: 16 / 9;
    }

    .profile-image img {
        width: 100%;
        height: 100%;
    }

    .profile-meta {
        gap: 32px;
    }

    .skill-inner {
        padding: 100px 24px;
    }

    .skill-card-list {
        gap: 24px;
    }

    .skill-card-list img {
        width: calc((100% - 48px) / 3);
        height: 90px;
    }

    .strength-inner {
        padding: 100px 24px;

        grid-template-columns: 240px minmax(0, 1fr);
        gap: 48px;
    }

    .strength-item h4 {
        font-size: 28px;
    }
}

@media (max-width: 440px) {
    .profile-section {
        padding: 24px 20px 80px;
    }

    .profile-inner {
        flex-direction: column;
        gap: 40px;
    }

    .profile-image {
        order: 1;

        width: 100%;
        aspect-ratio: 16 / 10;
        margin-left: 0;
    }

    .profile-text {
        order: 2;
        width: 100%;
    }

    .profile-name {
        margin-bottom: 24px;
    }

    .profile-name-en {
        font-size: 14px;
        gap: 20px;
    }

    .profile-name-ja {
        font-size: 30px;
        gap: 20px;
    }

    .profile-meta {
        display: block;

        margin-bottom: 28px;
    }

    .profile-meta-item {
        font-size: 13px;
        line-height: 1.8;
    }

    .profile-description {
        font-size: 14px;
        line-height: 2.2;
        letter-spacing: 0.05em;
    }

    .skill-section {
        min-height: auto;
    }

    .skill-inner {
        padding: 80px 20px;
    }

    .skill-heading {
        font-size: 28px;
    }

    .skill-level-list {
        margin-top: 36px;
    }

    .skill-level-item {
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .skill-stars {
        width: 92px;
        gap: 6px;
        flex-shrink: 0;
    }

    .skill-stars img {
        width: 26px;
        height: 26px;
    }

    .skill-dots {
        margin-left: 14px;
        margin-right: 14px;

        font-size: 13px;
        line-height: 1.8;
    }

    .skill-level-item p {
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: 0.05em;
    }

    .skill-group {
        margin-top: 56px;
    }

    .skill-group h4 {
        font-size: 24px;
    }

    .skill-card-list {
        margin-top: 28px;

        gap: 16px;
    }

    .skill-card-list img {
        width: calc((100% - 16px) / 2);
        height: 72px;
    }

    .strength-inner {
        padding: 80px 20px;

        display: block;
    }

    .strength-heading {
        font-size: 28px;
    }

    .strength-right {
        width: 100%;
        margin-top: 56px;
        margin-left: 0;
    }

    .strength-item {
        padding-bottom: 36px;
        margin-bottom: 36px;
    }

    .strength-item h4 {
        font-size: 24px;
        line-height: 1.5;
    }

    .strength-item p {
        margin-top: 22px;

        font-size: 14px;
        line-height: 2.2;
        letter-spacing: 0.05em;
    }
}

/* =========================
   Contact
========================= */

.contact {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at bottom,
            rgba(255,255,255,0.8),
            transparent 80%
        ),
        linear-gradient(
            to top,
            rgba(255,255,255,0.2),
            transparent 70%
        );

    background-color: #E7F1FF;

    animation: contactBgColor 20s linear infinite;
}

@keyframes contactBgColor {

    0%, 100% {
        background-color: #E7F1FF;
    }

    25% {
        background-color: #D8F5E3;
    }

    50% {
        background-color: #FFF6C7;
    }

    75% {
        background-color: #FFE0F0;
    }
}

.contact-bg-text {
    top: -30px;

    z-index: 1;

    -webkit-background-clip: initial;
    background-clip: initial;

    color: #ffffff;
}

.contact-content {
    position: relative;
    z-index: 2;

    padding: 300px 64px 100px;
}

.contact-card {
    width: min(100%, 1088px);
    min-height: 500px;

    margin: 0 auto;
    padding: 69px 40px 50px;

    background-color: #ffffff;

    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);

    text-align: center;
}

.contact-heading {
    justify-content: center;
}

.contact-title {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;

    color: #000000;

    margin-bottom: 30px;
}

.contact-description {
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 400;
    line-height: 2.25;
    letter-spacing: 0.05em;

    color: #000000;
}

.contact-mail-button {
    width: min(100%, 640px);
    height: 80px;

    margin: 27px auto 0;

    background-color: #2C2C2C;
    color: #ffffff;

    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.05em;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid transparent;
    border-radius: 999px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);

    position: relative;
    overflow: hidden;
    z-index: 1;

    transition:
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-mail-button::after {
    content: "";

    position: absolute;
    inset: 0;

    background-color: #ffffff;

    transform: scaleX(0);
    transform-origin: left top;

    transition: transform 0.3s cubic-bezier(0.45, 0, 0.55, 1);

    z-index: -1;
}

.contact-mail-button:hover {
    color: #2C2C2C;

    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.1);
}

.contact-mail-button:hover::after {
    transform: scaleX(1);
}

.contact-mail-button:not(:hover)::after {
    transform-origin: right top;
}

.contact-mail-button:hover .button-arrow {
    border-color: #2C2C2C;
}

.contact-mail-button:hover .button-arrow-icon {
    color: #2C2C2C;
}

.button-arrow {
    position: absolute;

    right: 26px;

    width: 30px;
    height: 30px;

    border: 1px solid #ffffff;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 12px;
    line-height: 1;

    padding-left: 3px;

    z-index: 2;
}

.contact-other {
    width: fit-content;

    margin: 30px auto 0;

    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-other-text {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;

    color: #000000;

    border-bottom: 1px dashed #000000;

    padding-bottom: 5px;

    margin-bottom: 0;
}

.contact-other-logos {
    display: flex;
    align-items: center;

    gap: 20px;
}

.contact-other-logos img:first-child {
    width: 205px;
    height: 61px;
    object-fit: contain;
}

.contact-other-logos img:last-child {
    width: 103px;
    height: 37px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .contact-bg-text {
        top: 30px;
    }

    .contact-content {
        padding: 220px 24px 100px;
        padding-top: 180px;
    }
}

@media (max-width: 440px) {
    .contact {
        min-height: auto;
    }

    .contact-bg-text {
        top: 30px;

        font-size: clamp(100px, 32vw, 140px);
    }

    .contact-content {
        padding: 120px 20px 80px;
    }

    .contact-card {
        min-height: auto;

        padding: 48px 20px 44px;
    }

    .contact-title {
        margin-bottom: 24px;

        font-size: 24px;
        line-height: 1.6;
    }

    .contact-description {
        font-size: 14px;
        line-height: 2;
    }

    .contact-description br {
        display: none;
    }

    .contact-mail-button {
        width: 100%;
        height: 60px;

        margin-top: 30px;

        font-size: 15px;
        letter-spacing: 0.03em;
    }

    .button-arrow {
        right: 18px;

        width: 24px;
        height: 24px;

        font-size: 10px;
    }

    .contact-other {
        width: 100%;

        margin-top: 32px;

        flex-direction: column;
        gap: 18px;
    }

    .contact-other-text {
        width: fit-content;

        margin: 0 auto;

        font-size: 14px;
        line-height: 1.8;
    }

    .contact-other-logos {
        justify-content: center;
        gap: 16px;

        transform: translateX(-16px);
    }

    .contact-other-logos img:first-child {
        width: 150px;
        height: auto;
    }

    .contact-other-logos img:last-child {
        width: 76px;
        height: auto;
    }
}

/* =========================
   Page FV
========================= */

.page-fv {
    position: relative;
    width: 100%;
    height: 480px;

    background-color: #ffffff;
    overflow: hidden;
}

.page-fv-bg-text {
    top: -50px;
    left: 139px;

    background: linear-gradient(
        135deg,
        rgba(231, 241, 255, 0.5) 0%,
        rgba(228, 250, 255, 0.5) 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-fv-inner {
    position: relative;
    z-index: 1;

    height: 100%;

    display: flex;
    align-items: center;

    padding: 0 64px;
}

.page-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    color: #2C2C2C;
}

.breadcrumb {
    position: absolute;
    left: 64px;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 16px;
    font-weight: 500;
    color: #727272;
}

.breadcrumb-prefix {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1D76FF;
}

@media (max-width: 1024px) {
    .page-fv {
        height: 360px;
    }

    .page-fv-bg-text {
        top: 24px;
        left: 24px;
        transform: none;
        font-size: clamp(180px, 26vw, 240px);
    }

    .page-fv-inner {
        padding: 0 24px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .page-title {
        margin-top: 110px;
        font-size: 56px;
        text-align: left;
    }

    .breadcrumb {
        left: 24px;
    }
}

@media (max-width: 440px) {
    main {
        padding-top: 80px;
    }

    .page-fv {
        height: 260px;
    }

    .page-fv-bg-text {
        top: 28px;
        left: 20px;
        transform: none;
        font-size: clamp(86px, 26vw, 112px);
    }

    .page-fv-inner {
        padding: 0 20px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .page-title {
        margin-top: 74px;
        font-size: 40px;
        text-align: left;
    }

    .breadcrumb {
        left: 20px;
        bottom: 20px;
        font-size: 14px;
    }
}
/* =========================
   Footer
========================= */

.footer {
    width: 100%;
    height: 100px;

    padding: 0 64px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: #ffffff;
    color: #2C2C2C;
}

.footer-left {
    display: flex;
    gap: 32px;
}

.footer-left a {
    font-size: 16px;
    font-weight: 400;
}

.footer-copy {
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1024px) {

    .footer {
        padding: 0 24px;
    }

}

@media (max-width: 440px) {
    .footer {
        height: 80px;

        padding: 0 20px;

        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-left {
        gap: 16px;
    }

    .footer-left a {
        font-size: 13px;
    }

    .footer-right {
        font-size: 12px;
        color: #727272;
        white-space: nowrap;
    }
}

/* =========================
   Animation
========================= */

.fadeup {
    opacity: 0;
}

.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

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

html,
body {
    overflow-x: hidden;
}