html {
    margin-top: 0!important;
}
img {
    width: 100%;
    vertical-align: bottom;
}
.pc {
  display: block ;
}

.pc-tab {
  display: block;
}

.sp {
  display: none ;
}

.tab-only {
  display: none ;
}

.sp-only {
  display: none ;
}

@media only screen and (max-width: 980px) {
  .pc {
    display: none ;
  }

  .sp {
    display: block ;
  }

  .tab-only {
    display: block ;
  }
}

@media only screen and (max-width: 680px) {
  .pc-tab {
    display: none ;
  }

  .sp-only {
    display: block ;
  }

  .tab-only {
    display: none ;
  }
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFD7DF;
    z-index: 999999;
}
.header-inner {
    max-width: 750px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}
.header-logo {
    max-width: 330px;
    width: 45%;
    display: flex;
    align-items: center;
}
.header-btn {
    max-width: 335px;
    width: 45%;
    display: flex;
    align-items: center;
}
.header-btn-link {
    display: block;
}
.header-btn-link:hover {
    opacity: 0.6;
}
body {
    margin: 0;
}
main {
    padding-top: 100px;
}
.LP {
    position: relative;
}
.LP-bg {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("/wp-content/uploads/2026/03/lp_back.webp");
    background-size: cover;
    background-position: center;
}
.lp-inner {
    position: relative;
    max-width: 750px;
    width: 100%;
    margin: auto;
}
.fv-img {
    position: relative;
}
.fv-btn {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
}
.lp-btn:hover,
.fv-btn:hover {
    opacity: 0.6;
}
.lp-img {
    position: relative;
}
.lp-btn {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
}
footer {
    position: relative;
    padding: 10px 0;
    background-color: #FFD7DF;
}
.footer-logo {
    max-width: 410px;
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
}
.footer-logo svg {
    width: 100%;
}
.footer-bottom {
    max-width: 515px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: auto;
}
.footer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 195px;
    width: 45%;
}
.footer-btn-link {
    padding: 4px 0;
    display: block;
    width: 100%;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    border: 1px solid #FF7D7D;
    background-color: #FF7D7D;
    color: #fff;
    border-radius: 100px;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
}
.footer-btn-link:hover {
    background-color: #fff;
    color: #FF7D7D;
}
.copyright {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    font-weight: bold;
    color: #FF7D7D;
    line-height: 1.75;
}
@media screen and (max-width: 800px) {
    .header-inner {
        padding: 10px 20px;
    }
}
@media screen and (max-width: 750px) {
    .lp-btn {
        bottom: 1.25%;
    }
}
@media screen and (max-width: 680px) {
    .header-logo {
        width: 40%;
    }
    .header-btn {
        width: 50%;
    }
    .LP-bg {
        display: none;
    }
    footer {
        padding: 5px 0 15px;
    }
    .footer-logo {
        width: 59%;
        margin-bottom: 5px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .footer-btn-link {
        font-size: 11px;
    }
    .copyright {
        font-size: 12px;
        line-height: 1.4;
    }
}