<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
#second article #contents p {
    font-size: 16px;
}

#second article #contents .group {
    clear: both;
    border: solid 5px #d5eeff;
    border-radius: 10px;
    margin: 20px 0 0;
    padding: 20px;
}

#second article #contents .group:first-child {
    margin-top: 0;
}

#second article #contents .group h1 {
    color: #007aec;
    border-bottom: solid 2px #007aec;
    font-size: 157%;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

#second article #contents .group table {
    border-collapse: separate;
}

#second article #contents .group th,
#second article #contents .group td {
    padding: 15px;
    font-size: 114.2857%;
    border: solid #fff;
    border-width: 0 2px 2px 0;
}

#second article #contents .group th {
    background: #d9ecff;
    color: #007aec;
    font-weight: 600;
    width: 18%;
}

#second article #contents .group tr:nth-child(odd) td {
    background: #eee;
}

#second article #contents .group td ul {
    /*clear: both;*/
    overflow: hidden;
}

#second article #contents .group td ul li {
    float: left;
    display: block;
    list-style: none;
    white-space: nowrap;
}

#second #footer_grp {
    margin-top: 80px;
}


/*
---------------------------------------
select button
---------------------------------------
*/

.select-wrap {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}

.select-wrap:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #007bff;
    border-right: solid 2px #007bff;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 10%;
    margin-top: -4px;
    z-index: 2;
}

.select-wrap:before:not(:target) {
    content: none\9;
}


/*.select-wrap:after {
	content: '';
    width: 20%;
    height: 90%;
    position: absolute;
    top: 2px;
    right: 2px;
    background: #fff;
    border-radius: 0 8px 8px 0;
    z-index: 1;
}*/

select {
    outline: none;
    text-indent: 0.01px;
    text-overflow: '';
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: solid 2px #007bff;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    box-shadow: 0px 3px 0px 0px #007bff;
    -moz-box-shadow: 0px 3px 0px 0px #007bff;
    -webkit-box-shadow: 0px 3px 0px 0px #007bff;
    padding: 6px 10px;
    width: 220px;
    box-sizing: border-box;
    background: #fff;
}

select:hover {
    background: #d9ecff;
    transition: 0.5s;
    box-shadow: none;
}

select option {
    background-color: #fff;
    color: #333;
}

select::-ms-expand {
    display: none;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #828c9a;
}


/*
---------------------------------------
checkbox, radio
---------------------------------------
*/

input[type=radio],
input[type=checkbox] {
    display: none;
}

.checkbox {
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    margin: 0 20px 8px 0;
    padding: 0 12px 0 42px;
    vertical-align: middle;
    cursor: pointer;
}

.checkbox:before {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 21px;
    display: block;
    margin-top: -7px;
    width: 5px;
    height: 9px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
}

.checkbox:after {
    border: 2px solid #007aec;
    content: '';
    -webkit-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
    position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    background: #fff;
}

input[type=checkbox]:checked+.checkbox:after {
    border-color: #f8007b;
    background: #f8007b;
}

input[type=checkbox]:checked+.checkbox:before {
    opacity: 1;
}

.radio {
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    margin: 0 20px 0 0;
    padding: 0 12px 0 25px;
    vertical-align: middle;
    cursor: pointer;
}

.radio:after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    content: '';
    background: #fff;
    border-radius: 50%;
    border: #007aec solid 2px;
}

.radio:before {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 5px;
    display: block;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f8007b;
    content: '';
    opacity: 0;
    z-index: 10;
}

input[type=radio]:checked+.radio:before {
    opacity: 1;
}


/*
---------------------------------------
stages
---------------------------------------
*/

.stage {
    overflow: hidden;
    margin-bottom: 20px;
}

.stage li {
    font-size: 20px;
    color: #007aec;
    background: #ddefff;
    border-top: #007aec solid 1px;
    border-bottom: #007aec solid 1px;
    border-left: #007aec solid 1px;
    width: 30%;
    height: 60px;
    line-height: 60px;
    float: left;
    margin-right: 5%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.stage li:after {
    content: '';
    width: 41px;
    height: 41px;
    border: 0px;
    border-top: solid 1px #007aec;
    border-right: solid 1px #007aec;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: -21px;
    margin-top: -21px;
    background: #ddefff;
    z-index: -1;
}

.stage li:last-child {
    margin-right: 0;
    border-right: #007aec solid 1px;
}

.stage li:last-child:after {
    content: none;
}

.stage li.current {
    color: #fff;
    background: #007aec;
}

.stage li.current:after {
    background: #007aec;
}


/*
---------------------------------------
notice
---------------------------------------
*/

.notice {
    margin-bottom: 20px;
}

.notice a {
    display: block;
    color: #007aec;
    text-decoration: underline;
}


/*
---------------------------------------
contact form
---------------------------------------
*/

.form {
    margin-top: 20px;
}

.form table {
    width: 100%;
}

.form table th {
    width: 28% !important;
    position: relative;
    box-sizing: border-box;
}

.form table td {
    box-sizing: border-box;
}

.form table tr:nth-child(even) td {
    background: #fafafa !important;
}

.form table tr:last-child th,
.form table tr:last-child td {
    border-bottom: none !important;
}

.must {
    color: #f8007b;
    width: 46px;
    height: 26px;
    line-height: 1;
    padding: 5px;
    border: #f8007b solid 2px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    display: inline;
    float: right;
}

.br {
    display: block;
}

.notes {
    display: block;
    font-size: 14px !important;
    margin-top: 5px;
}

.notes2 {
    margin-top: 15px;
}

.w30 {
    width: 30%;
}

.w40 {
    width: 40%;
}

.w90 {
    width: 90%;
}

.link {
    margin-left: 1em;
    color: #007aec !important;
    text-decoration: underline;
}

.form input[type=text],
.form input[type=email],
.form input[type=tel] {
    padding: 4px;
    -webkit-appearance: none;
    border-radius: 0;
    border: #999999 solid 1px;
    box-shadow: none;
    font-size: 16px;
    /*スマホ時のズーム防止用*/
    box-sizing: border-box;
}

.form textarea {
    -webkit-appearance: none;
    border-radius: 0;
    border: #999999 solid 1px;
    padding: 2%;
    display: block;
    margin: 0 !important;
    box-shadow: none;
    min-height: 150px;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
}

.form .desire li {
    font-weight: 600;
    margin-bottom: 10px;
}

.form .desire input,
.form .desire div {
    font-weight: normal;
}

.form .desire input {
    width: 140px;
}

.form .desire select {
    width: 150px;
    padding: 4px 10px;
}

.form .desire .select-wrap {
    top: -3px;
}

.form .desire .select-wrap:before {
    right: 7%;
}

img.ui-datepicker-trigger {
    cursor: pointer;
    margin-left: 5px!important;
    position: relative;
    top: 14px;
    width: 40px;
}


/* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */

:placeholder-shown {
    color: #999;
    font-size: 16px;
}


/* Google Chrome, Safari, Opera 15+, Android, iOS */

::-webkit-input-placeholder {
    color: #999;
}


/* Firefox 18- */

:-moz-placeholder {
    color: #999;
    opacity: 1;
}


/* Firefox 19+ */

::-moz-placeholder {
    color: #999;
    opacity: 1;
}


/* IE 10+ */

:-ms-input-placeholder {
    color: #999;
}

#intro {
    border-top: #007aec solid 4px;
    padding: 4.8%;
    box-sizing: border-box;
    background: url(img/intro_bg.png) no-repeat 100% 0 #f4faff;
    background-size: 60.4878049% auto;
    margin-bottom: 20px;
}

#intro h1 {
    font-family: Georgia, 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    font-size: 32px;
    color: #007aec;
    margin-bottom: 15px;
    padding-right: 31%;
}

#wishes&gt;section:first-of-type {
    margin-bottom: 20px;
}

.head {
    color: #fff;
    font-size: 20px;
    height: 50px;
    line-height: 50px;
    background: #007aec;
    padding-left: 20px;
    margin-bottom: 10px;
}

#wishes h3 {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    background: #d9ecff;
    padding-left: 20px;
    margin-bottom: 10px;
}

#wishes ul {
    overflow: hidden;
}

#wishes textarea {
    min-height: 0;
}

.form .mt20 .checkbox {
    margin: 0 !important;
}

.details {
    overflow: hidden;
    padding: 5px 0 10px;
}

.details li {
    font-size: 16px;
    float: left;
    width: 33.33333%;
}

.floorplan li {
    display: inline-block;
    width: 49%;
}

.floorplan .checkbox {
    margin-right: 0;
    padding-right: 0;
}

#about {
    background: #eaeaea;
    padding: 2.5%;
    margin-bottom: 15px;
}

#about p {
    font-size: 18px !important;
    font-weight: 600;
    color: #007aec;
    margin-bottom: 10px;
}

#about ul li {
    font-size: 16px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5em;
}

#about ul li:before {
    content: '';
    width: 16px;
    height: 16px;
    background: #007aec;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 0;
}

#about ul li:last-child {
    margin-bottom: 0;
}


/*
---------------------------------------
.index table
---------------------------------------
*/

.index table {
    width: 100%;
}

.index table thead th {
    text-align: center;
    padding: 10px 10px 8px 10px !important;
    width: auto !important;
    font-size: 14px !important;
    line-height: 1.285;
}

.index table tbody th {
    width: auto !important;
    text-align: center;
}

.index table tbody th,
.index table td {
    padding: 15px !important;
    line-height: 1.33;
    font-size: 15px !important;
    border-right: none !important;
}

.index table thead th:last-of-type,
.index table td:last-of-type {
    border-right: none !important;
}

.index table tbody tr:nth-of-type(even) th,
.index table tr:nth-of-type(even) td {
    background: #eeeeee !important;
}

.index table tbody tr:nth-of-type(odd) th,
.index table tr:nth-of-type(odd) td {
    background: #fafafa !important;
}

.index table tbody th .checkbox {
    padding: 0;
    margin: 0;
}

.index table tbody th .checkbox:before {
    left: -4px;
}

.index table tbody th .checkbox:after {
    left: -10px;
}

.index table tbody td .br {
    display: block;
}

.index table tbody td[data-href] {
    cursor: pointer;
}

.index table tbody td ul {
    overflow: visible !important;
}

.index table tbody td ul li {
    float: none !important;
}

.mansion {
    background: #f8007b;
    border-radius: 9px;
    color: #fff;
    padding: 0 7px !important;
    font-size: 85.714%;
    line-height: 18px;
    margin: 0 0 5px 0;
    display: inline-block !important;
}

.index table tbody td a {
    color: #007aec;
    text-decoration: underline;
}

.code {
    font-size: 13px !important;
}


/*
---------------------------------------
confirm box
---------------------------------------
*/

.confirm_box {
    background: #ddefff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.confirm_box p:first-of-type a {
    color: #007aec;
    text-decoration: underline;
    background: url(../common/img/ico_window02.png) no-repeat 100% 50%;
    background-size: 14px auto;
    padding-right: 17px;
    margin-right: 3px;
}

.confirm_box .btn {
    margin-top: 20px;
    width: 380px;
    height: 54px;
    line-height: 54px;
}

.confirm_box .btn a {
    height: 54px;
    box-sizing: border-box;
    padding-top: 0;
}


/*
---------------------------------------
login
---------------------------------------
*/

#log_in #contents {
    float: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

#log_in .form table {
    width: 77% !important;
    margin: 0 auto !important;
}

#log_in .group tr td {
    background: #eee !important;
}

#auto {
    margin: 10px 0 20px 11.5%;
}

#auto .checkbox {
    padding-left: 27px;
}

#auto .checkbox:before {
    left: 6px;
}

#auto .checkbox:after {
    left: 0;
}

#log_in .btn {
    height: 46px !important;
    line-height: 46px !important;
    margin: 0 auto 30px !important;
    width: 280px !important;
}

#log_in .btn a {
    padding-top: 0 !important;
    font-size: 19px;
}

#log_in .btn button {
    font-size: 19px;
}

#log_in .btn a::before {
    width: 8px;
    height: 8px;
    border-top: solid 3px #007bff;
    border-right: solid 3px #007bff;
}

#log_in #about {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .index table thead {
        display: none;
    }
    .index table tbody tr {
        position: relative;
        display: table;
        width: 100%;
    }
    .index table tbody tr:before {
        content: '';
        width: 8px;
        height: 8px;
        border: 0px;
        border-top: solid 4px #007bff;
        border-right: solid 4px #007bff;
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: 50%;
        right: 5%;
        margin-top: -4px;
    }
    .index table tbody th {
        display: table-cell !important;
        width: 10% !important;
        border-width: 2px 2px 0 0 !important;
        border-top: solid #fff 2px !important;
        border-right: solid #fff 2px !important;
    }
    .index table tbody td {
        display: block;
        width: 100%;
        border-width: 0 !important;
        text-align: left;
        margin: 0 !important;
        box-sizing: border-box;
    }
    .index table tbody td:first-of-type {
        border-top: solid #fff 2px !important;
    }
    .index table tbody td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        color: #007aec;
        width: 135px;
    }
    .index table tbody td ul {
        padding-left: 135px;
    }
    .index table tbody td ul li {
        display: inline-block !important;
    }
}

@media (max-width: 1024px) {
    select {
        width: 180px;
    }
    .details li {
        width: 50%;
    }
    .stage li {
        width: 29%;
        margin-right: 6%;
        font-size: 18px;
    }
}

@media (max-width: 990px) {
    .form .desire input {
        width: auto;
    }
    .form .desire .select-wrap {
        display: block;
        width: 150px;
        top: 5px;
    }
}

@media screen and (max-width: 899px) {
    #second #side {
        margin: 40px 0 0 0;
    }
}

@media (max-width: 768px) {
    #second article #contents .group td ul li {
        float: none;
    }
    #page_ttl_bg {
        margin-bottom: 20px;
    }
    .stage li {
        width: 30%;
        margin-right: 5%;
        height: 45px;
        line-height: 45px;
    }
    .stage li:after {
        right: -14px;
    }
    .w30 {
        width: 40%;
    }
    .w40,
    .w90 {
        width: 100%;
    }
    .confirm_box p:first-of-type br {
        display: none;
    }
    #intro {
        padding: 2%;
    }
    .floorplan li {
        float: left !important;
        width: 50%;
    }
    #log_in .form table {
        width: 100% !important;
    }
    #auto {
        margin-left: 0 !important;
    }
}

@media (max-width: 640px) {
    .stage {
        display: none;
    }
    .form table th,
    .form table td {
        display: block !important;
        width: 100% !important;
        border: none !important;
    }
    .form table td {
        margin-bottom: 10px;
    }
    .form table tr:last-child td {
        margin-bottom: 0;
    }
    .must {
        float: none;
        margin-right: 0.5em;
        height: 24px;
        padding: 4px;
    }
    .br {
        display: inline;
    }
    .link {
        display: block;
        margin: 10px 0 0 0;
    }
    .index table tbody th {
        width: 15% !important;
    }
    .index table tbody td:before {
        width: 100%;
        margin-bottom: 3px;
    }
    .index table tbody td ul {
        padding-left: 0;
    }
    .check li {
        float: none !important;
    }
    .checkbox {
        margin-right: 0;
        padding: 0 0 0 25px;
    }
    .checkbox:before {
        left: 6px;
    }
    .checkbox:after {
        left: 0;
    }
    #intro h1 {
        padding-right: 0;
        text-shadow: #fff 1px 1px 0px, #fff -1px 1px 0px, #fff 1px -1px 0px, #fff -1px -1px 0px;
    }
    #intro p {
        text-shadow: #fff 1px 1px 0px, #fff -1px 1px 0px, #fff 1px -1px 0px, #fff -1px -1px 0px;
    }
    #intro p br {
        display: none;
    }
}

@media (max-width: 400px) {
    #second article #contents .group {
        padding: 2%;
    }
    #second article #contents .group h1 {
        margin-bottom: 10px;
        padding-bottom: 0;
    }
    #second article #contents .group th,
    #second article #contents .group td {
        padding: 3%;
    }
    select {
        width: 120px;
    }
    .w30 {
        width: 49%;
    }
    .confirm_box {
        padding: 4% 2%;
    }
    .confirm_box p:first-child {
        text-align: left;
    }
    .confirm_box .btn {
        width: 280px;
        font-size: 14px !important;
        margin-top: 10px;
        height: 50px;
        line-height: 50px;
    }
    .confirm_box .btn a {
        height: 50px;
    }
    .form .desire input {
        width: 140px;
    }
}
</pre></body></html>