@charset "utf-8";

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

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
    letter-spacing: 1.5px;
    padding-top: 100px;
    color: var(--primary-color);
}

@media screen and (max-width: 600px) {
    body {
        padding-top: 70px;
    }
}

:root {
    /* コンテンツ幅管理用の変数 */
    --content-width: 1080px;
    --content-width-lg: 1180px;
    --font-family: "Noto Sans JP", sans-serif;
    --font-secondary: "Murecho", sans-serif;
    --primary-color: #16335B;
    --red-color: #E50012;
    --orange-color: #FFC000;
    --blue-color: #0476D9;
    --blue-bg: rgba(4, 118, 217, 0.1);
    --gold-gradient: linear-gradient(270.05deg,
            rgba(243, 166, 11, 0.35) 2.2%,
            rgba(255, 204, 0, 0.35) 49.09%,
            rgba(248, 220, 6, 0.35) 92.3%);

    --gold-gradient-2: linear-gradient(270.05deg, #F3A60B 2.2%, #FFCC00 49.09%, #F8DC06 92.3%);
}

/* base */
.container,
.container-lg {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}


.container {
    max-width: calc(var(--content-width) + 32px);
}

.container-lg {
    max-width: calc(var(--content-width-lg) + 32px);
}

.contents {
    padding: 180px 0 0 0;
}

@media screen and (max-width: 1080px) {
    .contents {
        padding: 120px 0 0 0;
    }
}

@media screen and (max-width: 768px) {
    .contents {
        padding: 80px 0 0 0;
    }
}

@media screen and (max-width: 600px) {
    .contents {
        padding: 64px 0 0 0;
    }
}

a {
    transition: all 0.3s;
}

a:hover {
    opacity: 0.7;
}

.header__logo a:hover,
.footer__logo a:hover {
    opacity: 1;
}


/*************** Layout ***************/


/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 100px;
    background: #fff;
}

@media screen and (max-width: 600px) {
    .header {
        height: 70px;
    }
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 100px;
    height: 100%;
}

@media screen and (max-width: 1180px) {
    .header__inner {
        padding: 0px 28px;
    }
}

@media screen and (max-width: 600px) {
    .header__inner {
        padding: 0px 16px;
    }
}

.header__logo {
    width: clamp(236px, 32vw, 468px);
}


.header__cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
    .header__cta {
        gap: 15px;
    }

}

@media screen and (max-width: 600px) {
    .header__cta {
        display: none;
    }
}

.header__hamburger {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    background-color: var(--red-color);
    border-radius: 50%;
    z-index: 102;
}

@media screen and (max-width: 600px) {
    .header__hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.header__hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.header__hamburger span:nth-of-type(1) {
    top: 13px;
}

.header__hamburger span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.header__hamburger span:nth-of-type(3) {
    bottom: 13px;
}

.header.is-active .header__hamburger span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.header.is-active .header__hamburger span:nth-of-type(2) {
    opacity: 0;
}

.header.is-active .header__hamburger span:nth-of-type(3) {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

.header__nav {
    display: none;
}

@media screen and (max-width: 600px) {
    .header__nav {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100vh;
        background-color: #fff;
        z-index: 101;
        transform: translateX(100%);
        transition: transform 0.3s;
        padding: 100px 20px 40px;
        overflow-y: auto;
    }
}

.header.is-active .header__nav {
    transform: translateX(0);
}

.header__nav-list {
    margin-bottom: 40px;
}

.header__nav-item {
    border-bottom: 1px solid #eee;
}

.header__nav-item a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.header__nav-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.header__nav-cta .header__cta-btn a {
    width: 100%;
    justify-content: center;
    padding: 0 20px;
}

.header__overlay {
    display: none;
}

@media screen and (max-width: 600px) {
    .header__overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
}

.header.is-active .header__overlay {
    opacity: 1;
    visibility: visible;
}

.header__cta-btn a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-family: var(--font-secondary);
    border: 2px solid var(--red-color);
    border-radius: 100px;
    min-height: 58px;
    line-height: 1;
    padding: 0 40px;
    gap: 10px;
    letter-spacing: 0px;
}


@media screen and (max-width: 1080px) {
    .header__cta-btn a {
        padding: 0 28px;
    }
}

@media screen and (max-width: 820px) {
    .header__cta-btn a {
        padding: 0 16px;
    }
}

.header__cta-btn--primary a {
    background: var(--red-color);
    color: #fff;
}

.header__cta-btn--secondary a {
    flex-direction: column;
    align-items: flex-start;
    color: var(--red-color);
    justify-content: center;
    gap: 0;
}


.header__tel-number {
    font-weight: 700;
    font-size: 20px;
}

.header__cta-btn a span {
    flex-shrink: 0;
    display: inline-block;
}

.header__cta-link-icon {
    width: 20px;
}

.header__tel-wrap {
    display: flex;
}

.header__tel-icon {
    width: 25px;
}

.header__tel-text {
    font-size: 15px;
    font-weight: 500;
}


.m-cta {
    background: var(--blue-color);
    padding: 78px 0;
}

@media screen and (max-width: 600px) {
    .m-cta {
        padding: 40px 0;
    }
}

.m-cta__inner {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;

    gap: 20px;
}

@media screen and (max-width: 600px) {
    .m-cta__inner {
        grid-template-columns: 1fr;
    }
}


.m-cta__ttl {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

@media screen and (max-width: 1100px) {
    .m-cta__ttl {
        font-size: 26px;
    }
}


@media screen and (max-width: 600px) {
    .m-cta__ttl {
        font-size: 22px;
    }
}

.m-cta__btn {
    display: flex;
    gap: 40px;
    margin-top: 56px;
}

@media screen and (max-width: 1180px) {

    .m-cta__btn {
        gap: 20px;
        margin-top: 32px;
    }
}

@media screen and (max-width: 768px) {
    .m-cta__btn {
        margin-top: 20px;
    }
}

@media screen and (max-width: 600px) {
    .m-cta__btn {
        gap: 16px;
        margin-top: 32px;
    }
}

.m-cta__btn-link {
    width: 100%;
    max-width: 230px;
}

@media screen and (max-width: 1080px) {
    .m-cta__btn-link {
        max-width: 200px;
    }
}

.m-section-ttl {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 900;
    text-align: center;

}

.m-section-ttl::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: #FFC000;
    margin-bottom: 24px;
    margin: 0 auto;
    margin-top: 25px;
}

@media screen and (max-width: 600px) {
    .m-section-ttl::after {
        margin-top: 15px;
    }
}


/* footer */
.footer {
    text-align: center;
    padding: 20px 15px;
    padding-top: 40px;
}

@media screen and (max-width: 600px) {
    .footer {
        padding-top: 30px;
    }
}



.footer__logo {
    max-width: 300px;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
    .footer__logo {
        max-width: 240px;
    }
}

.footer p {
    margin-top: 24px;
    letter-spacing: 0;
}

@media screen and (max-width: 1080px) {
    .footer p {
        font-size: 14px;
    }
}

.footer small {
    display: block;
    margin-top: 1px;
    font-size: 20px;
    letter-spacing: 0;
    font-family: var(--font-secondary);
    color: rgba(189, 195, 200, 1);
}

@media screen and (max-width: 600px) {

    .footer small {
        font-size: 13px;
    }
}




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

@media screen and (max-width: 600px) {
    .u-sp-only {
        display: block;
    }
}






/*ここからメインコンテンツ*/
.mainV {
    background: linear-gradient(90deg, #FBEA70 0%, #FCE45B 38.02%, #FDD65B 59.12%, #F7C561 100%);
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: -2;
}

@media screen and (max-width: 600px) {
    .mainV {
        height: calc(100svh - 70px);
    }
}

.mainV::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
    background: url("../img/fv-accent.svg") center right / cover no-repeat;
}

@media screen and (max-width: 600px) {
    .mainV::before {
        width: 100%;
        background: url("../img/fv-accent.svg") center center / contain no-repeat;
    }
}

.mainV__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateY(26px);
}

@media screen and (max-width: 600px) {
    .mainV__inner {
        flex-direction: column-reverse;
        transform: translateY(0);
    }
}

.mainV__left {
    opacity: 0;
    flex-shrink: 0;
    animation: fvFadeInUp 0.8s ease 0.2s forwards;
}

.mainV__left-copy {
    width: fit-content;
    font-size: 36px;
    font-weight: 700;
    border-bottom: 2px solid rgba(22, 51, 91, 1);
}

@media screen and (max-width: 600px) {
    .mainV__left-copy {
        font-size: 20px;
    }
}

.mainV__left-ttl {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    margin-top: 26px;
}

@media screen and (max-width: 600px) {
    .mainV__left-ttl {
        font-size: 16px;
    }
}

.mainV__left-ttl span {
    line-height: 1;
    font-size: clamp(36px, 6.6vw, 96px);
    font-weight: 900;
}



.mainV__left-list {
    background: #fff;
    border-radius: 18px;
    padding: 27px 26px;
    margin-top: 48px;
}

@media screen and (max-width: 600px) {
    .mainV__left-list {
        padding: 16px 10px;
        margin-top: 22px;
    }
}

.mainV__left-item {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 960px) {
    .mainV__left-item {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .mainV__left-item {
        font-size: 14px;
        margin-bottom: 10px;
        gap: 5px;
    }
}

.mainV__left-icon {
    display: block;
    width: 28px;
    flex-shrink: 0;
}

@media screen and (max-width: 600px) {
    .mainV__left-icon {
        width: 18px;
    }
}

.emphasis {
    position: relative;
    display: inline-block;
}

.emphasis::before {
    content: "・・・";
    position: absolute;
    top: -0.4em;
    /* 文字に近づける */
    left: 50%;
    transform: translateX(calc(-50% + 0.2em));
    font-size: .75em;
    /* ドットのサイズを調整 */
    letter-spacing: .25em;
    /* ドットの間隔を調整 */
    white-space: nowrap;
    line-height: 1;
}

.mainV__right-img {
    position: relative;
    width: 36vw;

}

@media screen and (max-width: 600px) {
    .mainV__right-img {
        width: 80%;
        margin: 0 auto;
    }
}

.mainV__right-img-overlay-1 {
    opacity: 0;
    animation: fvBounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s forwards;
}

.mainV__right-img-overlay-2 {
    opacity: 0;
    animation: fvFadeIn 0.6s ease 1s forwards;
}

.mainV__right-img-overlay-1,
.mainV__right-img-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* env */
.env {
    padding: 94px 0 70px;
}

@media screen and (max-width: 600px) {
    .env {
        padding: 50px 0;
    }
}

.env__inner {
    border: 3px solid var(--red-color);
    border-radius: 16px;
    padding: 30px 5%;
    color: var(--red-color);
}

.env__ttl {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
}

.env__item,
.env__text {
    font-size: 16px;
    font-weight: 500;
}

.env__list {
    margin-bottom: 10px;
}

.env__item {
    position: relative;
    padding-left: 1.2em;
}

.env__item::before {
    content: "・";
    position: absolute;
    left: 0;
}

.env__text {
    line-height: 1.6;
}

.env__btn {
    margin-top: 24px;
}

.env__btn a {
    display: inline-block;
    background: var(--red-color);
    color: #fff;
    padding: 12px 60px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
}


/* service */

.service {
    /* background: rgba(255, 192, 0, 0.7); */
    position: relative;
    background: url("../img/service-bg.webp") center / contain repeat;
    padding-bottom: 212px;
}

@media screen and (max-width:768px) {
    .service {
        padding-bottom: 80px;
    }
}

.service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    /* background: url("../img/body-bg.webp") center right / contain repeat; */
}

.service__inner {
    position: relative;
    z-index: 2;
}

.service__list {
    display: grid;
    margin-top: 108px;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
}

@media screen and (max-width: 768px) {
    .service__list {
        gap: 20px;
        margin-top: 60px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .service__list {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 50px;
        gap: 30px;
    }
}

.service__item {
    background: #fff;
    border-radius: 12px;
    padding: 48px 32px;
}

.service__item-img-wrap {
    position: relative;
}

.service__item-ttl {
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    margin-top: 23px;
}

.service__item-text {
    margin-top: 15px;
    font-weight: 500;
}

.service__item-img-icon {
    position: absolute;
    width: 30%;
    bottom: -20px;
    right: -30px;
    animation: iconBounce 3s infinite ease-in-out;
}

.service__item:nth-child(2) .service__item-img-icon {
    animation-delay: 0.2s;
}

.service__item:nth-child(3) .service__item-img-icon {
    animation-delay: 0.4s;
}

.service__item:nth-child(4) .service__item-img-icon {
    animation-delay: 0.6s;
}

.service__item:nth-child(5) .service__item-img-icon {
    animation-delay: 0.8s;
}

.service__item:nth-child(6) .service__item-img-icon {
    animation-delay: 1s;
}

@keyframes iconBounce {

    0%,
    70%,
    100% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-12px);
    }

    80% {
        transform: translateY(0);
    }

    85% {
        transform: translateY(-6px);
    }

    90% {
        transform: translateY(0);
    }
}


.service__item-link {
    display: flex;
    color: var(--blue-color);
    width: fit-content;
    margin: 0 0 0 auto;
    gap: 15px;
    padding: 4px 0;
    font-weight: 500;
}

.service__item-link-icon {
    display: inline-block;
    width: 20px;
}




/* download */

.download {
    background: var(--gold-gradient);
    padding-top: 80px;
    padding-bottom: 90px;
    position: relative;
}

@media screen and (max-width: 600px) {
    .download {
        padding-top: 64px;
    }
}

.download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("../img/download-bg.webp") center / cover no-repeat;
}

.download__text {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .download__text {
        font-size: 16px;
        margin-top: 20px;
    }
}

.download__contents {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 14px;
    background: #fff;
    padding: 62px 30px;
    margin-top: 60px;
    gap: 10px;
    box-shadow: 0px 0px 9.7px 4px rgba(0, 0, 0, 0.25);

}

@media screen and (max-width: 600px) {
    .download__contents {
        flex-direction: column;
        padding: 40px 20px;
    }
}

.download__content-separator {
    transform: translateY(10%);
}

@media screen and (max-width: 600px) {
    .download__content-separator {
        display: flex;
        align-items: center;
        height: 60px;
        transform: translateY(0) rotate(90deg);
    }
}

.download__content-head {
    background: var(--blue-color);
    width: 144px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-weight: 900;
    line-height: 1.75;
    border-radius: 20px;
    letter-spacing: 1.5px;
}

.download__content-link {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

@media screen and (max-width: 600px) {
    .download__content-link {
        flex-direction: column;
        margin-top: 20px;
        gap: 10px;
    }
}

.download__content-qr {
    max-width: 144px;
}

.download__content-btn {
    max-width: 198px;
}

@media screen and (max-width: 600px) {
    .download__content-btn {
        max-width: 140px;
    }
}



/* flow */
.flow {
    background: var(--blue-bg);
    padding-bottom: 80px;
}

@media screen and (max-width: 600px) {
    .flow {
        padding-bottom: 40px;
    }
}

.flow__inner {
    padding-top: 160px;
}

@media screen and (max-width: 1080px) {
    .flow__inner {
        padding-top: 100px;
    }
}

@media screen and (max-width: 768px) {
    .flow__inner {
        padding-top: 50px;
    }
}

.flow__head {
    font-size: 32px;
    color: #fff;
    font-weight: 900;
    text-align: center;
    background: var(--blue-color);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 94px;
}

@media screen and (max-width: 768px) {
    .flow__head {
        font-size: 24px;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 600px) {
    .flow__head {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

.flow__item {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 40px;
    padding: 54px 64px;
    border-radius: 36px;
    margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
    .flow__item {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
}

@media screen and (max-width: 600px) {
    .flow__item-left {
        order: 2;
    }
}

.flow__item-num {
    font-size: clamp(40px, 4.4vw, 64px);
    line-height: 1;
    color: var(--blue-color);
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;

}

.flow__item-head {
    font-size: clamp(18px, 1.95vw, 28px);
    font-weight: 900;
    margin-bottom: 15px;
}

.flow__item-text {
    font-weight: 500;
}

@media screen and (max-width: 430px) {
    .flow__item-text {
        font-size: 15px;
    }
}

.flow__item-text span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 18px;
}

@media screen and (max-width: 430px) {
    .flow__item-text span {
        font-size: 13px;
    }
}


.flow-login {
    margin-top: 130px;
}

@media screen and (max-width: 768px) {
    .flow-login {
        margin-top: 40px;
    }
}


.flow-login__inner {
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr .75fr;
}

@media screen and (max-width: 600px) {
    .flow-login__inner {
        gap: 20px;
        grid-template-columns: 1fr;
    }
}

.flow-login-left {
    max-width: 546px;
}

@media screen and (max-width: 600px) {
    .flow-login-left {
        order: 2;
    }
}

.flow-login-left-text {
    font-weight: 500;
    padding-bottom: 1em;
}



/* info */


.info__head {
    font-size: 28px;
    font-weight: 900;
    border-bottom: 1px solid var(--primary-color);
}

@media screen and (max-width: 600px) {
    .info__head {
        font-size: 22px;
    }
}

.info__list {
    padding-top: 36px;
}

@media screen and (max-width: 600px) {
    .info__list {
        padding-top: 20px;
    }
}

.info__item {
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 600px) {
    .info__item {
        font-size: 15px;
    }
}

.info__item::before {
    content: "・";
    display: inline-block;
}

.info__item a {
    text-decoration: underline;
}

.info__inner .info__content:last-child {
    margin-top: 160px;
}

@media screen and (max-width: 768px) {
    .info__inner .info__content:last-child {
        margin-top: 72px;
    }
}

.info__content-btn a {
    display: inline-block;
    background: var(--blue-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 36px;
}

@media screen and (max-width: 600px) {
    .info__content-btn a {
        padding: 10px 20px;
        font-size: 15px;
        margin-top: 20px;
    }
}

/* faq */
/*--------------------------------------------------
accordion_section
--------------------------------------------------*/
.accordion {
    padding-top: 155px;
    padding-bottom: 170px;
}

@media screen and (max-width: 600px) {
    .accordion {
        padding-top: 72px;
        padding-bottom: 40px;
    }
}

.accordion__list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}

@media screen and (max-width: 600px) {
    .accordion__list {
        row-gap: 10px;
    }
}

.accordion__item {
    border: 1px solid rgba(219, 219, 219, 1);
    box-shadow: 7px 7px 10px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.accordion__q {
    display: flex;
    background: #fff;
    border-radius: 16px;
    padding: 30px 4em 30px 20px;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    font-weight: 500;
    z-index: 1;
    font-family: var(--font-secondary);
    letter-spacing: 0;
}

@media screen and (max-width: 768px) {
    .accordion__q {
        font-size: 18px;
        padding: 20px 3em 20px 1em;
    }
}

@media screen and (max-width: 600px) {
    .accordion__q {
        font-size: 16px;
    }
}


.accordion__q::after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
    background: url("../img/plus-icon.png") center / cover;
}

@media screen and (max-width: 768px) {
    .accordion__q::after {
        width: 40px;
        height: 40px;
        right: 0.5em;
    }
}

.accordion__q.is_active::after {
    content: "";
    background: url("../img/minus-icon.png") center / cover;
}

.accordion__a {
    box-sizing: border-box;
    height: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: none;
    font-family: var(--font-secondary);
    letter-spacing: 0;
    font-weight: 500;
}

.accordion__a-inner {
    padding: 20px 20px;
}

.accordion__q.is_active+.accordion__a {
    opacity: 1;
    visibility: visible;
    height: auto;
    transition: height 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
}

.accordion__a p {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .accordion__a p {
        font-size: 16px;
    }
}

.accordion__a-inner a {
    color: #555;
    text-decoration: underline;
    word-break: break-all;
}

.info-table {
    width: auto;
    border-collapse: collapse;
    margin-bottom: 24px;
    border: 1px solid #CCC;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.info-table th,
.info-table td {
    border: 1px solid #CCC;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
}

.info-table th {
    background-color: #E2E2E2;
}

.info-table td {
    background-color: #FFF;
}

@media screen and (max-width: 600px) {

    .info-table th,
    .info-table td {
        padding: 8px;
    }
}

.url_accent {
    color: #020bff !important;
}


.a_item__accent {
    font-weight: 600;
    color: #ff0000;
}

.a_item {
    display: flex;
    align-items: flex-start;

}

.a_item::before {
    content: "・";
    display: inline-block;
}

.app-tou {
    margin-top: 4px;
    display: grid;
}

.app-tou p {
    font-weight: 500;
}

.app-tou a {
    margin: 4px;
}


/* contact */
.contact {
    padding-top: 50px;
    padding-bottom: 60px;
    background: linear-gradient(90deg, #FBEA70 0%, #FCE45B 38.02%, #FDD65B 59.12%, #F7C561 100%);
}

.contact__inner {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 1080px) {
    .contact__inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .contact__inner {
        text-align: left;
        gap: 0;
    }
}

.contact__head {
    display: flex;
    flex-direction: column-reverse;
    font-size: 40px;
    font-weight: 700;
}

@media screen and (max-width: 600px) {
    .contact__head {
        font-size: 28px;
    }
}

.contact__head span {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .contact__head span {
        font-size: 17px;
    }
}

.contact__text {
    font-weight: 500;
}

@media screen and (max-width: 600px) {
    .contact__right {
        margin: 0 auto;
        margin-top: 40px;
    }
}

.contact__cta {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

@media screen and (max-width: 1080px) {
    .contact__cta {
        gap: 15px;
    }
}

@media screen and (max-width: 680px) {
    .contact__cta {
        flex-direction: column-reverse;
    }
}

.contact__cta-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    min-height: 58px;
    padding: 0 40px;
    font-family: var(--font-secondary);
    font-weight: 500;
    line-height: 1;
    border-radius: 100px;
}

@media screen and (max-width: 1080px) {
    .contact__cta-btn a {
        padding: 0 28px;
    }
}

@media screen and (max-width: 820px) {
    .contact__cta-btn a {
        padding: 0 16px;
    }
}

.contact__cta-btn--primary a {
    justify-content: center;
    letter-spacing: 0px;
    background: transparent;
    border: 2px solid var(--primary-color);
}

.contact__cta-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.contact__cta-btn-text {
    font-weight: 500;
    letter-spacing: 0px;
}

.contact__cta-btn--secondary a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    letter-spacing: 0px;
    background: #fff;
}

.contact__tel-number {
    font-size: 20px;
    font-weight: 700;
}

.contact__tel-wrap {
    display: flex;
}

.contact__tel-icon {
    width: 25px;
}

.contact__tel-text {
    font-size: 15px;
    font-weight: 500;
}

/* アニメーション用キーフレーム */
@keyframes fvFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fvFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fvBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}