@charset "UTF-8";

/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    line-height: 1.6;
    background-color: #fff;
    font-weight: 500;
}
a { text-decoration: none; }
ul { list-style: none; }
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 共通 */
.pink { color: #DC72A2; }
.marker { background: linear-gradient(transparent 70%, #FFF226 0%); }
.main section { padding: 0 20px; }
.main section .inner { padding: 72px 0; }
.section-title {
    margin-bottom: 20px;
    height: 100px;
}
.section-title picture {
    display: block;
    height: 100%;
    width: auto;
    margin: 0 auto;
}
.section-title picture img {
    height: 100%;
    width: auto;
    margin: 0 auto;
}
.section-sub {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}
.cta-button {
    display: block;
    width: 295px;
    height: 50px;
    margin: 0 auto;
}
.cta-button:hover { opacity: 0.8; }
.br-sp, .br-tab { display: block; }

@media screen and (min-width: 768px) {
    .br-sp { display: none; }
}
@media screen and (min-width: 1000px) {
    .br-tab { display: none; }
    section { padding: 0; }
    .main section { padding: 0; }
    .main section .inner { padding: 100px 0; }
    .section-title {
        margin-bottom: 32px;
        height: 141px;
    }
    .section-sub {
        margin-bottom: 32px;
        font-size: 18px;
    }
    .cta-button {
        width: 600px;
        height: 90px;
    }
}

/* header */
.header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    height: 70px;
}
.h-logo { 
    margin-left: 20px;
    width:157px;
}
#h-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#h-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: 100%;
    z-index: 2;
}
#h-nav ul {
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 115px 25px 25px;
    text-align: center;
}
#h-nav ul li { margin: 1rem 0; }
#h-nav ul li a {
    display: block;
    font-size: 16px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
    color: #000;
    font-weight: 700;
}
#h-nav ul li a:hover { background: #FDE9F2; }

@media screen and (min-width: 1000px) {
    .header .inner {
        max-width: 1280px;
        width: 100%;
        margin: 0 auto;
    }
    #h-nav {
        position: static;
        opacity: 1;
        visibility: visible;
        width: auto;
        height: auto;
        display: flex;
        justify-content: flex-end;
        background: none;
        transition: none;
        pointer-events: auto;
    }
    #h-nav ul {
        display: flex;
        justify-content: flex-end;
        padding: 0;
        gap: 60px;
    }
    #h-nav ul li { margin: 0; }
}

.toggle_btn {
    display: flex;
    justify-content: center;
    position: relative;
    width: 70px;
    height: 70px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
}
.toggle_btn div {
    display: block;
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #D9D9D9;
    border-radius: 4px;
    transition: all .5s;
}
.toggle_btn div:nth-child(1) { top: 22px; }
.toggle_btn div:nth-child(2) { top: 34px; }
.toggle_btn div:nth-child(3) { top: 46px; }
.toggle_btn.close div:nth-child(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
}
.toggle_btn.close div:nth-child(2) { opacity: 0; }
.toggle_btn.close div:nth-child(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
}
@media screen and (min-width: 1000px) {
    .toggle_btn { display: none; }
}

/* top */
.top {
    background-color: #FDE9F2;
    background-image: url(https://kvillage.jp/img/esterbunny_lp/bk_top_sp@2x.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.top .inner {
    padding: 26px 20px 40px;
    color: #351C1A;
    text-align: left;
}
.top .inner .left .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
}
.top .inner .left .title span:first-child {
    position: relative;
}
.top .inner .left .title span:first-child::before {
    content: "";
    background-image: url(https://kvillage.jp/img/esterbunny_lp/img_top_baloon_sp@2x.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    display: inline-block;
    width: 152px;
    height: 44px;
    position: absolute;
    right: -152px;
}
.top .inner .left .cta { display: none; }

@media screen and (min-width: 768px) {
    .top .inner {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .top .inner .left { width: fit-content; }
    .top .inner .image { width: 47%; }
}

@media screen and (min-width: 1000px) {
    .top { background-image: url(https://kvillage.jp/img/esterbunny_lp/bk_top_pc@2x.png); }
    .top .inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 30px;
    }
    .top .inner .left .title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    .top .inner .left .title .pink,
    .top .inner .left .title .marker {
        font-size: 52px;
    }
    .top .inner .left .title span:first-child::before {
        background-image: url(https://kvillage.jp/img/esterbunny_lp/img_top_baloon_pc@2x.png);
        width: 250px;
        height: 78px;
        right: -250px;
    }
    .top .inner .left .sub {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .top .inner .left .cta { display: block; }
    .top .inner .left .cta-button {
        margin: 0;
        width: 264px;
        height: 53px;
    }
}

/* features */
#features { background-color: #E8F5FD; }
#features .section-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
#features .section-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fff;
    border: 1.5px solid #351C1A;
    border-radius: 15px;
    padding: 16px;
}
#features .section-list .image { min-width: 124px; }
#features .section-list .body-title {
    color: #DC72A2;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}
#features .section-list .body-text {
    font-size: 14px;
    font-weight: 400;
}

@media screen and (min-width: 1000px) {
    #features .inner {
        max-width: 1000px;
        margin: 0 auto;
    }
    #features .section-list {
        flex-direction: row;
        gap: 32px;
    }
    #features .section-list li {
        flex-direction: column;
        width: calc((1000px - 64px) / 3);
        gap: 20px;
        padding: 20px;
    }
    #features .section-list .image {
        max-width: 200px;
    }
    #features .section-list .body-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    #features .section-list .body-text {
        font-size: 18px;
    }
}

/* achievements */
#achievements {
    background-image: url(https://kvillage.jp/img/esterbunny_lp/bk_achievements_sp@2x.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
#achievements .container {
    background-color: #fff;
    border: 1.5px solid #351C1A;
    border-radius: 15px;
    padding: 16px;
}
#achievements .container .image {
    margin-bottom: 16px;
}
#achievements .container .body {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

@media screen and (min-width: 1000px) {
    #achievements {
        background-image: url(https://kvillage.jp/img/esterbunny_lp/bk_achievements_pc@2x.png);
    }
    #achievements .inner {
        max-width: 1000px;
        margin: 0 auto;
    }
    #achievements .inner .section-title {
        height: 99px;
    }
    #achievements .container {
        padding: 32px;
    }
    #achievements .container .image {
        margin-bottom: 32px;
    }
    #achievements .container .body {
        font-size: 22px;
    }
}

/* content */
#content {
    background-color: #fff;
}
#content .dots-wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}
#content .dots-wrap li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #FDE9F2;
    cursor: pointer;
}
#content .dots-wrap li:hover,
#content .dots-wrap li.slick-active {
    background-color: #DC72A2;
}
#content .dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

@media screen and (min-width: 1000px) {
    #content .slider {
        padding: 0 19px;
    }
    #content .slick-slide {
        margin: 0 19px;
    }
    #content .dots-wrap {
        margin-top: 32px;
    }
}

/* voice */
#voice {
    background: #E8F5FD;
}
#voice .inner .section-title {
    height: 69px;
}
#voice .section-list,
#voice .section-list .upper,
#voice .section-list .lower {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#voice .voice-item {
    width: 256px;
    height: auto;
    margin: 0 auto;
}

@media screen and (min-width: 1000px) {
    #voice .inner {
        max-width: 1140px;
        margin: 0 auto;
    }
    #voice .inner .section-title {
        height: 96px;
    }
    #voice .section-list {
        gap: 0;
    }
    #voice .section-list .upper {
        flex-direction: row;
        gap: 42px;
    }
    #voice .section-list .lower {
        flex-direction: row;
        justify-content: center;
        gap: 126px;
    }
    #voice .voice-item {
        width: 342px;
    }
    #voice .section-list .upper .voice-item:nth-child(2) {
        margin-top: 42px;
    }
    #voice .section-list .lower .voice-item {
        margin: 0;
    }
}

/* about */
#about {
    background: #FDE9F2;
}
#about .inner .section-title {
    height: 69px;
}
#about .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#about .section-list {
    display: flex;
    gap: 10px;
}
#about .section-list .title,
#about .section-list .body {
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    padding: 16px;
}
#about .section-list .title {
    background: #DC72A2;
    color: #fff;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}
#about .section-list .body {
    background: #fff;
    color: #351C1A;
    width: 75%;
}

@media screen and (min-width: 1000px) {
    #about .inner .section-title {
        height: 96px;
    }
    #about .container {
        max-width: 864px;
        margin: 0 auto;
        gap: 16px;
    }
    #about .section-list {
        gap: 16px;
    }
    #about .section-list .title,
    #about .section-list .body {
        font-size: 18px;
        padding: 24px;
    }
}

/* cta-area */
.cta-area {
    background: #FFFCD1;
}
.cta-area .inner {
    background-image: url(https://kvillage.jp/img/esterbunny_lp/bk_cta_sp@2x.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding: 40px 20px;
    position: relative;
    height: 359px;
}
.cta-area .catch-main {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}
.cta-area .catch-sub {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}
.cta-area .catch-sub p {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    width: 53%;
}

@media screen and (min-width: 768px) {
    .cta-area .inner {
        background-position: 0 50%;
        height: 430px;
        max-width: 1000px;
        margin: 0 auto;
    }
    .cta-area .catch-main {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .cta-area .catch-sub {
        display: block;
        margin-bottom: 20px;
    }
    .cta-area .catch-sub p {
        display: block;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
}

@media screen and (min-width: 1000px) {
    .cta-area .inner {
        background-image: url(https://kvillage.jp/img/esterbunny_lp/bk_cta_pc@2x.png);
        padding: 60px 0;
        background-position: center;
    }
}

/* float-cta */
.float-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: #FFF226;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
    /* 非表示時クリック防止 */
}
.float-cta.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media screen and (min-width: 1000px) {
    .float-cta {
        display: none;
    }
}

.footer{
    background-color: #DE0000;
}
.footer__inner{
    display: flex;
    justify-content: center;
    padding: 17px 0;
    font-size: 16px;
}
.footer_text{
    color: #fff;
    margin-right: 10px;
}
.copyright{
    color: #fff;
}
@media screen and (max-width: 999px){
    .footer__inner{
        font-size: 12px;
        display: block;
        padding: 12px 0;
    }
    .footer_text{
        margin-right: 0;
        text-align: center;
    }
    .copyright{
        display: block;
        text-align: center;
    }
}