@charset "utf-8";

/* リセットCSS */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2em;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 1s;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}


header,
nav,
main,
footer {
    margin: 0 auto;
    width: min(100%, 1000px);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

img {
    max-width: 100%;
}

/* main */
.products-h1 {
    margin-left: 50px;
}

.products {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 300px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.products img {
    width: 250px;
}

.products-textarea {
    margin-left: 25px;
}


/* プルダウンここから */
/* ∞∞ global ∞∞ */
* {
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-color: inherit;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
progress {
    -webkit-appearance: none;
}

.gift-select {
    padding-bottom: 70px;
    display: flex;
    z-index: 3;
}

.select {
    width: 225px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    box-shadow: 0 2px 0 white;
    border-radius: 2px;
}

.select_expand {
    width: 0;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
}

.select_expand::after {
    content: '\003E';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleY(1.75);
    color: #3e3e3e;
    font-size: 28px;
    pointer-events: none;
    z-index: 2;
    transition: all 250ms cubic-bezier(.4, .25, .3, 1);
    opacity: .6;
}

.select_expand:hover::after {
    opacity: 1
}

.select_expand:checked::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(-1) scaleY(1.75);
}

.select_expandLabel {
    display: block;
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

.select_close {
    display: none
}

.select_closeLabel {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

.select_items {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #000;
    border-radius: 2px;
    padding-top: 40px;
}

.select_input {
    display: none
}

.select_label {
    transition: all 250ms cubic-bezier(.4, .25, .3, 1);
    display: block;
    height: 0;
    font-size: 1rem;
    line-height: 40px;
    overflow: hidden;
    color: #3e3e3e;
    background-color: #fff;
    cursor: pointer;
    padding-left: 20px;
}

.select_label-placeholder {
    height: 40px;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .6;
    background-color: transparent;
}

.select_expand:checked+.select_closeLabel {
    display: block;
}

.select_expand:checked+.select_closeLabel+.select_options .select_label {
    height: 33px;
}

.select_expand:checked+.select_closeLabel+.select_options .select_label:hover {
    background-color: #f7f7f7
}

.select_expand:checked+.select_closeLabel+.select_options+.select_expandLabel {
    display: none
}

.select_input:checked+.select_label {
    height: 40px;
    margin-top: -40px;
}

/* プルダウンここまで */

.button-area {
    display: flex;
    background-color: #f5dedc;
    width: 220px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: #000 1px solid;
}

.button-area:hover {
    background-color: #ffc0cb;
}

.button-area img {
    width: 20px;
    height: 20px;
}

.button-area-flex {
    display: flex;
    align-items: center;
}

.scene-product {
    display: flex;
    justify-content: space-around;
}

.scene-product img {
    width: 150px;
}

.scene-product li {
    padding: 20px;
    transition: 0.5s all ease 0s;
}

.scene-product li:hover {
    transform: scale(1.07)
}

dt {
    font-size: 1.2em;
}

dd {
    width: 200px;
}

.buy-button button {
    display: flex;
    background-color: #fff;
    width: 150px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: #000 2px solid;
    margin-top: 20px;
}

.buy-button button:hover {
    background-color: #ffc0cb;
}

.margin-left-50 {
    margin-left: 50px;
    margin-top: 80px;
}

/* ここからスマホ */
@media screen and (max-width:768px) {
    .top {
        height: 80px;
    }

    header {
        height: 100px;
    }

    .site-menu ul {
        height: 100px;
    }

    .site-menu a {
        font-size: 0.8em;
    }

    .gift-select {
        padding-bottom: 30px;
    }

    .products {
        margin-top: 0;
        flex-wrap: wrap;
    }

    .margin-left-50 {
        margin-top: 350px;
    }

    .scene-product {
        flex-wrap: wrap;
    }

    footer {
        font-size: 0.7em;
    }

    .gotothetop {
        bottom: 30px;
        right: 5px;
    }

    .gotothetop img {
        width: 80px;
        height: auto;
    }
}