@charset "UTF-8";

/* about-owner  ---------------------- */
#about-owner{
    width: 100%;
    background-color: #F3E6DE;
    padding: 120px 0;
}

#about-owner .main-wrap{
    width: 80%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
}
#about-owner .main-wrap .text-wrap{
    width: calc(65% - 40px);
}
#about-owner .main-wrap .text-wrap .name{
    width: fit-content;
    margin: 40px 0 0 auto;
}
#about-owner .main-wrap .img-wrap{
    width: 35%;
}

/* about-staff  ---------------------- */
#about-staff{
    width: 100%;
    background-color: #fff;
    padding: 0 0 120px 0;
}
#about-staff .wave-area{
    width: 100%;
    margin-top: -1px;
    margin-bottom: 80px;
}
#about-staff .wave-area img{
    width: 100%;
}

#about-staff .main-wrap{
    width: 80%;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
}
#about-staff .main-wrap .text-wrap{
    width: calc(65% - 40px);
}
#about-staff .main-wrap .text-wrap .name{
    width: fit-content;
    margin: 40px 0 0 auto;
}
#about-staff .main-wrap .img-wrap{
    width: 35%;
}

/* news  ----------------------------- */
#news{
    width: 100%;
    background-color: #F3E6DE;
    background-image: url(../img/about/news-title.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    padding: 120px 0 40px 0;
}
#news .main-wrap{
    width: 60%;
    margin: 0 auto 0 0;
}
#news .main-wrap .title{
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    text-align: right;
}
#news .main-wrap .news-list{
    width: 100%;
}
#news .main-wrap .news-list li{
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: flex-start;
    padding: 20px 5% 20px 10%;
    margin-bottom: 20px;
}
#news .main-wrap .news-list li:last-child{
    margin-bottom: 0;
}
#news .main-wrap .news-list li .date{
    font-size: 16px;
    margin-right: 10px;
}

/* about-us  ------------------------- */
#about-us{
    width: 100%;
    background-color: #F3E6DE;
    padding: 80px 0;
}
#about-us .main-wrap{
    width: 50%;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 5%;
    margin: 0 10% 0 auto;
    position: relative;
    z-index: 1;
}
#about-us .main-wrap .section-title{
    margin-left: 5%;
}
#about-us .main-wrap .company-list{
    width: 100%;
}
#about-us .main-wrap .company-list .company-list-item{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
#about-us .main-wrap .company-list .company-list-item dt{
    width: 108px;
    flex-shrink: 0;
    text-align: right;
}
#about-us .main-wrap .company-list .company-list-item dd{
    width: calc(100% - 108px);
}
#about-us .main-wrap .company-list .company-list-item dd .google-map{
    display: block;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 1px dotted #222;
    width: fit-content;
    margin: 0 0 0 auto;
}

#about-us .main-wrap .img-wrap{
    width: 30vw;
    height: 500px;
    position: absolute;
    bottom: 0;
    left: -30vw;
    z-index: 0;
}
#about-us .main-wrap .img-wrap img{
    width: 100%;
    height: 95%;
    object-fit: cover;
    object-position: bottom center;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}
#about-us .main-wrap .img-wrap p{
    font-size: 15px;
    text-align: right;
}

/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 960px) {

    /* about-owner  ---------------------- */
    #about-owner .main-wrap{
        flex-direction: column-reverse;
        align-items: center;
    }
    #about-owner .main-wrap .text-wrap{
        width: 100%;
    }
    #about-owner .main-wrap .img-wrap{
        width: 50%;
        margin: 0 auto;
    }

    /* about-staff  ---------------------- */
    #about-staff .main-wrap{
        flex-direction: column-reverse;
        align-items: center;
    }
    #about-staff .main-wrap .text-wrap{
        width: 100%;
    }
    #about-staff .main-wrap .img-wrap{
        width: 50%;
        margin: 0 auto;
    }

    /* news  ----------------------------- */
    #news{
        background-size: contain;
        background-position: top right;
    }
    #news .main-wrap{
        width: 75%;
    }
    #news .main-wrap .title{
        text-align: left;
        margin-left: 5%;
    }
    #news .main-wrap .news-list li{
        padding: 20px 5%;
    }

    /* about-us  ------------------------- */
    #about-us .main-wrap{
        width: 60%;
        margin: 0 5% 0 auto;
    }
    #about-us .main-wrap .company-list .company-list-item{
        gap: 10px;
    }

    #about-us .main-wrap .img-wrap{
        height: 300px;
    }


}

/*-------------------------------------------
スマホ
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /* about-owner  ---------------------- */
    #about-owner{
        padding: 80px 0;
    }

    #about-owner .main-wrap{
        width: 90%;
    }
    #about-owner .main-wrap .text-wrap{
        width: 100%;
    }
    #about-owner .main-wrap .img-wrap{
        width: 100%;
    }

    /* about-staff  ---------------------- */
    #about-staff{
        padding: 0 0 80px 0;
    }

    #about-staff .main-wrap{
        width: 90%;
    }
    #about-staff .main-wrap .img-wrap{
        width: 100%;
    }

    /* news  ----------------------------- */
    #news{
        background-image: url(../img/about/news-title-sp.jpg);
        padding: 20px 0 40px 0;
    }
    #news .main-wrap{
        width: 95%;
    }
    #news .main-wrap .title{
        font-size: 24px;
    }
    #news .main-wrap .news-list{
        margin-top: 150px;
    }
    #news .main-wrap .news-list li{
        flex-direction: column;
        padding: 20px 5%;
    }

    /* about-us  ------------------------- */
    #about-us{
        padding: 80px 0 320px;
    }
    #about-us .main-wrap{
        width: 90%;
        margin: 0 auto;
    }
    #about-us .main-wrap .company-list .company-list-item{
        gap: 0;
    }
    #about-us .main-wrap .company-list .company-list-item dt{
        width: 95px;
        font-size: 15px;
    }

    #about-us .main-wrap .img-wrap{
        width: 90%;
        height: 300px;
        bottom: -280px;
        left: auto;
        right: -5vw;
    }
    #about-us .main-wrap .img-wrap p{
        margin-right: 5vw;
    }

}