html { 
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #303135;
    background-color: #f4f0e5;
}

body {
    min-width: 375px;
}

.of-hidden {
    overflow: hidden;
}

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), color .6s 0s cubic-bezier(.44,.14,.09,1.02);
        color: inherit;
    }

    .hover-nomal:hover {
        opacity: .73;
        color: #1ab6a1;
    }
}

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

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

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

@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;
}

.c-btn {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.c-btn__txt {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .1em;
    position: relative;
}
.c-btn__txt::before {
    background-color: #303135;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transition: opacity .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

.c-btn__img {
    width: 40px;
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

@media screen and (min-width: 901px) {
    .c-btn:hover .c-btn__txt::before {
        opacity: 1;
    }

    .c-btn:hover .c-btn__img {
        transform: rotate(360deg);
    }
}

@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;
    }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 95;
    padding: 27px 30px;
}

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

.p-header__logo {
    display: flex;
    width: 282px;
    position: relative;
}

.p-header__logo .--white {
    transition: opacity .6s cubic-bezier(.44,.14,.09,1.02);
    opacity: 0;
}
.p-header.js-white .p-header__logo .--white,
.p-header.--top .p-header__logo .--white {
    opacity: 1;
}

.p-header__logo .--black {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    transition: opacity .6s cubic-bezier(.44,.14,.09,1.02);
}
.p-header.js-white .p-header__logo .--black,
.p-header.--top .p-header__logo .--black {
    opacity: 0;
}

.p-header__navs {
    display: flex;
    align-items: center;
    gap: 24px;
}

.p-header__navs ul {
    display: flex;
    gap: 22px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    transition: color .6s cubic-bezier(.44,.14,.09,1.02);
}
.p-header.js-white .p-header__navs ul,
.p-header.--top .p-header__navs ul {
    color: #fff;
}

.p-header__navs ul a {
    position: relative;
    transition: color .6s cubic-bezier(.44,.14,.09,1.02);
}
.p-header__navs ul a:hover {
    color: #1ab6a1 !important;
}

.p-header__btns {
    display: flex;
    gap: 15px;
}

.p-header__btn {
    width: 165px;
    height: 52px;
    background: linear-gradient(120deg, #FFE294, #F3B612);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* backgroundプロパティのtransitionは効かないため、疑似要素でグラデーションを制御 */
    position: relative;
    overflow: hidden;
    color: #303135;
    z-index: 1;
}
.p-header__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(120deg, #FFE294, #F3B612);
    transition: opacity 0.6s cubic-bezier(.44,.14,.09,1.02);
    opacity: 1;
    border-radius: 10px;
}
.p-header__btn:hover::before {
    opacity: 0;
}
.p-header__btn::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(120deg, #F3B612, #FFE294);
    transition: opacity 0.6s cubic-bezier(.44,.14,.09,1.02);
    opacity: 0;
    border-radius: 10px;
}
.p-header__btn:hover::after {
    opacity: 1;
}
.p-header__btn > * {
    position: relative;
    z-index: 1;
}
.p-header__btn:hover {
    opacity: 1 !important;
    color: #303135 !important;
}
.p-header__btn.--contact::before {
    background: linear-gradient(120deg, #2CCDB8, #0FA894);
}
.p-header__btn.--contact::after {
    background: linear-gradient(120deg, #0FA894, #2CCDB8);
}
.p-header__btn.--contact {
    color: #fff;
}
.p-header__btn.--contact:hover {
    color: #fff !important;
}

.p-header__btn span {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding-left: 24px;
}
.p-header__btn.--contact span {
    color: #fff;
    padding-left: 29px;
}

.p-header__btn span::before {
    background: url('../img/common/icon-net.svg') no-repeat center center/contain;
    content: '';
    height: 18px;
    left: 0;
    position: absolute;
    top: -1px;
    width: 18px;
}
.p-header__btn.--contact span::before {
    background: url('../img/common/icon-contact.svg') no-repeat center center/contain;
    height: 15px;
    top: 0;
    width: 20px;
}

.p-hamburgerBtn {
    display: none;
}

.p-header__nav--wrapper {
    position: relative;
    cursor: pointer;
}

.p-header__nav--wrapper .--txt {
    position: relative;
    padding-right: 24px;
}
.p-header__nav--wrapper .--txt::before {
    background: url('../img/common/header-arrow.svg') no-repeat center center/contain;
    content: '';
    height: 16px;
    right: 0;
    position: absolute;
    top: 5px;
    width: 16px;
    transition: transform .6s cubic-bezier(.44,.14,.09,1.02);
}

.p-header__nav--contents {
    position: absolute;
    padding-top: 18px;
    top: calc(100% - 1px);
    left: 50%;
    transform: translate(-50%, 0);
    width: 500px;
    transition: opacity .6s cubic-bezier(.44,.14,.09,1.02);
    opacity: 0;
    pointer-events: none;
}
.p-header__nav--contents.--02 {
    width: 740px;
}
.p-header__nav--contents.--03 {
    width: 230px;
}
.p-header__nav--contents.--03 p {
    color: #303135;
    margin-top: 0px;
}
.p-header__nav--contents.--03>div {
    display: flex;
    flex-direction: column;
}

.p-header__nav--wrapper:hover .p-header__nav--contents {
    opacity: 1;
    pointer-events: all;
}

.p-header__nav--contents>div {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.03);
}

.p-header__nav--content figure {
    overflow: hidden;
    border-radius: 12px;
}

.p-header__nav--content figure img {
    transition: transform .6s cubic-bezier(.44,.14,.09,1.02);
}

.p-header__nav--content p {
    color: #303135;
    margin-top: 12px;
    font-size: 14px;
    position: relative;
    padding-left: 22px;
}
.p-header__nav--content p::before {
    background: url('../img/common/btn-arrow.svg') no-repeat center center/contain;
    content: '';
    height: 16px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 16px;
    transition: transform .6s cubic-bezier(.44,.14,.09,1.02);
}

    .p-header__nav--content p span {
        position: relative;
        transition: color .6s cubic-bezier(.44,.14,.09,1.02);
    }

@media screen and (min-width: 901px) {
    .p-header__navs ul a:hover:before {
        opacity: 1;
    }

    .p-header__nav--wrapper:hover .--txt::before {
        transform: rotate(180deg);
    }

    .p-header__nav--content:hover figure img {
        transform: scale(1.1);
    }

    .p-header__nav--content:hover p::before {
        transform: rotate(360deg);
    }

    .p-header__nav--content:hover p span {
        color: #1ab6a1;
    }
}

@media screen and (max-width: 1280px) {
    .p-header {
        padding: 27px 10px;
    }

    .p-header__logo {
        width: 202px;
    }

    .p-header__navs {
        gap: 12px;
    }

    .p-header__navs ul {
        gap: 15px;
        font-size: 12px;
    }

    .p-header__btns {
        gap: 10px;
    }

    .p-header__btn {
        width: 115px;
        height: 42px;
    }

    .p-header__btn span {
        font-size: 13px;
        padding-left: 18px;
    }
    .p-header__btn.--contact span {
        color: #fff;
        padding-left: 22px;
    }

    .p-header__btn span::before {
        height: 14px;
        top: 0;
        width: 14px;
    }
    .p-header__btn.--contact span::before {
        height: 12px;
        top: 1px;
        width: 17px;
    }
}

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

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

    .p-header__logo {
        width: 194px;
        position: relative;
        z-index: 2;
    }

    .p-header__navs {
        flex-direction: column;
        gap: 0;
        position: fixed;
        z-index: 1;
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
        background: linear-gradient(354deg, #000 0%, #666 100%);
        padding: 80px 20px 80px;
        transition: opacity .6s cubic-bezier(.44,.14,.09,1.02);
        pointer-events: none;
        opacity: 0;
    }
    .p-header__navs.js-active {
        pointer-events: all;
        opacity: 1;
    }

    .p-header__navs ul {
        display: none;
    }

    .p-header__navs .p-footer__navs {
        color: #fff;
        max-width: 500px;
        margin: 0 auto;
    }

    .p-header__navs ul li {
        width: 100%;
    }

    .p-header__navs ul a {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        height: 55px;
        border-radius: 12px;
        background-color: #5E5E5E;
        padding: 5px 22px 7px 35px;
    }
    .p-header__navs ul a::before {
        background: #2ce3c0 !important;
        height: 7px;
        left: 22px;
        bottom: unset;
        top: 50%;
        width: 7px;
        opacity: 1;
        transform: translate(0, -50%);
        border-radius: 100vh;
    }

    .p-header__btns {
        margin-top: 30px;
        padding-top: 30px;
        max-width: 500px;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        border-top: rgba(255, 255, 255, 0.20) solid 1px;
    }

    .p-header__btn {
        width: 100%;
        height: 55px;
        justify-content: left;
        padding: 22px;
    }

    .p-header__btn span {
        font-size: 15px;
        padding-left: 24px;
    }
    .p-header__btn.--contact span {
        padding-left: 29px;
    }

    .p-header__btn span::before {
        height: 18px;
        top: -1px;
        width: 18px;
    }
    .p-header__btn.--contact span::before {
        height: 15px;
        top: 0;
        width: 20px;
    }

    .p-hamburgerBtn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        position: relative;
        z-index: 2;
    }

    .p-hamburgerBtn__bars {
        position: relative;
        width: 40px;
        height: 9px;
    }
    .p-hamburgerBtn__bars span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #303135;
        left: 0;
        top: 0;
        transition: transform .6s cubic-bezier(.44,.14,.09,1.02), background-color .6s cubic-bezier(.44,.14,.09,1.02);
    }
    .p-header.js-white .p-hamburgerBtn__bars span,
    .p-header.--top .p-hamburgerBtn__bars span {
        background-color: #fff;
    }

    .p-hamburgerBtn__bars span:nth-of-type(2) {
        top: unset;
        bottom: 0;
    }
    .p-hamburgerBtn.js-active .p-hamburgerBtn__bars span:nth-of-type(1) {
        transform: translate(0, 3px) rotate(14deg);
    }
    .p-hamburgerBtn.js-active .p-hamburgerBtn__bars span:nth-of-type(2) {
        transform: translate(0, -3px) rotate(-14deg);
    }

    .p-hamburgerBtn__txt {
        font-size: 13px;
        font-weight: 900;
        line-height: 1;
        letter-spacing: .1em;
        position: relative;
        transition: color .6s cubic-bezier(.44,.14,.09,1.02);
    }
    .p-header.js-white .p-hamburgerBtn__txt,
    .p-header.--top .p-hamburgerBtn__txt {
        color: #fff;
    }

    .p-hamburgerBtn__txt span {
        transition: opacity .6s cubic-bezier(.44,.14,.09,1.02);
    }

    .p-hamburgerBtn__txt .--close {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        opacity: 0;
    }

    .p-hamburgerBtn.js-active .p-hamburgerBtn__txt .--menu {
        opacity: 0;
    }
    .p-hamburgerBtn.js-active .p-hamburgerBtn__txt .--close {
        opacity: 1;
    }
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.p-footer {
    position: relative;
    padding-top: 90px;
    padding-bottom: 78px;
    color: #fcf9f5;
    z-index: 5;
}
.p-footer::before {
    background: linear-gradient(298deg, #000 0%, #666 100%);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.p-footer__go-top:hover .p-footer__illust {
    transform: translate(-50%,-40px);
}

.p-footer__illust {
    position: absolute;
    width: 153px;
    top: -111px;
    left: calc(50% - 18px);
    transform: translate(-50%, 0);
    z-index: -1;

    transition: transform 0.3s ease-in-out;
}

.p-footer__inner {
    position: relative;
    z-index: 1;
}

.p-footer__contact {
    padding: 61px 100px;
    background: url('../img/common/contact-bg.webp') no-repeat center center/cover;
    border-radius: 10px;
}

.p-footer__contact--head {
    font-size: 74px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .05em;
}

.p-footer__contact--txt {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: .05em;
}

.p-footer__contact--link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100vh;
    background: linear-gradient(99deg, #2CE3C0 23.34%, #187D6A 206.85%);
    width: 272px;
    height: 61px;
    margin-top: 20px;
}

.p-footer__contact--link span {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .05em;
    padding-left: 32px;
    position: relative;
    color: #fff !important;
}
.p-footer__contact--link span::before {
    background: url('../img/common/icon-contact.svg') no-repeat center center/contain;
    content: '';
    height: 18px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 24px;
}

.p-footer__middle {
    margin-top: 58px;
    display: flex;
    justify-content: space-between;
}

.p-footer__infos {
    width: 330px;
}

.p-footer__logo {
    display: flex;
}

.p-footer__company {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: .05em;
}

.p-footer__address {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .05em;
}

.p-footer__tel {
    margin-top: 27px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .05em;
}

.p-footer__links {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.p-footer__links li:nth-of-type(1) {
    width: 24px;
}
.p-footer__links li:nth-of-type(2) {
    width: 30px;
}
.p-footer__links li:nth-of-type(3) {
    width: 36px;
}

.p-footer__navs {
    width: calc(100% - 370px);
    max-width: 739px;
    display: flex;
    justify-content: space-between;
}
.p-footer__navs.sp-only {
    display: none;
}

.p-footer__nav {
    width: 200px;
}

.p-footer__nav--link {
    width: 100%;
    height: 45px;
    border-radius: 100vh;
    background: rgba(255, 255, 255, .20);
    display: flex;
    align-items: center;
    padding: 5px 10px 5px 36px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .05em;
    position: relative;
}
.p-footer__nav--link::before {
    background-color: #2CE3C0;
    content: '';
    height: 8px;
    position: absolute;
    top: 50%;
    width: 8px;
    border-radius: 100vh;
    left: 20px;
    transform: translate(0, -50%);
}

.p-footer__nav--link.--mt01 {
    margin-top: 15px;
}
.p-footer__nav--link.--mt02 {
    margin-top: 30px;
}

.p-footer__nav--link02 {
    padding-left: 14px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .05em;
    margin-top: 10px;
    width: 100%;
}
.p-footer__nav--link02::before {
    content: '・';
    left: 0;
    position: absolute;
    top: 0;
}

.p-footer__nav--link02.--mt01 {
    margin-top: 15px;
}

.p-footer__nav--link02 span {
    text-decoration: underline;
}

.p-footer__lower {
    margin-top: 48px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-footer__copyRight {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .04em;
}

.p-footer__nav02 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
}

.p-footer__nav02 a {
    font-size: 14px;
    line-height: 1;
    letter-spacing: .05em;
}

.p-footer__nav02 .--border {
    width: 1px;
    height: 12px;
    background-color: #fcf9f5;
}

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

    .p-footer__navs {
        width: calc(100% - 230px);
    }
}

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

    .p-footer__go-top {
        transition: transform 0 none;
    }

    .p-footer__illust {
        width: 89px;
        top: -64px;
        left: calc(50% - 4px);
    }

    .p-footer__inner {
        position: relative;
        z-index: 1;
    }

    .p-footer__contact {
        padding: 40px 20px 35px;
        background: url('../img/common/contact-bg-sp.webp') no-repeat center center/cover;
        border-radius: 6px;
    }

    .p-footer__contact--head {
        font-size: 42px;
        text-align: center;
    }

    .p-footer__contact--txt {
        font-size: 13px;
        line-height: 1.35;
        text-align: center;
    }

    .p-footer__contact--link {
        width: 261px;
        height: 52px;
        margin: 24px auto 0;
    }

    .p-footer__contact--link span {
        font-size: 15px;
        padding-left: 28px;
    }
    .p-footer__contact--link span::before {
        height: 15px;
        top: 4px;
        width: 20px;
    }

    .p-footer__middle {
        margin-top: 50px;
        display: block;
    }

    .p-footer__infos {
        width: 100%;
    }

    .p-footer__logo {
        display: flex;
        width: 191px;
        margin: 0 auto;
    }

    .p-footer__company {
        margin-top: 13px;
        text-align: center;
    }

    .p-footer__address {
        margin-top: 7px;
        font-size: 12px;
        text-align: center;
    }

    .p-footer__tel {
        margin-top: 10px;
        font-size: 12px;
        text-align: center;
    }

    .p-footer__links {
        margin-top: 24px;
        justify-content: center;
    }

    .p-footer__navs {
        margin-top: 38px;
        width: 100%;
    }
    .p-footer__navs.pc-only {
        display: none;
    }
    .p-footer__navs.sp-only {
        display: flex;
    }

    .p-footer__nav {
        width: calc(50% - 4px);
    }

    .p-footer__nav--link {
        width: 100%;
        height: 45px;
        padding: 5px 10px 5px 25px;
        font-size: 12px;
    }
    .p-footer__nav--link::before {
        height: 7px;
        width: 7px;
        left: 12px;
    }

    .p-footer__nav--link.--mt01 {
        margin-top: 10px;
    }
    .p-footer__nav--link.--mt02 {
        margin-top: 16px;
    }

    .p-footer__nav--link02 {
        font-size: 12px;
        width: 100%;
        line-height: 1;
        margin-top: 9px;
    }

    .p-footer__nav--link02.--mt01 {
        margin-top: 10px;
    }

    .p-footer__lower {
        margin-top: 35px;
        padding-top: 25px;
        flex-direction: column-reverse;
        justify-content: center;
        gap: 17px;
    }

    .p-footer__copyRight {
        font-size: 12px;
    }
}

/*===========================================================================*/
/*  lower mv  */
/*===========================================================================*/
.c-lower__mv {
    position: relative;
    padding-top: 228px;
}

.c-lower__mv--bg {
    border-radius: 100vh;
    opacity: 0.15;
    background:#0EE2B9;
    filter: blur(150px);
    width: 535px;
    height: 535px;
    position: absolute;
    top: 617px;
    left: calc(50% + 309px);
}

.c-lower__mv--txts {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    flex-wrap: wrap;
    z-index: 2;
    max-width: 1440px;
}

.c-breadcrumbs {
    padding-bottom: 60px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .02em;
}

.c-breadcrumbs__inner {
    display: flex;
    flex-wrap: wrap;
    column-gap: 46px;
    row-gap: 5px;
}

.c-breadcrumbs__inner a.c-breadcrumbs__item {
    position: relative;
    text-decoration: underline;
}
.c-breadcrumbs__inner a.c-breadcrumbs__item::before {
    background-color: #ffe294;
    content: '';
    height: 2px;
    left: calc(100% + 10px);
    position: absolute;
    top: 50%;
    width: 24px;
    border-radius: 100vh;
    transform: translate(0, -50%);
}
.c-breadcrumbs__inner a.c-breadcrumbs__item::after {
    background-color: #0ee2b9;
    content: '';
    height: 2px;
    left: calc(100% + 10px);
    position: absolute;
    top: 50%;
    width: 12px;
    border-radius: 100vh;
    transform: translate(0, -50%);
}

.c-breadcrumbs__inner span.c-breadcrumbs__item {
    color: #acacac;
}

.c-lower__mv--head {
    position: relative;
    padding-left: 50px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .1em;
}
.c-lower__mv--head::before {
    background: url('../img/common/icon-face-green.svg') no-repeat center center/contain;
    content: '';
    height: 32px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 36px;
}

.c-lower__mv--subHead {
    margin-top: 17px;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
}

.c-lower__mv--img {
    margin-top: 40px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.c-lower__mv--img picture {
    height: 534px;
    overflow: hidden;
    border-radius: 40px;
}

.c-lower__mv--img picture img {
    height: 100%;
    object-fit: cover;
}

.c-lower__mv--navs {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.c-lower__mv--nav {
    max-width: 800px;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px;
    background-color: #fff;
    border-radius: 18px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 15px 15px 25px 0 rgba(230, 224, 201, .20);
}

.c-lower__mv--nav a {
    position: relative;
    padding-right: 25px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .12em;
}
.c-lower__mv--nav a::before {
    background: url('../img/common/arrow-bottom.svg') no-repeat center center/contain;
    content: '';
    height: 15px;
    right: 0;
    position: absolute;
    top: calc(50% + 1px);
    width: 11px;
    transform: translate(0, -50%);
    transition: top .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

.c-breadcrumbs__wrapper {
    padding: 112px 30px 0;
}

.c-breadcrumbs__wrapper .c-breadcrumbs {
    padding-bottom: 0;
}

@media screen and (min-width: 901px) {
    .c-lower__mv--nav a:hover:before {
        top: calc(50% + 4px);
    }
}

@media screen and (max-width: 900px) {
    .c-lower__mv {
        padding-top: 78px;
    }

    .c-lower__mv--bg {
        filter: blur(87px);
        width: 313px;
        height: 313px;
        top: 320px;
        left: calc(50% + 48px);
    }

    .c-lower__mv--txts {
        flex-direction: column-reverse;
        align-items: flex-start;
        max-width: unset;
    }

    .c-breadcrumbs {
        padding-bottom: 0;
        font-size: 10px;
    }

    .c-breadcrumbs__inner {
        column-gap: 28px;
        row-gap: 5px;
    }

    .c-breadcrumbs__inner a.c-breadcrumbs__item::before {
        left: calc(100% + 5px);
        width: 18px;
    }
    .c-breadcrumbs__inner a.c-breadcrumbs__item::after {
        left: calc(100% + 5px);
        width: 9px;
    }

    .c-lower__mv--heads {
        margin-top: 57px;
    }

    .c-lower__mv--head {
        padding-left: 31px;
        font-size: 16px;
    }
    .c-lower__mv--head::before {
        height: 21px;
        top: 2px;
        width: 23px;
    }

    .c-lower__mv--subHead {
        margin-top: 15px;
        font-size: 46px;
    }

    .c-lower__mv--img {
        margin-top: 20px;
        padding: 0 20px;
    }

    .c-lower__mv--img picture {
        height: 255px;
        border-radius: 20px;
    }

    .c-lower__mv--navs {
        margin-top: 30px;
    }

    .c-lower__mv--nav {
        max-width: 335px;
        gap: 20px;
        padding: 18px 10px;
        border-radius: 10px;
    }

    .c-lower__mv--nav a {
        padding-right: 14px;
        font-size: 13px;
        line-height: 1.1;
    }
    .c-lower__mv--nav a::before {
        height: 11px;
        top: calc(50% + 1px);
        width: 8px;
    }

    .c-breadcrumbs__wrapper {
        padding: 78px 20px 0;
    }
}

/*===========================================================================*/
/*  btns  */
/*===========================================================================*/
.c-btns {
    position: relative;
    z-index: 2;
}

.c-btns__inner {
    padding-top: 60px;
    padding-bottom: 171px;
    border-top: solid 1px #ACACAC;
    margin: 0 auto;
}

.c-btns__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.c-btns__list li {
    width: calc(100%/3 - 80px/3);
    min-width: 360px;
    height: 85px;
}

.c-btns__list--link {
    position: relative;
    height: 100%;
    width: 100%;
    padding-left: 35px;
    padding-right: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF;
    border-radius: 20px;
}

.c-btns__list--link figure {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    transition: transform 0.3s ease-in-out;
}

@media screen and (min-width: 901px) {
    .c-btns__list--link:hover figure {
        transform: translateY(-50%) rotate(360deg);
        transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
    }
}

.c-btns__list--link p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: .12em;
    position: relative;
}

.c-btns__list--link p::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #303135;
    opacity: 0;
    transition: opacity .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

@media screen and (min-width: 901px) {
    .c-btns__list--link:hover p::after {
        opacity: 1;
    }
}


@media screen and (max-width: 900px) {
    .c-btns__inner {
        padding-top: 50px;
        padding-bottom: 89px;
        width: 100%;
        margin: 0 auto;
    }

    .c-btns__list {
        flex-direction: column;
        gap: 10px;
    }

    .c-btns__list li {
        width: 100%;
        height: 76px;
        min-width: none;
    }

    .c-btns__list--link {
        padding-left: 25px;
        padding-right: 20px;
        border-radius: 10px;
    }

    .c-btns__list--link figure {
        width: 40px;
        right: 20px;
    }

    .c-btns__list--link p {
        font-size: 16px;
        padding-right: 40px;
    }
}

/*===========================================================================*/
/*  post card  */
/*===========================================================================*/
.c-postCard__link {
    display: block;
    position: relative;
}

.c-postCard__tags {
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    flex-wrap: wrap;
    gap: 5px;
    display: flex;
    z-index: 3;
}

.c-postCard__tag {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 7px 8px;
    border-radius: 100vh;
    background: linear-gradient(111deg, #FFE294 17.73%, #F3B612 185.97%);
}

.c-postCard__imgWrapper {
    aspect-ratio: 380/200;
    overflow: hidden;
    border-radius: 10px;
    border: #fff solid 5px;
}

.c-postCard__img {
    height: 100%;
}

.c-postCard__img img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

.c-postCard__dates {
    margin-top: 9px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.c-postCard__date {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .08em;
}

.c-postCard__new {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    padding: 4px 8px;
    background-color: #ed1414;
    border-radius: 2px;
}

.c-postCard__head {
    margin-top: 3px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.c-postCard__txt {
    margin-top: 3px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.6;
}

@media screen and (min-width: 901px) {
    .c-postCard__link:hover .c-postCard__img img {
        transform: scale(1.1);
    }
}

.page-tmp {
    padding-bottom: 161px;
    padding-top: 60px;
    position: relative;
    z-index: 2;
}

.page-tmp__inner {
    padding-top: 70px;
}
.page-tmp__txts {
    /*max-width: 894px;*/
    background-color: #FFF;
    padding: 45px;
    border-radius: 30px;
    margin: 0 auto;
}
.u-en-big {
    text-transform: uppercase;
}
@media screen and (max-width: 900px) {
    .page-tmp {
        padding: 30px 0 0 ;
    }

    .page-tmp__inner {
        padding: 30px 0 0  ;
    }
    .page-tmp__txts {
        padding: 40px 20px 92px;
        border-radius: 30px 30px 0 0;
    }
}
.grecaptcha-badge { visibility: hidden; }