h1.wp-block-post-title,
.wp-block-post-title + .wp-block-spacer,
.wp-block-spacer:has(+ .wp-block-post-title),
.has-global-padding:first-child .wp-block-spacer,
header.wp-block-template-part {
    display: none;
}
.has-global-padding:first-child {
    padding-top: 0;
    margin-top: 0;
}
:root :where(.is-layout-flow) > *,
:where(.wp-site-blocks) > * {
    margin-block-start: 0;
}
.entry-header {
    margin-bottom: 0;
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

body {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    line-height: 1.8;
    font-size: 16px;
    box-sizing: border-box;
}
.wp-block-post-featured-image {
    display: none !important;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
h2 {
    margin-bottom: 40px;
    font-size: 28px;
    text-align: center;
    color: #0b5820;
}
h2 span {
    margin-left: 15px;
    font-size: 18px;
}
h3 {
    margin-bottom: 20px;
    font-size: 20px;
}
.pc_only {display: block;}
.sp_only {display: none;}

@media (max-width: 768px) {
    body{
        font-size: 14px;
    }
    .pc_only {display: none;}
    .sp_only {display: block;}
    h2 {
        margin-bottom: 30px;
        font-size: 24px;
    }
    h2 span {
        font-size: 14px;
        display: block;
        margin-left: 0;
    }
    h3 {
        font-size: 18px;
        line-height: 1.6;
    }
}


/*--------------------------------
               MV
---------------------------------*/
.lp-main-visual {
    width: 100vw; /* 画面幅いっぱい */
    height: 700px;
    background-color: #4ba764;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0 50px;
    box-sizing: border-box;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.mv-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.mv-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mv-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.mv-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain; /* contain指定 */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .lp-main-visual {
        width: 100vw;
        height: 100vw;
        min-height: auto;
        background-color: #4ba764;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .mv-container {
        padding: 0 15px;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .mv-content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mv-image img {
        max-width: 750px;
        object-fit: contain;
    }
}

/* より小さなスマホ対応 */
@media (max-width: 480px) {
    .mv-container {
        padding: 0 15px;
    }
}


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

.lp-main-nav {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    margin: 30px 0 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.nav-item {
    margin: 0;
    text-align: center;
    height: 80px;
}

.nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #0b5820;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    transition: background-color 0.3s ease;
    position: relative;
    height: 100%;
    background-color: #e0fee8;
    border-radius: 10px;
}

.nav-item .nav-link span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 0.2em;
    font-weight: normal;
}

.nav-item:first-child .nav-link span {
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: #fff;
    background-color: #4ba764;
}

/* SPメニューボタン（初期は非表示） */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 16px;
    color: #0b5820;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    gap: 10px;
}

.nav-toggle-icon {
    transition: transform 0.3s ease;
}

.nav-toggle.active .nav-toggle-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .lp-main-nav {
        margin: 0;
    }
    .nav-container {
        display: flex;
        justify-content: center;
        padding: 0;
    }
    .nav-toggle {
        display: flex;
        background-color: #e0fee8;
        width: 100%;
        justify-content: center;
        padding: 10px;
        border-bottom: solid 1px #aef0c0;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        gap: 0;
    }
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        height: auto;
        border-bottom: 1px solid #eee;
    }    
    .nav-link {
        display: inline-block;
        font-size: 14px;
        width: 100%;
        background-color: #f4fff7;
        min-height: 48px;
        line-height: 48px;
        border-radius: 0;

    }
    .nav-item .nav-link span {
        display: inline-block;
        margin-top: 0;
        margin-left: 15px;
        letter-spacing: 0.1em !important;
    }
}


/*--------------------------------
     main contents - common -
---------------------------------*/

#about, #news, #stores, #event, #sns, #contact {
    position: relative;
    width: 100%;
}
#about > div, #news > div, #stores > div, #event > div, #sns > div, #contact > div {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 60px;
    text-align: center;
}
#about > div {
    padding: 0 20px 50px;
}
#news, #event, #contact {
    background-color: aliceblue;
}
#news > div {
    padding: 50px 20px 10px;
}
#news > div, #stores > div, #event > div, #sns > div {
    position: relative;
}

@media (max-width: 768px) {
    #about > div, #news > div, #stores > div, #event > div, #sns > div, #contact > div {
        width: 100%;
        padding: 40px 15px 50px;
        margin: 0 auto 20px;
    }
    #about > div {
        padding: 0 15px 50px;
    }
    #news > div {
        padding: 40px 15px 5px;
        margin-bottom: 0;
    }
}


/*--------------------------------
             about
---------------------------------*/
#about {
    padding-top: 90px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}
@media (min-width: 768.1px) {
    #about::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/be_left.png) repeat-y;
        background-size: 100% auto;
        z-index: -1;
    }
    #about::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/be_right.png) repeat-y;
        background-size: 100% auto;
        z-index: -1;
    }
}

#about .cont {
    margin-bottom: 60px;
    line-height: 2;
}
#about .cont > div {
    margin-bottom: 30px;
}
#about .cont .ttl {
    margin: 20px;
    font-weight: 700;
    font-size: 18px;
    color: #e66868;
}
#about .cont span {
    font-weight: 700;
}
#about .cont .sign_illust {
    display: flex;
    justify-content: center;
    align-items: center;
}
#about .cont .sign_illust img {
    width: 100px;
    margin: 15px 20px;
}
#about .detail {
    padding: 50px 60px;
    background-color: #e0fee8;
    text-align: left;
    position: relative;
}
#about .detail::before {
    content: '';
    position: absolute;
    bottom: 90px;
    right: 120px;
    width: 140px;
    height: 134px;
    background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/bear_1.png) no-repeat;
    background-size: 100% auto;
    z-index: 1;
}
#about .detail h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
}
#about .detail dl {
    display: grid;
    grid-template-columns: 113px 1fr;
    gap: 0.5em 1em;
}
#about .detail dl dd {
    margin-bottom: 10px;
}
#about .detail dl dd p span a.googlemap,
#about .detail dl dd.ig_btn a,
#about .detail .contact_btn a {
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    background-color: #0a5820;
    border-radius: 4px;
}
#about .detail dl dd p span a.googlemap {
    display: inline-block;
    font-size: 13px;
    padding: 1px 14px;
    margin-left: 15px;
}
#about .detail dl dd.ig_btn a {
    display: inline-block;
    padding: 5px 15px;
    padding-top: 3px;
    padding-bottom: 4px;
    letter-spacing: 0.05em;
}
#about .detail .contact_btn a {
    display: block;
    width: 200px;
    margin: 20px auto 10px;
    padding: 10px;
}
#about .detail .place {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0 10px;
}
#about .detail .place img {
    min-width: 0;
    flex-shrink: 1;
}
dd.sponsor,
p.sponsor_item,
dd.cooperation,
p.cooperation_item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
dd.sponsor img,
dd.cooperation img {
    height: 20px;
    margin-left: 5px;
    margin-right: 7px;
}
dd.sponsor img {
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    #about {
        padding-top: 50px;
        padding-bottom: 0;
    }
    #about .sp_illust {
        padding: 0;
        margin: 0;
    }
    #about .sp_illust img {
        position: absolute;
        width: 18px;
        z-index: -1;
    }
    #about .sp_illust .star_1 {
        top: 1%;
        left: 23%;
    }
    #about .sp_illust .star_2 {
        top: 7%;
        right: 2%;      
    }
    #about .sp_illust .star_3 {
        top: 14.5%;
        left: 3%;   
    }
    #about .sp_illust .star_4 {
        top: 24%;
        right: 10%;       
    }
    #about .sp_illust .star_5 {
        top: 29%;
        left: 0.5%;      
    }
    #about .sp_illust .star_6 {
        top: 40%;
        right: 2%;      
    }
    #about .sp_illust .star_7 {    
        top: 47.5%;
        left: 16%;
    }
    #about .sp_illust .star_8 {
        top: 60%;
        right: 0.6%;    
    }
    #about .sp_illust .star_9 {
        top: 70%;
        left: 0%;    
    }
    #about .sp_illust .star_10 {
        top: 83%;
        right: 1.2%;
    }
    #about .sp_illust .star_11 {
        top: 90%;
        left: 0.3%;
    }
    #about .sp_illust .star_12 {
        top: 98.5%;
        right: 10%;
    }
    #about .cont .ttl {
        font-size: 16px;
        line-height: 1.7;
        text-align: center;
    }
    #about .cont .sign_illust img {
        width: 65px;
        margin: 10px 15px;
    }
    #about .detail {
        padding: 20px;
    }
    #about .detail::before {
        bottom: 5%;
        right: 5.5%;
        width: 15%;
        height: 7.2%;
    }
    #about .detail dl {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 0.5em;
    }
    #about .detail h4 .ttl {
        display: block;
        font-size: 15px;
    }
    #about .detail dl dt {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.01em;
    }
    #about .detail dl dd.ig_btn a {
        font-size: 12px;
        letter-spacing: 0.04em;
    }
    #about .detail dl dd p span {
        font-size: 13px;
        line-height: 1.7;
        display: inline-block;
        margin-top: 10px;
    }
    #about .detail dl dd p span a.googlemap {
        font-size: 11px;
        padding: 3px 14px;
        margin-left: 0;
    }
    #about .detail .place {
        gap: 10px;
        margin: 10px 0 5px;
        flex-direction: column;
    }
    dd.sponsor, dd.cooperation {
        flex-direction: column;
        align-items: flex-start;
    }
    #about .detail dl dd.sponsor p span,
    #about .detail dl dd.cooperation p span {
        display: block;
        margin-top: 0;
    }
    dd.sponsor img, dd.cooperation img {
        height: 17px;
    }
    dd.sponsor img {
        margin-right: 0;
    }
    p.sponsor_item span {
        letter-spacing: 0.04em;
    }
}


/*--------------------------------
             NEWS
---------------------------------*/
#news > div::before,
#news > div::after {
    content: '';
    position: absolute;
    background-size: 100% auto !important;
}
#news > div::before {
    top: 41px;
    left: 256px;
    width: 44px;
    height: 73px;
    background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/flower.png) no-repeat;
}
#news > div::after {
    top: 33px;
    left: 331px;
    width: 60px;
    height: 73px;
    background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/cookie.png) no-repeat;
}

#sp-ea-95 {
    width: 100%;
    max-width: 700px;
    margin: auto;
}
#sp-ea-95 h5.ea-header a {
    font-size: 18px;
}
#sp_easy_accordion-1756267885 {
    background-color: #f0f8ff;
    padding-bottom: 70px;
}
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a {
    padding: 10px 25px !important;
}
.sp-ea-one.sp-easy-accordion .sp-ea-single .ea-body {
    padding: 7px 30px !important;
}
#sp-ea-95 .ea-card .ea-header a::before {
    font-size: 14px;
    margin-right: 10px;
}
#sp-ea-95 .ea-card:nth-child(1) .ea-header a::before {
    content: '9月18日';
    margin-right: 21px;
}
#sp-ea-95 .ea-card:nth-child(2) .ea-header a::before {
    content: '8月29日';
    margin-right: 21px;
}

@media (max-width: 768px) {
    #news > div::before {
        top: 36%;
        left: 4%;
        width: 27px;
        height: 46px;
    }
    #news > div::after {
        top: 21%;
        left: 16%;
        width: 45px;
        height: 52px;
    }
    #sp-ea-95 {
        padding: 0 15px;
    }
    .sp-ea-one.sp-easy-accordion .sp-ea-single .ea-header a {
        padding: 10px 9px 10px 19px !important;
    }
    #sp-ea-95 .ea-card .ea-header a::before {
        font-size: 12px;
        margin-right: 6px;
    }
    .sp-ea-one.sp-easy-accordion .sp-ea-single .ea-body {
        padding: 7px 17px !important;
    }
    #sp-ea-95.sp-easy-accordion>.sp-ea-single>.sp-collapse>.ea-body p span {
        font-size: 13px;
        line-height: 1.7;
        display: inline-block;
    }
    #sp-ea-95 h5.ea-header a {
        font-size: 15px;
    }
    #sp_easy_accordion-1756267885 {
        padding-bottom: 50px;
    }
}


/*--------------------------------
             STORES
---------------------------------*/
#stores > div::before,
#stores > div::after {
    content: '';
    position: absolute;
    background-size: 100% auto !important;
}
#stores > div::before {
    top: 32px;
    right: 350px;
    width: 44px;
    height: 55px;
    background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/bird.png) no-repeat;
}
#stores > div::after {
    top: 54px;
    right: 250px;
    width: 78px;
    height: 59px;
    background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/zine.png) no-repeat;
}

/*カード*/
#stores .store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
#stores .store-card {
  border: 1px solid #000;
  padding: 10px 10px 15px;
  display: flex;
  flex-direction: column;
}
#stores .store-labels {
  margin-bottom: 10px;
  margin-right: auto;
}
#stores .store-label {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
#stores .store-label.goods {background: #00aec4;}
#stores .store-label.food {background: #e5004f;}
#stores .store-label.zine_books {background: #009944;}
#stores .store-label.kita {background: #b7aa00;}
#stores .store-label.life_style {background: #ff8814;}
#stores .store-label.drink {background: #955ba5;}

#stores .store-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 18px;
}
#stores .store-name {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
#stores .store-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}
#stores .store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
#stores .store-links a {
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  height: 24px;
  width: auto;
}
#stores .store-links a.link_official,
#stores .store-links a.link_note {
    background-color: #0a5820;
    padding: 0 8px;
    font-size: 12px;
    border-radius: 5px;
    height: 24px;
    line-height: 23px;
}
#stores .store-links.has-label a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.85rem;
  color: #333 !important;
  text-decoration: none !important;
}
#stores .store-links.has-label a span {
    font-size: 11px;
}
#stores .store-links.has-label a i {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
#stores .store-links:not(.has-label) a i {
  font-size: 25px;
  color: #333;
  text-decoration: none;
}
#stores i.fab.fa-instagram {
    color: #e4007f !important;
}

@media (max-width: 768px) {
    #stores > div::before {
        top: 36px;
        right: 20%;
        width: 34px;
        height: 43px;
    }
    #stores > div::after {
        top: 68px;
        right: 4%;
        width: 58px;
        height: 44px;
    }
    #stores .store-name {
        font-size: 14px;
    }
    #stores .store-description {
        font-size: 12px;
        line-height: 1.5;
    }
    #stores .store-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    #stores .store-label {
        font-size: 10px;
    }
    #stores .store-links.has-label a span {
        font-size: 10px;
        letter-spacing: -0.1em;
        line-height: 1;
    }
    #stores .store-links {
        gap: 0.8rem;
    }
    #stores .store-links.has-label.zuzu {
        margin-bottom: 15px;
    }
}

/*--------------------------------
             EVENT
---------------------------------*/
#event > div::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 270px;
    width: 89px;
    height: 96px;
    background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/sun.png) no-repeat;
    background-size: 100% auto;
    z-index: 1;
}
#event .event_inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
    margin-top: 60px;
}
#event .event_inner.music {
    grid-template-columns: repeat(1, 1fr);
    max-width: 750px;
    justify-content: center;
    margin: 60px auto;
}
#event .event_content {
    padding: 20px;
    background-color: #fff;
}
#event picture {
    border: solid 1px #e9e9e9;
}
#event .event_ttl {
    font-weight: 700;
    font-size: 18px;
}
#event .label {
    padding: 1px 10px;
    margin: 15px 0;
    margin-left: auto;
    display: block;
    width: fit-content;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 5px;
    color: #fff;
}
#event .event_content.talk .label {
    background-color: #ff8813;
}
#event .event_content.music .label {
    background-color: #e5004e;
}
#event .label span {
  display: inline-block;
  border-left: solid 1px #fff;
  padding-left: 8px;
  margin-left: 8px;
  line-height: 1;
}
#event .event_detail {
    margin-top: 20px;
    text-align: left;
    letter-spacing: 0.05em;
}
#event .time {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
#event .event_detail dl div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
#event .event_detail dl div dt {
    width: 60px;
    flex-shrink: 0;
    text-align: center;
    margin-right: 20px;
    margin-top: 3px;
    padding: 4px 0;
    background-color: #00a360;
    display: inline-block;
    line-height: 1;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}
#event .event_detail dl div dd {
    margin-bottom: 15px;
}
#event .event_detail dl div dd p {
    font-weight: 700;
}
#event .event_detail dl div dd p span {
    font-weight: normal;
    font-size: 13px;
    letter-spacing: 0.05em;
    margin-left: 5px;
}
#event .event_detail > p {
    margin-bottom: 25px;
}
#event .event_detail dl div dd a.reserve {
    display: inline-block;
    background-color: #0a5820;
    padding: 0 5px 0 10px;
    margin-left: 10px;
    font-size: 13px;
    border-radius: 5px;
    height: 22px;
    line-height: 23px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}
#event .event_inner.music dl.prof {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 3%;
    margin-top: 20px;
}
#event .event_inner.music dl.prof dt {
    width: 25%;
}
#event .event_inner.music dl.prof dd {
    width: 72%;
}
#event .event_inner.music dl.prof dd p {
    font-size: 13px;
    line-height: 1.7;
}
#event .event_inner.music dl.prof dd p.name {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
}
#event .event_inner.music dl div dd span {
    font-size: 13px;
}




@media (max-width: 768px) {
    #event > div::before {
        top: 47px;
        left: 50px;
        width: 64px;
        height: 70px;
    }
    #event .event_inner {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 40px;
    }
    #event .event_ttl {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    #event .time {
        font-size: 13px;
    }
    #event .event_detail dl div dt {
        width: 55px;
        margin-right: 12px;
        font-size: 13px !important;
        letter-spacing: 0.01em;
    }
}

@media (max-width: 767px) {
    #event .event_inner.music dl.prof {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #event .event_inner.music dl.prof dt {
        width: 75%;
        margin-bottom: 20px;
    }
    #event .event_inner.music dl.prof dd {
        width: 100%;
    }
    #event .event_inner.music {
        margin: 40px auto;
    }
    #event .event_inner.music dl.prof dd p {
        font-size: 12px;
    }
}




/*--------------------------------
             SNS
---------------------------------*/
#sns .sns_block {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 850px;
    margin: auto;
}
#sns > div::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 300px;
    width: 89px;
    height: 96px;
    background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/moon.png) no-repeat;
    background-size: 100% auto;
    z-index: 1;
}
#sns .sns_block > div {
    padding: 20px 30px 30px;
    border: solid 1px #dedede;
}
#sns .sns_block > div img {
    width: 100%;
    max-width: 66px;
    margin: 20px auto 0;
}
#sns .sns_block > div a {
    text-decoration: none !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    #sns > div::before {
        top: 5%;
        right: 8%;
        width: 66px;
        height: 66px;
    }
    #sns .sns_block {
        flex-direction: column;
        gap: 10px;
    }
    #sns .sns_block > div {
        width: 100%;
        padding: 15px 20px;
    }
    #sns .sns_block > div a p,
    #sns .sns_block > div a p span {
        margin: 0;
        flex: 1 1 auto;
        min-width: 0;
    }
    #sns .sns_block > div a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    #sns .sns_block > div img {
        flex: 0 0 auto;
        margin: 0;
        max-width: 32px;
        order: 1;
    }
    #sns .sns_block > div a p {
        order: 2;
    }
}

/*--------------------------------
             contact
---------------------------------*/
@media (min-width: 768.1px) {
    #contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/be_left.png) repeat-y;
        background-size: 100% auto;
    }
    #contact::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background: url(https://mochiyori.com/wp-content/themes/mochiyori/assets/images/lp_event_2025/be_right.png) repeat-y;
        background-size: 100% auto;
    }
}
#contact > div > div {
    background-color: #fff;
    max-width: 650px;
    margin: auto;
    padding: 30px 50px 40px;
    text-align: left;
}
#contact > div > div form label input,
#contact > div > div form label textarea {
    width: 100%;
    display: block;
}
#contact > div > div form p {
    margin-bottom: 10px;
}
.wpcf7-form p:has(input[type="submit"]) {
    text-align: center;
}
input.wpcf7-form-control.wpcf7-submit {
    margin-top: 20px;
    margin-left: 70px;
    width: 100px;
    text-align: center;
    background-color: #4ba764;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    border: solid 1px #4ba764;
    padding: 4px 10px 5px;
}
.wpcf7-form .required {
    content: "*";
    color: red;
    margin-left: 2px;
}


@media (max-width: 768px) {
    #contact > div > div {
        padding: 20px 25px 30px;
    }
    #contact .sp_illust {
        padding: 0;
        margin: 0;
    }
    #contact .sp_illust img {
        position: absolute;
        width: 18px;
        z-index: 1;
    }
    #contact .sp_illust .star_1 {
        top: 1%;
        left: 23%;
    }
    #contact .sp_illust .star_2 {
        top: 7%;
        right: 2%;      
    }
    #contact .sp_illust .star_3 {
        top: 14.5%;
        left: 3%;   
    }
}

/*--------------------------------
             footer
---------------------------------*/
footer.wp-block-template-part {
    display: none;
}
#footer {
    padding: 60px 0 20px;
}
#footer .copyright {
    font-size: 12px;
    letter-spacing: 0.01em;
    text-align: center;
}

@media (max-width: 768px) {
    #footer {
        padding: 0 0 20px;
    }
}