@charset "UTF-8";

/* 共通の設定 --------------------- */
:root{
    --resultsPage_backgroundColor: #f9f9f9;
    --resultsPage_basicTextColor: #383838;
    --resultsPage_mainThemeColor: #c900d8;
    --resultsPage_subThemeColor: #e479ec;
}




/* titleSection --------------------- */
.mainSection01{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: var(--resultsPage_backgroundColor);
    padding-top: 60px;
}

.mainSection01__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 1000px;
    padding-bottom: 60px;
    border-bottom: solid #ddd 1px;

}

.mainSection01__yorugaoBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 5px 12px;
    background-color: var(--resultsPage_mainThemeColor);
    color: #fff;
    font-weight: 500;
    font-size: 13px;
}

.mainSection01__titleBox{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    color: var(--resultsPage_basicTextColor);
    font-weight: 700;
    font-size: 26px;
    margin-top: 8px;
}

.mainSection01__taxonomyBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 400px;
    height: auto;
    margin-top: 30px;
    padding: 15px 0;
    background-color: #fff;
    border-radius: 2rem;
}

.mainSection01__taxonomyBox1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    font-weight: 500;
    font-size: 16px;
    color: var(--resultsPage_basicTextColor);
}

.mainSection01__taxonomyBox a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    font-weight: 400;
    font-size: 11px;
    color: var(--resultsPage_subThemeColor);
    margin-top: 4px;
    transition: .2s;
}

.mainSection01__taxonomyBox a:hover{
    text-decoration: underline;
    transition: .2s;
}


/* 検索結果一覧 --------------------- */
.mainSection02{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-color: var(--resultsPage_backgroundColor);
}

.mainSection02__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 1000px;
    margin-top: -25px;
}

.mainSection02__shopDataCard{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 800px;
    height: auto;
    padding: 30px 25px;
    background-color: #fff;
    border-top: solid #fddaff 6px;
    margin: 25px 0;
    border-radius: 8px;
    transition: .1s;
}

.mainSection02__shopDataCard:hover{
    background-color: #fbfbfb;
    transition: .1s;
}

.mainSection02__shopDataContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.mainSection02__shopData--shopName{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
}

.mainSection02__shopData--shopName1{
    font-weight: 600;
    font-size: 20px;
    color: var(--resultsPage_basicTextColor);
}

.mainSection02__shopData--shopName2{
    font-weight: 400;
    font-size: 14px;
    color: var(--resultsPage_basicTextColor);
    margin-left: 5px;
}

.mainSection02__shopTaxonomyList{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 4px;
}

.mainSection02__shopTaxonomy{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 3px 6px;
    font-weight: 400;
    font-size: 11.5px;
    background-color: var(--resultsPage_mainThemeColor);
    color: #fff;
}

.mainSection02__shopData--shopImage{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 15px;
}

.mainSection02__shopData--shopImage img{
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
}

.mainSection02__shopData--infoTable{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.mainSection02__shopData--infoTableRow{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 600px;
    height: auto;
    padding: 20px 0;
    border-bottom: solid #ccc .8px;
}

.mainSection02__shopData--infoTableRow:nth-child(3){
    border-bottom: none;
}

.mainSection02__shopData--infoTableRowTitle{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 160px;
    height: auto;
    font-weight: 400;
    font-size: 14px;
    color: var(--resultsPage_basicTextColor);
    padding: 0 20px;
}

.mainSection02__shopData--infoTableRowTitle svg{
    display: block;
    width: 20px;
    height: auto;
    fill: var(--resultsPage_basicTextColor);
    margin-right: 7px;
}

.mainSection02__shopData--infoTableRowContent1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 160px);
    height: auto;
    font-weight: 500;
    font-size: 16px;
    color: var(--resultsPage_basicTextColor);
    padding: 0 20px;
}

.mainSection02__shopData--infoTableRowContent1Top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    font-weight: 500;
    font-size: 13px;
    color: var(--resultsPage_mainThemeColor);
}

.mainSection02__shopData--infoTableRowContent1Top span{
    font-weight: 600;
    font-size: 20px;
    color: var(--resultsPage_mainThemeColor);
}

.mainSection02__shopData--infoTableRowContent1Bottom{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
    font-weight: 500;
    font-size: 11.5px;
    color: var(--resultsPage_basicTextColor);
}

.mainSection02__shopData--infoTableRowContent2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100% - 160px);
    height: auto;
    font-weight: 500;
    font-size: 14px;
    color: var(--resultsPage_basicTextColor);
    padding: 0 20px;
}

.mainSection02__shopData--applyBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: auto;
}

.mainSection02__shopData--webApply{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: var(--resultsPage_mainThemeColor);
    z-index: 50;
}

.mainSection02__shopData--oneLiner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 600;
    font-weight: 500;
    font-size: 13px;
    color: var(--resultsPage_basicTextColor);
    padding: 10px 20px;
    background-color: hsl(296, 100%, 97%);
    margin-top: 30px;
    border-radius: 8px;
}

@media screen and (max-width:500px) {
    .mainSection02__shopData--infoTableRow{
        flex-direction: column;
    }

    .mainSection02__shopData--infoTableRowTitle{
        width: 100%;
    }

    .mainSection02__shopData--infoTableRowContent1{
        width: 100%;
        margin-top: 10px;
    }

    .mainSection02__shopData--infoTableRowContent2{
        width: 100%;
        margin-top: 10px;
    }
}

.mainSection01__selectedFeatures{
	display: inline;
	font-size: 11px;
	color: #555;
	margin-top: 5px;
	margin-bottom: 8px;
}



/* notFound --------------------- */
.mainSection99__notFoundContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.mainSection99__notFoundContainer img{
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
}

.mainSection99__notFoundContainer span{
    display: block;
    width: 100%;
    height: auto;
    margin-top: 15px;
    font-weight: 400;
    font-size: 18px;
    color: var(--resultsPage_basicTextColor);
    text-align: center;
}