*{
    box-sizing: border-box;
}

body{
    font-family: "Zen Maru Gothic", sans-serif;
    color: #555;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}
.header{
    width: 100%;
    height: 150px;
    background-image: url(../images/header-blue.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center calc(50% + 100px) ;
    padding: 20px 0;
    position: static;
    top: 0;
    left: 0;
    z-index: 100;
}
.header_inner{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-button{
    display: none;
}
.logo img{
    width: 180px;
    display: block;
    margin-left: -20px;
    margin-top: -30px;
}
.nav_list{
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav_list a{
    text-decoration: none;
    color: #5a4336;
    font-weight: 500;
    transition: .3s;
}
.nav_list a:hover{
    color: #6bbf59;
}
.hero{
    position: relative;
    margin: 0;
}
.hero img{
    width: 100%;
    display: block;
}
.hero_message{
    position: absolute;
    top: 350px;
    left: 100px;
    color: white;
}
.about{
    text-align: center;
    position: relative;
    background-color: #FAF8F2;
    height: 400px;
    margin: 0;
    padding: 50px 0 0;
}
.sp{
    display: none;
}
.about h3{
    margin: 0;
    padding-top: 50px;
}
.about_deco{
    position: absolute;
    width: 70px;
    height: auto;
    display: block;
}
.cloud_right{
    position: absolute;
    top: 80px;
    right: 200px;
}
.rainbow{
    position: absolute;
    top: 120px;
    left: 60px;
    transform: rotate(-20deg);
}
.cloud_left{
    position: absolute;
    top: 280px;
    left: 120px;
}
.concept{
    margin-top: 100px;
    text-align: center;
    position: relative;
}
.concept-cards{
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 50px;
}
.concept-card{
    width: 250px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 15);
    padding: 20px;
    position: relative;
}
.concept-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: -25px auto 15px;
}
.green{
    background-color: #DDF7B8;
    margin-top: 10px;

}
.blue{
    background-color: #D8F6FA;
    margin-top: 10px;
}
.yellow{
    background-color: #FFF4CE;
    margin-top: 10px;
}
.concept-icon img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: 5px;
}
.concept-card h2{
    font-size: 22px;
    color: #5A4336;
    font-weight: 500;
}
.concept-photo{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
.detail{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 25px 0 0 auto;
    padding: 5px 14px;
    background-color: #42BFC8;
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 15);
    transition: 0.3s;
}
.concept .detail {
    margin-right: max(
        calc((100vw - 1100px) / 2 + 30px),
        calc(5vw + 30px)
    );
}
.concept_deco{
    position: absolute;
    width: 70px;
    height: auto;
    display: block;
}
.bird{
   position: absolute;
   right: 120px;
   top: 50px;
}
.star{
    position: absolute;
    left: 70px;
    top: 280px;
}
.detail:hover{
    background-color: #2EAAB5;
}

main .blog,
main .news{
    width: 90%;
    max-width: 1100px;
    margin: 80px auto;
    position: relative;
    text-align: center;
    background-color: #FAF8F2;
    padding: 40px;
}
.post-list{
    background-color: #fff;
    padding: 15px 25px;
    border: 4px;
}
.post-item{
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dotted #bbb;
    color: #5a4336;
    text-decoration: none;
    transition: 0.3s;
}
.post-item:last-child{
    border-bottom: none;
}
.post-item img{
    width: 55px;
    height: 40px;
    object-fit: cover;
}
.post-item:hover{
    color: #42BFC8;
    transform: translateX(5px);
}
.blog_deco,
.news_deco{
    position: absolute;
    width: 30px;
    height: auto;
    display: block;
}
.leaf-right{
    position: absolute;
    top: 75px;
    right: 350px;
}
.leaf-left{
    position: absolute;
    top: 75px;
    left: 350px;
}
.bee-right{
    position: absolute;
    top: 75px;
    right: 400px;
}
.bee-left{
    position: absolute;
    top: 75px;
    left: 400px;
}
.footer{
    background-color: #e6f5fd;
    margin-top: 0;
    padding: 40px 0 20px;
}
.footer_inner{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 45px;
}
.footer_logo img{
    width: 160px;
    margin-right: 100px;
}
.footer_info{
    font-size: 14px;
    line-height: 1.8;
    color: #5a4336;
    border-right: 1px dashed #9eb4bf;
    padding-right: 50px;
}
.footer_info p{
    margin-bottom: 18px;
}
.footer_nav{
    margin-top: 30px;
    display: flex;
    gap: 60px;
    padding-top: 10px;
}
.footer_nav ul{
    list-style: none;
    padding: 0;
    margin: 0;
    width: 130px;
}
.footer_nav li{
    margin-bottom: 16px;
}
.footer_nav a{
    text-decoration: none;
    color: #5a4336;
}
.footer_nav a:hover{
    color: #42BFC8;
}
.copyright{
    text-align: center;
    margin-top: 25px;
    font-size: 12px;
    color: #666;
}

/*園について*/
.conceptpage{
    position: relative;
}
.concept-message{
    position: relative;
    padding: 55px 20px 45px;
    background-color: #FAF8F2;
    text-align: center;
}
.concept-message h1{
    margin: 0 0 18px;
    font-weight: 500;
}
.concept-message h3{
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.9;
}
.concept-title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.concept-title img{
    width: 45px;
    height: auto;
}
.concept-title h1{
    margin: 0;
}
.concept-detail{
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
    padding: 30px 20px 70px;
}
.concept-detail-item{
    position: relative;
    padding: 55px 0 40px;
    border-bottom: 1px dashed #ccc;
}
.concept-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}
.concept-detail-item:last-child{
    border-bottom: none;
}
.concept-detail-item.reverse .concept-main{
    flex-direction: row-reverse;
}
.concept-mainphoto{
    width: 43%;
    height: 230px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}
.concept-text{
    width: 47%;
}
.concept-text h1{
    margin: 0 0 15px;
    font-weight: 500;
}
.concept-text h3{
    margin: 0;
    line-height: 1.9;
}
.concept-photos{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-top: 30px;
}
.concept-photos img{
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}
.item-deco{
    position: absolute;
    width: 48px;
    height: auto;
}
.leaf-big{
    top: 85px;
    right: -20px;
}
.leaf-small{
    top: 130px;
    right: 25px;
    width: 30px;
}
.note{
    width: 70px;
    top: 130px;
    left: 320px;
}
.music-star{
    top: 180px;
    left: 380px;
    width: 35px;
}
.myself-sun{
    top: 50px;
    right: 70px;
}
.myself-cloud{
    top: 250px;
    right: 10px;
}

/*園の生活*/
/*1日の過ごし方*/
.schedule{
    padding: 60px 20px 70px;
    background-color: #FAF8F2;
}
.section-title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    position: relative;
}
.section-title h1{
    margin: 0;
    font-weight: 500;
}
.schedule-star1{
    position: absolute;
    top: 20px;
    right: 300px;
    width: 60px;
    height: auto;
}
.schedule-star2{
    position: absolute;
    top: 100px;
    left: 300px;
    width: 40px;
    height: auto;
}
.schedule-rocket{
    position: absolute;
    top: 80px;
    left: 200px;
    width: 80px;
    height: auto;
}
.schedule-wrapper{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 150px;
    width: 90%;
    max-width: 850px;
    margin: 0 auto;
}
.schedule-card{
    width: 260px;
    padding: 20px 18px;
    background-color: #fff;
    border: 1px solid #E4D8CA;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.schedule-card h2{
    margin: 0 0 15px;
    font-weight: 500;
    text-align: center;
}
.schedule-list{
    margin: 0;
    padding: 0;
    list-style: none;
}
.schedule-list li{
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px dashed #e7c892;
}
.schedule-list li:last-child{
    border-bottom: none;
}
.schedule-list li::before{
    content: "🕐";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    color: #8a6b3e;
    background-color: #f8dda8;
    border: 1px solid #c69a50;
    border-radius: 50%;
    font-size: 11px;
    line-height: 1;
}
.schedule-card:nth-child(2) .schedule-list li::before{
    color: #55774a;
    background-color: #ddf0c9;
    border-color: #82a66c;
}
.schedule-list .time{
    display: block;
    color: #6c625c;
    font-size: 14px;
    font-weight: 500;
}
.schedule-list p{
    margin: 2px 0 0;
    color:#6c625c;
    font-size: 13px;
    line-height: 1.5;
}

/*年間行事*/
.annual-events{
    padding: 60px 20px 80px;
    background-color: #fff;
}
.annual-events-title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.annual-events-title h1{
    margin: 0;
    font-weight: 500;
}
.annual-events-title img{
    width: 25px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}
.annual-events-list{
    width: 90%;
    max-width: 820px;
    margin: 0 auto;
    padding: 30px;
    background-color: #FAF8F2;
    border-radius: 8px;
}
.annual-events-row{
    display: grid;
    grid-template-columns: 100px repeat(3 , 1fr);
    align-items: stretch;
    gap: 20px;
    padding: 28px 0;
}
.annual-events-row + .annual-events-row{
    border-top: 1px dashed #d7cec3;
}
.annual-season{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 95px;
    border-radius: 50%;
    text-align: center;
}
.annual-season span{
    font-size: 16px;
    font-weight: 500;
}
.annual-season p{
    margin: 3px 0 0;
    font-size: 12px;
}
.annual-event-card{
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 120px;
    padding: 20px 16px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.08);
}
.event-month{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 50%;
    font-size: 12px;
}
.annual-event-card p{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}
.season-pink,
.month-pink{
    background-color: #f8dde5;
}
.season-green,
.month-green{
    background-color: #ddefd0;
}
.season-orange,
.month-orange{
    background-color: #f8e2c3;
}
.season-blue,
.month-blue{
    background-color: #ddecf8;
}

/*ブログ*/
.blog-page{
    padding: 70px 20px 90px;
    background-color: #FAF8F2;
}

.blog-page-title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
.blog-page-title h1{
    font-weight: 500;
}
.blog-page-title img{
    width: 34px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.blog-page-list{
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0,.05);
}
.blog-page-item{
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 22px 28px;
    border-bottom: 1px solid #f0ede6;
    transition: .3s;
}
.blog-page-item:last-child{
    border-bottom: none;
}
.blog-page-item:hover{
    background: #fffdf8;
}
.blog-page-image{
    flex-shrink: 0;
}
.blog-page-image img{
    width: 160px;
    height: 105px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.blog-page-content{
    flex: 1;
}
.blog-page-content time{
    display: inline-block;
    color: #87c76d;
    font-size: 13px;
    margin-bottom: 6px;
}
.blog-page-content h2{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
}
.blog-page-content h2 a{
    text-decoration: none;
    color: #555;
}
.blog-page-content p{
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 15px;
}
.blog-more{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #79c167;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.blog-more:hover{
    color: #5aa94b;
}
.blog-more span{
    transition: .3s;
}
.blog-more:hover span{
    transform: translateX(4px);
}

/*ブログ詳細ページ*/
.blog-single{
    max-width: 900px;
    margin: 80px auto;
}
.blog-single-date{
    display: block;
    color: #79c96b;
    margin-bottom: 16px;
}
.blog-single-title{
    padding-bottom: 16px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #e8c99b;
}
.blog-single-content img{
    max-width: 100%;
    height: auto;
}
.blog-single-content .wp-block-columns .wp-block-column img{
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.blog-single-wrapper{
    max-width: 1100px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 40px;
}
.blog-single-main{
    min-width: 0;
}
.blog-sidebar section{
    background: #FAF8F2;
    padding: 20px;
    margin-bottom: 30px;
}
.blog-sidebar h2{
    text-align: center;
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #e8c99b;
}
.recent-post-item{
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.recent-post-item img{
    width: 60px;
    height: 45px;
    object-fit: cover;
}
.recent-post-text{
    display: flex;
    flex-direction: column;
}
.recent-post-text a{
    font-size: 12px;
    color: #555;
    text-decoration: none;
}
.recent-post-text time{
    font-size: 10px;
    color: #999;
}
.blog-categories ul{
    list-style: none;
    padding: 0;
}
.blog-categories li{
    margin-bottom: 8px;
}
.blog-categories a{
    color: #555;
    text-decoration: none;
}
.blog-single-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
.blog-single-nav a{
    display: inline-block;
    padding: 8px 18px;
    background-color: #dff7d9;
    color: #79b86b;
    font-size: 13px;
    text-decoration: none;
    border-radius: 999px;
    transition: 0.3s;
}
.blog-single-nav a:hover{
    background-color: #c9efc1;
    transform: translateY(-2px);
}
/*お知らせ*/
.news-page{
    padding: 70px 20px 90px;
    background-color: #FAF8F2;
}

.news-page-title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}
.news-page-title h1{
    font-weight: 500;
}
.news-page-title img{
    width: 34px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.news-page-list{
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0,.05);
}
.news-page-item{
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 22px 28px;
    border-bottom: 1px solid #f0ede6;
    transition: .3s;
}
.news-page-item:last-child{
    border-bottom: none;
}
.news-page-item:hover{
    background: #fffdf8;
}
.news-page-image{
    flex-shrink: 0;
}
.news-page-image img{
    width: 160px;
    height: 105px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.news-page-content{
    flex: 1;
}
.news-page-content time{
    display: inline-block;
    color: #18CDD9;
    font-size: 13px;
    margin-bottom: 6px;
}
.news-page-content h2{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
}
.news-page-content h2 a{
    text-decoration: none;
    color: #555;
}
.news-page-content p{
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 15px;
}
.news-more{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #18CDD9;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.news-more:hover{
    color: #12B6C1;
}
.news-more span{
    transition: .3s;
}
.news-more:hover span{
    transform: translateX(4px);
}
/*お知らせ詳細*/
.news-detail-page{
    padding: 80px 20px 40px;
    background: #FAF8F2;
}
.news-detail-inner{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.news-detail-article{
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);
}
.news-detail-date{
    display: block;
    color: #18CDD9;
    font-size: 14px;
    margin-bottom: 10px;
}
.news-detail-title{
    font-size: 34px;
    font-weight: 500;
    color: #555;
    margin-bottom: 30px;
}
.news-detail-main-image{
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}
.news-detail-lead{
    font-size: 18px;
    line-height: 2;
    margin-bottom: 35px;
}
.news-detail-navigation{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
.news-nav-button{
    text-decoration: none;
    color: #18CDD9;
    background: #E8F8FC;
    padding: 10px 22px;
    border-radius: 30px;
    transition: .3s;
}
.news-nav-button:hover{
    background: #12B6C1;
    color: #fff;
}
.news-sidebar{
    width: 280px;
}
/*お問い合わせ*/
.contact-page{
    background: #FAF8F2;
    padding: 80px 20px 120px;
}
.contact-inner{
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 70px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}
.contact-title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.contact-title img{
    width: 30px;
}
.contact-title h1{
    font-weight: 700;
    color: #555;
}
.contact-message{
    text-align: center;
    line-height: 2;
    color: #666;
    margin-bottom: 30px;
}
.contact-tel{
    text-align: center;
    margin: 40px 0;
}
.contact-tel a{
    font-size: 38px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}
.contact-tel p{
    margin-top: 10px;
    color: #888;
    font-size: 15px;
    text-align: center;
}
.contact-form{
    width: 100%;
}
/*WPForm*/
.contact-form .wpforms-container{
    width: 100%;
    margin: 0 auto;
}
.contact-form .wpforms-field{
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 0 !important;
    border-top: 1px dashed #f2c58d;
}
.contact-form .wpforms-field-label{
    color: #555 !important;
    font-weight: 500 !important;
}
.contact-form .wpforms-required-label{
    font-size: 0;
    background: #ff5b84;
    color: #fff !important;
    padding: 4px 11px;
    border-radius: 20px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

.contact-form .wpforms-required-label::after{
    content: "必須";
    font-size: 12px;
    color: #fff;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
    width: 100% !important;
    max-width: none !important;
    padding: 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-family: inherit !important;
    box-sizing: border-box;
}
.contact-form textarea{
    min-height: 180px !important;
    resize: vertical;
}
.contact-form .wpforms-field-checkbox ul{
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 !important;
    padding: 0 !important;
}
.contact-form .wpforms-submit-container{
    text-align: center;
    padding-top: 40px !important;
}
.contact-form button.wpforms-submit{
    width: 260px !important;
    height: 60px !important;
    border: none !important;
    border-radius: 999px !important;
    background: #f7c96c !important;
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: .3s;
}
.contact-form button.wpforms-submit:hover{
    background: #e9b34a !important;
    transform: translateY(-2px);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: #bbb;
}

@media screen and (max-width: 900px) {
    body{
        overflow-x: hidden;
    }

    .header{
        height: 90px;
        overflow: visible;
        padding: 15px 0 25px;
        background-position: center 20%;
        position: relative;
    }
    .header_inner{
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 90px;
    }
    .logo img{
        width: 85px;
        height: auto;
        display: block;
        margin: 0;
    }
    .menu-button{
        display: flex;
        margin-left: auto;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 45px;
        height: 45px;
        padding: 8px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 101;
    }
    .menu-button span{
        display: block;
        width: 100%;
        height: 3px;
        background-color: #5a4336;
        border-radius: 3px;
        transition: 0.3s;
    }
    .header_nav{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 25px 20px;
        background-color: rgba(255, 255, 255, 0.97);
        z-index: 1000;
    }
    .header_nav.open{
        display: block;
    }
    .nav_list{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 0;
        margin: 0;
    }
    .nav_list a{
        font-size: 16px;
        display: block;
        padding: 10px;
    }
    .nav_list li{
        width: 100%;
        text-align: center;
        border-bottom: 1px dotted #ddd;
    }
    .menu-button.open span:nth-child(1){
        transform: translateY(9px) rotate(45deg);
    }
    .menu-button.open span:nth-child(2){
        opacity: 0;
    }
    .menu-button.open span:nth-child(3){
        transform: translateY(-9px) rotate(-45deg);
    }
    .logo_img{
        width: 130px;
        margin: 0 auto;
    }
    .hero img{
        height: 300px;
        object-fit: cover;
    }
    .hero_message{
        top: 80px;
        left: 25px;
    }
    .hero_message h1{
        font-size: 24px;
    }
    .about{
        height: auto;
        padding: 40px 20px;
    }
    .about h1{
        font-size: 24px;
    }
    .sp{
        display: block;
    }
    .about h3{
        padding-top: 25px;
        font-size: 14px;
    }
    .about h3 br{
        display: none;
    }
    .about_deco{
        width: 40px;
    }
    .cloud_right{
        top: 40px;
        right: 45px;
    }
    .cloud_left{
        display: none;
    }
    .rainbow{
        top: 120px;
        left: 35px;
    }
    .concept{
        margin-top: 40px;
        padding: 0 20px;
    }
    .concept h1{
        font-size: 24px;
    }
    .concept h3{
        font-size: 14px;
    }
    .concept-cards{
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 40px;
    }
    .concept-card{
        width: 100%;
        max-width: 300px;
    }
    .concept_deco{
        display: none;
    }
    .bird{
        display: none;
    }
    .star{
        display: none;
    }
    .detail{
        margin: 25px 0 0 auto;
        font-size: 13px;
        padding: 5px 12px;
    }
    .concept .detail,
    .blog .detail,
    .news .detail {
    margin-right: -5px;
    }
    main .blog,
    main .news{
        width: 100%;
        margin: 60px 0;
        padding: 30px 16px;
        position: relative;
    }
    main .blog h1,
    main .news h1{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .post-list{
    padding: 10px 15px;
    }
    .post-item{
        gap: 10px;
        font-size: 14px;
    }
    .post-item img{
        width: 50px;
        height: 40px;
    }
    .leaf-right{
        top: 50px;
        right: calc(50% - 115px);
    }
    .leaf-left{
        top: 50px;
        left: calc(50% - 115px);
    }
    .bee-right{
        top: 47px;
        right: calc(50% - 105px);
    }
    .bee-left{
        top: 47px;
        left: calc(50% - 105px);
    }
    .footer_inner{
        width: 90%;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .footer_logo{
        width: auto;
        text-align: center;
    }
    .footer_logo img{
        display: block;
        width: 120px;
        margin: 0 auto;
    }
    .footer_info{
        width: 100%;
        min-height: auto;
        padding: 0 0 20px;
        border-right: none;
        border-bottom: 1px dashed #9eb4bf;
        text-align: center;
    }
    .footer_nav{
        width: 100%;
        justify-content: center;
        gap: 35px;
    }
    .footer_nav ul{
        width: auto;
    }
    .footer_nav li{
        margin-bottom: 12px;
    }
    .copyright{
        padding: 0 20px;
    }

    /*園について*/
    .concept-message{
        padding: 40px 20px 35px;
        position: relative;
    }
    .concept-message h3{
        font-size: 13px;
        line-height: 1.8;
    }
    .concept-title{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }
    .concept-title img{
        width: 30px;
        height: auto;
        transform: translateY(-5px);
    }
    .concept-title h1{
        font-size: 22px;
        margin: 0 0 15px;
        white-space: nowrap;
    }
    .concept-detail{
        width: 100%;
        padding: 10px 20px 45px;
    }
    .concept-detail-item{
        padding: 40px 0 30px;
    }
    .concept-main,
    .concept-detail-item.reverse .concept-main{
        flex-direction: column;
        gap: 20px;
    }
    .concept-mainphoto{
        width: 100%;
        height: 200px;
    }
    .concept-text{
        width: 100%;
        text-align: center;
    }
    .concept-text h1{
        font-size: 22px;
        text-align: center;
        margin-bottom: 12px;
    }
    .concept-text h3{
        font-size: 13px;
        line-height: 1.9;
        text-align: center;
    }
    .concept-text h3 br{
        display: none;
    }
    .concept-photos{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
    }
    .concept-photos img{
        height: 100px;
    }
    .item-deco{
        display: none;
    }

    /*園の生活*/
    /*1日の過ごし方*/
    .schedule{
        padding: 45px 20px 55px;
    }
    .section-title{
        position: relative;
        margin-bottom: 30px;
        text-align: center;
    }
    .section-title h1{
        margin: 0;
        font-size: 24px;
    }
    .schedule-wrapper{
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .schedule-card{
        width: 100%;
        max-width: 330px;
        padding: 20px 18px;
    }
    .schedule-card h2{
        font-size: 21px;
    }
    .schedule-list li{
        padding: 12px 0 12px 30px;
    }
    .schedule-list .time{
        font-size: 14px;
    }
    .schedule-list p{
        font-size: 13px;
    }
    .schedule-rocket{
        width: 60px;
        top: 80px;
        left: 30px;
    }
    .schedule-star1{
        width: 25px;
        top: 120px;
        bottom: 20px;
        left: 90px;
    }
    .schedule-star2{
        width: 45px;
        top: 25px;
        left: 600px;
    }
    /*年間行事 */
    .annual-events{
        padding: 45px 15px 0px;
    }
    .annual-events-title{
        gap: 8px;
        margin-bottom: 25px;
        text-align: center;
    }
    .annual-events-title h1{
        font-size: 24px;
    }
    .annual-events-title img{
        width: 20px;
        height: 20px;
    }
    .annual-events-list{
        width: 100%;
        padding: 20px 15px;
    }
    .annual-events-row{
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 20px 0;
    }
    .annual-season{
        grid-row: span 3;
        width: 70px;
        min-height: 70px;
        align-self: start;
    }
    .annual-season span{
        font-size: 16px;
    }
    .annual-season p{
        font-size: 11px;
    }
    .annual-event-card{
        min-height: 75px;
        padding: 12px;
        gap: 10px;
        width: 90%;
    }
    .event-month{
        min-width: 30px;
        width: 30px;
        height: 30px;
        padding: 0;
        font-size: 11px;
        flex-shrink: 0;
    }
    .annual-event-card p{
        margin: 0;
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
    }

    /*ブログ*/
    .blog-page{
        padding: 50px 15px 70px;
    }
    .blog-page-title{
        margin-bottom: 30px;
    }
    .blog-page-title h1{
        font-size: 28px;
    }
    .blog-page-title img{
        width: 28px;
    }
    .blog-page-item{
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }
    .blog-page-image,
    .blog-page-image img{
        width: 100%;
        height: 210px;
        object-fit: cover;
        object-position: center;
    }
    .blog-page-content h2{
        font-size: 21px;
    }
    .blog-page-content p{
        font-size: 14px;
    }
    .blog-more{
        font-size: 14px;
    }
/*ブログ詳細ページ*/
.blog-single-wrapper{
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
    gap: 30px;
    padding: 30px 15px;
    box-sizing: border-box;
}
.blog-single-main{
    width: 100%;
}
.blog-single{
    width: 100%;
    margin: 0;
    padding: 0;
}
.blog-single-title{
    font-size: 28px;
}
.blog-single-content{
    font-size: 16px;
}
.blog-single-content .wp-block-columns{
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}
.blog-single-content .wp-block-column img{
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}
.blog-single-nav{
    flex-direction: column;
    gap: 15px;
}
.prev-post,
.back-blog,
.next-post{
    width: 100%;
    text-align: center;
}
.blog-sidebar{
    width: 100%;
}
.sidebar-post-item img{
    width: 80px;
    height: 65px;
    object-fit: cover;
}
/*お知らせ*/
.news-page{
    padding: 50px 15px 70px;
}
.news-page-title{
    margin-bottom: 30px;
}
.news-page-title h1{
    font-size: 28px;
}
.news-page-title img{
     width: 28px;
}
.news-page-item{
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
}
.news-page-image,
.news-page-image img{
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
}
.news-page-content h2{
    font-size: 21px;
}
.news-page-content p{
    font-size: 14px;
}
.news-more{
    font-size: 14px;
}
/*お知らせ詳細*/
.news-detail-page{
    padding: 50px 15px;
}
.news-detail-inner{
    flex-direction: column;
}
.news-detail-article{
    padding: 20px;
}
.news-detail-title{
    font-size: 28px;
}
.news-detail-main-image{
    height: 250px;
}
.news-detail-lead{
    font-size: 16px;
}
.news-detail-navigation{
    flex-direction: column;
    gap: 15px;
}
.news-nav-button{
    text-align: center;
}
.news-sidebar{
    width: 100%;
}
/*お問い合わせ*/
.contact-inner{
    padding: 40px 25px;
}
.contact-title h1{
    font-size: 28px;
}
.contact-tel a{
    font-size: 30px;
}
.contact-form .wpforms-field{
    display: block !important;
    padding: 20px 0 !important;
}
.contact-form .wpforms-field-label{
    display: block !important;
    width: 100% !important;
    margin-bottom: 12px !important;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
    display: block !important;
    width: 100% !important;
    max-width: none !important;
}
.contact-form button.wpforms-submit{
    width: 100% !important;
    max-width: 200px !important;
}

}
/* iPad・タブレット用 */
@media screen and (min-width: 901px) and (max-width: 1100px) {
    .cloud_right{
        right: 90px;
        top: 70px;
    }
    .rainbow{
        left: 35px;
        top: 110px;
    }
    .cloud_left{
        left: 50px;
        top: 260px;
    }
    .leaf-right{
        right: calc(50% - 170px);
    }
    .leaf-left{
        left: calc(50% - 170px);
    }
    .bee-right{
        right: calc(50% - 130px);
    }
    .bee-left{
        left: calc(50% - 130px);
    }
    .bird{
        right: 60px;
    }
    .schedule-star1{
        top: 20px;
        right: 200px;
    }

    .schedule-star2{
        top: 50px;
        left: 90px;
    }

    .schedule-rocket{
        top: 120px;
        left: 70px;
    }
    .blog-single-wrapper{
        width: 90%;
        max-width: 900px;
        margin: 60px auto;
        padding: 0 30px;
    }
}