@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap');

#RthCustomizeW{
    background-color: #FBF5EF;
}
p{
    color: #4B2934;
    text-align: center;
    /* Noto Serif JP_H3 */
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
}
._inner {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}

._section {
    width: 100%;
    height: 100%;
}

.mv{
    width: 100%;
    background-color: #FBF5EF;
    padding-top: 40px;
}
.mv-title{
    margin-bottom: 40px;
}
.mv-img{
    margin-bottom: 40px;
}
.nav{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 32px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.nav-logo{
    width: 30%;
}
.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
}
.nav-menu a{
    color: #4B2934;
    /* Noto Serif JP_p */
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    text-decoration: none;
}

._title{
    text-align: center;
    margin-bottom: 40px;
}
._title h2{
    color: #4B2934;
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: clamp(1.5rem, 0.893rem + 2.59vw, 4rem);
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    text-align: center;
}
._title span{
    color: #4B2934;
    text-align: center;
    /* Noto Serif JP_p */
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    text-align: center;
}

._btn{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 240px;
    height: 50px;
    gap: 8px;
    border-radius: 30px;
    border: 0.5px solid #A7122F;    
    margin: 0 auto;
}
._btn::after{
    content: "";
    background-image: url(../img/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 10px;
    z-index: 2;
}
._btn::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 234px;
    height: 44px;
    border-radius: 30px;
    border: 0.5px solid #A7122F;
    background: #FFF;
    z-index: 1;
}
._btn:hover::before{
    background: #A7122F;
}
._btn:hover::after{
    background-image: url(../img/arrow-white.png);
}
._btn p{
    position: relative;
    z-index: 2;
    color:#4B2934;
    text-align: center;
    /* Noto Serif JP_p */
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
}
._btn:hover p{
    color: #fff;
}

.footer{
    background: #232323;
    padding: 40px 0;
}
.footer-inner img{
    width: 380px;
    margin-bottom: 8px;
}
.footer-text p{
    color: #fff;
    text-align: left;
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
}

.room-specs {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.specs-list {
    display: grid;
    padding: 0 0 2rem 0 ;
    background: #FBF5EF;
    border-radius: 8px;
}
.specs-item {
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #A7122F;
}

.specs-item dt{
    width: 30%;
    color: #4B2934;
    /* Noto Serif JP_p */
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
}
.specs-item dd{
    color:#4B2934;
    /* Noto Serif JP_p */
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
}

.specs-item dt {
    color: #4B2934;
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-weight: 500;
}

.specs-item dd {
    color: #4B2934;
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-weight: 700;
    margin-left: 2rem;
}

._flex{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
}
._flex-img{
    width: 40%;
}
._flex-text{
    width: 55%;
}
._flex-text h3{
    color: #4B2934;
    /* Noto Serif JP_H3 */
    font-family: "Noto Serif JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    display: flex;
    align-items: center;
    justify-content: left;
}
._flex-text h3::before{
    content: "";
    display: block;
    width: 2px;
    height: 20px;
    background-color: #A7122F;
    margin-right: 8px;
}
._flex-text p{
    text-align: left;
}
._flex-text-title{
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 16px;
}
._flex-text-title span{
    color:#4B2934;
    font-family: "Noto Serif JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}
._flex-text h4{
    color:#4B2934;
    /* Noto Serif JP_p */
    font-family: "Noto Serif JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    margin-bottom: 16px;
}
