  @charset "UTF-8";
/* 共通
====================================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  color: #333;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

main {
  background-color: #f2efef;
}

#js-header + main {
  margin-top: 142px;
}

.mainContent {
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}

.is-sp-view {
  display: none;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  #js-header + main {
    margin-top: 89px;
  }
  .is-pc-view {
    display: none;
  }
  .is-sp-view {
    display: block;
  }
}

/* ページトップへ戻る
====================================================*/
.targetTop {
  position: fixed;
  z-index: 100;
  right: 2%;
  bottom: 50px;
}

.targetTop__btn {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #008d54;
  cursor: pointer;
}

.targetTop__btn::before {
  position: absolute;
  top: 21px;
  left: 17px;
  display: block;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  content: "";
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .targetTop {
    position: absolute;
    bottom: 225px;
  }
}

/* スライダー
====================================================*/
.swiper-slide.swiper-slide-active {
  opacity: 1;
}

.swiper-slide.swiper-slide-active:hover {
  opacity: 0.7;
}

.swiper-pagination {
  position: static;
  margin-top: 20px;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #008d54;
}

.swiper-button-next,
.swiper-button-prev {
  font-family: none;
  font-size: 1.0rem;
  width: 32px;
  height: 64px;
  top: 50%;
  margin: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.swiper-button-next:focus,
.swiper-button-prev:focus,
.swiper-pagination .swiper-pagination-bullet-active:focus {
  outline: none;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.swiper-button-prev {
  background: url(/bunjyo/jutaku/articles_asset/img/keyvisual_prev.png) no-repeat center/cover;
  left: 20px;
}

.swiper-button-next {
  background: url(/bunjyo/jutaku/articles_asset/img/keyvisual_next.png) no-repeat center/cover;
  right: 20px;
}

/*スライダー画像センター配置
====================================================*/
.keyvisualContent .keyvisual__slide__img,
.swiper-gallery .galleryItem__img,
.galleryModal .galleryModal__img,
.planModal .planModal__slide__img {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #949494;
  overflow: hidden;
}

.keyvisualContent .keyvisual__slide__img > img,
.swiper-gallery .galleryItem__img > img,
.planModal .planModal__slide__img > img,
.galleryModal .galleryModal__img > img {
  position: absolute;
  top: 0%;
  left: 0%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 0;
    background: rgba(0, 0, 0, 0.7) url(../img/keyvisual_prev_sp.png) no-repeat center center/9px 13px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  .swiper-button-next {
    right: 0;
    background: rgba(0, 0, 0, 0.7) url(../img/keyvisual_next_sp.png) no-repeat center center/9px 13px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
}

/* モーダル
====================================================*/
.modal {
  overflow: hidden;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: 10000;
}

.modal.is-show {
  height: 100vh;
}

.modal-mask {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
}

.modal-mask:hover {
  cursor: pointer;
}

.modal-content {
  max-width: 1000px;
  position: absolute;
  top: calc( 50% + 20px);
  left: 50%;
  width: 94.68%;
  padding: 20px 30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
}

.modal-inner {
  max-height: calc(100vh - 160px);
  width: 100%;
  overflow-y: auto;
}

.modal-inner__btn {
  position: absolute;
  top: -40px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 10;
}

.modal-inner__btn:hover {
  cursor: pointer;
}

.modal-inner__btn > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 0;
  border-top: 2px solid #fff;
}

.modal-inner__btn > span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-inner__btn > span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .modal-content {
    padding: 20px 2.66%;
  }
}

/*wrapper共通
====================================================*/
.content-wrapper {
  max-width: 1000px;
  width: 94.68%;
  margin: 0 auto;
}

.section-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/*inner共通
====================================================*/
.page-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/*セクション共通
====================================================*/
.content {
  margin: 40px auto 20px;
}

.sectionBody {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px -6px rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 6px -6px rgba(0, 0, 0, 0.6);
}

/* 1030px表示 */
@media screen and (max-width: 1030px) {
  .sectionBody {
    padding-left: 2.66%;
    padding-right: 2.66%;
  }
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .content {
    margin: 25px auto 10px;
  }
  .sectionBody {
    padding: 20px 2.66% 30px 2.66%;
  }
}

/*見出し共通
====================================================*/
.lv2Heading {
  margin: 0 auto;
  margin-bottom: 10px;
}

.lv2Heading .lv2Heading__text {
  display: inline-block;
  padding-left: 10px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  border-left: 4px solid #008d54;
}

.dotHeading {
  position: relative;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 30px;
}

.dotHeading::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background-color: #008D54;
}

/* 1030px以下 */
@media screen and (max-width: 1030px) {
  .linebHeading_small {
    font-size: 1.4rem;
  }
  .dotHeading {
    margin-left: auto;
    margin-right: auto;
    width: calc( 100% - 20px);
  }
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .lv2Heading .lv2Heading__text {
    font-size: 1.9rem;
  }
  .dotHeading {
    width: 100%;
    font-size: 1.6rem;
  }
  .dotHeading::before {
    top: 1px;
  }
}

/*注釈共通
====================================================*/
.desc__disclaimer {
  margin-top: 20px;
  padding: 20px;
  background: #f3f3f3;
}

.desc__disclaimer__text {
  line-height: 1.5;
  font-size: 1.4rem;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .desc__disclaimer {
    padding: 10px;
  }
  .desc__disclaimer__text {
    font-size: 1.2rem;
  }
}

/*リンク共通
====================================================*/
.online__text {
  max-width: 500px;
  width: 90.27%;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
}

.swiper-container + .online__text {
  margin-top: 35px;
}

.online__text .online__text__link {
  display: block;
  color: #fff;
  background-color: #333;
  border: 1px solid #333;
  padding: 15px;
  text-align: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.online__text .online__text__link:hover {
  color: #333;
  background-color: #fff;
}

.online__text .online__text__link > span {
  position: relative;
  padding-left: 40px;
  display: inline-block;
  text-align: left;
}

.online__text .online__text__link > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 27px;
  height: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/bunjyo/jutaku/articles_asset/img/icon_online_white.svg) no-repeat center/cover;
}

.online__text .online__text__link:hover > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_online_gray.svg) no-repeat center/cover;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .online__text {
    font-size: 1.3rem;
  }
}

/* ヘッダー
====================================================*/
.header {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.header__title {
  margin: 0 auto;
  padding: 5px 0 0 6px;
  line-height: 0;
}

.header__title-img {
  display: inline-block;
  padding: 6px 0;
  width: 115px;
}

.header-gallery {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header-gallery .header-inner,
.header-gallery .localnav {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.header-gallery.is-sticky {
  position: fixed;
  top: 0;
}

.header-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  color: #707070;
  background-color: #fff;
}

.header-body__title__wrapper {
  display: block;
  margin: 5px 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header-body__title {
  display: inline-block;
  margin: 0;
  line-height: 1.6;
  font-size: 2.2rem;
  font-weight: bold;
}

.header-body__title a {
  color: #333;
}

.header-body__title img {
  width: 75.524475%;
  vertical-align: middle;
}

/*header-nav*/
.header-nav {
  margin: 0 0 0 auto;
  max-width: 520px;
  width: 58%;
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-nav__list .header-nav__item {
  margin-right: 14px;
  max-width: 112px;
  width: 37.5838%;
}

.header-nav__list .header-nav__item:last-of-type {
  margin-right: 0;
}

.header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 4px;
  color: #707070;
  background-color: #ebebeb;
  line-height: 1.5;
  font-size: 1.4rem;
}

.header-nav__link:hover {
  opacity: 0.7;
}

.header-nav__link-catalog,
.header-nav__link-request {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
}

.header-nav__link-catalog > span,
.header-nav__link-request > span {
  position: relative;
  padding-left: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-nav__link-catalog > span::before,
.header-nav__link-request > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  margin-right: 9px;
}

.header-nav__link-catalog > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-catalog_white.png) no-repeat center/cover;
  width: 18px;
  height: 21px;
}

.header-nav__link-request > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-request_white.png) no-repeat center/cover;
  width: 21px;
  height: 21px;
}

.header-nav__link-catalog:hover,
.header-nav__link-request:hover {
  background-color: #fff;
  color: #333;
}

.header-nav__link-catalog:hover > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-category_dark.png) no-repeat center/cover;
}

.header-nav__link-request:hover > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-request_dark.png) no-repeat center/cover;
}

/*localnav*/
.localnav {
  position: relative;
}

.localnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

.localnav__list .localnav__item {
  width: 100%;
  border: 1px solid #b7b7b7;
  text-align: center;
  vertical-align: middle;
}

.localnav__list .localnav__item + .localnav__item {
  border-left: none;
}

.localnav__list .localnav__item--onlySp {
  display: none;
}
@media screen and (max-width: 767px) {
  .localnav__list .localnav__item--onlySp {
    display: block;
  }
}

.localnav__item .localnav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  line-height: 1.6;
  padding: 15px 10px;
  font-size: 1.4rem;
  color: #333;
}

.localnav__item .localnav__link.is-current,
.localnav__item .localnav__link:hover {
  background: #333;
  color: #fff;
}

.localnav__item .localnav__link > span {
  display: block;
  width: 100%;
}

/* 1030px */
@media screen and (max-width: 1100px) {
  .localnav__item .localnav__link {
    font-size: 1.2rem;
  }
}

/* 960px */
@media screen and (max-width: 960px) {
  .localnav__item .localnav__link {
    font-size: 1.0rem;
  }
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .header {
    background: none;
  }
  .header-gallery {
    background: none;
  }
  .header-body {
    position: relative;
    border-bottom: 0.5px solid #707070;
    width: 100%;
    padding: 13px 65px 13px 7px;
  }
  .header__title-img {
    padding: 10px 0;
  }
  .header-body__title {
    font-size: 1.8rem;
  }
  .header-body__title a {
    display: block;
  }
  .header-body__title img {
    width: 80%;
  }
  .header-hamburger {
    display: block;
    position: absolute;
    z-index: 9999;
    top: 10px;
    right: 15px;
    border: none;
    width: 40px;
    height: 30px;
  }
  .header-hamburger .header-hamburger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #008D54;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .header-hamburger__line:nth-child(1) {
    top: 0;
  }
  .header-hamburger__line:nth-child(2) {
    top: 13px;
  }
  .header-hamburger__line:nth-child(3) {
    bottom: 0;
  }
  .is-header-active .header-hamburger__line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(-45deg);
    transform: translateY(13px) rotate(-45deg);
  }
  .is-header-active .header-hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .is-header-active .header-hamburger__line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(45deg);
    transform: translateY(-13px) rotate(45deg);
  }
  .header-body__title__wrapper {
    margin: 0;
  }
  .header-body__title {
    margin: 0;
  }
  /*.localnav*/
  .localnav {
    overflow: hidden;
    height: 0;
  }
  .localnav .localnav__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
  }
  .is-open .localnav__list {
    max-height: 500px;
    -webkit-transition: max-height 0.3s ease-in;
    transition: max-height 0.3s ease-in;
  }
  .localnav .localnav__list .localnav__item {
    width: 50%;
    border: none;
    border-bottom: 1px solid #fff;
    border-left: 0;
  }
  .localnav .localnav__list .localnav__item:nth-of-type(2n-1) {
    border-right: 1px solid  #fff;
  }
  .localnav__item .localnav__link,
  .localnav__item .localnav__link.is-current,
  .localnav__item .localnav__link:hover {
    padding: 23px 0;
    background: rgba(240, 236, 221, 0.9);
    font-size: 1.4rem;
  }
  .localnav__item .localnav__link.is-current,
  .localnav__item .localnav__link:hover {
    background: #008d54;
    color: #fff;
  }
}

/* 予告広告
====================================================*/
.noticeModal__title {
  margin: 0 auto 15px;
  color: #008d54;
  font-size: 2.0rem;
  text-align: center;
  font-weight: normal;
  text-align: center;
}

.noticeModal__title > span {
  display: inline-block;
  padding: 5px;
  background: #f2f9f6;
  border: 1px solid #008d54;
}

.noticeModal__wrapper {
  padding: 10px;
  border: 1px solid #008d54;
}

.noticeModal__text {
  font-size: 2.0rem;
  line-height: 1.5;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .noticeModal__title {
    margin-bottom: 0;
  }
  .noticeModal__wrapper {
    margin-top: -20px;
    padding-top: 30px;
  }
}

/*キービジュアル
====================================================*/
.keyvisualContent .sectionBody {
  padding: 0 0 30px 0;
}

.keyvisualContent .swiper-keyvisual {
  width: 100%;
}

.keyvisual__slide__text {
  padding: 30px 10px;
  font-size: 2.0rem;
  line-height: 1.6;
  text-align: center;
  background-color: rgba(0, 141, 84, 0.08);
}

.keyvisualContent .swiper-pagination {
  position: static;
  margin-top: 20px;
}

.keyvisualContent .swiper-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
}

.keyvisualContent .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #008D54;
}

.keyvisualContent .swiper-button-next,
.keyvisualContent .swiper-button-prev {
  top: calc(50% - 24px);
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .keyvisualContent .sectionBody {
    padding: 0 0 20px 0;
  }
  .notice__wrapper {
    overflow: hidden;
    background: #fff;
    padding-left: 2.66%;
    padding-right: 2.66%;
  }
  .notice__foot {
    margin: 10px auto;
  }
  .notice__foot > .notice__btn {
    display: block;
    margin: 0 auto;
    padding: 10px 40px;
    background: #f2f9f6 url(../img/notice__btn__img.svg) no-repeat 95% center/13px 13px;
    border: 1px solid #008d54;
    color: #008d54;
    font-weight: bold;
    font-size: 1.6rem;
    max-width: 375px;
    width: 100%;
    text-align: center;
  }
  .keyvisual__slide__text {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
}

/* コンセプト
====================================================*/
.conceptMedia .conceptMedia__item {
  width: 100%;
}

.conceptMedia .conceptMedia__item + .conceptMedia__item {
  margin-top: 60px;
}

.conceptMedia .conceptMedia__item-left,
.conceptMedia .conceptMedia__item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.conceptMedia .conceptMedia__item-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.conceptMedia .conceptMedia__img {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 35.5%;
}

.conceptMedia .conceptMedia__img > img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

.conceptMedia .conceptMedia__item-left > .conceptMedia__img,
.conceptMedia .conceptMedia__item-right > .conceptMedia__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 52%;
}

.conceptMedia .conceptMedia__item-left > .conceptMedia__img {
  margin-right: 20px;
}

.conceptMedia .conceptMedia__item-right > .conceptMedia__img {
  margin-left: 20px;
}

.conceptMedia .conceptMedia__body {
  width: 100%;
  display: block;
  margin: 20px auto 0;
  padding: 55px 25px;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.conceptMedia .conceptMedia__body > *:first-child {
  margin-top: 0;
}

.conceptMedia .conceptMedia__body > *:last-child {
  margin-bottom: 0;
}

.conceptMedia .conceptMedia__item-left > .conceptMedia__body,
.conceptMedia .conceptMedia__item-right > .conceptMedia__body {
  width: 100%;
  margin: 0 auto;
}

.conceptMedia .conceptMedia__title {
  margin-bottom: 30px;
  font-size: 2.4rem;
  line-height: 1.7;
  font-weight: 500;
}

.conceptMedia .conceptMedia__text {
  margin-bottom: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .conceptMedia .conceptMedia__item {
    display: block;
  }
  .conceptMedia .conceptMedia__item + .conceptMedia__item {
    margin-top: 30px;
  }
  .conceptMedia .conceptMedia__img {
    height: auto;
    padding-bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .conceptMedia .conceptMedia__img > img {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .conceptMedia .conceptMedia__item-left > .conceptMedia__img,
  .conceptMedia .conceptMedia__item-right > .conceptMedia__img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .conceptMedia .conceptMedia__body {
    margin: 0 auto;
    width: 100%;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .conceptMedia .conceptMedia__item-left > .conceptMedia__body,
  .conceptMedia .conceptMedia__item-rigth > .conceptMedia__body {
    width: 100%;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .conceptMedia .conceptMedia__title {
    margin-bottom: 15px;
    padding: 3%;
    background: #f2f9f6;
    font-size: 1.6rem;
  }
  .conceptMedia .conceptMedia__text {
    padding: 0 3%;
  }
}

/* 物件詳細
====================================================*/
.detailNoticeProperty {
  margin-bottom: 30px;
  background-color: #EAF5F0;
}

.detailNoticeProperty .detailNoticeProperty__wrapper {
  padding: 20px 60px;
}

.detailNoticeProperty .detailNoticeProperty__title {
  margin-bottom: 13px;
  text-align: center;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.7;
}

.detailNoticeProperty .detailNoticeProperty__text {
  font-size: 2rem;
  line-height: 1.7;
}

.detailInfo {
  padding: 15px 50px;
  border: 10px solid #EAF5F0;
}

.detailInfo .detailInfo__text {
  font-size: 1.8rem;
  line-height: 1.7;
}

.detailInfo .detailInfo__text + .detailInfo__text {
  margin-top: 15px;
}

.detailList {
  margin-top: 20px;
}

.detailList > .detailList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  line-height: 1.8;
  padding: 20px 40px;
  border-top: 1px solid #e1e1e1;
}

.detailList > .detailList__item:last-of-type {
  border-bottom: 1px solid #e1e1e1;
}

.detailList .detailList__item__title {
  width: 9em;
  font-weight: bold;
  font-size: 1.6rem;
}

.detailList .detailList__item__text {
  padding-left: 15px;
  font-size: 1.6rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .detailNoticeProperty .detailNoticeProperty__wrapper {
    padding: 15px 20px;
  }
  .detailNoticeProperty .detailNoticeProperty__title {
    margin-bottom: 10px;
  }
  .detailInfo {
    margin-bottom: 30px;
    padding: 0;
    border: none;
  }
  .detailInfo .detailInfo__text {
    font-size: 1.6rem;
  }
  .detailList > .detailList__item {
    display: block;
    padding: 10px 0;
  }
  .detailList .detailList__item__title {
    width: 100%;
    font-size: 1.4rem;
  }
  .detailList .detailList__item__text {
    margin-top: 5px;
    padding-left: 0;
    font-size: 1.4rem;
  }
}

/* フォトギャラリー
====================================================*/
.gallery-inner {
  margin: 0 auto;
}

.gallery-inner + .gallery-inner {
  margin-top: 40px;
}

/* ギャラリースライダー */
.swiper-gallery {
  width: 100%;
  margin: 0 auto;
}

.swiper-gallery .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-gallery .swiper-slide {
  opacity: 0.3;
}

.swiper-gallery .swiper-slide img {
  width: 100%;
}

.swiper-gallery .swiper-slide.swiper-slide-active {
  position: relative;
  opacity: 1;
}

.swiper-gallery .swiper-slide.swiper-slide-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.3) url(../img/magnifying.svg) no-repeat center/30px auto;
}

.swiper-gallery .swiper-button-prev {
  left: 18%;
}

.swiper-gallery .swiper-button-next {
  right: 18%;
}

.swiper-gallery + .dotHeading {
  margin-top: 60px;
}

.swiper-gallery .js-galleryModalLink {
  position: relative;
  cursor: pointer;
}

.swiper-gallery .js-galleryModalLink::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/*.gallery__movieArea*/
.gallery__movieArea .video-js {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/*.gallery__vrArea*/
.gallery__vrArea {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
}

.gallery__vrArea iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*.swiper-galleryModal*/
.swiper-galleryModal {
  width: 100%;
}

.galleryModal .galleryModal__item {
  width: 100%;
  height: auto;
}

.galleryModal .galleryModal__item__title {
  margin: 30px auto 20px;
  font-size: 2.4rem;
  font-weight: bold;
}

.galleryModal .swiper-num {
  margin-top: 15px;
  text-align: right;
  font-size: 1.8rem;
  font-weight: bold;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  /* ギャラリースライダー */
  .swiper-gallery .swiper-slide {
    width: 100%;
  }
  .swiper-gallery .swiper-button-prev {
    left: 0;
  }
  .swiper-gallery .swiper-button-next {
    right: 0;
  }
  /*.swiper-galleryModal*/
  .galleryModal .modal-inner {
    position: relative;
  }
  .galleryModal .swiper-button-prev {
    left: 0;
  }
  .galleryModal .swiper-button-next {
    right: 0;
  }
  .galleryModal .galleryModal__item__title {
    margin: 20px auto 10px;
    font-size: 1.6rem;
  }
  .galleryModal .swiper-num {
    margin-top: 10px;
    font-size: 1.3rem;
  }
}

/* 周辺環境
====================================================*/
.location__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.location__item {
  max-width: 320px;
  width: 32%;
  margin-left: 2%;
}

.location__item:nth-child(3n + 1) {
  margin-left: 0;
}

.location__item:nth-child(n + 4) {
  margin-top: 40px;
}

.location__item .location__img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #f3f3f3;
}

.location__item .location__img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

.location__item .location__title {
  margin-bottom: 3px;
  font-size: 1.4rem;
  font-weight: normal;
}

.location__item .location__icon__text {
  position: relative;
  padding-left: 25px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.location__item .location__icon__text + .location__icon__text {
  margin-top: 10px;
}

.location__item .location__icon__text::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  vertical-align: top;
}

.location__item .location__icon__text-walk::before {
  left: 5px;
  width: 10px;
  height: 20px;
  background: url(/bunjyo/jutaku/articles_asset/img/icon_walk.png) no-repeat center/100% auto;
}

.location__item .location__icon__text-car::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_car.png) no-repeat center/100% auto;
}

.location__item .location__icon__text-bicycle::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_bicycle.png) no-repeat center/100% auto;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .location__item {
    max-width: 100%;
    width: 48.5%;
    margin-left: 0;
  }
  .location__item:nth-child(n + 3) {
    margin-top: 20px;
  }
  .location__item:nth-child(2n) {
    margin-left: 3%;
  }
  .location__item .location__img {
    margin-bottom: 10px;
  }
  .location__item .location__img > img {
    width: 100%;
  }
}

/* 現地案内図
====================================================*/
.map__img {
  margin: 0 auto 20px;
  display: block;
  text-align: center;
}

.map__img + .map__img,
.map__text + .map__img {
  margin-top: 50px;
}

.map__img > img {
  max-width: 100%;
}

.map__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* アクセス
====================================================*/
.accessmap {
  width: 100%;
  height: 0;
  margin: 0 auto 20px;
  padding-bottom: 47.826087%;
}

.accessmap__wrapper > *:last-child {
  margin-bottom: 0;
}

.accessmap__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.access__img {
  margin: 0 auto 20px;
  text-align: center;
}

.access__img > img {
  max-width: 100%;
}

.access__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.accessmap__wrapper {
  margin: 30px auto;
}

.accessmap__img {
  margin-bottom: 20px;
  text-align: center;
}

.accessmap__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.access__list__wrapper {
  margin-top: 20px;
}

.access__list__wrapper > .access__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  line-height: 1.8;
  padding: 20px 40px;
  border-top: 1px solid #e1e1e1;
}

.access__list__wrapper > .access__list:last-of-type {
  border-bottom: 1px solid #e1e1e1;
}

.access__list > .access__list__title {
  width: 5em;
  font-weight: bold;
  font-size: 1.6rem;
}

.access__list > .access__list__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .access__text {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .accessmap__text {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .accessContent .sectionBody {
    padding-bottom: 15px;
  }
  .access__list__wrapper {
    margin-bottom: 15px;
  }
  .access__list__wrapper > .access__list {
    display: block;
    padding: 15px 0;
  }
  .access__list > .access__list__title {
    width: 100%;
    font-size: 1.4rem;
  }
  .access__list > .access__list__text {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}

/* プラン?間取り
====================================================*/
.planFloor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.planFloor + .planFloor {
  margin-top: 20px;
}

.planFloor__list {
  width: 44%;
}

.planFloor__list > .planFloor__item + .planFloor__item {
  margin-top: 10px;
}

.planFloor__list > .planFloor__item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.2;
  width: 100%;
  border: 1px solid #8B8B8B;
  border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 60px 15px 30px;
  color: #191919;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.planFloor__list > .planFloor__item > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  display: inline-block;
  width: 23px;
  height: 23px;
  background: url(/bunjyo/jutaku/articles_asset/img/plan_icon.png) no-repeat center/cover;
}

.planFloor__list > .planFloor__item > a:hover {
  background: #333;
  color: #fff;
}

.planFloor__list > .planFloor__item > a:hover::after {
  background: url(/bunjyo/jutaku/articles_asset/img/plan_icon_white.png) no-repeat center/cover;
}

.planFloor__item .planFloor__item-num {
  display: block;
  margin: 3px 40px 3px 0;
}

.planFloor__item .planFloor__item-text {
  margin: 3px 20px 3px 0;
}

.planFloor__item .planFloor__item-price {
  margin: 3px 20px 3px 0;
}

.planFloor .planFloor__img {
  width: 50%;
  margin: 0 auto;
}

.planFloor .planFloor__img > img {
  width: 100%;
}

.planFloor .planFloor__list + .planFloor__img {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  width: 50%;
  margin-right: 6%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.planWrapper__text__box {
  width: 100%;
  margin-top: 20px;
}

.planWrapper__text__box .planWrapper__text {
  font-size: 1.6rem;
  line-height: 1.8;
}

.planWrapper__text__box .planWrapper__text-small {
  font-size: 1.4rem;
  line-height: 1.5;
}

.planWrapper__text__box > .planWrapper__text + .planWrapper__text {
  margin-top: 10px;
}

.planWrapper__text__box > .planWrapper__text + .planWrapper__text-small {
  margin-top: 10px;
}

.planWrapper__text__box > .planWrapper__text-small + .planWrapper__text-small {
  margin-top: 5px;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .planFloor__list {
    width: 100%;
    margin-top: 15px;
  }
  .planFloor__list > .planFloor__item > a {
    padding: 10px 30px 10px 15px;
    font-size: 1.4rem;
  }
  .planFloor__list > .planFloor__item > a::after {
    right: 25px;
    width: 14px;
    height: 14px;
  }
  .planFloor .planFloor__img {
    margin-bottom: 15px;
  }
  .planFloor .planFloor__list + .planFloor__img {
    -webkit-box-ordinal-group: -1;
    -ms-flex-order: -2;
    order: -2;
    width: 100%;
    margin-right: 0;
  }
  .planWrapper__text__box {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-top: 0;
  }
}

/* プラン?間取り(モーダル)
====================================================*/
.planModal__slide__text {
  padding: 20px 10px;
  font-size: 2.0rem;
  line-height: 1.6;
  text-align: center;
  background-color: rgba(0, 141, 84, 0.08);
}

.planModal__num__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 0 10px 0;
  width: 100%;
  border-bottom: 1px solid #008d54;
}

.planModal__num__box .planModal__num {
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
}

.planModal__num__box .planModal__price {
  font-size: 1.8rem;
}

.planModal__num__box .planModal__price .planModal__price_value {
  display: inline-block;
  margin: 0 10px;
  color: #008d54;
  font-weight: bold;
  font-size: 2.4rem;
}

.planModal__rooms {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: bold;
}

.planModal__rooms__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  margin: 30px auto;
}

.planModal__rooms__box .planModal__list__wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.planModal__list__wrapper > .planModal__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  line-height: 1.8;
  padding: 20px 40px;
  border-top: 1px solid #e1e1e1;
}

.planModal__list__wrapper > .planModal__list:last-of-type {
  border-bottom: 1px solid #e1e1e1;
}

.planModal__list__title {
  width: 8em;
  font-weight: bold;
  font-size: 1.6rem;
}

.planModal__list__text {
  padding-left: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
}

.planModal__disclaimer {
  width: 48.387%;
  margin-left: 3.226%;
  padding: 20px;
  background: #f3f3f3;
}

.planModal__disclaimer__text {
  line-height: 1.3;
  font-size: 1.4rem;
}

/*.planModal-nav__list*/
.planModal-nav__list {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 470px;
}

.planModal-nav__list > .planModal-nav__item {
  width: 46.8%;
  margin: 0 auto;
}

.planModal-nav__list > .planModal-nav__item:nth-child(2n) {
  margin-left: 6.4%;
}

.planModal-nav__link-catalog,
.planModal-nav__link-request {
  display: block;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
  padding: 15px 50px;
  font-size: 2.0rem;
  text-align: center;
}

.planModal-nav__link-catalog > span,
.planModal-nav__link-request > span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 35px;
}

.planModal-nav__link-catalog > span::before,
.planModal-nav__link-request > span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-right: 9px;
  vertical-align: top;
}

.planModal-nav__link-catalog > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-catalog_white.png) no-repeat center/cover;
  width: 18px;
  height: 21px;
}

.planModal-nav__link-request > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-request_white.png) no-repeat center/cover;
  width: 21px;
  height: 21px;
}

.planModal-nav__link-catalog:hover,
.planModal-nav__link-request:hover {
  background-color: #fff;
  color: #333;
}

.planModal-nav__list .planModal-nav__link-catalog:hover > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-category_dark.png) no-repeat center/cover;
}

.planModal-nav__list .planModal-nav__link-request:hover > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-request_dark.png) no-repeat center/cover;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .planModal__slide__text {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
  .planModal__rooms__box .planModal__list__wrapper {
    margin-bottom: 15px;
  }
  .planModal__num__box {
    margin-bottom: 20px;
  }
  .planModal__num__box .planModal__num {
    font-size: 2.0rem;
  }
  .planModal__num__box .planModal__price {
    font-size: 1.4rem;
  }
  .planModal__num__box .planModal__price .planModal__price_value {
    font-size: 2.2rem;
  }
  .planModal__rooms {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 2.0rem;
  }
  .planModal__rooms__box {
    display: block;
  }
  .planModal__list__wrapper > .planModal__list {
    display: block;
    padding: 15px 0;
  }
  .planModal__list__title {
    width: 100%;
    font-size: 1.4rem;
  }
  .planModal__list__text {
    margin-top: 5px;
    padding-left: 0;
    font-size: 1.4rem;
  }
  .planModal__disclaimer {
    width: 100%;
    margin-left: 0;
    padding: 10px;
  }
  .planModal__disclaimer__text {
    font-size: 1.2rem;
  }
  /*.planModal-nav__list*/
  .planModal-nav__list {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
  }
  .planModal-nav__list > .planModal-nav__item {
    width: 100%;
  }
  .planModal-nav__list > .planModal-nav__item,
  .planModal-nav__list > .planModal-nav__item:nth-child(2n) {
    margin: 0 auto 10px;
  }
  .planModal-nav__list > .planModal-nav__item:first-child {
    margin-top: 0;
  }
  .planModal-nav__link-catalog,
  .planModal-nav__link-request {
    padding: 10px 30px;
    font-size: 1.4rem;
  }
}

/* 好色tv品質
====================================================*/
.quality__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.quality__media > .quality__item {
  max-width: 320px;
  width: 32%;
  margin-left: 2%;
}

.quality__media > .quality__item:nth-child(3n + 1) {
  margin-left: 0;
}

.quality__media > .quality__item:nth-child(n + 4) {
  margin-top: 40px;
}

.quality__media .quality__img {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #f3f3f3;
}

.quality__media .quality__img > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

.quality__text {
  font-size: 1.4rem;
  line-height: 1.5;
}

.quality__text + .quality__text {
  margin-top: 10px;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .quality__media > .quality__item {
    max-width: 100%;
    width: 48.5%;
    margin-left: 0;
  }
  .quality__media > .quality__item:nth-child(n + 3) {
    margin-top: 20px;
  }
  .quality__media > .quality__item:nth-child(2n) {
    margin-left: 3%;
  }
  .quality__media .quality__img {
    margin-bottom: 10px;
  }
  .quality__media .quality__img > img {
    width: 100%;
  }
}

/* 物件概要
====================================================*/
.propertyDesc__list__wrapper {
  margin-bottom: 30px;
}

.propertyDesc__list__wrapper-mtLarge {
  margin-top: 60px;
}

.propertyDesc__list__wrapper > .propertyDesc__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  line-height: 1.8;
  padding: 20px 40px;
  border-top: 1px solid #e1e1e1;
}

.propertyDesc__list__wrapper > .propertyDesc__list:last-of-type {
  border-bottom: 1px solid #e1e1e1;
}

.propertyDesc__list__title {
  width: 13em;
  font-weight: bold;
  font-size: 1.6rem;
}

.propertyDesc__subHeading {
  padding: 20px 40px;
  padding-top: 30px;
  font-size: 2.2rem;
  line-height: 1.8;
  border-top: 1px solid #e1e1e1;
}

.propertyDesc__subHeading-noneBorder {
  border-top: none;
}

.propertyDesc__list__text {
  padding-left: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.6rem;
}

.noticePropertyDesc {
  margin-top: 20px;
  border: solid 1px #008d54;
}

.noticePropertyDesc .noticePropertyDesc__wrapper {
  padding: 20px 60px;
}

.noticePropertyDesc .noticePropertyDesc__title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.7;
}

.noticePropertyDesc .noticePropertyDesc__text {
  font-size: 2rem;
  line-height: 1.7;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .propertyDesc__list__wrapper {
    margin-bottom: 15px;
  }
  .propertyDesc__list__wrapper > .propertyDesc__list {
    display: block;
    padding: 15px 0;
  }
  .propertyDesc__subHeading {
    padding: 15px 0;
    padding-top: 30px;
    font-size: 1.6rem;
  }
  .propertyDesc__list__title {
    width: 100%;
    font-size: 1.4rem;
  }
  .propertyDesc__list__text {
    margin-top: 5px;
    padding-left: 0;
    font-size: 1.4rem;
  }
  .noticePropertyDesc .noticePropertyDesc__wrapper {
    padding: 10px;
  }
  .noticePropertyDesc .noticePropertyDesc__title {
    margin-bottom: 5px;
  }
}

/* 注文条件付土地販売はこちら
====================================================*/
.orderConditions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.orderConditions__list > .orderConditions__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32%;
  margin-left: 2%;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
}

.orderConditions__list > .orderConditions__item:nth-child(3n + 1) {
  margin-left: 0;
}

.orderConditions__list > .orderConditions__item:nth-child(n + 4) {
  margin-top: 20px;
}

.orderConditions__item > .orderConditions__link {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid #008d54;
  color: #008d54;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-align: center;
}

.orderConditions__item > .orderConditions__link:hover {
  color: #fff;
  background-color: #008d54;
}

.orderConditions__item > .orderConditions__link > span {
  position: relative;
  padding-left: 50px;
  display: inline-block;
  text-align: left;
}

.orderConditions__item > .orderConditions__link > span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 40px;
  height: 25px;
  background: url(/bunjyo/jutaku/articles_asset/img/icon_orderConditions_white.svg) no-repeat center/cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.orderConditions__item > .orderConditions__link:hover > span::before {
  background: url(/bunjyo/jutaku/articles_asset/img/icon_orderConditions_gray.svg) no-repeat center/cover;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .orderConditions__list > .orderConditions__item {
    width: 90.27%;
    max-width: 500px;
    font-size: 1.3rem;
  }
  .orderConditions__list > .orderConditions__item,
  .orderConditions__list > .orderConditions__item:nth-child(3n + 1),
  .orderConditions__list > .orderConditions__item:nth-child(n + 4) {
    margin: 20px auto 0;
  }
  .orderConditions__list > .orderConditions__item:first-child {
    margin-top: 0;
  }
}

/* footer
====================================================*/
.footer {
  background: #f2efef;
}

.footerContent {
  width: 100%;
  margin: 0 auto;
}

.footer-support {
  padding: 25px 20px 20px 20px;
  background: #008d54;
  color: #fff;
  font-style: normal;
}

.footer-support .footer-support__title {
  margin-bottom: 10px;
  text-align: center;
  font-weight: normal;
  font-size: 2.6rem;
}

.footer-support .footer-support__manager {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
}

.footer-support .footer-support__tel {
  text-align: center;
  font-size: 4.5rem;
}

.footer-support .footer-support__tel__text {
  position: relative;
  padding-left: 80px;
}

.footer-support .footer-support__tel__text::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  display: inline-block;
  width: 70px;
  height: 35px;
  background: url(/bunjyo/jutaku/articles_asset/img/tel_symbol.png) no-repeat 0 0/100% auto;
}

.footer-support .footer-support__workList {
  text-align: center;
}

.footer-support .footer-support__workList__item {
  display: inline-block;
  margin: 10px 15px 0 15px;
  font-size: 1.8rem;
}

.footer-salesOutlet {
  padding: 60px 0;
  background: #fff;
}

.footer-salesOutlet .footer-salesOutlet__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.footer-salesOutlet .footer-salesOutlet__list > .footer-salesOutlet__item {
  width: 32%;
  margin: 0 0 0 2%;
}

.footer-salesOutlet .footer-salesOutlet__list > .footer-salesOutlet__item:nth-child(n + 4) {
  margin-top: 50px;
}

.footer-salesOutlet .footer-salesOutlet__list > .footer-salesOutlet__item:nth-child(3n + 1) {
  margin-left: 0;
}

.footer-salesOutlet .footer-salesOutlet__list > .footer-salesOutlet__item a:hover {
  display: block;
  opacity: 0.7;
}

.print__item {
  text-align: center;
  font-size: 1.6rem;
}

.footer .print__item {
  margin: 0 auto;
}

.footer-salesOutlet__list + .print__item {
  margin-top: 40px;
}

.print__item > .print__link {
  text-decoration: underline;
  color: #333;
}

.print__item > .print__link:hover {
  text-decoration: none;
}

.footer-salesOutlet .footer-salesOutlet__title {
  position: relative;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: 1.4rem;
  font-weight: normal;
}

.footer-salesOutlet .footer-salesOutlet__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 25px);
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #78c5a8;
}

.footer-salesOutlet .footer-salesOutlet__text {
  font-weight: bold;
  line-height: 1.4;
  font-size: 2.4rem;
  text-align: center;
}

.footer-pagelink {
  background: #e5e5e5;
}

.footer-pagelink .footer-pagelink__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.footer-pagelink .footer-pagelink__item {
  position: relative;
  width: 33.333333%;
  line-height: 1.3;
  font-size: 1.4rem;
}

.footer-pagelink .footer-pagelink__item::after {
  content: "";
  position: absolute;
  top: 8px;
  display: block;
  width: 1px;
  height: calc(100% - 16px);
  background: #c2c2c2;
}

.footer-pagelink .footer-pagelink__item:nth-child(3n + 1)::after {
  content: none;
}

.footer-pagelink .footer-pagelink__item > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding: 10px 10% 10px 10px;
  color: #595757;
}

.footer-pagelink .footer-pagelink__item > a:hover {
  opacity: 0.7;
}

.footer-pagelink .footer-pagelink__item > a::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 7%;
  display: inline-block;
  width: 5px;
  height: 5px;
  border: 1px solid transparent;
  border-top-color: #373737;
  border-right-color: #373737;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer-copyright {
  background: #e5e5e5;
  border-top: 1px solid #c2c2c2;
  color: #595757;
}

.footer-copyright .footer-copyright__text {
  display: block;
  padding: 15px;
  font-size: 1.4rem;
  text-align: center;
}

.footer-follow {
  display: none;
}

/* SP表示 */
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 60px;
  }
  .footer-support {
    padding: 15px 0;
  }
  .footer-support .footer-support__title {
    font-size: 2rem;
  }
  .footer-support .footer-support__manager {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  .footer-support .footer-support__tel {
    font-size: 3.5rem;
  }
  .footer-support .footer-support__tel__text {
    padding-left: 70px;
  }
  .footer-support .footer-support__tel__text::before {
    top: 1px;
    width: 60px;
    height: 35px;
  }
  .footer-support .footer-support__workList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 30em;
    width: 100%;
    margin: 0 auto;
  }
  .footer-support .footer-support__workList__item {
    margin: 10px 0 0 0;
    font-size: 1.3rem;
    width: 49%;
  }
  .footer-support .footer-support__workList__item:nth-child(2n) {
    margin-left: 2%;
  }
  .footer-salesOutlet {
    padding: 30px 0;
  }
  .footer-salesOutlet .footer-salesOutlet__list {
    display: block;
  }
  .footer-salesOutlet .footer-salesOutlet__list > .footer-salesOutlet__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-left: 0;
  }
  .footer-salesOutlet .footer-salesOutlet__list > .footer-salesOutlet__item + .footer-salesOutlet__item {
    margin-top: 30px;
  }
  .footer-salesOutlet .footer-salesOutlet__title {
    width: 8em;
    margin-bottom: 0;
    padding: 0 0 0 20px;
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .footer-salesOutlet .footer-salesOutlet__title::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #008d54;
  }
  .footer-salesOutlet .footer-salesOutlet__title::after {
    content: none;
  }
  .footer-salesOutlet .footer-salesOutlet__text {
    margin-left: 10px;
    font-size: 2rem;
    text-align: left;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .footer-pagelink .footer-pagelink__list {
    display: block;
  }
  .footer-pagelink .footer-pagelink__item {
    width: 100%;
  }
  .footer-pagelink .footer-pagelink__item + .footer-pagelink__item {
    border-top: 1px solid #fff;
  }
  .footer-pagelink .footer-pagelink__item::after {
    content: none;
  }
  .footer-pagelink .footer-pagelink__item > a {
    display: block;
  }
  .footer-copyright .footer-copyright__text {
    padding: 10px;
    font-size: 1.0rem;
  }
  .footer-follow {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: block;
  }
  .footer-follow__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #333;
  }
  .footer-follow__list .footer-follow__item {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
  }
  .footer-follow__link {
    position: relative;
    display: block;
    height: 100%;
    padding: 10px;
    color: #333;
    background: #fff;
    font-size: 1.2rem;
  }
  .footer-follow__link::before {
    content: "";
    margin: 0 auto 6px;
    display: block;
  }
  .footer-follow__item-catalog .footer-follow__link,
  .footer-follow__item-request .footer-follow__link {
    background: #333;
    color: #fff;
  }
  .footer-follow__item-tel .footer-follow__link {
    background: #008d54;
    color: #fff;
  }
  .footer-follow__item .footer-follow__link::before {
    content: "";
    display: block;
  }
  .footer-follow__item-map .footer-follow__link::before {
    width: 14px;
    height: 20px;
    background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-map_dark.png) no-repeat center/cover;
  }
  .footer-follow__item-catalog .footer-follow__link::before {
    width: 15px;
    height: 20px;
    background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-catalog_white.png) no-repeat center/cover;
  }
  .footer-follow__item-request .footer-follow__link::before {
    width: 20px;
    height: 20px;
    background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-request_white.png) no-repeat center/cover;
  }
  .footer-follow__item-tel .footer-follow__link::before {
    width: 20px;
    height: 20px;
    background: url(/bunjyo/jutaku/articles_asset/img/icon_menu-tel_white.png) no-repeat center/cover;
  }
}
