@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  roomplan.css
// style info :  スタイル指定
=================================================================== */
#roomplan {
    background: #eee8e4;
/*    margin: 100px 0 0;*/
    padding: 100px 0;
}
.roomplan2 {
    background: #eee8e4;
    padding: 25px 0 100px;
}
#roomplan h2 {
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    border: none;
    margin-bottom: 30px;
    font-size: 24px;
    color: #222;
    font-weight: normal;
}

#roomplan h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #7f7269;
}

#roomplan h2 + h3 {
    margin-bottom: 50px;
    text-align: center;
    border: none;
    font-size: 24px;
    color: #523622;
    font-weight: normal;
}
#roomplan h2 + h3 + p {
    margin-bottom: 30px;
    color: #222;
    font-weight: normal;
    line-height: 2;
}

#roomplan ul {
    display: flex;
    flex-wrap: wrap;
}
#roomplan ul li {
    width: 47.5%;
    margin: 0 1.25% 20px;
}
#roomplan ul li a {
    display: block;
    padding: 30px 15px;
    font-size: 18px;
    color: #7d554d;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border-radius: 5px;
    letter-spacing: .05em;
    transition: .3s all ease-in-out;
}
#roomplan ul li a:hover {
    box-shadow: 0 0 0 rgba(0,0,0,.1);
    transform: scale(.97);
}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 767px) {
    #roomplan {
        margin: 50px 0 0;
        padding: 50px 0;
    }
    #roomplan h2 + h3 {
        margin-bottom: 30px;
        font-size: 20px;
    }
#roomplan ul li {
    width: 90%;
}
}
@media screen and (max-width: 420px) {
}

/* -----------------------------------------------------
planDetailWrap
----------------------------------------------------- */

.planDetail .type,
.planDetail .ldk {
  margin-bottom: 10px;
  font-size: 24px;
  font-family: 'Bellefair', serif !important;
  font-weight: 400;
}
.planDetail .type {
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e5e5;
}
.planDetail .type span {
  font-size: 45px;
}
.planDetail .ldk span {
  font-size: 36px;
}
.planDetail .area {
  margin-bottom: 10px;
  font-size: 14px;
  font-family: 'Bellefair', serif !important;
  font-weight: 300;
}
.planDetail .area span {
  font-size: 24px;
}
.planDetail .area span.big {
  font-size: 36px;
}

/* フォーム */
.formComment {
    padding: 100px 0 20px;
    text-align: center;
}

.formComment p {
    color: #cc0000;
    font-size: 16px;
}

.formWrap {
    text-align: center;
}

form {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px auto 0;
}

input[type="text"],
input[type="password"]  {
    max-width: 300px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input[type="submit"] {
    max-width: 300px;
    width: 100%;
    padding: 10px;
    color: #fff;
    font-family: YakuHanMP, 'Noto Serif JP', "游明朝", YuMincho, "HG明朝B", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ 明朝", serif;
    background: #403b39;
    border-radius: 2px;
}

.formWrap p {
    margin-top: 60px;
}

.formWrap .entrybtn {
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 10px auto 0;
    padding: 10px;
    color: #fff;
    background: #C7ABA0;
    border-radius: 2px;
}


