
body {
    margin: 0;
    padding: 0;
    background-color: rgb(26, 26, 27);
    color: white;
    font-family: "游明朝","Noto Serif JP","Bodoni MT";
}
h1,h2,h3,h4,p {
    margin: 0;
    padding: 0;
    font-family: "游明朝","Bodoni MT",serif;
    color: white;
}

h1>span {
    font-size: 20px;
    position: relative;
    top: -20px;
}

a {
    color: white;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    font-family: "Bodoni MT",serif;
}

a:hover {
    color: #C9A08D;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
}

ul {
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0px;
}

table {
    border-spacing: 0px;
}

.copyright {
    margin-block-start: 10em;
    margin-block-end: 1em;
    text-align: center;
}

.container {
    margin: 0 auto;
    text-align: center;
    padding-bottom:50px;
}

.containerfooter {
    margin: 0 auto;
    text-align: center;
}

.row {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.row2 {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.row-wrap {
    display: flex;
    flex-wrap: wrap;
}

.left {
    float: left;
}

.right {
    float: right;
}

.center {
    text-align: center;
}

.title {
    font-size: 50px;
    padding-top: 80px;
    margin-bottom: 30px;
    letter-spacing: 5px;
    line-height: 1em;
}

main {
    position: relative;
    top: 100px; /*ヘッダーの高さ分*/
}


/*read more*/
.more {
    font-size: 25px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 0px;
}

.moreLink {
    text-align: center;
    margin-top: 30px;
    font-size: 20px;
}

.moreLinkText {
    display: block;
}

/*ホバーしたときに下線矢印も同時に色を変える*/
.moreLink:hover .lineArrow  {
    border-bottom: 1px solid #C9A08D;
    border-right: 1px solid #C9A08D;
}

.moreLinkText:hover {
    color: #C9A08D;
}

.lineArrow {
width: 200px;
height: 15px;
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
    /*傾きを調節*/
transform: skew(45deg);
/*下線矢印をテキストに合わせてうまい具合にはめる*/
margin: -4px 0 0 0;
margin: 0 auto;
}

.page-title {
    height: 60px;
    line-height: 60px;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
    top: -330px;
}


/*ヘッダー---------------------------
*/

header {
    width: 100%;
    height: 100px;
    background-color: #000;
    position: fixed;
    z-index: 9999;
}

.header-logo {
    float: left;
}

.header-logo a {
    padding: 20px 0;
    display: inline-block;
}

nav {
    display: flex;
    font-size: 20px;
    margin-left: auto;
    height: 100px;
    align-items: center;
    justify-content: center;
}


nav a {
    font-family: "Noto Serif JP", serif;
    letter-spacing: 4px;
    text-align: center;
    line-height: 1.0em;
}

nav span {
    font-size: 12px;
}

.nav-center {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 5px;
    flex-grow: 1;
    margin-right: 10px;
    flex-direction: column;
}


/*光るやつ*/
.reflection {
    width: 180px;
    height: 30px;
    position: relative;
    overflow: hidden;
    background-color: #a52a2a;
    line-height: 30px;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
}

.reflection::after {
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 3s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 3s ease-in-out infinite;
}

.reflection2 {
    margin: 0 auto 20px;
    width: 200px;
    height: 40px;
    position: relative;
    overflow: hidden;
    background-color: #a52a2a;
    line-height: 40px;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
}

.reflection2::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 3s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 3s ease-in-out infinite;
}

@keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

/**/
footer {
    font-size: 12px;
    padding: 10px 0;
    margin:0px;
}


/*コンセプト-------------------------
*/
.concept {
    background-color: #000;
    position: relative;
    padding:30px 0;
}

.concept-inner {
    display: flex;
    width: 100%;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.concept-box {
    display: table;
    width: 20%;
    text-align: center;
    font-size: 27px;
    line-height: 1em;
    padding: 15px 0 20px;
    background: linear-gradient(#3a3a48, #000000);
}

.concept-box p {
    display: table-cell;
    vertical-align: middle;
}

.s {
    font-size: 20px;
}

.emp {
    font-size: 41px;
    color: #fff;
}

/*インフォメーション------------------
*/

#info {
    background-image: url(../img/info-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

#info h1 {
    color: #1a1a1b;
    padding-top: 60px;
}

#info ul {
    width: 80%;
    margin: 0 auto;
}

#info ul li {
    margin-bottom: 20px;
    border-bottom: dotted 1px #1a1a1b;
}

#info ul li a, #info .moreLinkText {
    color: #1a1a1b;
    font-size: 20px;
}

#info .lineArrow {
    border-bottom: 1px solid #1a1a1b;
    border-right: 1px solid #1a1a1b;
}

.aki {
    display: block;
    background-color: #a52a2a;
    width: 300px;
    height: 50px;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 20px;
    line-height: 50px;
    color: #fff;
    border-radius: 30px;
}

/*写真------------------------
*/
#photo{
    width: 100%;
}
#photo img{
    width: 25%;
    padding: 0;
    margin: 0;
	vertical-align: bottom;
}



/*ロケーション------------------------
*/
#location {
    width: 100%;
}

.location-img {
    position: relative;
}

.location-img p {
    font-size: 15px;
    font-weight: bold;
}
.location-img li{
    width: 33%;
    float: left;
    padding-bottom:30px;
}
.location-img img{
    width: 100%;
}

/*間取り-----------------------------
*/

#plan {
    background-image: url(../img/plan_bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

#plan .title {
    font-size: 50px;
    color: #1a1a1b;
    line-height: 1em;
}

.plan-row {
    display: flex;
    width: 100%;
    gap: 10px;
    row-gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: center;
}

.text-box {
    margin: 10px auto;
    background-color: rgba(0,0,0,0.6);
    width: 300px;
    height: 200px;
    padding: 30px;
}

.text-box hr {
    margin-top: 30px;
}

.spacer-pc {
    width: 100%;
}

/*問い合わせ---------------------------
*/
#contact {
    background-color: #000;
    padding: 50px 0;
}
.line{
    max-width: 1000px;
    margin: auto;
    border-bottom: 1px solid #fff;
}

/*ここまでトップページ-----------------------------------------------------------------------------------------------------------------------------------------------*/



/*ここからPLANページ-------------------------------------------------------------------------------------------------------------------------------------------------*/
/*※リンクのずれは、link.jsで調整*/

#mv-plan {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url(../img/plan-head.jpg);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    margin-bottom:50px;
}

.page-title {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 30px;
    text-align: center;
    position: absolute;
    top: 45%;
}


.plan-box {
    color:#000000;
    font-size: 20px;
    width: 190px;
    background-color: #fff;
    margin: 10px 0;
    padding: 0 20px 20px;
}

.plan-box {
    margin-right: 20px;
}

.plan-box p, .plan-box h3 {
    color: #000000;
}

.plan-box a {
    display: inline-block;
    color: white;
    font-size: 22px;
    font-weight: bold;
    background-color: #4e6983;
    width: 45%;
    text-align: center;
    border-radius: 20px;
    margin-left: 5px;
}

.plan-box p:nth-child(4) {
    display: inline-block;
    color: white;
    font-size: 22px;
    font-weight: bold;
    background-color: #4e6983;
    width: 95%;
    text-align: center;
    border-radius: 20px;
}

.plan-box h3 {
    font-size: 50px;
}

h3 span{
    font-size: 30px;
}

.size-30 {
    font-size: 30px;
}

.overview-inner2 {
    margin: 0 auto;
    text-align: center;
    display: block;
    padding-bottom: 30px;
    background-image: url(../img/plan_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto;
}
.overview-inner2 h2{
    color: #000000;
    margin-top: 50px;
    padding: 60px 0 40px;
    font-size: 35px;
}
.overview-inner {
    margin: 0 auto;
    text-align: center;
    display: block;
    padding-bottom: 30px;
    background-image: url(../img/plan_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
}

.overview-inner h2{
    color: #000000;
    padding: 60px 0 40px;
    font-size: 35px;
}

.kyouyu-gaiyou{
    margin: 30px auto;
    max-width: 1000px;
    width: 100%;
    background-color: #fff;
    color: #1a1a1b;
    border: 2px solid #e4e3df;
    border-collapse: collapse;
}

.kyouyu-gaiyou tr {
    border: 2px solid #e4e3df;
    border-collapse: collapse;
}

.kyouyu-gaiyou th {
    width: 170px;
    background-color: #1a1a1b;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-right: 2px solid #e4e3df;
}

.kyouyu-gaiyou td {
    text-align: left;
    padding: 10px;
}

.gaiyouimg {
    width: 48%;
}
.gaiyou {
    color: #1a1a1b;
    background-color: white;
    padding: 10px;
    margin-left: 10px;
    width: 50%;
}

.gaiyou tr {
    height: 40px;
}

.gaiyou th {
    background-color: #1a1a1b;
    color: #fff;
    width: 100px;
    font-size: 16px;
}

.gaiyou td {
    font-size: 20px;
    padding-left: 20px;
    text-align: left;
}

.red {
    color: #a52a2a;
    font-size: 36px!important;
}

.red span {
    font-size: 20px;
}

.madori {
    font-size: 16px;
}

.kyouyu {
    margin: 20px auto;
    background-color: rgb(228, 223, 211);
    padding: 15px 0 10px 0;
}

.icon {
    padding: 30px 0 0;
    margin: 40px 0;
}

.icon img {
    margin-right: -10px;
    width: 13%;
    max-width: 130px;
}

.setubi {
    text-align: center;
    margin-top: 10px;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 0;
    }

.setubi a {
    margin: 5px;
}

.moushikomibtn {
    display: inline-block;
    color: white;
    font-size: 22px;
    font-weight: bold;
    background-color: #4e6983;
    width: 45%;
    text-align: center;
    border-radius: 20px;
    margin-left: 5px;
}

.moushikomibtn:hover {
    background-color: #3a5670;
}

/*メールフォーム*/
form input[type="text"], form input[type="email"], form input[type="password"], form select {
    line-height: 1.25em;
}
form input[type="text"], form input[type="email"], form input[type="password"], form select, form textarea {
    position: relative;
    -webkit-appearance: none;
    display: block;
    border: 0;
    outline: 0;
    background: #fff;
    width: 80%;
    max-width: 800px;
    padding: 0.75em 1em 0.75em 1em;
    box-shadow: inset 0 0.1em 0.1em 0 rgb(0 0 0 / 5%);
    border: solid 1px rgba(0, 0, 0, 0.15);
    -moz-transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    margin: 10px auto;
}
#mail span {
    background-color: #a52a2a;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 50px;
}
input[type="submit"] {
    position: relative;
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    padding: 10px;
    background-color: #a52a2a;
    border: 0;
    cursor: pointer;
    width: 30%;
    border-radius: 50px;
    font-size: 19px;
    
}
input[type="reset"] {
    position: relative;
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    padding: 10px;
    background-color: #aaa;
    border: 0;
    cursor: pointer;
    width: 20%;
    border-radius: 50px;
}
input[type="button"], button, .button {
    position: relative;
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    padding: 10px;
    background-color: #aaa;
    border: 0;
    cursor: pointer;
    width: 20%;
    border-radius: 50px;
}


/*ここからlocationページ-------------------------------------------------------------------------------------------------------------------------------------------------*/
#mv-location {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url(../img/location-head.jpg);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

.box-location {
    color: white;
    width: 100%;
    margin: auto;
    max-width: 1000px;
}

.title-l {
    border-bottom: #C9A08D 1px solid;
    text-align: left;
    font-size: 25px;
}

.box-location-iner {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.box-location-item{
    width:32%;
}
/*ここからアクセスページ-------------------------------------------------------------------------------------------------------------------------------------------------*/
#mv-access {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url(../img/access-head.jpg);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    margin-bottom: 50px;
}

#access h1 {
    padding-top: 30px;
    margin-bottom: 30px;
    font-size: 30px;
}

#access p {
    color: white;
}

#access a{
    margin: 20px auto;
}
.accsessimg {
    padding: 10px;
}


/*ここからblogページ-------------------------------------------------------------------------------------------------------------------------------------------------*/

#mv-news {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url(../img/news-head.jpg);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

#blog h1 {
    padding-top: 30px;
    font-size: 30px;
    text-align: center;
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    margin:0 auto;
    text-align: center;
}

.img-box {
    width: 1000px;
    text-align: center;
}

.blog-img {
    width: 900px;
    object-fit: cover;
}


.accordion-area section {
  background-color: #fff;
  margin-top: 30px;
  padding-bottom: 30px;
}


.blog-title {
    background-color: #e4dfd3;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px 0;
    transition: all .5s ease;
    text-align: center;
    color: #000000;
    line-height: 1em;
}

.date {
    color: #000000
}


.blog-text-box p {
    color: #000000;
}



/*ここから不動産業者様へのページ----------------------------------------------------------------------------------------------------------------------------------------*/

#mousikomi main h2 {
    padding-top: 30px;
}

/*ここから予約ページ-------------------------------------------------------------------------------------------------------------------------------------------------*/

#mv-yoyaku {
    position: relative;
    width: 100%;
    height: 100px;
    margin-bottom:80px;
}

.yoyaku-table {
    background-color: #fff;
    color: black;
}

.yoyaku-table, .yoyaku-table td, .yoyaku-table th {
    width:1000px;
    margin:auto;
    border: 1px solid #000;
    border-collapse: collapse;
}

.yoyaku-table td, .yoyaku-table th {
    padding: 3px;
	height: 25px;
}

.yoyaku-table th {
    width:300px;
	background:#000;
    color:#fff;
}

.yoyaku-table th {
    width: 200px;
}

.list{
    margin:0px;
    padding:0px;
    list-style: none;
    }
    
.list li{
    border-bottom: 0x solid #000;
    border-right: 1px solid #000;
}

.ab {
    width:1000px;
    margin:auto;
    overflow: hidden;
    display: flex;
    }
.ab li {
    padding: 10px 0;
    text-align: center;
	background:#000;
    color: #fff;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}
.ab li:nth-child(1){
    width: 100px;
}
.ab li:nth-child(2){
    width: 500px;
    background:#a52a2a;
}
.ab li:nth-child(3){
    width: 400px;
    background:#003c97;
}
    
.type {
width:1000px;
margin:auto;
overflow: hidden;
display: flex;
}
    
.type li {
font-weight: bold;
width: 100px;
padding:10px 0;
text-align: center;
background:#000;
color:#fff;
border-bottom: 1px solid #000;
border-right: 1px solid #000;
}
.type li:nth-child(1){
width: 100px;
padding:10px 0;
background:#000;
color:#fff;
border-top: 1px solid #fff;
}
.type li:nth-child(n+2):nth-child(-n+6) {
    background:#a52a2a;
}
.type li:nth-child(n+7):nth-child(-n+10) {
    background:#003c97;
}
    
    
.list {
width:1000px;
margin:auto;
overflow: hidden;
display: flex;
background-color: #fff;
}
.list li {
width: 100px;
text-align: center;
color:#666;
}
.list li:nth-child(1){
width: 100px;
padding:20px 0;
background:#000;
color:#fff;
font-weight: bold;
font-size: 20px;
border-top: 1px solid #fff;
}

.list li:nth-child(n+2):nth-child(-n+6) {
}
.list li:nth-child(n+7):nth-child(-n+10) {
}

.list li:nth-child(n+2):nth-child(-n+7) .room{
background: #8b3c3c;
color:#fff;
font-weight: bold;
}
.list li:nth-child(n+7):nth-child(-n+10) .room{    
background: #1a407b;
color:#fff;
font-weight: bold;
}
    
.menseki{
    font-size:12px;
    }
    
.yachin{
font-size:18px;
font-weight: bold;
}
.yachin{
font-size:18px;
font-weight: bold;
color:#000;
}
.yen{
font-size:12px;
color:#000;
}

.sumi{
background:#999;
}

.sumi .yachin{
color:#ccc;
}

.tenant {
font-weight: bold;
width:1000px;
margin:auto;
overflow: hidden;
display: flex;
}
.tenant li {
width: 100px;
padding:10px 0;
text-align: center;
background-color: #eee;
border-bottom: 1px solid #000;
border-right: 1px solid #000;
color: #000;
}

.tenant li:nth-child(1){
width: 100px;
background:#000;
color:#fff;
    font-size: 20px;
    border-top: 1px solid #fff;
}
.tenant li:nth-child(2){
width:900px;
}

.yoyaku {
    padding-top: 80px;
}


  /*================================================
  パソコン(画面幅601以上)の設定
  ==================================================*/
  @media screen and (min-width: 601px){

    .navpc{display: ;}
    .navsp{display: none;}

    .sp {
        display: none;
    }
    .tel{
        display: none;
    }

    .btn-gNav{
      display: none;
    }
    #gNav{
      position: fixed;
      top: 0;
      right: 0;
      height: 50px;
    }
    #gNav .gNav-menu{
      display: flex;
      flex-direction: row;
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      right: 0;
      padding-left: 50px;
    }
    #gNav .gNav-menu li{
      padding-top: 5px;
    }

    .spacer {
        display: none;
      }

    #mv-top {
        position: relative;
        width: 100%;
        height: 550px;
        background-image: url(../img/top9.jpg);
        background-size: cover;
        background-position:center;
        background-repeat: no-repeat;
    }
    .setubi a {
        display: flex;
        width: 23%;
    }
  }

 /*================================================
スマホ(画面幅850以下)の設定
==================================================*/
@media screen and (max-width: 850px){

    .navpc{display: none;}
    .navsp{
        display: block;
        padding: 10px;
    }
    .tel{
        display: block;
        margin: auto;
    }
    


    /*ナビゲーション*/
    .nav-centersp {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 30px;
    }
    nav a:nth-child(1){
    }
    main {
        top: 140px;
    }
    nav {
        display: flex;
        font-size: 26px;
        margin-left: auto;
        height: 130px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 0 10px;
    }
    nav img{
        width: 150px;
    }
    nav a {
        letter-spacing: 2px;
        line-height: 0.8em;
    }
    nav span {
        font-size: 12px;
    }
    .nav-rightsp {
        display: flex;
        gap: 10px;
        flex-grow:1;
        margin-right: 0px;
        justify-content: center;
        align-items: center;
    }
    .reflection {
        width: 180px;
        height: 40px;
        position: relative;
        overflow: hidden;
        background-color: #a52a2a;
        line-height: 40px;
        border-radius: 50px;
        text-align: center;
        font-size: 16px;
    }    
    .emp {
      font-size: 36px;
      color: #fff;
  }
  .concept-inner {
      gap: 20px;
  }
  .concept-box {
      width: 22%;
  }
  header {
    height: 140px;
}
main {
    top: 140px;
}
.nav-centersp {
    margin: 14px 0;
}
.plan-box {
    width: 160px;
    margin-right: 0;
}
.plan-row {
    gap: 10px;
    margin: 0;
}
#mv-top {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url(../img/top.jpg);
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
}

}
 /*================================================
スマホ(画面幅755以下)の設定
==================================================*/
@media screen and (max-width: 755px){
    .sp{display: block;}
    
    .tel{
        display: none;
    }

    body{
        min-width: 600px;
        font-size:18px;
    }

    main {
        top: 150px;
    }
    header {
        min-width: 600px;
        height: auto;
    }
    .header-logo {
        text-align: left;
    }
    .header-logo img {
        width: 50%;
        margin-left: 20px;
    }
    .pc {
        display: none;
    }
    .sp-footer-icon {
        display: flex;
    }

    .spacer {
        width: 100%;
      } 

    .concept {
        height: 450px;
    }

    #mv-top {
        height: 800px;
        width: 100%;
    }
    
    .spacer-pc {
        display: none;
    }

    .footer-s {
        display: flex;
        position: fixed;
        width: 100%;
        height: 100px;
        bottom: 0;
        background-color: #1a1a1b;
        left: 0;
        text-align: center;
        align-items: center;
    }

    .footer-s a {
        width: 100%;
    }


    /*コンセプト*/
    .concept {
        height: auto;
        padding: 20px 0;
    }
    .concept-inner {
        display: flex;
        width: 100%;
        gap: unset;;
        justify-content: center;
        flex-wrap: wrap;
    }
    .concept-box {
        display: table;
        width: 250px;
        text-align: center;
        font-size: 27px;
        line-height: 1em;
        padding: 15px 0 20px;
        background-color: #1a1a1b;
        margin: 10px;
    }

    /*タイトル*/
    #info h1 {
        color: #1a1a1b;
        padding-top: 40px;
    }
    h1>span {
        font-size: 18px;
        position: relative;
        top: -20px;
    }
    .title {
        font-size: 40px;
        padding-top: 80px;
        margin-bottom: 20px;
        letter-spacing: 5px;
    }
    /*TOPロケーション*/
    .location-imgsp li{
        width: 50%;
        float: left;
    }
    .location-imgsp img{
        width: 100%;
    }
    /*TOP間取り*/
    .plan-box {
        margin-right: 0px;
    }
    .plan-box {
        color: #000000;
        font-size: 20px;
        width: 230px;
        background-color: #fff;
        margin: 10px 0;
        padding: 0 20px 20px;
    }

    /*プランページ*/
    .row2 {
        max-width: 1000px;
        width: 100%;
        margin: auto;
        display: block;
        justify-content: space-between;
        align-items: flex-start;
    }
    .gaiyouimg {
        width: 100%;
    }
    .gaiyou {
        color: #1a1a1b;
        background-color: white;
        padding: 10px;
        margin-left: 0px;
        width: 100%;
        margin: 30px auto 0;
        max-width: 1000px;
        background-color: #fff;
        border-left: 2px solid #e4e3df;
        border-right: 2px solid #e4e3df;
        border-top: 0px solid #e4e3df;
        border-bottom: 0px solid #e4e3df;
        border-collapse: collapse;
    }
    .gaiyou tr {
        border-top: 2px solid #e4e3df;
    }
    .kyouyu-gaiyou {
        margin: 0px auto;
        max-width: 1000px;
        width: 100%;
        background-color: #fff;
        color: #1a1a1b;
        border-top: 0px solid #e4e3df;
        border-left: 2px solid #e4e3df;
        border-right: 2px solid #e4e3df;
        border-bottom: 0px solid #e4e3df;
        border-collapse: collapse;
    }
    .gaiyou th{
        width: 150px;
    }
    .kyouyu-gaiyou th{
        padding: 1px;
        width: 170px;
        border-right: 0px solid #e4e3df;
    }
    .setubi img{
        width:184px;
    }
    .aki {
        display: block;
        background-color: #a52a2a;
        width: 400px;
        height: 80px;
        margin: 0 auto;
        margin-top: 30px;
        font-size: 30px;
        line-height: 80px;
        color: #fff;
        border-radius: 80px;
    }

    /*ロケーションページ*/
    .box-location-iner {
        display: flex;
        justify-content: space-between;
        margin: 50px 0;
        flex-direction: column;
    }
    .box-location-iner img{
        width: 100%;
    }
    .title-l {
        border-bottom: #C9A08D 1px solid;
        text-align: center;
        font-size: 50px;
    }
    .box-location-item{
        margin:0 0 50px;
        font-size:24px;
    }
    .box-location-item{
        width: auto;
    }
    
.icon img {
    margin-right: -10px;
    width: auto;
    max-width: 130px;
}
#mv-top {
    position: relative;
    width: 100%;
    height: 0;
    background-image: none;
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
}
.setubi a {
    display: flex;
    width: 190px;
}

}