@charset "UTF-8";

.section--about {
    margin-top: 120px;
}

.logo {
    background-image: url(../image/logo_back.jpg);
    background-position: center;
    width: 100%;
    height: 140px;
    position: relative;
}

.logo__txt {
    position: absolute;
    display: flex;
    left: 5%;
    top: 33%;
    flex-direction: column;
}

.heading {
    color: var(--primary-beige);
    font-family: Raleway;
    font-size: 4.3rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.logo_sub {
    color: var(--primary-beige);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

.about__content {
    padding: 25px 5.1%;
}

.about__img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    object-position: 100% 60%;
}

.about__txt {
    margin-top: 40px;
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 3;
    letter-spacing: -0.5px;
}

.about__txt p {
    margin-top: 20px;
}

.about__txt p:first-of-type {
    margin-top: 0;
}

.pcBr {
    display: none;
}

/* about pc */
@media screen and (min-width: 769px) {
    .section--about {
        margin-top: 150px;
        padding: 0 10%;
    }

    .logo {
        width: 83.9%;
        height: 210px;
        margin: 0 0 0 auto;
    }
    
    .logo__txt {
        left: -19%;
        top: 45%;
    }

    .heading {
        font-size: 8rem;
    }

    .logo_sub {
        font-size: 1.8rem;
        margin-top: 28px;
    }

    .about__content {
        padding: 100px 0 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about__txt {
        margin-top: 60px;
        font-size: 1.5rem;
        line-height: 3.5;
        text-align: center;
    }

    .about__img {
        height: 350px;
        object-position: 100% 38%;
    }

    .pcBr {
        display: block;
    }
}/* pc 769px */

/* shopimage */
.shopimage {
    padding: 50px 5.1%;
    display: flex;
    justify-content: center;
}

.shopimage img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fadeInAnime1s {
    animation-name: shopimage_01;
}
  
.shopimage_01 {
    margin-right: 20px;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}
  
@keyframes shopimage_01 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
  
.fadeInAnime500ms {
    animation-name: shopimage_02;
}
  
.shopimage_02 {
    object-position: 90% 100%;
    animation-delay: 500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
  
@keyframes shopimage_02 {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* shopimage pc */
@media screen and (min-width: 769px) {
    .shopimage {
        padding: 120px 10%;
    }

    .shopimage img {
        height: 400px;
    }    

    .shopimage_01 {
        margin-right: 140px;
    }

}/* pc 769px */


/* concept */
.section--concept {
    padding: 0 5.1%;
}

.topics__item {
    padding: 38px 5.1%;
    border-top: solid 5px var(--primary-beige);
    background-color: var(--primary-white);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

.topics__item:last-of-type {
    margin-top: 35px;
}

.item__titel {
    display: flex;
    align-items: center;
}

.item__titel h4 {
    display: inline-block;
    color: var(--primary-black);
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.25px;

    border-right: solid 2px var(--primary-black);
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
}

.item__titel span {
    color: var(--primary-black);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.27px;
}

.item__img {
    width: 100%;
    height: 145px;
    margin-top: 20px;
    object-fit: cover;
}

.item__txt {
    margin-top: 20px;
    color: var(--primary-black);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 3;
}

.item__txt p {
    margin-top: 20px;
}

.item__txt p:first-of-type {
    margin-top: 0;
}

/* concept pc */
@media screen and (min-width: 769px) {
    .section--concept {
        padding: 0 10%;
    }

    .topics {
        margin-top: 30px;
    }

    .topics__item {
        padding: 50px 8.9%;
        border-top: solid 10px var(--primary-beige);
    }

    .topics__item:last-of-type {
        margin-top: 80px;
    }
    
    .item__titel h4 {
        font-size: 4rem;
        letter-spacing: 0.4px;
        
        border-right: solid 2px var(--primary-black);
        margin: 0 15px 0 0;
        padding: 0 15px 0 0;
    }
    
    .item__titel span {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .item__img {
        height: 300px;
        margin-top: 50px;
        object-position: 100% 48%;
    }

    .item__txt {
        margin-top: 50px;
        font-size: 1.5rem;
    }
}/* pc 769px */