@charset "utf-8";

/* CSS Document */
/* ==========================================================================
    Foundation
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

:root {
    --color-ai-lightblue: #DAF3FF;
    --color-ai-deepblue: #0F58A8;
    --color-ai-blue: #378AE3;
    --color-ai-purple: #5249B7;
    --color-ai-h2: #03126F;
    --color-ai-thumbnail: #FCE74C;
    --color-ai-content-Bg: #FFF3CC; 
    --hover-opacity: 0.5;
}

/* ==========================================================================
    Layout
   ========================================================================== */

.l-mv {
    height: 400px;
    width: 100%;
    background-color: #BAF1FF;
    position: relative;
    background-image: url(../images/ai/img-ai-mv.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (max-width:767.98px) {
    .l-mv {
        height: 460px;
        background-image: url(../images/ai/img-ai-mv_sp_lp.png);
        background-position: center center;
    }
}

/* ==========================================================================
    Component
   ========================================================================== */


/* ==========================================================================
    Project
   ========================================================================== */
.p-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding-inline: 58px;
    background-color: #fff;
}
.p-header + main {
    padding-top: 60px;
}
.p-header img{
    width: auto;
    height: 30px;
}
.p-header img:hover{
    opacity: 0.5;
}
.p-header ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.p-header li:nth-child(1):hover,
.p-header li:nth-child(2):hover {
    opacity: 0.5;
}
.p-header a{
    text-decoration: none;
    color: #000;
}
.p-header__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 241px;
    height: 36px;
    border-radius: 30px;
    padding-right: 20px;
    position: relative;
    line-height: 1;

}
.p-header__cta::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

#header-cta-interpreting.p-header__cta {
    background-color: var(--color-ai-blue);
    color: #FFF !important;
}
#header-cta-translation.p-header__cta {
    background-color: var(--color-ai-purple);
    color: #FFF !important;
}
#header-cta-interpreting.p-header__cta:hover,
#header-cta-translation.p-header__cta:hover {
    background-color: #000;
    opacity: 1 !important;
}

.p-header__hamburger{
    display:none;
    width:40px;
    height:30px;
    background:none;
    border:none;
}

.p-header__hamburger span{
    display:block;
    width:100%;
    height:3px;
    background:#000;
}
.p-header__copyright{
    display: none;
}

.p-header__nav-link{
    display: flex;
    align-items: center;
    gap: 10px;
}
.p-header__nav-icon{
    margin-top: 5px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-ai-deepblue);
    border-right: 2px solid var(--color-ai-deepblue);
    transform: translateY(-50%) rotate(135deg);
}
.p-header__nav-icon svg{
    width: 100%;
    height: 100%;
    fill: var(--color-ai-deepblue);
}

/* メニューオープン時、コンテンツ側にかかる黒の半透明フィルター */
.p-header__overlay{
    display: none;
}

@media screen and (max-width: 1400px) {
    .p-header {
        padding-inline: 30px;
    }

    .p-header__hamburger{
        display: flex;
        justify-content:space-between;
        flex-direction:column;
        position: relative;
        z-index: 1002;
    }
    .p-header__nav ul{
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding-top: 0;
    }
    .p-header__nav li{
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 26px 20px;
        border-bottom: 1px solid #E5E5E5;
    }
    .p-header__nav li:last-child{
        border-bottom: none;
    }
    .p-header__nav li:hover{
        opacity: 1;
    }
    .p-header__nav a{
        font-size: 15px;
    }

    .p-header__nav{
        display: none;
    }

    .p-header__nav.is-open{
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        background-color: #FFF;
        border-top: 1px solid #E5E5E5;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
        z-index: 999;
    }
    .p-header__nav.is-open .p-header__cta{
        width: 220px;
        height: 52px;
        border-radius: 999px;
    }
    .p-header__hamburger span {
        transition: .3s;
    }
    .p-header__hamburger.is-open span:nth-child(1){
        transform: translateY(13px) rotate(45deg);
    }

    .p-header__hamburger.is-open span:nth-child(2){
        opacity:0;
        visibility:hidden;
        transition:.1s;
    }

    .p-header__hamburger.is-open span:nth-child(3){
        transform: translateY(-13px) rotate(-45deg);
    }
    .p-header__copyright{
        display: block;
        text-align: center;
        margin-top: 12px;
        margin-inline: auto;
        color: #000;
    }

    body.is-menu-open .p-header__overlay{
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(0,0,0,.75);
        z-index: 998;
    }
}
@media screen and (max-width: 767.98px) {
    .p-header img{
        width: 100px;
        height: auto;
    }
}


.p-mv__innner {
    position: absolute;
    height: 260px;
    width: 720px;
    background-color: #FFF;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-mv__title {
    font-size: 50px;
    font-weight: bold;
    color: var(--color-ai-h2);
    line-height: 60px;
    font-style: italic;
    text-align: center;
}
.p-mv__title span {
    font-size: 80px;
    font-family: "Sora", sans-serif;
    padding-inline: 3px;
    font-weight: 800;
}

@media screen and (max-width: 767.98px) {
    .p-mv__innner {
        width: 328px;
        height: 300px;
        top: 50%;
        transform: translate(-50%,-50%);
    }
    .p-mv__title {
        font-size:4rem;
        line-height: 60px;
    }
    .p-mv__title span{
        display: inline-block;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 0;
        font-size: 6rem;

    }
}

.p-lead {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 88px;
    padding-inline: 30px;
}
.p-lead__title {
    display: block;
    position: relative;
    width: fit-content;
    font-size: 42px;
    color: var(--color-ai-h2);
    text-align: center;
    line-height: 1.6;
}
.p-lead__title::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: var(--color-ai-lightblue);
    bottom: 2px;
}
.p-lead__text {
    margin-top: 34px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}
.p-lead__thumbnail {
    display: flex;
    flex-direction: row;
    margin-top: 32px;
    gap: 40px;
}
.p-lead__thumbnail-item {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 250px;
    height: 140px;
    font-size: 32px;
    font-weight: bold;
    color: var(--color-ai-thumbnail);
    aspect-ratio: 25 / 14;
    background-size: cover;
}

.p-lead__thumbnail-item span {
    position: relative;
    z-index: 1;
    line-height: 42px;
}
.p-lead__thumbnail-item::before {
    position: absolute;
    content :"";
    width: 250px;
    height: 140px;
    inset: 0;
    background-color: #000;
    opacity: 0.7;
    z-index: 0;
    aspect-ratio: 25 / 14;
}
.p-lead__thumbnail-item.-img01 {
    background-image: url(../images/ai/img-thumbnail-item01.png);;
}
.p-lead__thumbnail-item.-img02 {
    background-image: url(../images/ai/img-thumbnail-item02.png);;
}
.p-lead__thumbnail-item.-img03 {
    background-image: url(../images/ai/img-thumbnail-item03.png);;
}
@media screen and (max-width:1179.98px) {
    .p-lead__title {
        font-size: clamp(2.4rem, 1.561rem + 2.236vw, 4.2rem);
    }
    .p-lead__thumbnail {
        max-width: 830px;
        width: 100%;
    }
    .p-lead__thumbnail-item {
        max-width: 250px;
        width: 100%;
        height: fit-content;
        font-size: clamp(1.6rem, 0.855rem + 1.988vw, 3.2rem);
    }
    .p-lead__thumbnail-item::before {
        max-width: 250px;
        width: 100%;
        height: 100%;
    }
}
@media screen and (max-width: 991.98px) {
    .p-lead__text {
        margin-top: 20px;
        text-align: left;
    }
}
@media screen and (max-width: 767.98px) {
    .p-lead__text {
        font-size: 16px;
    }
    .p-lead__thumbnail {
        flex-wrap: wrap;
        justify-content: center;
        max-width: none;
        gap: 10px;
    }
    .p-lead__thumbnail-item {
        max-width: 160px;
        width: 160px;
        height: 90px;
        font-size: 14px;
    }
    .p-lead__thumbnail-item::before {
        max-width: 160px;
        width: 160px;
        height: 90px;
    }
    .p-lead__thumbnail-item span{
        line-height: 1.4;
    }
}
.p-tab__header {
    display: flex;
    justify-content: center;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    gap: 20px;
    margin-inline: auto;
    padding-inline: 25px;
}
.p-tab__button {
    display: flex;
    max-width: 580px;
    width: 100%;
    height: 64px;
    border-radius: 15px 15px 0 0;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 28px;
    font-weight: 600;
    background-color: #F2F2F2;
}
.p-tab__button.is-active[data-tab="interpreting"] {
    background-color: var(--color-ai-blue);
    color: #FFF;
}

.p-tab__button.is-active[data-tab="translation"] {
    background-color: var(--color-ai-purple);
    color: #FFF;
}
.p-tab__button[data-tab="interpreting"]:hover {
    background-color: var(--color-ai-blue);
    color: #FFF;
}
.p-tab__button[data-tab="translation"]:hover {
    background-color: var(--color-ai-purple);
    color: #FFF;
}

.p-tab__panel{
    display:none;
}

.p-tab__panel.is-active{
    width: 100%;
    padding-top: 60px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    border-radius: 25px 25px 0 0;
}

#interpreting.p-tab__panel.is-active {
    background-color: var(--color-ai-blue);
}
#translation.p-tab__panel.is-active {
    background-color: var(--color-ai-purple);
}

.p-tab__panel-item {
    max-width: 1140px;
    width: 100%;
    margin-inline: 20px;
    border-radius: 25px;
    background-color: #fff;

}
.p-tab__panel-before{
    display: flex;
    flex-direction: column;
    margin: 30px;
    position: relative;
}
.p-tab__panel-before::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 45px solid #fff;
}
.p-tab__panel-head {
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.p-tab__panel-number{
    width: 168px;
    height: 64px;
}
.p-tab__panel-title{
    font-size: 30px;
    line-height: 38px;
    font-weight: 800;
}
.p-tab__panel-lead {
    font-weight: 600;
}
.p-tab__panel-problem {
    display: flex;
    flex-direction: row;
    gap: 58px;
    align-items: center;
    padding-top: 30px;
}
.p-tab__panel-problem-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    aspect-ratio: 1;
}
.p-tab__panel-problem-list {
    font-size: 18px;
    width: 100%;
}
.p-tab__panel-problem-item {
    line-height: 1.6;
    padding-top: 8px;
    padding-left: 20px;
}
.p-tab__panel-future {
    display: flex;
    flex-direction: row;
    gap: 30px;
    min-height: 340px;
    background-color: var(--color-ai-content-Bg);
    padding: 30px;
}
.p-tab__panel-future-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.p-tab__panel-future-head {
    display: flex;
    width: 280px;
    height: 43px;
    border-radius: 28px;
    background-color: var(--color-ai-lightblue);
    font-size: 20px;
    font-weight: bold;
    color: var(--color-ai-deepblue);
    text-align: center;
    align-items: center;
    justify-content: center;
}
.p-tab__panel-future-item {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 48px;
    padding-right: 30px;
    background-color: #fff;
    position: relative;
    width: 100%;
    font-size: 18px;
    line-height: 2.8rem;
}
.p-tab__panel-future-item::before {
    position: absolute;
    content:"";
    width: 12px;
    height: 8px;
    border-left: 3px solid var(--color-ai-deepblue);
    border-bottom: 3px solid var(--color-ai-deepblue);
    transform: rotate(-45deg);
    left: 20px;
    top: 24px;
}
.p-tab__panel-future-img {
    max-width: 386px;
    width: 100%;
    height: 280px;
    background-color: Gray;
    border-radius: 10px;
    margin-top: auto;
}
.p-tab__panel-links {
    min-height: 106px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-inline: 40px;
    letter-spacing: normal;
}
.p-tab__panel-links-head {
    display: flex;
    width: 185px;
    height: 46px;
    border-radius: 28px;
    background-color: var(--color-ai-lightblue);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.p-tab__panel-links-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding-left: 20px;
}
.p-tab__panel-links-item {
    font-size: 16px;
    position: relative;
}
.p-tab__panel-links-item a{
    color: var(--color-ai-deepblue);
}
.p-tab__panel-links-item:hover {
    opacity: 0.5;
}
.p-tab__panel-link-icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-ai-deepblue);
    margin-left: 15px;
}
.p-tab__panel-link-icon svg{
    width: 15px;
    height: 15px;
    fill: #fff;
}
@media screen and (max-width:1179.98px) {
    .p-tab__button {
        display: flex;
        max-width: 580px;
        width: 100%;
        height: 64px;
        border-radius: 15px 15px 0 0;
        justify-content: center;
        text-align: center;
        align-items: center;
        font-size: 28px;
        font-weight: 600;
        background-color: #F2F2F2;
    }
    .p-tab__button.is-active[data-tab="interpreting"] {
        background-color: var(--color-ai-blue);
        color: #FFF;
    }

    .p-tab__button.is-active[data-tab="translation"] {
        background-color: var(--color-ai-purple);
        color: #FFF;
    }
    .p-tab__panel{
        display:none;
    }

    .p-tab__panel.is-active{
        width: 100%;
        padding-top: 60px;
        padding-bottom: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-inline: 30px;
        gap: 60px;
    }

    #interpreting.p-tab__panel.is-active {
        background-color: var(--color-ai-blue);
    }
    #translation.p-tab__panel.is-active {
        background-color: var(--color-ai-purple);
    }

    .p-tab__panel-item {
        max-width: 1140px;
        width: 100%;
        margin-inline: 20px;
        border-radius: 25px;
        background-color: #fff;

    }
    .p-tab__panel-before{
        display: flex;
        flex-direction: column;
        margin: 30px;
        position: relative;
    }
    .p-tab__panel-before::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -70px;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-top: 45px solid #fff;
    }
    .p-tab__panel-number{
        width: 168px;
        height: 64px;
    }
    .p-tab__panel-title{
        font-size: 30px;
        line-height: 38px;
        font-weight: 800;
    }
    .p-tab__panel-lead {
        font-weight: 600;
    }
    .p-tab__panel-problem {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding-top: 30px;
    }
    .p-tab__panel-problem-icon {
        max-width: 150px;
        width: 100%;
        height: 100%;
    }
    .p-tab__panel-problem-list {
        padding-left: 20px;
        font-size: 18px;
    }
    .p-tab__panel-future-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .p-tab__panel-future-item {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 48px;
        background-color: #fff;
        position: relative;
        width: 100%;
        font-size: 18px;
        line-height: 2.8rem;
    }
    .p-tab__panel-links {
        flex-direction: column;
        align-items: start;
        padding-top: 30px;
        padding-inline: 30px;
        padding-bottom: 30px;
    }
    .p-tab__panel-links-head {
        display: flex;
        width: 185px;
        height: 46px;
        border-radius: 28px;
        background-color: var(--color-ai-lightblue);
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .p-tab__panel-links-list {
        padding-top: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .p-tab__panel-links-item {
        font-size: 16px;
        position: relative;
    }
    .p-tab__panel-links-item a{
        color: var(--color-ai-deepblue);
    }
    .p-tab__panel-links-item:hover {
        opacity: 0.5;
    }
    .p-tab__panel-link-icon{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background-color: var(--color-ai-deepblue);
        margin-left: 15px;
    }
    .p-tab__panel-link-icon svg{
        width: 15px;
        height: 15px;
        fill: #fff;
    }
}
@media screen and (max-width:991.98px) {
    .p-tab__header {
        gap: 8px;
    }
    .p-tab__button {
        font-size: 20px;
    }
    .p-tab__panel-future {
        display: flex;
        flex-direction: column;
        gap: 30px;
        min-height: fit-content;
        padding: 30px;
    }
    .p-tab__panel-future-img {
        max-width: 100%;
        height: 100%;
        background-color: Gray;
        margin-top: 0;
        aspect-ratio: 38 / 28;
    }
}
@media screen and (max-width:679.98px) {
    .p-tab__panel-number {
        width: 120px;
        height: fit-content;
    }
    .p-tab__panel-future {
        padding-top: 50px;
    }
    .p-tab__panel-head {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .p-tab__panel-problem-item {
        padding-left: 10px;
        font-size: 16px;
    }
    .p-tab__panel-links-list {
        padding-top: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
}

.p-cta-block {
    display: none;
}
.p-cta-block.is-active {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300px;
    justify-content: center;
    align-items: center;
    padding-inline: 40px;
}
.p-cta-block.is-active p {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    line-height: 60px;
}
.p-cta-block.is-active a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 520px;
    height: 88px;
    font-size: 40px;
    background-color: #FAF952;
    border-radius: 45px;
    position: relative;
    font-weight: 500;
    margin-top: 30px;
    text-decoration: none;
    border-bottom: none;
    line-height: 1;
}
.p-cta-block.is-active a::after{
    position: absolute;
    content: "";
    top: 50%;
    right: 30px;
    width: 20px;
    height: 20px;
    border-top: 4px solid currentColor;
    border-right: 4px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}
#cta-interpreting.p-cta-block.is-active {
    background-color: var(--color-ai-deepblue);
    background-image: url(../images/ai/img-ctaBg-blue.png);
}
#cta-translation.p-cta-block.is-active {
    background-color: var(--color-ai-h2);
    background-image: url(../images/ai/img-ctaBg-purple.png);
}
#cta-interpreting.p-cta-block.is-active a{
    color: var(--color-ai-deepblue);
}
#cta-translation.p-cta-block.is-active a{
    color: var(--color-ai-h2);
}
#cta-interpreting.p-cta-block.is-active a:hover,
#cta-translation.p-cta-block.is-active a:hover{
    background-color: #000;
    color: #fff;
}

@media screen and (max-width:900px){
    .p-cta-block.is-active p {
        font-size: 32px;
        font-weight: bold;
        color: #fff;
        line-height: 32px;
    }
    .p-cta-block.is-active a {
        max-width: 500px;
        width: 100%;
        font-size: 28px;
    }
    .p-cta-block.is-active a::after{
        right: 50px;
    }
}

@media screen and (max-width:500px){ 
    .p-cta-block.is-active {
        height: 200px;
        padding-inline: 20px;
    }
    .p-cta-block.is-active p {
        font-size: 24px;
        line-height: 34px;
    }
    .p-cta-block.is-active a{ 
        width: 360px;
        height: 80px;
    }
    .p-cta-block.is-active a::after{
        right: 20px;
    }
    
}
.p-banner-block{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    background-color: #F2F2F2;
    gap: 95px;
    padding-top: 60px;
    padding-bottom: 60px;
}
.p-banner-block a{
    text-decoration: none;
    border: none;
}
.p-banner-item {
    display: flex;
    flex-direction: column;
    max-width: 490px;
    width: 100%;
    max-height: 138px;
    height: fit-content;
    color: #FFF;
}
.p-banner-item img {
    width: 100%;
    height: auto;
    background-color: #fff;
}
.p-banner-item p {
    display: flex;
    height: fit-content;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    padding-top: 5px;
    padding-right: 30px;
    padding-bottom: 5px;
    font-weight: bold;
}
.p-banner-item.-ipf{
    background-color: #FF6930;
}
.p-banner-item.-wiz{
    background-color: #C60081;
}
.p-banner-item.-ipf:hover,
.p-banner-item.-wiz:hover{
    background-color: #000;
}
@media screen and (max-width:1179.98px){
    .p-banner-block{
        flex-direction: column;
        padding-inline: 40px;
        width: 100%;
        height: fit-content;
        background-color: #F2F2F2;
        gap: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .p-banner-item {
        display: flex;
        flex-direction: column;
        color: #FFF;
        aspect-ratio: 490 / 138;
    }
    .p-banner-item img{
        aspect-ratio: 496 / 100;
    }
}
.l-footer {
    background: #221f20;
    padding-top: 40px;
    padding-inline: 20px;
    padding-bottom: 84px;
}
.l-footer__inner {
    max-width: 1040px;
    margin-inline: auto;
}
.p-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.p-footer__nav {
    font-size: 16px;
    color: #FFF;
}
.p-footer__logo {
    width: 180px;
    height: 50px;
}
.p-footer__logo:hover {
    opacity: 0.5;
}
.p-footer__company {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.p-footer__copyright {
    color: #FFF;
}
.p-footer__nav-columns {
    display: flex;
    gap: 50px;
    margin-top: 10px;
}
.p-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.p-footer__item + .p-footer__item {
    margin-top: 10px;
}

.p-footer__item a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-left: 20px;
}
.p-footer__item a::before {
    position: absolute;
    content: "-";
    left: 10px;
}

.p-footer__item-icon svg{
    width: 16px;
    height: 16px;
    fill: #FFF;
}
.p-footer__heading {
    text-decoration: none;
    border: none;
    color: #fff;
}
.p-footer__heading:hover,.p-footer__item:hover {
    opacity: 0.5;
}
@media screen and (max-width:767.98px) {
    .p-footer {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }
    .p-footer__nav-columns{
        flex-direction: column;
        gap: 10px;
        padding-bottom: 60px;
    }
    .p-footer__heading {
        padding-bottom: 8px;
    }
    .p-footer__heading,
    .p-footer__item {
        border-bottom: 0.5px solid #6c6c6c;
    }
}
/* ==========================================================================
    Utility
   ========================================================================== */
.u-○○○ {
    ○○○: ○○○ !important;
}

.u-sp_br {
    display: none;
}
@media screen and (max-width:767.98px){
    .u-sp_br {
        display: block;
    }
}

#scene,#lead {
    scroll-margin-top: 100px;
}