@charset "UTF-8";

/* ----------main---------- */
main {
    overflow: auto;
    background-color: var(--mainColor-white);
    position: relative;
    z-index: -20;
}

/* about */
.section--about {
    padding-bottom: 42px;
}

.about__shop {
    margin-top: 39px;
    animation: fadeIn 1s;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(10px);
    animation-fill-mode: forwards;
}

.about__material {
    animation: fadeIn 1s;
    animation-delay: 1.5s;
    opacity: 0;
    transform: translateY(10px);
    animation-fill-mode: forwards;
}

.about__topic {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 60px 0 0 11.2%;
    margin-right: 11.2%;
    border-bottom: solid 1px var(--mainColor-black);
}

.about__txt {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 21px 11.2% 0;
}

.about__txt:first-of-type,.about__material .about__txt {
    margin-top: 30px;
}

.about__list {
    margin: 0 11.2%;
}

.about__name {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 5px 0 5px 38px;
    margin-top: 30px;
    position: relative;
}

.about__name::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/icon_flower-blackA.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.about__list .about__txt {
    margin: 10px 0 0 0;
}

/* about pc */
@media screen and (min-width:913px) {
    .section--about {
        padding-bottom: 49px;
    }

    .about__shop {
        padding: 120px 11.11% 0;
        margin-top: 18px;
    }

    .about__material {
        padding: 60px 11.11% 0;
    }
    
    .about__topic {
        font-size: 2rem;
        line-height: 1;
        padding: 0 0 0 110px;
        border-bottom: none;
        position: relative;
    }
    
    .about__topic::before {
        content: '';
        width: 100px;
        height: 1px;
        background-color: var(--mainColor-black);
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .about__txt {
        font-size: 1.4rem;
        margin: 21px 0 0 160px;
    }

    .about__list {
        margin: 0 0 0 160px;
    }

    .about__name {
        font-size: 1.8rem;
        padding: 7px 0 7px 52px;
    }

    .about__name::before {
        width: 40px;
        height: 40px;
    }
}
/* about pc */
/* about */

/* contact */
.contact__list {
    padding: 60px 21.33% 225px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact__item a {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact__item a img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact__txt {
    font-family: Roboto;
    font-size: 1.6rem;
    line-height: 1.5;
}

.contact__txt span {
    display: block;
    font-size: 1.2rem;
    margin-top: 8px;
}

/* contact pc */
@media screen and (min-width:913px) {
    .contact__list {
        padding: 120px 0 120px;
        width: 57.3%;
        margin: 0 auto min(280px,19.44vw);
        flex-direction: row;
        flex-wrap: wrap;
        gap: 60px;
    }

    .contact__item {
        width: 235px;
    }

    .contact__item a {
        gap: 25px;
    }

    .contact__item a img {
        width: 50px;
        height: 50px;
    }

    .contact__txt {
        font-size: 2rem;
    }

    .contact__txt span {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .fadeIn.animated {
        animation-delay: 0.7s;
    }
}
/* contact pc */
/* contact */
/* ----------main---------- */