@charset "UTF-8";

:root{
    --green: #8CC63E;
    --dark-green: #3B5704;
    --gray: #B4B4B4;
    --white: #FFFFFF;
}

/* color */
.green {
    color: var(--green)
}

.bg-green {
    background-color: var(--green);
}

.darkgreen {
    color: var(--dark-green);
}

.bg-darkgreen {
    background-color: var(--dark-green);
}

.white {
    color: white;
}

.bg-white {
    background-color: white;
}

.gray {
    color: var(--gray);
}

.bg-gray {
    background-color: var(--gray);
}


/* general */
* {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

ul {
    margin-bottom: 0;
    padding-left: 0;
}

.hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
}

.container {
    max-width: 1600px;
    margin: 0 auto 12rem;
}


/* parts */
.btn {
    background-color: var(--green);
    color: white;
    padding: .5em 2em;
    border-radius: 200px;
}

.dots {
    position: relative;
}

.dots::before {
    content: "";
    background-color: var(--green);
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 100px;
    top: -10px;
    left: 0;
}

.dots::after {
    content: attr(sub-text);
    color: black;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    top: -1em;
    left: 1em;
}

.dots-bottom {
    position: relative;
}

.dots-bottom::before {
    content: "";
    background-color: var(--green);
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 100px;
    bottom: -27px;
    left: 0;
}

.dots-bottom::after {
    content: attr(sub-text);
    color: black;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    bottom: -2em;
    left: 1em;
}

.dog-btn {
    position: relative;
    overflow: hidden;
    max-width: min(300px, 100%);
}

.dog-btn a {
    border-radius: 50rem;
    position: relative;
    overflow: hidden;
}

.dog-btn a::before {
    position: absolute;
    top: -200px;
    right: -200px;
    z-index: 0;
    width: 200%;
    aspect-ratio: 1 / 1;
    content: "";
    background: var(--dark-green);
    transform: scale(0);
    border-radius: 50%;
}

.dog-btn .text {
    position: relative;
    z-index: 10;
    display: block;    
}

.dog-btn .circle-box {
    width: 35px;
    height: 35px;
}

.dog-btn .arrow-box {
    position: relative;
    width: 20px;
    height: 20px;
}

.dog-btn .arrow-box svg {
    display: block;
}

.dog-btn .circle-box::before {
    position: absolute;
    /* top: 20px; */
    /* right: 22px; */
    /* z-index: 1; */
    width: 35px;
    height: 35px;
    content: "";
    background: white;
    border-radius: 50%;
}

.achievements-figure {
    margin: 5rem auto;
}

.achievements-figure .figure {
    text-align: center;
    width: 30%;
    border-left: 2px solid var(--dark-green);
}

.achievements-figure .figure:last-child {
    border-right: 2px solid var(--dark-green);
}

.achievements-figure .figure .inner {
    display: inline-block;
}

.achievements-figure .number {
    line-height: 1;
}

.page-ttl {
    position: relative;
}

.page-ttl::before {
    content: "";
    background-color: var(--green);
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 100px;
    bottom: -10px;
    left: 0;
}

.page-ttl::after {
    content: attr(sub-text);
    color: black;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    bottom: -1em;
    left: 1em;
}

.pick-up {
    display: inline-block;
    position: relative;
    z-index: 1;
    transform: translate(0, 40%) rotate(356deg) skew(8deg, 350deg);

    path {
        fill: var(--dark-green);
    }
}

/* fonts */
.poppins-600 {
    font-family: "Poppins", sans-serif !important;
    font-weight: 600;
    font-style: normal;
    /* letter-spacing: 0.15em; */
}

.poppins-400 {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    /* letter-spacing: 0.15em; */
}

.noto-sans {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.odometer * {
    font-family: "Poppins";
    font-weight: 600;
}

/* header.php */
header.header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-box {
    width: min(300px, 30%);
}

/* front-page.php */
.hero > .inner {
    overflow: hidden;
    border-bottom-left-radius: 10vw;
    position: relative;
}

.hero-text-box {
    position: absolute;
    top: 40%;
    left: 2%;
    translate: 0 -50%;
    z-index: 2;
}

.hero-sub-text {
    letter-spacing: 1em;
}

.hero-img {
    max-width: 1614.220px;
    object-fit: cover;
    height: inherit;
}

.hero-filter {
    background: linear-gradient(53deg, rgb(0 0 0) 30%, rgb(255 255 255 / 0%) 70%);
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.4;
    z-index: 1;
}

.mission .text-box {
    width: 50%;
}

.mission .img-box {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.biz-heading-text {
    width: min(100%, 600px);
    margin-left: auto;
    margin-right: 10%;
}

.biz .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px;
    gap: 3em;
}

.biz .cards li {
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.biz .cards li * {
    position: relative;
    z-index: 1;
}

.biz .cards li img {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 0;
    filter: opacity(0.5);
    height: 220px;
    object-fit: cover;
}

.biz .cards .background {
    position: absolute;
    width: 50%;
    background: var(--green);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: .8;
}

.biz .dog-btn {
    width: 200px;
    position: absolute !important;
    right: 2rem;
    bottom: 2rem;
}

.news .icon {
    position: relative;
}

.news .icon::before {
    content: "";
    background-color: var(--green);
    width: 35px;
    height: 35px;
    border-radius: 300px;
    position: absolute;
    display: inline-block;
}

.news .list-box .list a {
}

.news .icon svg {
    position: relative;
}

.news .list {
    border-bottom: 2px solid var(--dark-green);
}

.news .list-box {
    width: min(100%, 1000px);
    margin-left: auto;
}

.news .dog-btn {
    margin-left: auto;
    margin-top: 3rem;
}

/* arcihve.php */
.post-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3em;
    width: min(1500px, 100%);
    margin: 0 auto;
}

.archive-section a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.archive-section a.post-thumbnail {
    aspect-ratio: 3/2;
}

.archive-section time::before,
.single-section time::before {
    content: "";
    background-color: var(--green);
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 100px;
    top: 50%;
    left: 0;
    translate: 0 -40%;
}

.archive-section time,
.single-section time {
    position: relative;
}

.pagination .nav-links ul {
    width: min(100%, 500px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 5rem auto;
}

.pagination .nav-links .page-numbers {

    li {
        position: relative;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        color: white;

        a, 
        span {
            background-color: var(--green);
            width: 35px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;   
            border-radius: 100px; 
        }

        .current {
            background-color: var(--dark-green);
        }
    }

}

/* single.php */
.single-section figure.post-hero-img {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
}

.single-section figure.post-hero-img img {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    object-fit: cover;
    height: inherit;
}

.single-section article {
    width: min(1000px, 100%);
    margin: 0 auto;
}

.single-section .dog-btn {
    margin: 5rem auto;
}

/* 404.php */
.page-404 {
    text-align: center;
    margin-top: 5rem;
}

.page-404 .dog-btn {
    margin: 5rem auto;
}

/* footer.php */
footer {
    background: white;
}

footer .site-info {

}

.footer-logo-box {
    width: min(300px, 100%);
    display: block;
    margin-left: auto;
    filter: saturate(0);
}

.footer-navigation a {
    display: inline-block;
    
}

.footer-logo .site-tagline {
    text-align: right;
}

.footer-logo .inner {
    width: 400px;
    margin-left: auto;
}

#copyright-info {
    font-size: .8em;
}


/* suggest-posts.php */
.related-sec-title {
    position: relative;
    z-index: 1;
    translate: 0 50%;
}


/* media query */
@media (max-width: 1400px) {
    .news .item > p {
        font-size: 1.2rem;
    }
}

@media (max-width: 1200px) {
    .biz .cards {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }

    .biz .cards li {
        padding: 1.5rem;
    }

    .biz .dog-btn {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 950px) {

    #home-intro {
        font-size: .8rem;
        letter-spacing: .5em;
    }

    #site-footer .footer-navigation > ul {
        flex-direction: column;
    }

    #site-footer > div {
        display: flex;
        flex-direction: column-reverse;
    }

    #site-footer .footer-logo {
        margin-left: auto;
    }
    
    .footer-logo .inner {
        width: auto;
    }

    #site-footer .footer-logo-box {
        width: min(300px, 30%);
    }

    .news .item p {
        font-size: 1rem;
    }

    .news .icon::before {
        width: 30px;
        height: 30px;
    }

    .news .list {
        border-bottom: 1.5px solid var(--dark-green);
    }

    .post-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mission > div {
        display: flex;
        flex-direction: column-reverse !important;
    }

    .mission .text-box {
        width: auto !important;
        margin-right: 0 !important;
    }
    
    .mission .img-box {
        width: auto !important;
        margin-bottom: 1rem !important;
    }

    .biz .cards {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 200px 200px;
        gap: 2rem;
        max-width: 485px;
        margin: 0 auto;
    }

    .biz .cards li {
        padding: 1rem;
    }

    .biz .dog-btn {
        bottom: 1rem;
        right: 1rem;
    }

    .biz .dog-btn {
        bottom: 1rem;
        right: 1rem;
    }

    .dots::after {
        font-size: 14px;
    }

    .dots::before {
        top: -9px;
    }

    .pick-up svg {
        width: max(50vw, 200px);
    }
}

@media (max-width: 576px) {
    .hero > .inner {
        height: 60vh;
    }

    #home-intro {
        font-size: .7rem;
        letter-spacing: .3em;
    }

    .achievements-figure dl {
        display: flex;
        flex-direction: column !important;
    }

    .achievements-figure .figure {
        border-top: 2px solid var(--dark-green) !important;
        border-left: none !important;
        border-right: none !important;
        width: 100% !important;
    }

    .achievements-figure .figure:last-child {
        border-bottom: 2px solid var(--dark-green) !important;
    }

    .news .item {
        display: flex;
        flex-direction: column !important;
        align-items: flex-start !important;

        time {
            color: var(--gray);
        }
    }

    .dots::after {
        font-size: 12px;
    }

    .dots::before {
        font-size: 8.5px;
    }

    .news .list-box .list a > div {
        align-items: flex-end !important;
    }

    .news .icon {
        translate: 0 -5px;
    }

    .post-list {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .single-section figure.post-hero-img {
        height: 200px;
    }
}




.menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    overflow: hidden;
    
}

#menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    /* PCでは非表示 */
}

/* スマホ用レイアウト */
@media (max-width: 950px) {
    #menu {
        display: none;
        /* デフォルトでは非表示 */
        flex-direction: column;
        /* height: 100vh; */
        width: 100vw;
        z-index: -1;
        opacity: 0;
        max-height: 0;
        padding-top: 100px;
        position: absolute;
        top: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    #menu[hidden] {
        display: none !important;
    }

    #menu-toggle {
        display: inline-block;
        /* スマホで表示 */
    }

    #menu.show {
        max-height: 500px; /* メニューの高さに合わせて調整 */
        opacity: 1;
    }

    #menu > * {
        margin-bottom: 1rem;
    }
}

/* PC用レイアウト */
@media (min-width: 950px) {
    #menu {
        display: flex;
        justify-content: flex-end;
    }
}


/* page-about */
.hdf-intro {
}

.hdf-intro h1 {
    margin-bottom: 10rem;
}

.hdf-intro > section {
    position: relative;
}

.hdf-intro .intro-content {
    /* position: absolute;
    top: 0;
    right: 0; */
    width: 80%;
    max-width: 1500px;
}

.hdf-intro .intro-content .img-box {
    border-top-left-radius: 10vw;
    overflow: hidden;
    aspect-ratio: 2/1;
}

.hdf-intro .intro-content .img-box img {
    translate: 0 -10%;
}

.three-feature {

}

.three-feature .content {
    display: grid;
    grid-template-columns: 1fr minmax(min(80%, 800px), 1300px) 1fr;
    grid-template-rows: 1fr 160px 1fr 160px 1fr;
    width: 100%;
    margin-top: 10vw;
}

.three-feature .feature {
    grid-column: 2/3;
    padding: 3em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

/* .three-feature .feature h3::before {
    content: "原因";
    display: inline-block;
    position: absolute;
    top: -.7em;
    left: 3rem;
    color: var(--green);
    font-size: 1rem;
} */

.three-feature .feature::before {
    content: attr(sub-text);
    display: inline-block;
    position: absolute;
    top: -.7em;
    font-size: 4em;
    left: 3rem;
    color: var(--green);
}

.three-feature .feature h3 {
    position: relative;
}

.three-feature .feature h3::after {
    content: attr(data-en);
    display: inline-block;
    position: absolute;
    font-size: .3em;
    top: 100%;
    right: 0;
    color: var(--green);
    font-weight: 700;
}


.three-feature .feature > div:nth-child(1) {
    flex-basis: 50%;
}

.three-feature .feature .img-box {
    width: 40%;
    border-radius: 5px;
    overflow: hidden;
}

.three-feature .feature-bg {
    z-index: -1;
    background: #F8F8F8;

    &.left {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    &.right {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
}

.three-feature .feature:nth-of-type(1) {
    grid-row: 1/2;
}

.three-feature .feature-bg:nth-of-type(1) {
    grid-column: 1/3;
    grid-row: 1/2;
}

.three-feature .feature:nth-of-type(2) {
    grid-row: 3/4;
}

.three-feature .feature-bg:nth-of-type(2) {
    grid-column: 2/4;
    grid-row: 3/4;
}

.three-feature .feature:nth-of-type(3) {
    grid-row: 5/6;
}

.three-feature .feature-bg:nth-of-type(3) {
    grid-column: 1/3;
    grid-row: 5/6;
}

.hdf .img-box {
    border-bottom-right-radius: 10vw;
    overflow: hidden;
    margin-bottom: 1em;
    margin-right: 2em;
    width: 50%;
    aspect-ratio: 2/1;
}

.hdf .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hdf .inner p {
    width: 50%;
}


.hdm-intro {}

.hdm-intro h2 {
    margin-bottom: 3rem;
}

.hdm-intro>section {
    position: relative;
}

.hdm-intro .intro-content {
    /* position: absolute;
    top: 0;
    right: 0; */
    width: 80%;
    max-width: 1500px;
}

.hdm-intro .intro-content .img-box {
    border-bottom-right-radius: 10vw;
    overflow: hidden;
    aspect-ratio: 2/1;
}

.hdm-intro .intro-content .img-box img {
    translate: 0 -10%;
}

.hdm-intro .intro-content p {
    max-width: 800px;    
}



@media (max-width: 576px) {
    .hdf-intro h1 {
        margin-bottom: 3rem;
    }

    .hdm-intro h2 {
        margin-bottom: 1rem;
    }

    .three-feature .content {
        grid-template-rows: 1fr 50px 1fr 50px 1fr;
    }

    .three-feature .feature {
        padding: 1.5em;
    }

    .three-feature .feature::before {
        left: 1.5rem;
    }

    .hdf-intro .intro-content,
    .hdm-intro .intro-content {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .hdf-intro h1 {
        margin-bottom: 6rem;
    }

    .hdm-intro h2 {
        margin-bottom: 2rem;
    }

    .three-feature .feature h3::after {
        font-size: 12px;
    }
}

@media (min-width:768px) {
    .hdf-intro .intro-content {
        /* width: 100%; */
    }

    .three-feature .content {
        grid-template-rows: 1fr 50px 1fr 50px 1fr;
    }

    .three-feature .feature {
        padding: 1.8em;
    }

    .three-feature .feature::before {
        left: 1.8rem;
    }
}

@media (min-width: 992px) {
    .hdf-intro h1 {
        margin-bottom: 7rem;
    }

    .hdm-intro h2 {
        margin-bottom: 2.5rem;
    }

    .three-feature .content {
        grid-template-rows: 1fr 80px 1fr 80px 1fr;
    }

    .three-feature .feature {
        padding: 2em;
    }

    .three-feature .feature::before {
        left: 2rem;
    }
}

@media (min-width: 1200px) {
    .hdf-intro h1 {
        margin-bottom: 8rem;
    }

    .hdm-intro h2 {
        margin-bottom: 3rem;
    }

    .three-feature .content {
        grid-template-rows: 1fr 100px 1fr 100px 1fr;
    }

    .three-feature .feature {
        padding: 2.5em;
    }

    .three-feature .feature::before {
        left: 2.5rem;
    }

    
}

@media (max-width:950px) {
    .three-feature .feature {
        flex-direction: column-reverse;
    }
    
    .three-feature .feature .img-box,
    .three-feature .feature > div:nth-child(1) {
        flex-basis: 100%;
        width: 100%;
    }
    
    .three-feature .feature .img-box {
        margin-bottom: 1em;
    }

    .three-feature .feature h3::after {
        right: auto;
        left: 0;
        font-size: 15px;
    }

    .hdf .inner {
        flex-direction: column;
    }

    .hdf .img-box {
        margin-right: 0;
    }

    .hdf .img-box,
    .hdf .inner p {
        width: 100%;
    }
}



.com-info {
    max-width: 900px;
    margin: 10vw auto;

    .img-box {
        border-radius: 5px;
    }
}

.company-table {
    width: 100%;

    table {
        width: 100%;
        
        tr {
            padding: 1.5em 0;
            border-top: 1px solid black;
            display: flex;
    
            &:last-child {
                border-bottom: 1px solid black;
            }
    
            th {
                color: var(--dark-green);
                font-weight: 600;
                width: 30%;
            }
    
            td {
                display: inline-block;
            }
        }
    }
}

@media (max-width: 840px) {

    .company-table {
        tr {
            flex-direction: column;
        }
    }
}

.related-posts figure {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 10px;
}

/* header-lp.php */
@scope (.hdf2025 ) {
    /* --- 画面下部固定バナー --- */
    .hdf2025lp-fixed-bnr {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100vw;
        max-width: 100vw;
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        background: none;
        pointer-events: none;
    }
    .hdf2025lp-fixed-bnr img {
        width: 100vw;
        max-width: 390px;
        margin: 0 auto 12px auto;
        border-radius: 16px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.18);
        display: block;
        pointer-events: auto;
    }
    .hdf2025lp-fixed-bnr-close {
        position: absolute;
        top: 12px;
        right: calc(50% - 195px + 12px);
        width: 24px;
        height: 24px;
        background: rgba(0,0,0,0.5);
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 16px;
        line-height: 22px;
        text-align: center;
        cursor: pointer;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        pointer-events: auto;
        transition: background 0.2s;
    }
    .hdf2025lp-fixed-bnr-close:hover,
    .hdf2025lp-fixed-bnr-close:focus {
        background: rgba(0,0,0,0.7);
    }
    @media (max-width: 768px) {
        .hdf2025lp-fixed-bnr img {
            width: 100vw;
            max-width: 100vw;
            margin-bottom: 8px;
        }
        .hdf2025lp-fixed-bnr-close {
            right: 12px;
            top: 8px;
        }
    }
    @media (min-width: 769px) {
        .hdf2025lp-fixed-bnr img {
            width: 390px;
            max-width: 390px;
        }
        .hdf2025lp-fixed-bnr-close {
            right: calc(50% - 195px + 12px);
            top: 12px;
        }
    }
    /* --- マルシェ出店者リスト（.shops） --- */
    .shops {
        width: 100%;
        /* max-width: 100vw; */
        margin: 20px auto 32px;
        padding: 0 8px;
    }

    .shops .shop-info {
        padding: 5px;
        width: 100%;
    }

    .shops .shop-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        padding: 16px 0;
    }
    .shops .shop-list .shop-item {
        position: relative;
        background: #fff;
        border-right: 1px solid #e0e0e0;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 0;
    }
    .shops .shop-list .shop-item:nth-child(2n) {
        border-right: none;
    }
    .shops .shop-list .shop-item:not(:nth-child(-n+2)) {
        border-top: 1px solid #e0e0e0;
    }
    .shops .shop-number {
        position: absolute;
        top: 8px;
        left: 8px;
        background: var(--green);
        color: #fff;
        font-size: 0.85em;
        font-weight: 600;
        border-radius: 50%;
        width: 2em;
        height: 2em;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    }
    .shops .shop-img {
        width: 50%;
        max-width: 160px;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 12px;
        margin-top: 12px;
        background: #f8f8f8;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .shops .shop-name {
        font-size: 0.95em;
        font-weight: 700;
        margin: 8px 0 8px 0;
        line-height: 1.2;
    }
    .shops .shop-date {
        display: inline-block;
        background: var(--dark-green);
        color: #fff;
        font-size: 0.9em;
        border-radius: 12px;
        padding: 2px 12px;
        margin-bottom: 8px;
        margin-top: 0;
        text-align: center;
    }
    .shops .shop-desc {
        font-size: 0.8em;
        color: #333;
        margin-top: 0;
    }
    @media (max-width: 768px) {
        
        .shops .shop-list {
            grid-template-columns: 1fr 1fr;
            gap: 16px 8px;
            padding: 8px 0;
        }
        .shops .shop-img {
            max-width: 45vw;
        }
    }
    @media (min-width: 769px) {
        .shops {
            margin-left: auto;
            margin-right: auto;
            padding: 0;
        }
        .shops .shop-list {
            gap: 24px 16px;
        }
        .shops .shop-img {
            max-width: 180px;
        }
    }

    .shop-list-title {
        text-align: center;
        color: var(--green);
    }

    /* --- HDF2025LP コンテンツフレームごとの背景色バリエーション --- */
    .hdf2025lp-contents-flame-section.is-marche {
        background-color: var(--green);
    }
    .hdf2025lp-contents-flame-section.is-kitchencar {
        background: #C7703E;
    }
    .hdf2025lp-contents-flame-section.is-dogrun {
        background: #ABA127;
    }
    .hdf2025lp-contents-flame-section.is-nosework {
        background: #C73E69;
        
        .hdf2025lp-contents-flame-title-main {
            h3 {
                font-size: 30px !important;
            }
        }
    }
    .hdf2025lp-contents-flame-section.is-training h3 {
        .hdf2025lp-contents-flame-title-main {
            font-size: 30px !important;
        }
    }
    .hdf2025lp-contents-flame-section {
        border-radius: 18px;
        /* margin-bottom: 32px; */
        padding: 0 0 8px 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }
    @media (min-width: 768px) {
        .hdf2025lp-contents-flame-section {
            width: 390px;
            max-width: 390px;
            margin: 0 auto 0px auto;
        }
    }
    /* --- HDF2025LP コンテンツセクション 2つ目（キッチンカー） --- */
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-sizing: border-box;
        padding: 20px 10px 10px 10px;
        align-items: center;
        justify-content: flex-start;
    }
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] .hdf2025lp-contents-flame-textbox {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 17px;
        align-items: center;
        justify-content: flex-start;
    }
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] .hdf2025lp-contents-flame-heading {
        width: 100%;
        display: flex;
        gap: 13px;
        align-items: center;
        justify-content: flex-start;
    }
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] .hdf2025lp-contents-flame-numbergrife {
        width: 60px;
        height: 80px;
        flex-shrink: 0;
    }
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] .hdf2025lp-contents-flame-titlebox {
        display: flex;
        flex-direction: column;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        padding-bottom: 7px;
        color: #111;
    }
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] .hdf2025lp-contents-flame-title-sub {
        font-size: 15px;
        margin-bottom: -4px;
        width: 100%;
    }
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] .hdf2025lp-contents-flame-title-main {
        width: 100%;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-weight: 500;
        h3 {
            font-size: 36px !important;
        }
    }
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] .hdf2025lp-contents-flame-description {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 15px;
        color: #111;
        width: 100%;
        line-height: 1.7;
        margin-top: 8px;
    }
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] .hdf2025lp-contents-flame-description p {
        margin-bottom: 0.5em;
    }
    .hdf2025lp-contents-flame-content[data-node-id="263:301"] .hdf2025lp-contents-flame-image {
        width: 100%;
        margin-top: 10px;
    }
    @media (min-width: 768px) {
        .hdf2025lp-contents-flame-content[data-node-id="263:301"] {
            max-width: 390px;
            margin: 0 auto;
        }
    }

    /* --- HDF2025LP コンテンツセクション フレーム内コンテンツ --- */
    .hdf2025lp-contents-flame-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        box-sizing: border-box;
        padding: 20px 10px 10px 10px;
        align-items: center;
        justify-content: flex-start;
    }
    .hdf2025lp-contents-flame-textbox {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 17px;
        align-items: center;
        justify-content: flex-start;
    }
    .hdf2025lp-contents-flame-heading {
        width: 100%;
        display: flex;
        gap: 9px;
        align-items: center;
        justify-content: flex-start;
    }
    .hdf2025lp-contents-flame-numbergrife {
        width: 60px;
        height: 71px;
        flex-shrink: 0;
    }
    .hdf2025lp-contents-flame-titlebox {
        display: flex;
        flex-direction: column;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        padding-bottom: 14px;
        color: #111;
    }
    .hdf2025lp-contents-flame-title-sub {
        font-size: 15px;
        margin-bottom: -4px;
        width: 100%;
    }
    .hdf2025lp-contents-flame-title-main {
        margin-bottom: -14px;
        width: 100%;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-weight: 500;
        h3 {
            font-size: 36px !important;
        }
    }
    .hdf2025lp-contents-flame-description {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 15px;
        color: #111;
        width: 100%;
        line-height: 1.7;
        margin-top: 8px;
    }
    .hdf2025lp-contents-flame-description p {
        margin-bottom: 0.5em;
    }
    .hdf2025lp-contents-flame-image {
        width: 100%;
        margin-top: 10px;
    }

    /* --- HDF2025LP コンテンツセクション フレーム --- */
    .hdf2025lp-contents-flame-section {
        width: 100vw;
        max-width: 100vw;
        background: #8cc63e;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 10px 0;
        position: relative;
    }
    .hdf2025lp-contents-flame-inner {
        width: 100vw;
        max-width: 100vw;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        box-sizing: border-box;
        gap: 10px;
    }
    .hdf2025lp-contents-flame-box {
        background: #fff;
        border-radius: 10px;
        /* width: 370px; */
        box-sizing: border-box;
        flex-shrink: 0;
        width: 95vw;
    }
    @media (min-width: 768px) {
        .hdf2025lp-contents-flame-section,
        .hdf2025lp-contents-flame-inner {
            width: 390px;
            max-width: 390px;
            margin-left: auto;
            margin-right: auto;
        }
        .hdf2025lp-contents-flame-box {
            width: 370px;
        }
    }

    /* --- HDF2025LP コンテンツセクションタイトル --- */
    .hdf2025lp-contents-title-section {
        width: 100vw;
        max-width: 100vw;
        margin: 40px auto 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        position: relative;
    }
    .hdf2025lp-contents-title-inner {
        width: 100vw;
        max-width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    .hdf2025lp-contents-title-main {
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-size: 32px;
        color: #222;
        font-weight: 500;
        letter-spacing: 0.01em;
        line-height: 1.1;
        width: 100%;
    }
    .hdf2025lp-contents-title-sub {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 12px;
        color: #8cc63e;
        font-weight: 400;
        letter-spacing: 0.01em;
        width: 100%;
        line-height: 1.1;
    }
    @media (min-width: 768px) {
        .hdf2025lp-contents-title-section,
        .hdf2025lp-contents-title-inner {
            width: 390px;
            max-width: 390px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    /* --- HDF2025LP コンテンツ紹介CTA --- */
    .hdf2025lp-contents-cta {
        width: 100vw;
        max-width: 100vw;
        margin: 70px auto 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        position: relative;
    }
    .hdf2025lp-contents-cta-bg {
        width: 100vw;
        max-width: 100vw;
        background: url(../img/hdf2025/cat-1.webp) no-repeat center center / contain;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-sizing: border-box;
        padding: 0 0;
        aspect-ratio: 390 / 374;
    }
    .hdf2025lp-contents-cta-text {
        position: absolute;
        top: 54%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        color: #8cc63e;
        font-size: 32px;
        font-weight: 500;
        letter-spacing: 0.01em;
        z-index: 2;
        line-height: 1.1;
        white-space: nowrap;
        -webkit-text-stroke: 10px var(--white);
        text-stroke: 10px var(--white);
        paint-order: stroke;
    }
    @media (min-width: 769px) {
        .hdf2025lp-contents-cta,
        .hdf2025lp-contents-cta-bg {
            width: 390px;
            max-width: 390px;
            min-height: 220px;
        }
        .hdf2025lp-contents-cta {
            margin-left: auto;
            margin-right: auto;
        }
    }
    * {
        font-family: "Kiwi Maru";
        font-weight: 500;
        font-style: normal;
    }

    :root {
        --gray: #434343
    }

    * {
        /* font-size: 20px; */
        line-height: 1.2;
    }

    .scroll-container {
        scroll-behavior: smooth;
    }

    .show-under-line {
        text-decoration: underline !important;
    }

    .hide-under-line {
        text-decoration: none !important;
    }

    .font-default {
        font-family: sans-serif;
    }

    .aioseo-breadcrumbs {
        margin-bottom: 8px;

        * {
            font-size: 16px;
        }

        .aioseo-breadcrumb-separator {
            color: #949494;
            font-family: sans-serif;
        }
    }

    img {
        width: 100%;
        height: auto;
    }

    .inner {
        width: 100%;
    }

    body {
        background-color: white;
    }


    .frame {
        max-width: 768px;
        background-color: white;
        overflow: hidden;
        z-index: 10;
    }

    span.frame {
        height: 100vh;
        box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.25);
        display: none;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }

    @media screen and (min-width:768px) {
        .frame {
            width: 390px;
            /* margin-left: 25vw; */
            margin: 0 auto;
        }

        span.frame {
            display: block;
        }
    }

    .container {
        padding: 20px;
    }

    /* --flex-- */
    .flex {
        display: flex;
    }

    .flex-center {
        justify-content: center;
    }

    .flex-right {
        justify-content: right;
    }

    .flex-left {
        justify-content: left;
    }

    .space-between {
        justify-content: space-between;
    }

    .flex-start {
        justify-content: flex-start;
    }

    .flex-align-center {
        align-items: center;
    }

    .flex-align-end {
        align-items: end;
    }

    .flex-align-start {
        align-items: start;
    }

    .flex-clumn {
        flex-direction: column;
    }

    /* --flex-- */




    .open-btn {
        width: 50px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        margin-top: 10px;

        span {
            background-color: var(--white);
            width: 100%;
            height: 5px;
            border-radius: 100px;
            box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.239) ;
        }

        &.open {
            span {
                &:nth-of-type(1) {
                    animation: navSpan1-open .3s both;
                }

                &:nth-of-type(2) {
                    animation: navSpan2-open .3s both;
                }

                &:nth-of-type(3) {
                    animation: navSpan3-open .3s both;
                }
            }
        }

        &.close {
            span {
                &:nth-of-type(1) {
                    animation: navSpan1-close .3s both;
                }

                &:nth-of-type(2) {
                    animation: navSpan2-close .3s both;
                }

                &:nth-of-type(3) {
                    animation: navSpan3-close .3s both;
                }
            }
        }
    }

    /* open */
    @keyframes navSpan1-open {
        from {
            transform: rotate(0);
        }

        to {
            transform: translate(0px, 12px)rotate(45deg);
        }
    }

    @keyframes navSpan2-open {
        from {
            transform: translateX(0);
            opacity: 1;
        }

        to {
            transform: translateX(-25px);
            opacity: 0;
        }
    }

    @keyframes navSpan3-open {
        from {
            transform: rotate(0);
        }

        to {
            transform: translate(0px, -12px)rotate(-45deg);
        }
    }

    /* close */
    @keyframes navSpan1-close {
        from {
            transform: translate(0px, 12px)rotate(45deg);
        }

        to {
            transform: rotate(0);
        }
    }

    @keyframes navSpan2-close {
        from {
            transform: translateX(-25px);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes navSpan3-close {
        from {
            transform: translate(0px, -12px)rotate(-45deg);
        }

        to {
            transform: rotate(0);
        }
    }






    /* ===== */
    header {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        z-index: 100 !important;
        background-color: rgba(255, 255, 255, 0) !important;
    }

    header .logo-box,
    footer .logo-box {
        width: 50px;
    }

    header .text-logo-box,
    footer .text-logo-box {
        width: 150px;
        margin-bottom: .7em;
    }


    .space {
        padding-top: 122px;
    }

    .sub-ttl {
        padding: 80px 60px;
    }

    .helo-img-box {
        overflow: hidden;
        aspect-ratio: 390/217;
        position: relative;
        z-index: 10;
    }

    /* swiper */
    .swiper {
        width: 100%;
        height: auto;
        margin-top: 50px;

        .swiper_slide {
            padding: 0 20px;
        }
    }

    .under-tree-text {
        display: block;

        &:not(:last-child) {
            margin-bottom: 1.5em;
        }

        &.displayed {
            animation: textFadeInLeft 1s both;
        }

        &:nth-child(2).displayed {
            animation-delay: .3s;
        }

        &:nth-child(3).displayed {
            animation-delay: .6s;
        }

        img {
            height: 29px;
            width: auto;
        }
    }

    @keyframes textFadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }


    .sepalate {
        width: 100%;
        aspect-ratio: 390/160;
        overflow: hidden;
        position: relative;

        .swiper-wrapper {
            filter: invert(20%);
        }

        img {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        .sepalate-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: auto;
            z-index: 10;
        }
    }

    .section-title {
        text-align: center;
        margin: 40px 0 50px;

        .img-box {
            width: 60px;
            height: auto;
            transform: scale(-1, 1) rotate(320deg);
            display: inline-block;
        }

        .text-box {
            /* height: 18px; */
            width: auto;

            img {
                height: 18px;
                width: auto;
            }
        }
    }

    .table {
        display: grid;
        grid-template-columns: 40px 1fr;
        row-gap: 10px;

        /* ↓ 「制作からお届けまで」セクションの行間設定 */
        &.flow {
            grid-template-rows: 24px 30px 24px 70px 15px 25px 24px 30px 24px 80px 24px 30px 15px 30px 24px;
        }

        /* ↓ 「よくあるご質問」セクションの行間設定 */
        &.qa {
            /* grid-template-rows: repeat(9, 24px 30px 30px); */
        }

        &.privacy {
            ul {
                list-style: auto;

                li {
                    margin: 0.5em 0;
                }
            }
        }

        h3,
        .heading {
            font-size: 24px;
        }

        .heading {
            margin-bottom: 0 !important;
        }

        p {
            font-size: 16px;

            &:not(.small):not(.heading) {
                letter-spacing: -1px;
            }

            &.small {
                font-size: 12px;
            }
        }


        .table-leaf {
            transform: scale(-1, 1) rotate(320deg);
            width: 30px;
            height: 24px;
        }

        .wide {
            grid-column: 1/3;
        }

        .margin {
            height: 20px;
        }

        .v-line {
            width: 1px;
            height: 100%;
            display: inline-block;
            background-color: var(--gray);
            margin-left: 11px;
        }

    }

    /* -----nav -----------*/
    #nav-container {
        background-color: var(--green);
        position: fixed;
        left: 50%;
        width: 100%;
        top: -150%;
        height: 100vh;
        z-index: 50;
        padding-top: 100px;
        transform: translateX(-50%);

        & * {
            color: var(--white);
        }

        &.open {
            animation: navShow .3s both;
        }

        &.close {
            animation: navClose .3s both;
        }
    }

    @media screen and (min-width:768px) {
        #nav-container {
            max-width: 390px;
            border-radius: 20px;
        }
    }

    @keyframes navShow {
        from {
            top: -100%;
            opacity: 0;
        }

        to {
            top: 0;
            opacity: 1;
        }
    }

    @keyframes navClose {
        from {
            top: 0;
            opacity: 1;
        }

        to {
            top: -100%;
            opacity: 0;
        }
    }




    .nav-btn-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        >div:not(:last-child) {
            margin-bottom: 35px;
        }

        a {
            text-decoration: none;
            font-size: 24px;
            text-align: center;

            p {
                font-size: 32px;
            }

            small {
                font-size: 13px;
                margin: 0 auto;
                display: block;
            }
        }

    }

    .insta-box {
        display: flex;
        align-items: flex-start;
        margin-top: 50px;
        margin-bottom: 95px;
        position: relative;

        .sns-icon {
            width: 50px;
            height: 50px;
            margin-right: 50px;

            svg {
                fill: var(--gray);
            }
        }

        p {
            * {
                font-size: 20px;
            }
        }

        .sns-arrow {
            position: absolute;
            top: 50px;
            left: 50px;
        }
    }

    /* -----nav -----------*/

    footer {

        &.container {
            padding-top: 90px;
        }

        .copy {
            text-align: center;
            display: block;
            margin-top: 50px;
        }

        .logo-box {
            margin-bottom: 45px;
        }
    }

    /* =============== out frame ========================== */
    .out-frame.tree-box {
        position: fixed;
        left: 50%;
        bottom: -100px;
        z-index: -2;
        transform: translateX(50%);

        .tree-leaf {
            width: 65px;
            position: absolute;
            top: 0;
            left: 0;
            animation: leafShow 1.7s both;
        }
    }

    .out-frame.nav {
        position: fixed;
        transform: translateX(-160%);
        left: 50%;
        top: 100px;
        z-index: 1;
        display: none;


        @media screen and (min-width:1180px) {
            display: block;
        }
    }

    #out-frame-nav {
        .page {
            &:hover {
                &:not(.active) {
                    transform: translateX(10px);
                    transition: all .5s;
                    display: block;
                }
            }

            &.active {
                &::before {
                    content: "　";
                    background: center/cover url('../img/leaf.png');
                    width: 65px;
                    display: inline-block;
                }
            }
        }

        .insta-box {
            a {
                &:hover {
                    transform: scale(1.05);
                    transition: all .5s;
                }
            }
        }

    }

    /* =============== out frame ========================== */
    
    /* --- HDF2025LP 開催概要セクション --- */
    .hdf2025lp-outline {
        background: #fff;
        border-radius: 20px;
        padding: 40px 24px;
        max-width: 100%;
        margin: 48px auto 0 auto;
    }
    .hdf2025lp-outline-title-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        margin-bottom: 32px;
    }
    .hdf2025lp-outline-title-main {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: bold;
        color: #8cc63e;
        font-size: 16px;
        letter-spacing: 0.04em;
    }
    .hdf2025lp-outline-title-sub {
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-weight: 500;
        color: #222;
        font-size: 32px;
        text-align: center;
        letter-spacing: 0.04em;
    }
    .hdf2025lp-outline-block {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }
    .hdf2025lp-outline-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .hdf2025lp-imgbox-large img {
        width: 282px;
        height: 188px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.09);
        border: 3px solid #8cc63e22;
    }
    
    .hdf2025lp-imgbox-mid img {
        width: 197px;
        height: 158px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.09);
        border: 3px solid #8cc63e22;
    }
    
    .hdf2025lp-imgbox-small img {
        width: 160px;
        height: 156px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.09);
        border: 3px solid #8cc63e22;
    }
    
    .hdf2025lp-imgbox-bottom img {
        width: 231px;
        height: 154px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.09);
        border: 3px solid #8cc63e22;
        margin-top: 20px;
    }
    
    .hdf2025lp-imgtext {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        color: #8cc63e;
        font-size: 20px;
        font-family: 'Kiwi Maru', sans-serif;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.92);
        padding: 4px 16px;
        border-radius: 8px;
        box-shadow: 0 2px 8px 0 rgba(140, 198, 62, 0.08);
        border: 1px solid #8cc63e33;
        letter-spacing: 0.04em;
    }
    
    .hdf2025lp-mainvisual-box {
        position: relative;
    }
    
    @media (min-width: 768px) {
        .hdf2025lp-mainvisual-box {
            max-width: 390px;
            margin: 0 auto;
        }
    }
    
    .shdf2025lp-mainvisual-box img {
        width: 100%;
        display: block;
        border-radius: 20px;
    }
    .hdf2025lp-mainvisual-h1 {
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        color: var(--green);
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-size: clamp(32px, calc(32px + (50 - 32) * ((100vw - 375px) / (768 - 375))), 50px);
        font-weight: 400;
        text-align: center;
        line-height: 1.1;
        letter-spacing: 0.04em;
        -webkit-text-stroke: 10px var(--white);
        text-stroke: 10px var(--white);
        paint-order: stroke;
        padding: 0 10px;
        z-index: 2;
        word-break: keep-all;
        box-sizing: border-box;
        top: clamp(100px, calc(100px + (235 - 100) * ((100vw - 375px) / (768 - 375))), 235px);
    }
    
    @media (min-width: 768px) {
        .hdf2025lp-mainvisual-h1 {
            top: 100px;
        }
    }
    
    .hdf2025lp-mainvisual-h1 .hdf2025lp-mainvisual-h1-dogfesta {
        color: var(--green);
        letter-spacing: -0.04em;
        font-size: clamp(54px, calc(54px + (80 - 54) * ((100vw - 375px) / (768 - 375))), 80px);
        display: inline-block;
    }
    
    .hdf2025lp-mainvisual-h1 .hdf2025lp-mainvisual-h1-hokkaido {
        color: var(--green);
        letter-spacing: -0.04em;
        font-size: clamp(54px, calc(54px + (80 - 54) * ((100vw - 375px) / (768 - 375))), 80px);
        display: inline-block;
    }
    
    @media (min-width: 768px) {
        .hdf2025lp-mainvisual-h1 .hdf2025lp-mainvisual-h1-dogfesta,
        .hdf2025lp-mainvisual-h1 .hdf2025lp-mainvisual-h1-hokkaido {
            font-size: 54px;
        }
    }
    
    .hdf2025lp-mainvisual-h1 .hdf2025lp-mainvisual-h1-small {
        font-size: 0.85em;
        color: var(--green);
        display: inline-block;
        vertical-align: middle;
        margin-top: -.5em;
    }
    
    .hdf2025lp-mainvisual-place {
        position: absolute;
        left: 50%;
        top: clamp(270px, calc(270px + (500 - 270) * ((100vw - 375px) / (768 - 375))), 500px);
        transform: translateX(-50%);
        text-align: center;
        color: black;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-size: clamp(13px, calc(13px + (16 - 13) * ((100vw - 375px) / (768 - 375))), 16px);
        font-weight: 400;
        letter-spacing: 0.02em;
        width: 100%;
        padding: 2px 12px;
        z-index: 3;
    }
    
    @media (min-width: 768px) {
        .hdf2025lp-mainvisual-place {
            top: 287px;
        }
    }
    
    /* --- HDF2025LP 開催概要エリア--- */
    .hdf2025lp-outline {
        background: #fff;
        border-radius: 20px;
        padding: 40px 24px;
        max-width: 100%;
        margin: auto 0 auto;
    }   
    .hdf2025lp-outline-title-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        margin-bottom: 32px;
    }   
    .hdf2025lp-outline-title-main {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: bold;
        color: #8cc63e;
        font-size: 16px;
        letter-spacing: 0.04em;
    }   
    .hdf2025lp-outline-title-sub {
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-weight: 500;
        color: #222;
        font-size: 32px;
        text-align: center;
        letter-spacing: 0.04em;
    }   
    .hdf2025lp-outline-block {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }   
    .hdf2025lp-outline-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }   
    .hdf2025lp-outline-label {
        background: var(--green);
        width: 100%;
        color: #fff;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-weight: 500;
        font-size: 15px;
        border-radius: 10px;
        padding: 0 32px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 4px;
        letter-spacing: 0.04em;
    }   
    .hdf2025lp-outline-value {
        color: #222;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-weight: 500;
        font-size: 15px;
        text-align: center;
        line-height: 1.6;
    }   
    .hdf2025lp-outline-note {
        /* color: #888; */
        font-size: 13px;
        display: block;
        margin-top: 2px;
    }   
    @media (min-width: 768px) {
        .hdf2025lp-outline {
            padding: 28px 8px;
            max-width: 390px;
            margin: 0 auto;
        }   
        .hdf2025lp-outline-title-sub {
            font-size: 24px;
        }   
        .hdf2025lp-outline-label {
            padding: 0 12px;
            height: 22px;
        }   
    }

    /* --- HDF2025LP メインイントロエリア（Figma node-id=122-499）--- */
    .hdf2025lp-intro-section {
        background: #fcfcfc;
        width: 100%;
        box-sizing: border-box;
        padding: 50px 10px 42px 10px;
        display: flex;
        justify-content: center;
    }

    @media (min-width: 768px) {
        .hdf2025lp-intro-section {
            max-width: 390px;
            margin: 0 auto;
        }
    }
    .hdf2025lp-intro {
        width: 100%;
        max-width: 420px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .hdf2025lp-intro-title-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .hdf2025lp-intro-hashtag {
        color: #8cc63e;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: bold;
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }
    .hdf2025lp-intro-title {
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-size: 29px;
        color: #222;
        text-align: center;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 0;
    }
    .hdf2025lp-intro-title span.hdf2025lp-intro-highlight {
        color: #f4b324;
    }
    .hdf2025lp-intro-subtitle {
        color: #8a8a8a;
        font-size: 12px;
        text-align: center;
    }
    .hdf2025lp-intro-description {
        color: #222;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }
    .hdf2025lp-intro-btn-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .hdf2025lp-intro-btn {
        background: #8cc63e;
        color: #fff;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        font-size: 24px;
        font-weight: 500;
        border: none;
        border-radius: 57px;
        box-shadow: 0 4px 0 0 #3b5704;
        padding: 0 32px;
        height: 59px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }
    .hdf2025lp-intro-btn-arrow {
        display: inline-flex;
        align-items: center;
        margin-left: 8px;
    }
    @media (max-width: 480px) {

        .hdf2025lp-intro-btn {
            font-size: 18px;
            height: 48px;
            padding: 0 16px;
            width: 80%;
        }
    }
    
    /* --- HDF2025LP 開催概要テーブル縦並び --- */
    .hdf2025lp-outline-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 18px;
    }
    .hdf2025lp-outline-table tr {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
    .hdf2025lp-outline-table th,
    .hdf2025lp-outline-table td {
        /* display: block; */
        width: 100%;
        text-align: center;
        border: none;
        padding: 0;
    }
    .hdf2025lp-outline-table th {
        margin-bottom: 4px;
    }

    .hdf2025lp-intro-imgbox {
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hdf2025lp-intro-imgbox img {
      width: 100%;
      height: auto;
      display: block;
    }
    @media (max-width: 480px) {
      .hdf2025lp-intro-imgbox {
        width: 95vw;
        height: auto;
        min-width: 0;
      }
    }

    /* Google Map Responsive Box */
    .hdf2025lp-mapbox {
        width: 100%;
        max-width: 420px;
        margin: 0 auto 0 auto;
        display: flex;
        justify-content: center;
        box-sizing: border-box;
    }
    .hdf2025lp-mapbox iframe {
        width: 100%;
        height: 320px;
        max-width: 100%;
        border: 0;
        border-radius: 16px;
    }
    @media (max-width: 480px) {
        .hdf2025lp-mapbox {
            max-width: 98vw;
        }
        .hdf2025lp-mapbox iframe {
            height: 200px;
        }
    }

    /* --- HDF2025LP 見どころセクション --- */
    .hdf2025lp-feature-section {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 50px auto 0 auto;
        padding: 0;
    }
    .hdf2025lp-feature-inner {
        width: 100%;
        position: relative;
        text-align: center;
        box-sizing: border-box;
    }
    .hdf2025lp-feature-title-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 29px;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        z-index: 2;
        margin-bottom: 30px;
    }
    .hdf2025lp-feature-title-main {
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        color: #8bc73e;
        font-size: 40px;
        line-height: 1.1;
        font-weight: 500;
        width: 100%;
        letter-spacing: 0.01em;
    }
    .hdf2025lp-feature-title-main p {
        margin: 0;
    }
    .hdf2025lp-feature-title-sub {
        font-family: 'Noto Sans JP', sans-serif;
        color: #8a8a8a;
        font-size: 12px;
        font-weight: 400;
        width: 100%;
        line-height: 1.5;
    }
    .hdf2025lp-feature-title-sub p {
        margin: 0;
    }
    .hdf2025lp-feature-bgimg {
        width: 100%;
        aspect-ratio: 1989/548;
        background: url('data:image/svg+xml;base64,PHN2ZwogICAgICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgICAgIHZpZXdCb3g9IjAgMCAxIDEiCiAgICAgIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiCiAgICAgIHdpZHRoPSIxMDAlIgogICAgICBoZWlnaHQ9IjEwMCUiCiAgICA+CiAgICAgIDxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IiNFRUUiIC8+CiAgICA8L3N2Zz4=') no-repeat top left / 100% 100%;
        position: relative;
        margin-top: 10px;
        z-index: 1;
    }
    @media (max-width: 480px) {
        .hdf2025lp-feature-bgimg {
            aspect-ratio: 2.5/1;
        }
    }
    /* --- HDF2025LP 見どころセクション画像 --- */
    .hdf2025lp-feature-contents-img {
        display: block;
        width: 100vw;
        max-width: 100vw;
        margin: 0 auto;
        border-radius: 0;
    }
    @media (min-width: 769px) {
        .hdf2025lp-feature-contents-img {
            width: 390px;
            max-width: 390px;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
    }
    /* --- HDF2025LP 見どころセクションCTA --- */
    .hdf2025lp-feature-cta {
        width: 100vw;
        max-width: 100vw;
        margin: 0 auto 0 auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }
    .hdf2025lp-feature-cta-inner {
        background: #fff2dd;
        width: 100vw;
        max-width: 100vw;
        min-height: 187px;
        box-sizing: border-box;
        padding: 23px 0px 31px 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        border-radius: 0;
    }
    .hdf2025lp-feature-cta-textbox {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
        gap: 0.2em;
    }
    .hdf2025lp-feature-cta-t1,
    .hdf2025lp-feature-cta-t3 {
        color: #222;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.1;
        margin: 0;
    }
    .hdf2025lp-feature-cta-t2 {
        color: #8cc63e;
        font-size: 36px;
        font-weight: 500;
        line-height: 1.1;
        margin: 0;
    }
    .hdf2025lp-feature-cta-arrow {
        position: absolute;
        left: 50%;
        top: calc(100% - 43px);
        transform: translate(-50%, 0);
        width: 86px;
        height: 86px;
        z-index: 2;
        pointer-events: none;
    }
    @media (min-width: 769px) {
        .hdf2025lp-feature-cta,
        .hdf2025lp-feature-cta-inner {
            width: 390px;
            max-width: 390px;
        }
        .hdf2025lp-feature-cta {
            margin-left: auto;
            margin-right: auto;
        }
    }

    /* --- HDF2025LP 見どころセクション見出し画像 --- */
    .hdf2025lp-feature-heading-img {
        display: block;
        width: 100vw;
        max-width: 100vw;
        margin: 0 auto;
        height: auto;
    }
    @media (min-width: 769px) {
        .hdf2025lp-feature-heading-img {
            width: 390px;
            max-width: 390px;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }
    }

    .contact.lp {
        padding: 50px 24px;
    }

    .contact .btn input {
        width: 100%;
    }

}

.contact {

    .wpcf7 {
        max-width: 500px;
        margin: 0 auto;
    }

    label {
        margin-bottom: 1em;
    }

    input,
    textarea {
        background-color: #E7E7E7;
        border: none;
        border-radius: 5px;
        padding: .2em .5em;
        font-size: 1.2em;
        width: 100%;
        margin-top: .3em;

        &::placeholder {
            color: var(--gray);
        }

        &[type=text] {}
    }

    .must {
        color: var(--white);
        background-color: #FF6F00;
        border-radius: 5px;
        padding: .1em .4em;
        font-size: .75em;
        margin-left: .5em;
    }

    .wpcf7-form {

        & input[type="radio"] {
            display: none;
        }

        .wpcf7-radio {

            &.radio-box {

                display: flex;
                justify-content: space-between;
                margin-top: .3em;

                .wpcf7-list-item {
                    margin-left: 0;
                }

                label {
                    border-radius: 5px;
                    padding: .2em .5em;
                    background-color: var(--white);
                    color: var(--blue);
                    border: 1px solid var(--blue);

                    &.active {
                        background-color: var(--blue);
                        box-shadow: none;
                        display: block;
                        color: var(--white);
                    }
                }
            }
        }

        input[type="checkbox"] {
            width: auto;
            scale: 1.6;
            display: inline-block;
            margin-right: .5em;
            accent-color: var(--red);
        }

        .privacy {
            text-decoration: underline;
        }

        .btn {
            background-color: transparent;
            padding: 0;
            border-radius: 0;
            margin-top: 2em;

            input {

                background: var(--green);
                color: #fff;
                font-family: 'Kiwi Maru', 'Noto Sans JP', sans-serif;
                font-size: 24px;
                font-weight: 500;
                border: none;
                border-radius: 57px;
                box-shadow: 0 4px 0 0 #3b5704;
                padding: 0 32px;
                height: 59px;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                cursor: pointer;
            }
        }
    }

}
.grecaptcha-badge {
    visibility: hidden;
}