@charset "utf-8";
/* Buyer detail page styles. */

.main-contents {
    padding: 0 0 60px;
}

.orange {
    color: #F06E14;
}
.green {
    color: #00a66a;
}
.lgray{
    color: #ccc;
}
.gray {
    color: #999;
}
.margin-t60 {
    margin: 60px 0 0;
}

.margin-t30 {
    margin: 30px 0 0;
}

.margin-t15 {
    margin: 15px 0 0;
}

.margin-t10 {
    margin: 10px 0 0;
}

.margin-t5 {
    margin: 5px 0 0;
}

.header-container{
    border-bottom: 2px solid #000;
    padding: 15px;
}
.header-img{
    width: 200px;
}
@media screen and (max-width: 431px){
    .header-img{
        width: 160px;
    }
}

.breadcrumb-container {
    display: flex;
    padding: .6rem 0 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: .8rem;
    font-weight: 500;
}
.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}
.breadcrumb-item:not(:last-child)::after {
    content: ">";
    margin-left: 8px;
    margin-right: 8px;
    color: #333;
}
.breadcrumb-container .active {
    color: #333;
    font-weight: normal;
}
.breadcrumb-container li a{
    color: #00a66a;
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-container li a:hover{
    color: #00633f;
}

.area-lead{
    font-weight: 700;
}
.contents-ul li:last-child{
    border-bottom: 1px solid #ccc;
}

.shop-name-h2{
    background-color: #eee;
    border-left: 5px solid #333;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 16px;
}
.shop-detail-content{
    display: flex;
    margin: 16px 0 0;
    justify-content: space-between;
}
@media screen and (max-width: 431px){
    .shop-detail-content{
        display: block;
    }
}
.shop-image-top{
    width: 20%;
    min-width: 150px;
    margin-right: 16px;
}
@media screen and (max-width: 431px){
    .shop-image-top{
        width: 100%;
        min-width: 150px;
        margin-right: 0;
    }
}
.shop-image-top img{
    border: 1px solid #ccc;
    width: 100%;
}
.shop-detail-inner{
    flex: 1;
}
@media screen and (max-width: 431px){
    .shop-detail-inner{
        width: 100%;
        margin-top: 16px;
    }
}
.shop-detail-inner dl{
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 0 0 5px 0;
    margin: 0 0 5px 0;
}
@media screen and (max-width: 431px){
    .shop-detail-inner dl{
        display: block;
    }
}
.shop-detail-inner dt{
    width: 170px;
    display: flex;
    align-items: center;
}
.shop-detail-inner dd{
    flex: 1;
}
.shop-detail-area-item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.shop-detail-area-item div{
    font-size: .75rem;
    color: #666;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 15px;
    margin: 5px 5px 0 0;
    padding: 2px 0;
    font-weight: 500;
    width: 100px;
}
.shop-detail-copy h3{
    font-size: 1.2rem;
    font-weight: 700;
    color: #F06E14;
}
.shop-detail-copy div{
    font-size: .875rem;
    font-weight: 500;
}
.shop-img-container{
    display: flex;
}
.shop-img-container div{
    width: calc(100% / 3);
    padding: 5px;
    border: 1px solid #ccc;
    margin-left: -1px;
}
.shop-img-container img{
    object-fit: cover;
    width: 100%;
}
.shop-detail-link{
    display: flex;
    justify-content: flex-end;
}
.shop-detail-link a{
    color: #00a66a;
    font-weight: 500;
}
.shop-detail-link a:hover {
    text-decoration: underline;
}
