html { 
    font-family: "Noto Sans JP", sans-serif;
    color: #0e1113;
    position: relative;
}

body {
    min-width: 375px;
}

span {
    display: inline-block;
}

picture {
    display: block;
    overflow: hidden;
}

img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

a {
    display: inline-block;
}

@media screen and (min-width: 901px) {
    .hover-nomal {
        transition: opacity .6s 0s cubic-bezier(.44,.14,.09,1.02);
    }

    .hover-nomal:hover {
        opacity: .64;
    }
}

/* utility */
.u-en {
    font-family: "Funnel Display", sans-serif;
}

.u-color-orange {
    color: #fc8332;
}

/* layout */
.l-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.l-inner {
    margin: 0 auto;
    max-width: 1100px;
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .l-inner {
        max-width: 500px;
    }
}

/* common */
.pc-only {
    display: block;
}

.br-pc-only {
    display: inline-block;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }

    .br-pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .br-sp-only {
        display: inline-block;
    }
}

.c-subHead {
    color: #007984;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.c-head {
    margin-top: 20px;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .04em;
}

@media screen and (max-width: 900px) {
    .c-subHead {
        font-size: 16px;
    }

    .c-head {
        margin-top: 12px;
        font-size: 32px;
    }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-header {
    position: absolute;
    z-index: 2;
    width: 100%;
    left: 0;
    top: 0;
    padding: 20px 40px;
}

.p-header__logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-header__logo {
    display: flex;
    width: 121px;
}

.p-header__tag {
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .04em;
    padding: 3px 14px 4px;
    border-radius: 100vh;
    background: linear-gradient(100deg, #007984 15.38%, #006E7B 85.76%);
}

@media screen and (max-width: 900px) {
    .p-header {
        padding: 20px;
    }

    .p-header__logos {
        gap: 8px;
    }

    .p-header__logo {
        width: 75px;
    }

    .p-header__tag {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/*===========================================================================*/
/*  mv  */
/*===========================================================================*/
.p-mv {
    position: relative;
    padding-top: 144px;
    overflow: hidden;
}
.p-mv::before {
    background: url('../img/mv-bg.webp') no-repeat center center/cover;
    content: '';
    height: 840px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.p-mv__inner {
    position: relative;
    z-index: 2;
}

.p-mv__head {
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .02em;
}

.p-mv__head span {
    background: radial-gradient(29.95% 147.53% at 50% 100%, #FFF 0%, #C5D5D6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-mv__txt {
    margin-top: 20px;
    color: #cedbdb;
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: .04em;
}

.p-mv__link {
    text-align: center;
    margin-top: 32px;
}

.p-mv__btn {
    padding: 16px 22px 17px;
    background-color: #007984;
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .04em;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: color .6s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-mv__btn::before {
    background-color: #fff;
    content: '';
    aspect-ratio: 1/1;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 105%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 100vh;
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-mv__btn span {
    position: relative;
    z-index: 2;
}

.p-mv__img {
    width: 123%;
    max-width: 1360px;
    filter: drop-shadow(20px 20px 40px rgba(31, 41, 55, 0.08));
    margin: -70px 0 0;
    pointer-events: none;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0px);
}

@media screen and (min-width: 901px) {
    .p-mv__btn:hover {
        color: #007984;
    }
    .p-mv__btn:hover:before {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@media screen and (max-width: 900px) {
    .p-mv {
        padding: 100px 10px 0;
    }
    .p-mv::before {
        background: url('../img/mv-bg-sp.webp') no-repeat center center/cover;
        height: 526px;
    }

    .p-mv__inner {
        position: relative;
        z-index: 2;
    }

    .p-mv__head {
        font-size: 32px;
    }

    .p-mv__txt {
        margin-top: 12px;
        font-size: 16px;
    }

    .p-mv__link {
        margin-top: 24px;
    }

    .p-mv__btn {
        padding: 14px 20px 15px;
        font-size: 16px;
    }

    .p-mv__img {
        width: 153%;
        max-width: 514px;
        margin: -9px 0 0;
    }
}

/*===========================================================================*/
/*  function  */
/*===========================================================================*/
.p-function {
    padding-bottom: 120px;
}

.p-function__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 20px;
}

.p-function__head img {
    width: 219px;
    transform: translate(0, 4px);
}

.p-function__head span {
    font-feature-settings: 'palt' on;
    font-size: 55px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .02em;
}

.p-function__list {
    margin-top: 66px;
    display: flex;
    gap: 90px;
    flex-direction: column;
}

.p-function__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-function__list li:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.p-function__list--txts {
    width: 396px;
}

.p-function__list--subHead {
    color: #707c81;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.p-function__list--head {
    margin-top: 28px;
    font-feature-settings: 'palt' on;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .02em;
}

.p-function__list--txt {
    margin-top: 18px;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    line-height: 1.75;
}

.p-function__list--table {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 17px;
    position: relative;
}
.p-function__list--table::before {
    background: linear-gradient(180deg, rgba(0,121,132,1) 0%, rgba(0,121,132,0) 100%);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
}

.p-function__list--table dl {
    display: flex;
}

.p-function__list--table dl dt {
    width: 119px;
    color: #707c81;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

.p-function__list--table dl dd {
    width: calc(100% - 119px);
    font-feature-settings: 'palt' on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
}

.p-function__list--link {
    margin-top: 25px;
}

.p-function__list--btn {
    padding: 13px 22px;
    background-color: #00374b;
    border-radius: 8px;
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .04em;
    position: relative;
    overflow: hidden;
}
.p-function__list--btn::before {
    background-color: #007984;
    content: '';
    aspect-ratio: 1/1;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 100vh;
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-function__list--btn span {
    position: relative;
    z-index: 2;
}

.p-function__list--img {
    width: calc(100% - 438px);
    overflow: hidden;
    border-radius: 20px;
}

@media screen and (min-width: 901px) {
    .p-function__list--btn:hover:before {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@media screen and (max-width: 900px) {
    .p-function {
        padding-top: 25px;
        padding-bottom: 60px;
    }

    .p-function__head {
        gap: 1px;
        margin-top: 12px;
    }

    .p-function__head img {
        width: 131px;
        transform: translate(0, 2px);
    }

    .p-function__head span {
        font-size: 32px;
    }

    .p-function__list {
        margin-top: 32px;
        gap: 42px;
    }

    .p-function__list li {
        display: block;
    }

    .p-function__list--txts {
        width: 100%;
    }

    .p-function__list--subHead {
        font-size: 12px;
    }

    .p-function__list--head {
        margin-top: 12px;
        font-size: 26px;
    }

    .p-function__list--txt {
        margin-top: 16px;
        font-size: 14px;
    }

    .p-function__list--table {
        margin-top: 12px;
        gap: 4px;
        padding-left: 13px;
    }

    .p-function__list--table dl dt {
        width: 86px;
        font-size: 12px;
    }

    .p-function__list--table dl dd {
        width: calc(100% - 86px);
        font-size: 12px;
    }

    .p-function__list--link {
        margin-top: 16px;
    }

    .p-function__list--btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .p-function__list--img {
        width: 100%;
        border-radius: 10px;
        margin-top: 16px;
    }
}

/*===========================================================================*/
/*  learning  */
/*===========================================================================*/
.p-learning-memory {
    position: relative;
    overflow: hidden;
    margin: 0 10px;
}
.p-learning-memory::before {
    background: url('../img/learning-bg.webp') no-repeat center center/cover;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    width: 100%;
    border-radius: 20px;
    transform: translate(-50%, 0);
}

.p-learning {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 548px;
}
.p-memory {
    position: relative;
    z-index: 2;
    padding-bottom: 639px;
}

.p-learning__inner .c-head span {
    background: radial-gradient(29.95% 147.53% at 50% 100%, #FFF 0%, #C5D5D6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-learning__txts {
    margin-top: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.p-learning__txt {
    color: #cedbdb;
    font-feature-settings: 'palt' on;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: .04em;
}

.p-learning__img {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 319px;
    width: 1100px;
}
.p-memory .p-learning__img {
    top: 174px;
}

@media screen and (max-width: 900px) {
    .p-learning-memory::before {
        background: url('../img/learning-bg-sp.webp') no-repeat center center/cover;
        border-radius: 12px;
    }

    .p-learning {
        padding-top: 60px;
        padding-bottom: 206px;
    }
    .p-memory {
        padding-bottom: 226px;
    }

    .p-learning__txts {
        margin-top: 16px;
        gap: 12px;
    }

    .p-learning__txt {
        font-size: 14px;
    }

    .p-learning__img {
        top: 253px;
        width: 390px;
    }
    .p-memory .p-learning__img {
        top: 206px;
    }
}

/*===========================================================================*/
/*  plan  */
/*===========================================================================*/
.p-plan {
    margin-top: 120px;
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #f6f9fa;
    overflow: hidden;
}

.p-plan__list--wrapper {
    margin-top: 76px;
    overflow: visible !important;
}

.p-plan__list {
    display: flex;
    justify-content: space-between;
    overflow: visible !important;
}

.p-plan__list>li {
    width: 31.6%;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #d7e1e4;
    box-shadow: 20px 20px 50px 0 rgba(31, 41, 55, 0.06);
    padding: 32px 30px 30px;
    position: relative;
    height: auto !important;
}
.p-plan__list>li:nth-of-type(2) {
    border: 3px solid #007984;
    padding: 28px 26px 26px;
}

.p-plan__list--subHead {
    color: #707c81;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.p-plan__list>li:nth-of-type(2) .p-plan__list--subHead {
    color: #007984;
}

.p-plan__list--head {
    margin-top: 10px;
    font-feature-settings: 'palt' on;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .05em;
}

.p-plan__list--price {
    margin-top: 17px;
    padding-bottom: 25px;
    border-bottom: #d7e1e4 solid 1px;
}
.p-plan__list>li:nth-of-type(2) .p-plan__list--price {
    color: #007984;
}

.p-plan__list--price .u-en .--small {
    font-size: 33px;
    font-weight: 600;
    line-height: 1;
}

.p-plan__list--price .u-en .--large {
    font-size: 45px;
    font-weight: 600;
    line-height: 1;
}

.p-plan__list--price .--ja {
    font-feature-settings: 'palt' on;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-left: 5px;
    transform: translate(0, -2px);
}

.p-plan__list--price .--ja02 {
    font-feature-settings: 'palt' on;
    font-size: 33px;
    font-weight: 700;
    line-height: 1.22;
}

.p-plan__list ul {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-plan__list ul li {
    position: relative;
    padding-left: 26px;
    font-feature-settings: 'palt' on;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .02em;
}
.p-plan__list li:nth-of-type(3) ul li:nth-of-type(1) {
    color: #007984;
}

.p-plan__list ul li::before {
    background: url('../img/check.svg') no-repeat center center/contain;
    content: '';
    height: 12px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 16px;
}

.p-plan__list--link {
    text-align: center;
    margin-top: 60px;
}

.p-plan__list--btn {
    padding: 15px 22px;
    background-color: #00374b;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .04em;
}
.p-plan__list--btn::before {
    background-color: #007984;
    content: '';
    aspect-ratio: 1/1;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
    border-radius: 100vh;
}

.p-plan__list--btn span {
    position: relative;
    z-index: 2;
}

#plan-slide-pagination {
    display: none;
}

@media screen and (min-width: 901px) {
    .p-plan__list--btn:hover:before {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@media screen and (max-width: 900px) {
    .p-plan {
        margin-top: 60px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .p-plan__list--wrapper {
        width: 292px !important;
        margin: 24px auto 0 !important;
    }

    .p-plan__list {
        width: 292px !important;
    }

    .p-plan__list>li {
        width: 292px;
        border-radius: 12px;
        padding: 32px 24px 24px;
    }
    .p-plan__list>li:nth-of-type(2) {
        border: 2px solid #007984;
        padding: 30px 20px 20px;
    }

    .p-plan__list--subHead {
        font-size: 12px;
    }

    .p-plan__list--head {
        margin-top: 8px;
        font-size: 18px;
    }

    .p-plan__list--price {
        margin-top: 8px;
        padding-bottom: 20px;
    }

    .p-plan__list--price .u-en .--small {
        font-size: 26px;
    }

    .p-plan__list--price .u-en .--large {
        font-size: 38px;
    }

    .p-plan__list--price .--ja {
        font-size: 16px;
        margin-left: 4px;
        transform: translate(0, -2px);
    }

    .p-plan__list--price .--ja02 {
        font-size: 30px;
    }

    .p-plan__list ul {
        margin-top: 24px;
        gap: 10px;
    }

    .p-plan__list ul li {
        padding-left: 20px;
        font-size: 13px;
    }

    .p-plan__list ul li::before {
        height: 10px;
        top: 6px;
        width: 14px;
    }

    .p-plan__list--link {
        margin-top: 20px;
    }

    .p-plan__list--btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    #plan-slide-pagination {
        display: flex !important;
        gap: 8px !important;
        margin-top: 24px;
        align-items: center;
        justify-content: center;
    }

    .swiper-pagination-bullet {
        margin: 0 !important;
        width: 8px !important;
        height: 8px !important;
        border-radius: 100vh !important;
        background-color: #fff !important;
        opacity: 1 !important;
    }

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #007984 !important;
    }
}

/*===========================================================================*/
/*  support  */
/*===========================================================================*/
.p-support {
    overflow: hidden;
    position: relative;
    padding-top: 150px;
}
.p-support::before {
    background: url('../img/support-bg.webp') no-repeat center center/contain;
    content: '';
    height: 926px;
    left: calc(50% - 193px);
    position: absolute;
    bottom: 0;
    width: 1499px;
}

.p-support__inner {
    position: relative;
    z-index: 2;
}

.p-support .c-subHead {
    text-align: left;
}

.p-support .c-head {
    text-align: left;
}

.p-support__list--wrapper {
    margin-top: 50px;
    position: relative;
    width: calc(50% + 50vw);
    overflow-x: scroll;
    overflow-y: visible;
    padding-bottom: 150px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.p-support__list--wrapper::-webkit-scrollbar {
    display: none;
}

.p-support__list {
    display: flex;
}

.p-support__list li {
    width: 402px;
    min-width: 402px;
    padding-right: 25px;
}

.p-support__list--inner {
    height: 100%;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #d7e1e4;
    background: rgba(255, 255, 255, .50);
    box-shadow: 20px 20px 50px 0 rgba(31, 41, 55, .06);
    backdrop-filter: blur(8px);
}

.p-support__list--img {
    width: 66px;
}

.p-support__list--head {
    margin-top: 35px;
    padding-bottom: 20px;
    border-bottom: #d7e1e4 solid 1px;
    color: #007984;
    font-feature-settings: 'palt' on;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .02em;
}

.p-support__list--head02 {
    margin-top: 20px;
    font-feature-settings: 'palt' on;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .02em;
}

.p-support__list--txt {
    margin-top: 8px;
    color: #707c81;
    font-feature-settings: 'palt' on;
    font-size: 14px;
    line-height: 1.7;
}

@media screen and (max-width: 900px) {
    .p-support {
        padding-top: 60px;
    }
    .p-support::before {
        height: 520px;
        left: calc(50% - 192px);
        width: 842px;
    }

    .p-support__list--wrapper {
        margin-top: 24px;
        padding-bottom: 60px;
    }

    .p-support__list li {
        width: 292px;
        min-width: 292px;
        padding-right: 12px;
    }

    .p-support__list--inner {
        padding: 24px;
        border-radius: 16px;
    }

    .p-support__list--img {
        width: 32px;
    }

    .p-support__list--head {
        margin-top: 12px;
        padding-bottom: 16px;
        font-size: 20px;
    }

    .p-support__list--head02 {
        margin-top: 16px;
        font-size: 15px;
    }

    .p-support__list--txt {
        margin-top: 8px;
        font-size: 13px;
    }
}

@media screen and (max-width: 900px) {
    .p-support__list--wrapper {
        width: 100vw;
        left: -20px;
    }

    .p-support__list {
        padding-left: 20px;
    }
}

/*===========================================================================*/
/*  cta  */
/*===========================================================================*/
.p-cta {
    padding-top: 150px;
    padding-bottom: 150px;
    background: url('../img/cta-bg.webp') no-repeat center center/cover;
}

.p-cta__head {
    text-align: center;
    font-feature-settings: 'palt' on;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .02em;
}

.p-cta__head span {
    background: radial-gradient(29.95% 147.53% at 50% 100%, #FFF 0%, #C5D5D6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-cta__btns {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 26px;
}

.p-cta__btn {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 20px 32px 21px;
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .04em;
    background-color: #007984;
    transition: color .6s 0s cubic-bezier(.44,.14,.09,1.02);
    overflow: hidden;
}
.p-cta__btn.--02 {
    color: #007984;
    background-color: #fff;
}

.p-cta__btn::before {
    background-color: #fff;
    content: '';
    aspect-ratio: 1/1;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
    border-radius: 100vh;
}
.p-cta__btn.--02::before {
    background-color: #007984;
}

.p-cta__btn span {
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 901px) {
    .p-cta__btn:hover {
        color: #007984;
    }
    .p-cta__btn.--02:hover {
        color: #fff;
    }

    .p-cta__btn:hover:before {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@media screen and (max-width: 900px) {
    .p-cta {
        padding-top: 60px;
        padding-bottom: 60px;
        background: url('../img/cta-bg-sp.webp') no-repeat center center/cover;
    }

    .p-cta__head {
        font-size: 32px;
    }

    .p-cta__btns {
        margin-top: 24px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .p-cta__btn {
        width: 100%;
        max-width: 166px;
        text-align: center;
        padding: 14px 15px 15px;
        font-size: 16px;
    }
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.p-footer {
    padding: 258px 40px 40px;
    background-color: #007984;
    position: relative;
}

.p-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.p-footer__txt {
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .06em;
}

.p-footer__logo {
    width: 798px;
    margin-top: 30px;
}

.p-footer__contact--head {
    color: #fff;
    font-feature-settings: 'palt' on;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .04em;
}

.p-footer__contact--table {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.p-footer__contact--table dl {
    display: flex;
}

.p-footer__contact--table dl dt {
    width: 63px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
}

.p-footer__contact--table dl dd {
    width: 265px;
    color: #fff;
}

.p-footer__contact--table dl dd.u-en {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
}

.p-footer__contact--table dl dd.--ja {
    font-feature-settings: 'palt' on;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .04em;
}

.p-footer__sns {
    margin-top: 312px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.p-footer__sns li {
    width: 22px;
}

.p-footer__copyRight {
    margin-top: 15px;
    color: #fff;
    text-align: right;
    font-size: 10px;
    line-height: 1;
}

@media screen and (max-width: 1080px) {
    .p-footer__logo {
        width: 618px;
    }

    .p-footer__sns {
        margin-top: 260px;
    }
}

@media screen and (max-width: 900px) {
    .p-footer {
        padding: 60px 20px;
    }

    .p-footer__inner {
        max-width: 500px;
        display: block;
        margin: 0 auto;
    }

    .p-footer__upper {
        display: block;
    }

    .p-footer__txt {
        font-size: 16px;
    }

    .p-footer__logo {
        width: 100%;
        max-width: 335px;
        margin-top: 16px;
    }

    .p-footer__upper--right {
        margin-top: 40px;
    }

    .p-footer__contact--head {
        font-size: 14px;
    }

    .p-footer__contact--table {
        margin-top: 12px;
        gap: 9px;
    }

    .p-footer__contact--table dl {
        display: flex;
    }

    .p-footer__contact--table dl dt {
        width: 63px;
        font-size: 12px;
    }

    .p-footer__contact--table dl dd {
        width: calc(100% - 63px);
    }

    .p-footer__contact--table dl dd.u-en {
        font-size: 12px;
    }

    .p-footer__contact--table dl dd.--ja {
        font-size: 10px;
    }

    .p-footer__sns {
        margin-top: 30px;
        justify-content: flex-start;
    }

    .p-footer__copyRight {
        margin-top: 18px;
        color: #fff;
        text-align: left;
    }
}