@charset "utf-8";
/* 間取り */
/*----------------------------------------------------------- 一覧ページ */

#planListBox ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#planListBox ul li {
    list-style-type: none;
    width: calc(100% / 3 - 20px);
    padding: 0;
    margin: 10px;
    background: #5477ad;
}

@media screen and (max-width: 1000px) {
#planListBox ul li {
    width: calc(100% / 2 - 20px);
}
}

@media screen and (max-width: 640px) {
#planListBox ul li {
    width: calc(100% - 20px);
}
}
#planListBox h2 {
    font-size: 170%;
}
#planListBox ul li a {
    padding: 20px;
    display: block;
    background: #32577d;
    height: 100%;
    box-sizing: border-box;
}
#planListBox ul li a h2 {
    text-align: center;
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px dashed #ffffff;
    letter-spacing: 5px;
    color: #ffffff;
}
#planListBox ul li a h2 span {
    font-size: 60%;
    margin: 0 0 0 5px;
    color: #ffffff;
}
#planListBox ul li a h3 {
    text-align: center;
    color: #ffffff;
    font-size: 130%;
    padding: 10px 0 0;
    border: none;
}
#planListBox ul li a h3 small {
    font-size: 60%;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
}


#planListBox ul li a h4 {
    text-align: center;
    color: #ffffff;
    font-size: 100%;
}
#planListBox ul li a h4 strong {color: #ffffff;font-size: 150%;}

#planListBox ul li a h4 small {
    display: inline-block;
    color: #ffffff;
}
@media screen and (max-width: 640px) {
#planListBox ul li a h4 small {
    margin-left: 1em;
}

}
/*----------------------------------------------------------- 詳細ページ */
#planBox {
    display: flex;
    flex-flow: column;
}

#planBox h2 {
    font-size: 160%;
}
#planBox h2 small {
    font-family: 'Noto Serif JP', serif;
    font-size: 70%;
    font-weight: 600;
    display: inline-block;
    padding: 10px;
    letter-spacing: 2px;
    color:#333;
}
#planBox ul {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    width: 500px;
    margin: 0 auto 50px;
}
#planBox li {
    list-style-type: none;
    border-bottom: 1px dashed #999;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 10px;
}
#planBox li strong {
    font-size: 140%;
    display: inline-block;
    margin: 0 5px;
}
#planBox li small {
    font-size: 80%;
}

.planImgPC {
display: block;
}
.planImgSP {
display: none;
}


/*----------------------------------------------------------- 640px */
@media screen and (max-width: 640px) {
#planBox ul {
width: 100%;
}
#planBox img {
    width: 100%;
}
.planImgPC {
display: none;
}
.planImgSP {
display: block;
}

}
