body {
    background-color: var(--bg-primary);
    color: var(--color-white);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: clamp(14px, 3.182vw, 16px);
    position: relative;
    text-align: center;
}

a {
    line-height: 1;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    a:hover {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}

picture {
    display: inline-block;
}

picture img {
    width: 100%;
    pointer-events: none;
}

/*============================================================*/
/*============================================================*/
/*============================================================*/
/*============================================================*/
.l-main {
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .l-main {
        padding-top: min(10vw, 90px);
    }
}

.l-section {
    width: 100%;
    padding: clamp(60px, 13.636vw, 100px) 0;
    margin: 0;
}

.l-container {
    margin: 0 auto;
    width: min(95%, 1240px);
}

.l-header {
    background: white;
}

@media screen and (min-width: 768px) {
    .l-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 200;
    }
}

.header__inner {
    width: min(98%, 1280px);
    padding: clamp(4px, 0.909vw, 10px) 0;
    margin: auto;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .header__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: space-between;
        flex-flow: space-between;
        gap: 10px;
    }
}

.siteLogo {
    width: min(100%, 354px);
    margin: auto;
}

@media screen and (min-width: 768px) {
    .siteLogo {
        margin-left: 0;
    }
}

.headerCta {
    width: min(100%, 490px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2%;
    background: white;
}

@media screen and (max-width: 767px) {
    .headerCta {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 2%;
        width: 100%;
        z-index: 200;
    }
}

.l-footer {
    background: #27b663;
    padding: clamp(10px, 2.273vw, 27px) 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .l-footer {
        padding-bottom: clamp(80px, 18.182vw, 218px);
    }
}

.footerNav {
    margin: 0 0 clamp(10px, 2.273vw, 10px);
}

.copyright {
    font-size: 10px;
    text-align: center;
    font-size: clamp(10px, 2.273vw, 12px);
    letter-spacing: 0.05em;
}

.c-title {
    margin: 0 auto clamp(20px, 4.545vw, 40px);
    width: min(100%, 800px);
}

.c-image+.c-image {
    margin-top: clamp(20px, 4.545vw, 55px);
}


.content_001 {
    text-align: center;
    background: #73ad8c;
    padding: 150px 0 50px 0;
    color: #555;
}

.content_inner {
    width: 1200px;
    background: #fff;
    margin: 0 auto;
    padding: 50px 10px;
}

h2 {
    border-bottom: dashed 2px #73ad8c;
    font-size: 35px !important;
    padding-bottom: 30px;
    font-weight: bold;
    color: #73ad8c;
}

h3 {
    border-bottom: dashed 2px #73ad8c;
    font-size: 20px !important;
    font-weight: bold;
    color: #73ad8c;
    text-align: left;
}


.content_inner02 {
    padding-top: 30px;
    text-align: left;


}

.content_inner02 p {
    font-size: 16px;
    color: #555;
}

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

    .content_inner {
        width: 95%;
        padding: 30px 10px;
    }

    h2 {
        font-size: 23px !important;
        padding-bottom: 15px;
    }

    .content_inner02 {
        padding-top: 15px;
    }

    .content_inner02 p {
        font-size: 15px;
    }
}