@charset "UTF-8";
:root {
    --blue: #2467ad;
    --green: #29a5bf;
    --grey: #f4f7fb;
    --text: #000000;
    --white: #ffffff;
    --content-width: 1200px;
    --header-h: 90px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: clip;
}

img,
svg,
picture {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.75;
}

ul,
ol,
dl,
dd {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 500;
}

.inner {
    width: var(--content-width);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

@media (max-width: 768px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
}

.sec-title {
    text-align: center;
    margin: 0 auto 50px;
}

.sec-title img {
    width: auto;
    max-width: 100%;
    max-height: 70px;
}

@media (max-width: 768px) {
    .sec-title {
        margin-bottom: 30px;
    }
    .sec-title img {
        max-height: 65px;
    }
}

@media (max-width: 480px) {
    .sec-title img {
        width: 100%;
        max-height: none;
    }
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 300px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 1.1em;
}

.btn-pill-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.btn-pill-arrow img {
    width: 30px;
    height: auto;
}

.btn-pill--light {
    border: 1.5px solid var(--white);
    color: var(--white);
}

.btn-pill--solid {
    background: var(--blue);
    color: var(--white);
}

@media (max-width: 768px) {
    .btn-pill {
        max-width: 80%;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
    background: rgba(36, 103, 173, 0.92);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px;
}

.header-logo img {
    width: 350px;
    max-width: 46vw;
}

.gnav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.gnav-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gnav-list a {
    color: var(--white);
    font-size: 1.2em;
}

.header-tel {
    display: inline-flex;
    align-items: center;
}

.header-tel-img {
    height: 55px;
    width: auto;
}

.nav-trigger {
    display: none;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.nav-trigger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

@media (max-width: 980px) {
    .gnav {
        display: none;
    }
    .nav-trigger {
        display: flex;
    }
    .header-inner {
        padding: 10px 15px;
    }
    .header-logo img {
        width: 350px;
    }
}

.drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(36, 103, 173, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.drawer.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s;
}

body.is-drawer-open {
    overflow: hidden;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.drawer-close::before,
.drawer-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

.drawer-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-list {
    text-align: center;
}

.drawer-list li + li {
    margin-top: 20px;
}

.drawer-list a {
    color: var(--white);
    font-size: 1.3em;
}

.drawer-tel {
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
}

.drawer-tel-img {
    height: 55px;
    width: auto;
}

.footer {
    background: var(--blue);
    color: var(--white);
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-inner {
    width: var(--content-width);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    width: 280px;
    max-width: 100%;
    margin-bottom: 25px;
}

.footer-tel {
    display: inline-flex;
    align-items: center;
}

.footer-tel-img {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
}

.footer-btn {
    min-width: 300px;
}

.footer-right {
    width: 40%;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-info-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 5px 0;
}

.footer-info dt {
    flex: 0 0 95px;
    text-align: center;
    background: var(--green);
    color: var(--white);
    font-size: 1em;
    padding: 2px 0;
}

.footer-info dd {
    flex: 1 1 auto;
    font-size: 1.1em;
    padding-top: 1px;
}

.footer-privacy {
    margin-top: 25px;
    font-size: 1em;
    text-align: center;
}

.footer-privacy a {
    text-decoration: none;
}

.footer-bottom {
    position: relative;
}

.footer-cc {
    width: 100%;
    display: block;
}

.footer-cc--sp {
    display: none;
}

.footer-copy {
    position: absolute;
    right: 25px;
    bottom: 15px;
    margin: 0;
    font-size: 0.7em;
    color: var(--white);
}

@media (max-width: 980px) {
    .footer-inner {
        gap: 40px;
    }
    .footer-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0 35px;
    }
    .footer-inner {
        flex-direction: column;
        padding: 0 25px;
        gap: 0px;
    }
    .footer-left {
        flex: none;
        text-align: left;
    }
    .footer-logo img {
        width: 230px;
    }
    .footer-tel-num {
        font-size: 2em;
    }
    .footer-btn {
        min-width: 260px;
        width: 100%;
    }
    .footer-right {
        flex: none;
        width: 100%;
    }
    .footer-info dt {
        flex-basis: 85px;
        font-size: 0.8em;
    }
    .footer-info dd {
        font-size: 1em;
    }
    .footer-cc--pc {
        display: none;
    }
    .footer-cc--sp {
        display: block;
    }
    .footer-copy {
        right: 15px;
        bottom: 10px;
        font-size: 0.6em;
    }
    .footer-privacy {
        text-align: left;
    }
}
