@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@700&family=Dancing+Script:wght@400..700&family=Rampart+One&family=Sawarabi+Mincho&family=Yuji+Syuku&display=swap');

/* 共通------------------------------------------------------------ */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;  /* ボーダーボックスが適用されている所はpaddingが内部に含まれた状態になる */
}

body {
    font-family: Sawarabi Mincho;
}

img {
    width: 100%;
    vertical-align: bottom;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 2%;
} 

main h2 {
    font-size: 40px;
    text-align: center;
    font-weight: normal;
    margin-bottom: 40px;
}

/* header------------------------------------------------------------ */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    background: linear-gradient(#ffffff 80%, transparent);
    position: fixed;
    height: 100px;
    width: 100%;
    z-index: 100;
}

h1 {
    width: 10%;
}

.pc-menu {
    width: 60%;
}

.pc-menu-box {
    display: flex;
}

.pc-menu-box li {
    width: calc(100% / 4);
    text-align: center;
}

.pc-menu-box li a {
    display: block;
    font-size: min(24px, 1.5vw);
    color: #171717;
    line-height: 100px;
}

header a:hover {
    color: #DD5764;
}

.sp-menu {
    display: none;
}

/* home------------------------------------------------------------ */
.hero {
    background: url(img/firstview-pc.png) center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .4;
}

.hero h2 {
    writing-mode: vertical-rl;
    color: #171717;
    font-size: min(48px,10vw);
    z-index: 99;
    text-shadow: 2px 3px 3px rgba(180, 180, 180, 0.4);
    }

/* concept------------------------------------------------------------ */
#concept {
    padding-bottom: 84px;
}

.slider-wrapper  {
    display: flex;
    overflow: hidden;
}

.slider {
    animation: scroll-left 40s infinite linear .5s both;
    display: flex;
}

.slide {
    margin: 64px 0;
    font-size: 128px;
    color: #cba770;
    white-space: nowrap;
    width: calc(100% / 3);
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.concept-txt-pc {
    font-size: 24px;
    text-align: center;
    line-height: 2;
}

.concept-txt-sp{
    display: none;
}


/* limited-time-item------------------------------------------------------------ */
#limited-time-item {
    background: #ede6d2;
}

#limited-time-item h2 {
    margin-bottom: 160px;
}

#limited-time-item article {
    display: flex;
    margin-bottom: 80px;
}

.item-img {
    width: 40%;
}

#limited-time-item img {
    object-fit: cover;
    border-radius: 50%;
}

#limited-time-item h3 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 16px;
}

.limited-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.limited-textbox p {
    font-size: 20px;
    line-height: 2;
}

.nomal .item-img {
    margin-right: 32px;
}

.rev {
    flex-direction: row-reverse;
}

.rev .item-img {
    margin-left: 32px;
}

/* features------------------------------------------------------------ */
#features article {
    margin-bottom: 10%;
}

#features h2 {
    margin-bottom: 40px;
}

#features h3 {
    writing-mode: vertical-rl;
    font-size: 32px;
    font-weight: normal;
}

.features-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 5% 0;
} 

.features-textbox {
    display: flex;
    justify-content: center;
}

#features p {
    width: 60%;
    font-size: 20px;
}

/* online------------------------------------------------------------ */
#online {
    position: relative;
}

#online img {
    width: 100%;
    filter: brightness(75%);
}

#online h2 {
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* shop------------------------------------------------------------ */
#shop {
    padding-bottom: 3%;
}

#shop h2 {
    margin-bottom: 40px;
}

.shop-map {
    display: flex;
    margin-bottom: 16px;
}

#shop article div {
    width: 50%;
}

.maps iframe {
    width: 100%;
}

.shop-map-text  {
    display: grid;
    place-items: center;
    padding: 3% 0;
}

.shop-map-text dl {
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
    width: 100%;
    line-height: 2;
}

.shop-map-text dt {
    width: 6rem;
    text-align: right;
}

.shop-map-text dd {
    width: 18rem;
}

iframe {
    width: 100%;
}


/* footer------------------------------------------------------------ */
footer {
    padding: 60px 0 20px;
    background-color: #2b2b2b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer img {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

small {
    display: block;
    color: #fff;
    font-size: 12px;
}



/* ------------------------------------------------------------------
タブレットだよ～～～ん
------------------------------------------------------------------ */
@media (max-width:800px) {
    .pc-menu {
        display: none;
    }

    .sp-menu {
        display: block;
    }

    .menu-btn {
        position: fixed;
        top: 10px;
        right: 10px;
        width: 60px;
        height: 60px;
        background: #171717;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }

    .menu-btn span, .menu-btn span::before, .menu-btn span::after {
        content: "";
        background: #fff;
        width: 25px;
        height: 3px;
        position: absolute;
        transition: all .5s;
    }

    .menu-btn span::before {
        bottom: 8px;
    }

    .menu-btn span::after {
        top: 8px;
    }

    #menu-btn-check:checked + .menu-btn span {
        background: rgba(255, 255, 255, 0);
    }

    #menu-btn-check:checked ~ .menu-btn span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #menu-btn-check:checked ~ .menu-btn span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    #menu-btn-check {
        display: none;
    }

    .sp-menu-box {
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, .7);
        position: fixed;
        top: 0;
        left: 100%;
        padding: 100px 10px 0;
        box-sizing: border-box;
        z-index: 50;
        transition: all .7s;
    }

    .sp-menu-box li a {
        display: block;
        color: #fff;
        text-decoration: none;
        text-align: center;
        padding: 10px 15px;
        font-size: 24px;
        border-bottom: 1px solid #fff;
    }

    #menu-btn-check:checked ~ .sp-menu-box {
        left: 0;
    }

    /* ---------- 共通 ---------- */
    main h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .container {
        padding: 40px 2%;
    }

    /* ---------- header ---------- */
    h1 {
        width: 15%;    
    }

    /* ---------- home ---------- */
    .title {
        font-size: 40px;
    }

    /* ---------- concept ---------- */
    .dec {
        font-size: 80px;
    }

    .concept-text {
        font-size: 16px;
    }

    .concept-txt-pc{
        display: none;
    }

    .concept-txt-sp{
        display: block;
        text-align: center;
    }

    .slide {
        font-size: 80px;
    }

    /* ---------- limited-time-item ---------- */
    #limited-time-item h2 {
        margin-bottom: 80px;
    }

    #limited-time-item article {
        flex-direction: column;
        align-items: center;
        margin-bottom: 80px;
    }

    #limited-time-item img {
        margin-bottom: 10%;
    }

    #limited-time-item h3 {
        font-size: 24px;
        text-align: center;
    }

    .limited-text {
        width: 100%;
    }

    .limited-textbox p {
        font-size: 16px;
        line-height: 1.5;
    }

    .rev {
        flex-direction: column;
    }

    /* ---------- shop ---------- */
    #shop article div {
        width: 100%;
    }

    .shop-map {
        display: grid;
        place-items: center;
    }

    .maps {
        margin-bottom: 32px;
    }

    .shop-map-text dl {
        font-size: 16px;
    }

    .shop-map-text dt {
        width: 40%;
    }

    .shop-map-text dd {
        width: 60%;
    }

    iframe {
        height: 300px;
    }



    /* ---------- footer ---------- */
    footer {
        padding: 40px 0 20px;
    }

    footer img {
        width: 100px;
    }

    small {
        font-size: 10px;
    }

}

/* ------------------------------------------------------------------
SPだよ～～～ん
------------------------------------------------------------------ */
@media (max-width:500px) {

    /* ---------- header ---------- */
    h1 {
        width: 30%;    
    }

    /* home------------------------------------------------------------ */
    .hero {
        background: url(img/firstview-sp.png) center/cover;
    }

    /* ---------- concept ---------- */
    #concept {
        padding-bottom: 48px;
    }

    .slide {
        font-size: 64px;
    }

    @keyframes scroll-left {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }

    .concept-txt-pc {
        display: none;
    }

    .concept-txt-sp{
        margin: 0;
    }

    /* ---------- limited-time-item ---------- */
    #limited-time-item h2 {
        margin-bottom: 48px;
    }

    #limited-time-item article {
        margin-bottom: 32px;
    }

    .item-img {
        width: 58%;
    }

    /* ---------- features ---------- */
    #features h3 {
        font-size:24px;
    }

    #features p {
        width: 100%;
        font-size: 16px;
    }

    /* ---------- online ---------- */
    #online h2 {
        font-size: 24px;
    }

    /* ---------- shop ---------- */
    .shop-map-text dt {
        width: 25%;
    }

    .shop-map-text dd {
        width: 75%;
    } 

}