@charset "UTF-8";

/* ------------------------------
Reset（最小限）
------------------------------ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }




/* ------------------------------
Base
------------------------------ */
body {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
    background: #fff;
    color: #101010;
}

main {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}

.second-bg {
    background: #fff7ea;
}

.sec-ttl {
    font-size: 24px;
    letter-spacing: 2.4px;
    text-align: center;
}

.ttl-en {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #898989;
}

.mb-60 {
    margin-bottom: 60px;
}

.w-full {
    margin: 0 calc(50% - 50vw);
}

@media screen and (max-width: 1024px) {
    main {
        max-width: 1240px;
        margin: 0 auto;
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* スマホ（iPhone, Android） */
@media screen and (max-width: 767px) {
    .sec-ttl {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .ttl-en {
        font-size: 10px;
    }

    .mb-60 {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 499px) {
    main {
        padding-left: 20px;
        padding-right: 20px;
    }

    .sec-ttl {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .ttl-en {
        font-size: 10px;
    }
}


/* ------------------------------
kv
------------------------------ */
.kv {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./images/kv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.kv-ttl {
    font-size: 52px;
    letter-spacing: 5.2px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.kv-ttl.is-visible {
    opacity: 1;
    transform: none;
}

.kv-ttl .kv-ttl-sml {
    font-size: 24px;
    letter-spacing: 2.4px;
}

/* タブレット（iPadなど） */
@media screen and (max-width: 1024px) {
    .kv {
        height: 70vh;
    }
}

/* スマホ（iPhone, Android） */
@media screen and (max-width: 499px) {
    .kv-ttl {
        font-size: 32px;
        letter-spacing: 3.2px;
    }

    .kv-ttl .kv-ttl-sml {
        font-size: 20px;
        letter-spacing: 2px;
    }
}


/* ------------------------------
about
------------------------------ */
.about {
    padding: 100px 80px;
}

.about-top {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 60px;
    padding: 45px 75px;
    background-color: #ffeccd;
    border-radius: 15px;
}

.about-top h2 {
    margin-bottom: 25px;
}

.about-top-txt {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 2;
}

.about-sub {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 85px;
    align-items: center;
    justify-content: center;
}

.about-sub-01,
.about-sub-02 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.about-sub-01.is-visible,
.about-sub-02.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .about-sub-01,
    .about-sub-02 {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

.about-sub-02 {
    flex-direction: row-reverse;
}

.about-sub-txt {
    width: 360px;
}

.about-sub-ttl {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-sub-txt p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 2;
}

/* タブレット（iPadなど） */
@media screen and (max-width: 1024px) {
    .about {
        padding-left: 60px;
        padding-right: 60px;
    }

    .about-top {
        padding-left: 45px;
        padding-right: 45px;
    }

    .about-sub {
        gap: 80px;
    }

    .about-sub-01,
    .about-sub-02 {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .about-sub-txt {
        width: 100%;
    }

    .about-sub-img {
        width: 100%;
    }

    .about-sub-img img {
        width: 100%;
    }
}

/* スマホ（iPhone, Android） */
@media screen and (max-width: 767px) {
    .about {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .about-top-txt {
        font-size: 14px;
    }
    
    .about-sub-ttl {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .about-sub-txt p {
        font-size: 12px;
    }

    .about-sub-01,
    .about-sub-02 {
        gap: 20px;
    }

    .about-sub {
        gap: 60px;
    }
}

@media screen and (max-width: 499px) {
    .about {
        padding: 60px 20px;
    }

    .about-top {
        padding-left: 25px;
        padding-right: 25px;
    }

    .about-top-txt {
        font-size: 12px;
    }

    .about-sub {
        gap: 40px;
    }
}


/* ------------------------------
ranking
------------------------------ */
.ranking {
    padding: 120px 0;
}

.ranking-list {
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

.ranking-list-item {
    flex: 0 0 18%;
    height: auto;
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

/* 表示状態 */
.ranking-list-item.is-visible {
    opacity: 1;
    transform: none;
}

/* 動画やアニメ苦手なユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
    .ranking-list-item {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

.ranking-list-item-link {
    transition: opacity 0.6s ease;
}

.ranking-list-item-link:hover {
    opacity: 0.6;
}

.ranking-list-item-rank {
    font-size: 24px;
    margin-bottom: 7px;
}

.ranking-list-item-img {
    margin-bottom: 10px;
}

.ranking-list-item-rank span {
    font-size: 14px;
}

.ranking-list-item-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 7px;
}

.ranking-list-item-price {
    font-size: 18px;
    color: #ff3333;
    margin-bottom: 7px;
}

.ranking-list-item-price span {
    font-size: 12px;
    font-weight: 700;
}

.ranking-list-item-review {
    font-size: 10px;
    color: #F9E400;
}

.ranking-list-item-review span {
    color: #898989;
}

/* タブレット（iPadなど） */
@media screen and (max-width: 1024px) {

    .ranking-list {
        gap: 30px;
    }

    .ranking-list-item {
        flex: 0 0 47%;
    }
}

@media screen and (max-width: 767px) {
    .ranking {
        padding: 80px 0;
    }
}

@media screen and (max-width: 499px) {
    .ranking {
        padding: 60px 0;
    }

    .ranking-list-item {
        flex: 0 0 100%;
    }
}


/* ------------------------------
budget
------------------------------ */
.budget {
    padding: 120px 80px;
}

.budget-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.budget-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.budget-list-item {
    font-size: 16px;
    letter-spacing: 0.8px;
    transition: opacity 0.3s ease;
    border: 1px solid #101010;
    border-radius: 10px;
    background-color: #FFECCD;
    width: 30%;/* 4つ項目表示の際は削除 */
}

.budget-list-item:hover {
    opacity: 0.6;
}

.budget-list-item-link {
    display: block;
    text-align: center;
    padding: 20px 40px;
}

@media screen and (max-width: 1024px) {
    .budget {
        padding: 100px 60px;
    }

    .budget-list {
        justify-content: center;
        gap: 30px;
    }

    .budget-list-item {
        width: 33%;
    }
}

@media screen and (max-width: 767px) {
    .budget {
        padding: 80px 60px;
    }

    .budget-list-item {
        width: 42%;
    }
}

@media screen and (max-width: 499px) {
    .budget {
        padding: 60px 20px;
    }

    .budget-list {
        gap: 15px;
    }

    .budget-list-item {
        width: 100%;
        font-size: 14px;
    }
}


/* ------------------------------
service
------------------------------ */
.service {
    padding: 120px 0;
}

.service-wrap {
    margin-bottom: 80px;
}

.service-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px 0;
}

.service-list-item {
    flex: 0 0 47.258064516129%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

/* フェードイン後 */
.service-list-item.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .service-list-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.service-list-item-img {
    margin-bottom: 25px;
}

.service-list-item-ttl {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #C47E38;
    margin-bottom: 12px;
}

.service-list-item-ttl span {
    font-size: 14px;
}

.service-list-item-txt {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 2;
}

.service-list-item-txt span {
    font-size: 12px;
    letter-spacing: 0.8px;
    color: #898989;
}

.service-socialGift {
    width: 100%;
    height: 350px;
    background-color: #898989;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.service-socialGift.is-visible {
    opacity: 1;
    transform: none;
}


@media (prefers-reduced-motion: reduce) {
    .service-socialGift {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

.service-socialGift a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.service-socialGift a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 767px) {
    .service-list {
        flex-direction: column;
        gap: 40px;
    }

    .service-list-item-img img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .service {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .service-list-item-img {
        margin-bottom: 15px;
    }

    .service-list-item-ttl {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .service-list-item-txt {
        font-size: 12px;
    }

    .service-list-item-txt span {
        font-size: 10px;
    }
}

@media screen and (max-width: 499px) {
    .service {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}


/* ------------------------------
voice
------------------------------ */
.voice {
    padding: 120px 0;
}

.voice-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 94px 54px;
    background-color: #FFECCD;
    border-radius: 15px;
}

.voice-list {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.voice-list-item:nth-of-type(1) {
    padding-bottom: 50px;
}

.voice-list-item:nth-of-type(2) {
    padding: 50px 0;
    border-top: 1px dotted #101010;
    border-bottom: 1px dotted #101010;
}

.voice-list-item:nth-of-type(3) {
    padding-top: 50px;
}

.voice-list-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.voice-list-item.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .voice-list-item {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

.voice-list-item-txt {
    position: relative;
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 2;
    text-align: center;
}

.voice-list-item-txt::before {
    content: "“";
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 40px;
}

.voice-list-item-txt::after {
    content: "”";
    position: absolute;
    top: 40px;
    right: 0;
    font-size: 40px;
}

@media screen and (max-width: 1024px) {

    .voice {
        padding: 80px 0;
    }
    
    .voice-wrap {
        max-width: 700px;
        padding: 80px 0;
    }

    .voice-list {
        max-width: auto;
        padding-left: 40px;
        padding-right: 40px;
    }

    .voice-list-item-txt::after {
        top: 80px;
    }
}

@media screen and (max-width: 767px) {

    .voice {
        padding: 60px 0;
    }

    .voice-wrap {
        max-width: 500px;
        padding: 60px 0;
    }
    
    .voice-list-item-txt {
        font-size: 12px;
    }
}

@media screen and (max-width: 499px) {

    .voice-wrap {
        max-width: 340px;
    }

    .voice-list {
        padding-left: 25px;
        padding-right: 25px;
    }
}



/* ------------------------------
store
------------------------------ */
.store {
    padding: 120px 0;
    background-color: #E8C999;
}

.store-wrap {
    max-width: 700px;
    margin: 0 auto;
}

.store-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.store-list-item {
    flex: 1 1 calc((100% - 80px) / 3);
}

.store-list-item a {
    display: flex;
    padding: 20px 0;
    align-items: center;
    border-radius: 50px;
    background-color: #fff7ea;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.store-list-item a:hover {
    color: #fff7ea;
    background-color: #C47E38;
}

@media screen and (max-width: 1024px) {
    .store {
        padding: 80px 0;
    }
}

@media screen and (max-width: 767px) {
    .store {
        padding: 60px 0;
    }

    .store-wrap {
        padding-left: 40px;
        padding-right: 40px;
    }

    .store-list {
        gap: 20px;
    }

    .store-list-item {
        flex: 1 1 calc((100% - 40px) / 2);
    }
}

@media screen and (max-width: 499px) {

    .store-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .store-list {
        gap: 10px;
    }

    .store-list-item {
        font-size: 14px;
        flex: 1 1 calc((100% - 60px) / 1);
    }
}