/* web font
*/

:root {
    --ft-urban: "Urbanist", sans-serif;
    --ft-poppin: "Poppins", sans-serif;
    --main-theme-color: #F5DA4A;
    --base-bk: #252525;
    --main-w: calc(100% - 24px);
}

* {
    box-sizing: border-box;
    color: var(--base-bk);
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
a {
    color: var(--base-bk);
    text-decoration: none;
}
a:hover {
    color: var(--base-bk);
}
img {
    height: auto;
    max-width: 100%;
}
ul,
p {
    margin: 0;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}
/* header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 37px;
    margin: 0 auto;
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header.fixed {}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: calc(100% - 5%);
}
.logo {
    display: block;
    width: 155px;
}
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    margin: 0;
}
.header-nav__list li a {
    font-size: 14px;
    font-weight: 500;
}
.line a {
    background: var(--base-bk);
    border-radius: 5px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    text-align: center;
    width: 113px;
}
.header-panel {
    display: none;
}
@media screen and (max-width: 1168px) {
    .logo {
        width: 130px;
    }
    .header-nav__list {
        gap: 14px;
    }
}
@media screen and (max-width: 1000px) {
    .logo {
        width: 127px;
    }
    .header-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .header-nav {
        position: relative;
        z-index: 1;
    }
    .header-nav__list li:not(.line) {
        display: none;
    }
    .line a {
        border-radius: 5px 0 0 5px;
        height: 28px;
        width: 110px;
    }
    .header-panel {
        background: #fff;
        background-image: url(../../images/new/logo-f.png);
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: 100%;
        height: 100%;
        overflow-y: auto;
        padding: 100px 0 30vw;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
    }
    .header-panel__inner {
        background: var(--main-theme-color);
        border-radius: 8px;
        margin: 0 auto;
        padding: 12vw 8vw;
        width: 90%;
    }
    .header-panel__menu {
        margin: 0 0 12vw;
    }
    .panel-menu__ttl {
        color: #fff;
        font-family: var(--ft-urban);
        font-size: 8vw;
        font-weight: 800;
    }
    .panel-menu__list {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        row-gap: 5vw;
        margin: 4vw 0 0;
    }
    .panel-menu__list li {
        width: 50%;
    }
    .panel-menu__list li a {
        font-size: 4vw;
    }
    .header-panel__cta a {
        background: var(--base-bk);
        border-radius: 8px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 5vw;
        font-weight: 600;
        height: 20vw;
        width: 100%;
    }
    /* hamberger */
    .header-menu {
        background: #fff;
        border: 1px solid var(--base-bk);
        border-radius: 0 5px 5px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 28px;
        text-align: center;
        width: 50px;
        z-index: 999999;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        height: 9px;
        position: relative;
        cursor: pointer;
        width: 23px;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #545454;
        border-radius: 4px;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 0;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 4.5px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        top: 9px;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: 4.5px;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        top: 4.5px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        animation: header-menu__bar01 .75s forwards;
    }
    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .header-menu___trigger span:nth-of-type(3) {
        animation: header-menu__bar03 .75s forwards;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        transform: rotate(45deg);
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        transform: rotate(-45deg);
    }
}
@media screen and (max-width: 768px) {}

/* footer */
.footer {
    background: var(--base-bk);
    margin-top: auto;
}
.footer-inner {
    background: #fff;
    background-image: url(../../images/new/logo-f.png);
    background-repeat: no-repeat;
    background-position: right bottom -1px;
    background-size: 45%;
    border-radius: 16px;
    margin: 0 auto;
    padding: 80px 0 25px;
    width: calc(100% - 64px);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: var(--main-w);
    max-width: 1120px;
}
.footer-left {
    width: 520px;
}
.footer-right {
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 560px);
}
.footer-text {
    margin: 0 0 27px;
}
.footer-text p {
    font-size: 48px;
    font-weight: 700;
}
.footer-cta {
    padding-bottom: 75px;
    position: relative;
}
.footer-cta__image {
    margin: 0 auto;
    width: 100%;
    max-width: 333px;
}
.footer-cta a {
    background: var(--main-theme-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    height: 104px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.footer-nav {
    width: 426px;
}
.footer-nav__ttl {
    color: var(--main-theme-color);
    font-family: var(--ft-urban);
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 30px;
}
.footer-nav__items {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.footer-nav__item ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-nav__item ul li a {
    font-size: 14px;
    font-weight: 500;
}
.copyright {
    background: var(--base-bk);
    color: #fff;
    font-family: var(--ft-urban);
    font-size: 14px;
    font-weight: 600;
    padding: 75px 0 32px;
    text-align: center;
}
@media screen and (max-width: 968px) {
    .footer-inner {
        background-position: center bottom;
        background-size: 98%;
        padding: 12vw 0 30vw;
        width: calc(100% - 10vw);
    }
    .footer-flex {
        max-width: 1120px;
    }
    .footer-left {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .footer-right {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .footer-nav {
        margin: 0 0 50px;
    }
}
@media screen and (max-width: 768px) {
    .footer-flex {
        padding: 0 3vw;
    }
    .footer-text {
        margin: 0 0 7vw;
    }
    .footer-text p {
        font-size: 7.5vw;
    }
    .footer-cta {
        padding-bottom: 14vw;
        width: 100%;
    }
    .footer-cta__image {
        max-width: 75vw;
    }
    .footer-cta a {
        font-size: 5.5vw;
        height: 20vw;
    }
    .footer-nav {
        margin: 0 0 10vw;
        width: 100%;
        max-width: max-content;
    }
    .footer-nav__ttl {
        font-size: 6vw;
        margin: 0 0 4vw;
    }
    .footer-nav__items {
        gap: 8vw;
    }
    .footer-nav__item ul {
        gap: 4vw;
    }
    .footer-nav__item ul li a {
        font-size: 3.5vw;
    }
    .copyright {
        font-size: 3vw;
        padding: 5vw 0 3vw;
    }
}
@media screen and (max-width: 568px) {
    .footer-nav {
        width: 100%;
        max-width: none;
    }
    .footer-nav__items {
        gap: 0;
    }
}