@charset "UTF-8";
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
body, .wrapper, .mainimg-property {
  overflow: visible !important;
}

@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
figure {
  position: relative;
}

sup {
  font-size: 0.8em;
  vertical-align: top;
}

.mainimg-property {
  background: url("../img/pages/roomplan/roomplan-bg.png");
  background-size: cover;
  background-repeat: repeat;
  width: 100%;
  overflow: hidden;
  background-size: auto;
}

.mv-sec {
  width: 100%;
}

.copy {
  font-size: clamp(14px, 1.41vw, 16px);
  line-height: 1.75;
}

[class$=-sec] .inner .ttlWrap {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  [class$=-sec] .inner .ttlWrap {
    margin-bottom: 50px;
  }
}
[class$=-sec] .inner .ttlWrap .secTtl {
  text-align: center;
  position: relative;
  color: #665F4E;
  font-size: clamp(22px, 2.8vw, 40px);
  letter-spacing: 0.5em;
}
[class$=-sec] .inner .ttlWrap .secTtl::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  opacity: 0.5;
  content: "";
  bottom: 0;
  left: 0;
}
[class$=-sec] .inner .subTtl {
  text-align: center;
  color: #665F4E;
  font-size: clamp(18px, 2.3vw, 30px);
  margin-top: 20px;
}
[class$=-sec] .inner .columnTtl {
  font-size: 30px;
  color: #665F4E;
  margin-bottom: 40px;
  font-size: clamp(20px, 2vw, 30px);
}
@media only screen and (max-width: 991px) {
  [class$=-sec] .inner .columnTtl {
    margin-bottom: 20px;
  }
}
[class$=-sec] .inner .columnCopy {
  line-height: 2;
  font-size: clamp(14px, 1.41vw, 20px);
}
[class$=-sec] .inner .caption {
  font-size: 11px;
  line-height: 1.5;
}

.map-sec {
  padding: 100px 50px 100px;
}
@media only screen and (max-width: 991px) {
  .map-sec {
    padding: 80px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .map-sec {
    padding: 80px 30px 50px;
  }
}
.map-sec .inner {
  max-width: 1620px;
  margin: 0 auto;
}
.map-sec .inner .ttl {
  color: #665F4E;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.46em;
  text-align: center;
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .map-sec .inner .ttl {
    margin-bottom: 50px;
  }
}

/*マップ　タブのスタイル*/
.tab_item-map {
  width: calc((100% - 20px) / 2);
  padding: 10px;
  background-color: #fff;
  color: #8c775f;
  line-height: 1;
  font-size: clamp(12px, 1.2vw, 24px);
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  margin-bottom: 25px;
  border: solid 3px #8c775f;
}
@media only screen and (max-width: 767px) {
  .tab_item-map {
    margin-bottom: 10px;
    width: calc((100% - 10px) / 2);
  }
}
.tab_item-map:first-of-type {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .tab_item-map:first-of-type {
    margin-right: 10px;
  }
}
.tab_item-map:hover {
  color: #fff !important;
  background-color: #8c775f;
}

/*マップ選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item-map {
  color: #fff;
  background-color: #8c775f;
}

/*ラジオボタンを全て消す*/
input[name=tab_item-map] {
  display: none;
}

/*マップのスタイル*/
.tab_content-map {
  display: none;
  clear: both;
  overflow: hidden;
}

/*選択されているマップのみを表示*/
#wideMap:checked ~ #wideMap_content,
#mainMap:checked ~ #mainMap_content {
  display: block;
}

.maps {
  margin: 0 auto 150px;
  max-width: 840px;
}
@media only screen and (max-width: 991px) {
  .maps {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .maps {
    margin-bottom: 80px;
  }
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc((100% - 75px) / 4);
  padding: 10px;
  background-color: #fff;
  line-height: 1;
  font-size: clamp(12px, 1.2vw, 24px);
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
  margin-right: 25px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1440px) {
  .tab_item {
    width: calc((100% - 45px) / 4);
    margin-bottom: 15px;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .tab_item {
    margin-right: 10px;
    margin-bottom: 10px;
    width: calc((100% - 10px) / 2);
  }
}
.tab_item:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .tab_item:nth-of-type(2) {
    margin-right: 0;
  }
}
.tab_item:hover {
  color: #fff !important;
}
.tab_item.education {
  color: #787C95;
  border: solid 3px #787C95;
}
.tab_item.education:hover {
  background-color: #787C95;
}
.tab_item.shopping {
  color: #9E7370;
  border: solid 3px #9E7370;
}
.tab_item.shopping:hover {
  background-color: #9E7370;
}
.tab_item.park {
  color: #90A086;
  border: solid 3px #90A086;
}
.tab_item.park:hover {
  background-color: #90A086;
}
.tab_item.hospital {
  color: #9E8977;
  border: solid 3px #9E8977;
}
.tab_item.hospital:hover {
  background-color: #9E8977;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  color: #fff;
}
.tabs input:checked + .tab_item.education {
  background-color: #787C95;
}
.tabs input:checked + .tab_item.shopping {
  background-color: #9E7370;
}
.tabs input:checked + .tab_item.park {
  background-color: #90A086;
}
.tabs input:checked + .tab_item.hospital {
  background-color: #9E8977;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
  background-color: #fff;
}
.tab_content .tab_content_description {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .tab_content .tab_content_description {
    flex-direction: column;
  }
}
.tab_content .tab_content_description .leftImg, .tab_content .tab_content_description .rightBlock {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  .tab_content .tab_content_description .leftImg, .tab_content .tab_content_description .rightBlock {
    width: 100%;
  }
}
.tab_content .tab_content_description .rightBlock {
  height: 100%;
  overflow-y: scroll;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .tab_content .tab_content_description .rightBlock {
    text-align: left;
  }
}
.tab_content .tab_content_description .rightBlock h2 {
  padding: 10px;
  color: #fff;
  line-height: 1;
}
.tab_content .tab_content_description .rightBlock h2.lead-education {
  background-color: #787C95;
}
.tab_content .tab_content_description .rightBlock h2.lead-shopping {
  background-color: #9E7370;
}
.tab_content .tab_content_description .rightBlock h2.lead-park {
  background-color: #90A086;
}
.tab_content .tab_content_description .rightBlock h2.lead-hospital {
  background-color: #9E8977;
}
.tab_content .tab_content_description .rightBlock .tab-inner {
  padding: 40px 30px;
}
@media only screen and (max-width: 767px) {
  .tab_content .tab_content_description .rightBlock .tab-inner {
    padding: 20px;
  }
}
.tab_content .tab_content_description .rightBlock .tab-inner .copyWrap {
  margin: 0 auto 20px;
}
.tab_content .tab_content_description .rightBlock .tab-inner .copyWrap h3 {
  font-size: clamp(20px, 2vw, 32px);
  margin-bottom: 10px;
}
.tab_content .tab_content_description .rightBlock .tab-inner .copyWrap h3.jp-education {
  color: #787C95;
}
.tab_content .tab_content_description .rightBlock .tab-inner .copyWrap h3.jp-shopping {
  color: #9E7370;
}
.tab_content .tab_content_description .rightBlock .tab-inner .copyWrap h3.jp-park {
  color: #90A086;
}
.tab_content .tab_content_description .rightBlock .tab-inner .copyWrap h3.jp-hospital {
  color: #9E8977;
}
.tab_content .tab_content_description .rightBlock .tab-inner .copyWrap p {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
}
.tab_content .tab_content_description .rightBlock .tab-inner .imgFlex {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .tab_content .tab_content_description .rightBlock .tab-inner .imgFlex {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.tab_content .tab_content_description .rightBlock .tab-inner .imgFlex.two figure {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .tab_content .tab_content_description .rightBlock .tab-inner .imgFlex.two figure {
    width: 100%;
    height: 150px;
  }
}
.tab_content .tab_content_description .rightBlock .tab-inner .imgFlex figure {
  width: 33.3333%;
}
@media only screen and (max-width: 767px) {
  .tab_content .tab_content_description .rightBlock .tab-inner .imgFlex figure {
    width: 100%;
    height: 180px;
  }
}
.tab_content .tab_content_description .rightBlock .tab-inner .imgFlex figure .imgcap {
  text-align: left;
}
/*選択されているタブのコンテンツのみを表示*/
#education:checked ~ #education_content,
#shopping:checked ~ #shopping_content,
#park:checked ~ #park_content,
#hospital:checked ~ #hospital_content {
  display: block;
}/*# sourceMappingURL=map.css.map */