/*___________________________
Body
___________________________*/

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    background: #fff;
    font-family: var(--familyNotoSans);
}

body.locked {
    overflow: hidden;
}

p,
h5,
h4,
h3,
h2,
h1,
a,
dd,
dt,
li,
figcaption,
button,
input,
label,
textarea {
    color: var(--colorBlack);
    font-family: var(--familyJp);
    font-size: var(--fontMax16Min14);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.midText {
    font-size: 14px;
}

.hoverLink {
    transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hoverLink:hover {
    opacity: 0.7;
}

.cta {
    align-items: center;
    background: #00111f;
    border: 1px solid #00111f;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.16em;
    position: relative;
    transition: all 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
    width: 100%;
}

.cta::after {
    background: url(../images/common/icon-chevron_white.svg) no-repeat center /
        cover;
    content: "";
    height: 15px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.cta:hover,
.cta:focus,
.form__submit:has(input[type="submit"]:focus) {
    background: #ff7530;
    border-color: #fff;
    outline-color: #ff7530;
}

/*___________________________
Container
___________________________*/

.container {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1080px;
    padding: 0 20px;
}

.for-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .for-sp {
        display: block;
    }
}

/*___________________________
Header
___________________________*/
.header {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
}

.navBar {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 111px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 48px;
    position: relative;
    width: 100%;
    z-index: 10;
}

.navBar__bg {
    height: 100%;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
}

.navBar__bg::before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(1.1);
    width: 100%;
}

@supports (backdrop-filter: blur(2px)) {
    .navBar__bg::before {
        backdrop-filter: blur(2px);
    }
}

@supports not (backdrop-filter: blur(2px)) {
    .navBar__bg::before {
        background: rgba(255, 255, 255, 0.3);
        filter: blur(10px);
    }
}

.navBar__logo img {
    max-width: 200px;
}

.navBar__center {
    display: flex;
    gap: clamp(16px, 1.8vw, 24px);
}

.navBar__center a,
.sideDrawer__nav a {
    color: #2e2e30;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: opacity 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.navBar__center a:hover,
.sideDrawer__nav a:hover {
    opacity: 0.6;
}

.navBar .cta,
.sideDrawer .cta {
    height: 63px;
    max-width: 240px;
}

.sideDrawer .cta {
    display: none;
}

.hamburger {
    background: transparent;
    border: none;
    display: none;
    height: 12px;
    position: relative;
    width: 40px;
}

.hamburger span {
    background: #00111f;
    height: 1px;
    position: absolute;
    transition: 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    width: 100%;
}

.hamburger span:first-child {
    left: 0;
    top: 0;
}

.hamburger span:last-child {
    bottom: 0;
    left: 0;
}

.open .hamburger span:first-child {
    transform: translateY(5px) rotate(25deg);
}

.open .hamburger span:last-child {
    transform: translateY(-6px) rotate(-25deg);
}

.sideDrawer {
    align-items: center;
    background: #fff;
    display: none;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    width: 100%;
    z-index: 5;
}

.open .sideDrawer {
    transform: translateX(0);
}

.sideDrawer__nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.sideDrawer__nav a {
    border-bottom: 1px solid #2e2e30;
    font-size: 16px;
    padding-bottom: 14px;
}

@media screen and (max-width: 1080px) {
    .navBar {
        justify-content: unset;
    }
    .navBar__center {
        display: none;
    }
    .hamburger {
        display: block;
        margin-left: auto;
    }
    .navBar .cta {
        display: none;
    }
    .sideDrawer .cta {
        display: flex;
        height: 50px;
        margin-top: 40px;
        max-width: 220px;
    }
    .sideDrawer {
        display: flex;
    }
}

@media screen and (max-width: 767px) {
    .navBar__logo img {
        max-width: 160px;
    }
    .navBar {
        height: 70px;
        padding: 0 20px;
    }
}
.bottomFixedButton {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 200px;
}
.bottomFixedButton .cta {
    width: 100%;
    height: 50px;
}

@media screen and (max-width: 767px) {
    .bottomFixedButton {
        display: block;
    }
}

/*___________________________
Footer
___________________________*/

.footer {
    background: #42403b;
    padding: clamp(60px, 5.6vw, 80px) 20px;
}

.footer .container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
}

.footer__logo img {
    max-width: 100px;
}

.footer__privacy {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.copywrite {
    color: #fff;
    font-family: var(--familyEn);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 24px;
}

@media screen and (max-width: 500px) {
    .footer .container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .copywrite {
        margin-top: 18px;
    }
}
