@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Sans", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: #C9A66B;
}

/* header */
header {
    text-align: center;
    width: 100%;
    height: 80px;
    background-color: white;
}

header h1 {
    margin: 0;
    height: 100%;
}

header img {
    height: 60px;
    margin-top: 10px;
}

/* mainvis */
.mainvis {
    background-image: url(img/mainvis.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    min-height: 560px;
}

.mainvis .content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.mainvis .content h2 {
    margin: 0 auto;
    padding: 20vh 0;
    font-size: 5rem;
    font-family: "Zen Kurenaido", sans-serif;
    font-weight: 500;
    color: white;
    -webkit-text-stroke: black 2px;
}

/* charm */
.charm {
    position: relative;
    width: 100%;
    padding-bottom: 30px;
}

.charm .charmBack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.charm .content {
    max-width: 1280px;
    margin: 0 auto;
}

.charm .point-cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center;
    margin: 30px 2% 0 2%;
}

.charm .point-cont #point {
    display: flex;
    align-items: center;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, .3);
}

.charm .point-cont #point.move {
    animation: backColor .7s;
    animation-fill-mode: forwards;
}

@keyframes backColor {
    0% {
        background-color: rgba(255, 255, 255, .3);
    }

    100% {
        background-color: rgba(0, 0, 0, .3);
    }
}

.charm .point-cont #point img {
    width: 50%;
    height: auto;
    border-radius: 50%;
    transform: translateX(100%);
}

.charm .point-cont #point.move img {
    animation: imgslide .7s;
    animation-fill-mode: forwards;
}

@keyframes imgslide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

.charm .point-cont #point .point-text {
    color: white;
    text-align: left;
    transform: translateX(-30px);
    opacity: 0;
    width: 50%;
}

.charm .point-cont #point.move .point-text {
    animation: opc 1s;
    animation-fill-mode: forwards;
}

@keyframes opc {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.charm .point-cont #point .point-text h3 {
    font-size: 1.5rem;
    -webkit-text-stroke: black 1px;
}

.charm .point-cont #point .point-text p {
    font-size: 1.25rem;
    -webkit-text-stroke: black .6px;
}

.charm .point-cont #point.point2 {
    transform: translateY(52%);
}

/* goods */
.goods {
    width: 100%;
    height: auto;
    background-image: url(img/goodsBack.jpg);
    background-position: center;
    background-size: cover;
    padding-bottom: 40px;
}

.goods .content {
    max-width: 1280px;
    margin: 0 auto;
}

/* PCではgrid */
@media(min-width: 482px) {
    .goods .goods-cont {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: center;
        margin: 30px 2% 0 2%;
    }
}

.goods .goods-cont .canele {
    width: 100%;
    height: auto;
    text-align: center;
    border: solid 2px gray;
}

.goods .goods-cont .one {
    background: #AF881B;
}

.goods .goods-cont .second {
    background: #FF7897;
}

.goods .goods-cont .three {
    background: #9FB96C;
}

.goods .goods-cont .four {
    background: #C98435;
}

.goods .goods-cont .canele img {
    width: auto;
    height: 50%;
    max-height: 240px;
    margin-top: 4%;
}

.goods .goods-cont .four img {
    transform: rotate(45deg);
}

.goods .goods-cont .canele h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 10px 0;
}

.goods .goods-cont .canele h3 span {
    font-size: 2rem;
    color: rgba(255, 255, 94, 1);
    -webkit-text-stroke: black 1px;
}

.goods .goods-cont .canele p {
    font-size: 1.2rem;
    color: white;
}

/* 共通 */
h2.tit {
    padding-top: 50px;
    margin-left: 10%;
    font-size: 4.5rem;
    font-family: "Zen Kurenaido", sans-serif;
    font-weight: 400;
    color: white;
    -webkit-text-stroke: black 2px;
}

/* buy */
.buy {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
}

.buy .content {
    max-width: 1280px;
    margin: 0 auto;
}

.buy .content .shop {
    position: relative;
    margin: 0 4%;
    margin-top: 40px;
    background: #FFECD1;
    box-shadow: 10px 10px;
}

.buy .content .shop img {
    position: absolute;
    top: -30%;
    right: 4%;
    width: 440px;
    height: auto;
}

.buy .content .shop iframe {
    margin-top: 50px;
    padding: 20px 30px;
    width: 100%;
}

.buy .content .online {
    position: relative;
    margin: 0 4%;
    margin-top: 40px;
    background: #FFECD1;
    padding-bottom: 30px;
    box-shadow: 10px 10px;
}

.buy .content .online a {
    margin-top: 30px;
}

.buy .content h3 {
    position: absolute;
    top: -2%;
    left: -2%;
    background: white;
    font-family: "Yomogi", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    padding: 10px 40px;
}

.buy .content p {
    font-size: 1.4rem;
    padding: 80px 0px 0 50px;
}

/* review */
.review {
    width: 100%;
    height: auto;
    background-image: url(img/revBack.jpg);
    background-position: center;
    background-size: cover;
    padding-bottom: 40px;
}

.review .content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.review .content div {
    width: 80%;
    margin: 0 auto;
    position: relative;
    margin-top: 30px;
}

.review .content div:nth-child(even) {
    transform: translateX(-7%);
}

.review .content div:nth-child(odd) {
    transform: translateX(7%);
}

.review .content p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    padding-right: 10px;
}

.review .content div:nth-child(even) p {
    left: 20%;
}

.review .content div:nth-child(odd) p {
    left: 10%;
}

.review .content div img {
    width: 100%;
}

.review .content div .pc-rev {
    display: block;
}

.review .content div .sp-rev {
    display: none;
}

.review .content div:nth-child(3) img {
    transform: scale(-1, 1);
}

/* sns */
.sns {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
}

.sns .content {
    max-width: 1280px;
    margin: 0 auto;
}

.sns .content .follow {
    position: relative;
    text-align: center;
    margin-top: 40px;
}

.sns .content .follow .bord {
    width: 90%;
    height: auto;
}

.sns .content .follow .follow-cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 80%;
}

.sns .content .follow .follow-cont h3 {
    font-family: "Yomogi", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.sns .content .follow .follow-cont .icon {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.sns .content .follow .follow-cont .icon a:hover {
    opacity: 1;
}

.sns .content .follow .follow-cont .icon .fa-brands::before {
    font-size: 50px;
}

.sns .content .follow .follow-cont .icon img {
    width: 50px;
    height: auto;
}

/* store */
.store {
    width: 100%;
    height: auto;
    background: #535353;
    padding-bottom: 40px;
}

.store .content {
    max-width: 1280px;
    margin: 0 auto;
}

.store .content dl {
    text-align: center;
}

.store dl div {
    width: 60%;
    display: flex;
    justify-content: left;
    margin: 0 auto;
    margin-top: 20px;
    border-bottom: 1px solid white;
    max-width: 600px;
    color: white;
    font-size: 1.2rem;
}

.store dl dt {
    text-align: left;
    margin-right: 30px;
}

/* footer */
footer {
    width: 100%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: #D9D9D9;
}

footer p {
    font-size: .8rem;
}

/* 共通 */
h2.tit {
    padding-top: 50px;
    margin-left: 10%;
    font-size: 4.5rem;
    font-family: "Zen Kurenaido", sans-serif;
    font-weight: 400;
    color: white;
    -webkit-text-stroke: black 2px;
}

.btn {
    all: unset;
    display: block;
    margin: 0 auto;
    width: 76%;
    height: 80px;
    font-size: 2.5rem;
    line-height: 80px;
    border-radius: 40px;
    animation: inversion .3s;
    animation-fill-mode: forwards;
    text-align: center;
}

@keyframes inversion {
    0% {
        color: white;
        background: #3F4BFF;
        border: 2px white solid;
    }

    100% {
        color: #3F4BFF;
        background: white;
        border: 2px #3F4BFF solid;
    }
}

.btn:hover {
    animation: none;
    /* animation: inversion2 .3s;
    animation-fill-mode: forwards; */
}

@keyframes inversion2 {
    0% {
        color: #3F4BFF;
        background: white;
        border: 2px #3F4BFF solid;
    }

    100% {
        color: white;
        background: #3F4BFF;
        border: 2px white solid;
    }
}

@media(max-width:769px) {

    /* mainvis */
    .mainvis {
        min-height: 500px;
    }

    .mainvis .content h2 {
        padding: 20vh 0;
        font-size: 2.8rem;
        font-weight: 400;
        -webkit-text-stroke: black 1px;
    }

    /* charm */
    .charm .point-cont {
        display: block;
    }

    .charm .point-cont #point {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .charm .point-cont #point .point-text p {
        margin-top: 10px;
    }

    .charm .point-cont #point.point2 {
        transform: translateY(0);
    }

    /* goods */
    .goods .goods-cont {
        gap: 20px;
    }

    .goods .goods-cont .canele img {
        height: 40%;
    }

    .goods .goods-cont .canele h3 {
        font-size: 1rem;
    }

    .goods .goods-cont .canele h3 span {
        font-size: 1.5rem;
    }

    .goods .goods-cont .canele p {
        font-size: .9rem;
    }

    /* buy */
    .buy .content .shop img {
        top: -14%;
        right: 2%;
        width: 220px;
    }

    .buy .content .shop iframe {
        margin-top: 20px;
        padding: 20px;
    }

    .buy .content h3 {
        font-size: 1.5rem;
        padding: 10px 30px;
    }

    .buy .content p {
        font-size: 1rem;
        padding: 60px 0 0 40px;
    }

    /* review */
    .review .content div {
        width: 90%;
    }

    .review .content div:nth-child(even) {
        transform: translateX(0);
    }

    .review .content div:nth-child(odd) {
        transform: translateX(0);
    }

    .review .content p {
        font-size: 1.1rem;
    }


    .review .content div:nth-child(even) p {
        left: 24%;
    }

    .review .content div:nth-child(odd) p {
        left: 24%;
    }


    .review .content div .pc-rev {
        display: none;
    }

    .review .content div .sp-rev {
        display: block;
    }

    .review .content div:nth-child(3) img {
        transform: scale(1, 1);
    }

    /* sns */
    .sns .content .follow {
        margin-top: 30px;
    }

    .sns .content .follow .follow-cont h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .sns .content .follow .follow-cont .icon .fa-brands::before {
        font-size: 40px;
    }

    .sns .content .follow .follow-cont .icon img {
        width: 40px;
    }

    /* store */
    .store dl div {
        width: 80%;
        font-size: 1rem;
    }

    /* footer */
    footer p {
        font-size: .6rem;
    }

    /* 共通 */
    h2.tit {
        padding-top: 40px;
        font-size: 4rem;
        -webkit-text-stroke: black 2px;
    }

    .btn {
        width: 76%;
        height: 60px;
        font-size: 1.8rem;
        line-height: 60px;
        border-radius: 30px;
    }

}

@media(max-width:481px) {

    /* header */
    header {
        height: 50px;
    }

    header img {
        height: 40px;
        margin-top: 5px;
    }

    /* mainvis */
    .mainvis .content h2 {
        padding: 20vh 0;
        font-size: 2rem;
        font-weight: 500;
    }

    /* charm */
    .charm .point-cont #point {
        width: 90%;
    }

    .charm .point-cont #point .point-text p {
        margin-top: 10px;
    }

    .charm .point-cont #point .point-text h3 {
        font-size: 1.25rem;
        -webkit-text-stroke: black .6px;
    }

    .charm .point-cont #point .point-text p {
        font-size: 1rem;
        -webkit-text-stroke: black .4px;
    }


    /* goods */
        .goods-cont {
        display: block !important;
        /* flexを解除 */
        overflow: hidden;
    }

    .slick-track {
        display: flex !important;
        align-items: center;
    }

    .slick-slide {
        display: block !important;
    }

    .goods .goods-cont .canele {
        width: 80% !important;
        /* スライドの幅を固定 */
        max-width: 260px;
        min-width: 200px;
        margin: 0 auto;
        flex-shrink: 0;
        padding-bottom: 20px;
    }

    .goods .goods-cont .canele img {
        width: auto;
        height: 30%;
        max-height: 160px;
        margin-top: 4%;
    }

    h2.tit {
        padding-top: 30px;
        font-size: 3rem;
        -webkit-text-stroke: black .6px;
    }

    /* buy */
    .buy .content .shop img {
        top: -10%;
        right: 0;
        width: 120px;
    }

    .buy .content .shop iframe {
        margin-top: 10px;
        padding: 10px;
    }

    .buy .content h3 {
        font-size: 1.25rem;
        padding: 10px 20px;
    }

    .buy .content p {
        font-size: 1rem;
        padding: 50px 10px 0 30px;
    }

    /* review */
    .review .content p {
        font-size: .8rem;
    }

    /* sns */
    .sns .content .follow {
        margin-top: 30px;
    }

    .sns .content .follow .follow-cont h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .sns .content .follow .follow-cont .icon .fa-brands::before {
        font-size: 30px;
    }

    .sns .content .follow .follow-cont .icon img {
        width: 30px;
    }

    .sns .content .follow .follow-cont .icon {
        gap: 30px;
    }

    /* store */
    .store dl div {
        width: 90%;
        font-size: .8rem;
    }

    /* footer */
    footer {
        height: 20px;
        line-height: 20px;
    }

    footer p {
        font-size: .5rem;
    }

    /* 共通 */
    h2.tit {
        padding-top: 30px;
        font-size: 3rem;
        -webkit-text-stroke: black .6x;
    }

    .btn {
        width: 80%;
        font-size: 1.25rem;
    }

}

  /* マウス＆hover対応端末だけ有効化 */
@media (hover: hover) and (pointer: fine) {
    .sns .content .follow .follow-cont .icon a:hover {
        opacity: .6;
    }
    .btn:hover {
        animation: inversion2 .3s;
        animation-fill-mode: forwards;
    }
  }