@charset "utf-8";
/* manual
========================================== */
.pcOnly {
  display: block;
}
.spOnly {
  display: none;
}
.tabOnly {
  display: none;
}
.pctabOnly {
  display: block;
}
.tabspOnly {
  display: none;
}
body {
  width: 100%;
}
.conw {
  width: 100%;
  min-width: 1000px;
  background-color: #ffffff;
  background-size: cover;
  background-attachment: fixed;
}
/* header
========================================== */
header {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: .3s;
  background-color: #000;
  color: #fff;
}
header h1 {
  text-align: center;
  color: #7b7b7b;
  font-size: 11px !important;
  font-weight: normal;
  margin-bottom: 5px;
  padding-top: 5px;
}
.hd {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
  padding: 10px 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
header .logo {
  width: 160px;
  margin-top: 15px;
}
header .logo p {
  margin-bottom: 5px;
  font-size: 12px;
}
header .logo img {
  width: 100px;
}
header .title {
  text-align: center;
  padding: 0px 0;
  width: 60%;
}
header .title a {
  text-decoration: none;
  font-size: 36px;
  color: #fff;
  border-bottom: double 3px #9a9a9a;
  border-top: double 3px #9a9a9a;
  padding: 0px 0;
  display: block;
}
header .req {
  width: 160px;
}
header .req a {
  text-decoration: none;
  border: solid 1px #d4b97c;
  display: block;
  text-align: center;
  padding: 10px 0 5px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background-color: #aa925a;
}
header .req a:hover {
  color: #ffce50;
  opacity: 1;
}
header .req a::after {
  position: absolute;
  display: block;
  content: "";
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: all .3s;
  z-index: -1;
  border-radius: 3px;
}
header .req a:hover::after {
  top: 0;
  left: 0;
  background-color: #000000;
  color: #ffffff;
}
.is-animation.req {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0%;
}
.is-animation.req a {
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 17px 0 13px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hd_sp {
  display: none;
}
/* gmenu
========================================== */
.gnav {
  width: 100%;
  z-index: 150;
  background-color: #f5f5f5;
  border-bottom: solid 1px transparent;
}
.gnav ul {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
}
.gnav ul li {
  text-align: center;
  display: inline-block;
  width: calc(100%/7); 
}
.gnav ul li.no {
  opacity: 0.2;
}
.gnav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  display: block;
  padding: 13px 0;
}
.gnav ul li a:hover {
  opacity: 1;
}
.gnav ul li a.current {
  background-color: #000;
  color: #ffffff;
}
.gnav ul li a.current p {
  color: #ffffff;
}
.gnav ul li p {
  font-size: 12px;
  font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-weight: normal;
}
.gnav ul li p.en {
  padding-bottom: 3px;
  margin-bottom: 0px;
  font-size: 14px;
  position: relative;
  display: inline-block;
  font-weight: normal;
  letter-spacing: 1px;
  font-family: 'Cinzel', serif;
}
.gnav ul li.no p.en:befire, .gnav ul li.no p.en:after {
  content: none;
}
.gnav ul li p.en:before, .gnav ul li p.en:after {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  top: 16px;
  transition: all .2s;
  background-color: #000;
  display: inline-block;
}
.gnav ul li p.en:before {
  left: 50%;
}
.gnav ul li p.en:after {
  right: 50%;
}
.gnav ul li p.en:hover:before, .gnav ul li p.en:hover:after {
  background-color: #000;
  width: 50%;
}
.gnav ul li.no p.en:hover:before, .gnav ul li.no p.en:hover:after {
  content: none;
}
.gnav ul li:last-child {
  margin-right: 0;
}
.is-animation.gnav ul li a.current p {
  color: #fff;
}
.is-animation.gnav ul li p, .is-animation.gnav ul li p.en {
  color: #333;
}
.is-animation.gnav ul li p.en:hover:before, .is-animation.gnav ul li p.en:hover:after {
  background-color: #000;
}
.is-animation.gnav {
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  border-bottom: solid 1px #cccccc;
}
.is-animation {
  color: #000;
}
.is-animation.gnav ul li a {
  text-decoration: none;
}
.gnavSp {
  display: none;
}
/*コンテンツフェードアニメーション*/
/* 画面外にいる状態 */
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 2000ms;
  animation-timing-function: ease-in-out;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
  animation-timing-function: ease-in-out;
}
/* top
========================================== */
.mainw {
  position: relative;
}
.main {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.main img {
  width: 100%;
}
.main .mainTxt {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 15px 20px 15px 10px;
  font-size: 28px;
  text-indent: 28px;
  line-height: 1.2;
}
.main .mainTxt small {
  text-indent: 28px;
  display: block;
  font-size: 28px;
  letter-spacing: 0px;
  margin-top: 3px;
}
.main .mainTxt small span {
  font-size: 33px;
  line-height: 33px;
  vertical-align: bottom;
}
.main .mainTxt span {
  font-size: 60px;
  color: #fff0a6;
}
span.cap {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 1px 5px;
  font-size: 11px;
}
.actionw .action a {
  text-align: center;
  display: block;
  padding: 20px 0;
  font-size: 42px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  letter-spacing: 6px;
}
.infow {
  padding-top: 10px;
  padding-bottom: 70px;
  box-shadow: inset 0px 5px 7px 0px rgba(0, 0, 0, 0.2);
}
.infow h2 {
  box-shadow: none;
  padding: 100px 0 30px;
}
.infow h2::after {
  top: 152px;
}
.infow .info {
  margin-bottom: 30px;
}
.infow .info dl {
  border: solid 1px #f3f3f3;
  margin-bottom: 10px;
  padding: 10px 4%;
  box-shadow: 1px 1px 0px 0px #bfbfbf;
}
.infow .info dl dt, .infow .info dl dd {
  display: inline-block;
  text-align: left;
  color: #333333;
  font-size: 16px;
}
.infow .info dl dt {
  width: 15%;
  margin-right: 2%;
}
.infow .info dl dd {
  width: 80%;
}
.infow .info dl dd a {
  color: #aa925a;
}
.infow .chu {
  text-align: right;
}
.point {
  padding: 30px 0 0;
}
.point ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.point ul::after {
  display: block;
  content: "";
  width: 31.5%;
}
.point ul li {
  display: grid;
  place-items: center center;
  width: 31.5%;
  border: solid 1px #000000;
  padding: 30px 0px;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
  margin-bottom: 15px;
  color: #271b00;
  position: relative;
}
.point ul li::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  border: solid 1px #949494;
  width: 100%;
  height: 100%;
}
.point ul li span {
  display: block;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 5px;
}
.point ul li small {
  font-size: 12px;
  display: block;
  line-height: 16px;
  margin-top: 5px;
}
/* フッター
========================================== */
footer {
  width: 100%;
  padding: 30px 0 10px;
  border-top: solid 1px #cccccc;
}
footer .telw .contact {
  text-align: center;
  margin-bottom: 30px;
}
footer .telw .contact p {
  font-size: 20px;
}
footer .telw .tel {
  width: 760px;
  margin: 0 auto 10px;
}
footer .telw .tel .telnum {
  float: left;
  font-size: 60px;
  color: #000000;
  line-height: 1;
  margin-right: 20px;
}
footer .telw .tel .telnum a {
  color: #000000;
  text-decoration: none;
}
footer .telw .tel .telnum i {
  font-size: 49px;
  line-height: 31px;
  vertical-align: middle;
  padding-bottom: 10px;
  margin-right: 5px;
}
footer .telw .tel .eigyo {
  float: left;
  font-size: 12px;
  margin-right: 20px;
}
footer .telw .tel .priLogo {
  float: left;
  margin-top: -18px;
}
footer .privacy {
  text-align: center;
  margin-bottom: 30px;
}
footer .privacy a {
  color: #000000
}
footer .flogow {
  margin-bottom: 30px;
}
footer .flogow .flogo {
  text-align: center;
}
footer .flogow .flogo p {
  margin-bottom: 10px;
}
.copy {
  text-align: center;
  font-size: 11px;
}
.page_top {
  width: 55px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
  padding: 10px 0 7px;
  cursor: default;
}
.page_top .material-icons {
  font-size: 30px;
}
/****
下層ページ共通のテンプレート
*******************************************/
.block {
  max-width: 1000px;
  margin: 0px auto;
}
.sec {
  padding-bottom: 60px;
  box-shadow: inset 0px 5px 7px 0px rgba(0, 0, 0, 0.2);
}
h2 {
  text-align: center;
  padding: 100px 0 30px;
  font-weight: normal;
  letter-spacing: 3px;
  z-index: 49;
  color: #333333;
  margin-bottom: 40px;
  min-width: 1000px;
  line-height: 1.4;
  font-size: 36px;
  position: relative;
  font-family: 'Cinzel', serif;
}
h2 span {
  font-size: 20px;
  color: #333333;
  letter-spacing: 3px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "Times New Roman", Times, "HG明朝B", "ＭＳ 明朝", serif;
}
h2::after {
  content: "";
  display: block;
  position: absolute;
  width: 6%;
  border-bottom: solid 1px #000;
  left: 47%;
  top: 152px;
}
.pan {
  text-align: left;
  font-size: 11px;
  color: #333333;
  padding: 5px 0;
  width: 96%;
  margin: 0 auto;
}
.pan a {
  color: #333333;
}
.tit {
  width: 96%;
  height: auto;
  margin: 0 auto;
  padding: 55px 0;
  text-align: center;
}
.tit p {
  text-align: center;
  display: inline-flex;
  width: auto;
  margin: 0 auto;
  padding: 5px 10px 2px;
  color: #ffffff;
  font-size: 47px;
  letter-spacing: 5px;
  font-weight: normal;
  text-shadow: -2px -2px 1px rgb(0, 0, 0);
}
.tit h2 {
  color: #ffffff;
  font-size: 20px;
}
.titw {
  margin-bottom: 30px;
}
.titw .obi {
  height: 300px;
  background-size: cover;
}
.titw .obi h2 {
  padding-top: 180px;
}
.chuw {
  margin: 20px auto;
}
.chu {
  font-size: 11px;
  color: #333333;
  font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  text-align: left;
}
/* コンセプト
========================================== */
.concept {
  position: relative;
  overflow: hidden;
}
.concept .cap {
  position: absolute;
  text-align: right;
  color: #ffffff;
  bottom: 5px;
  right: 10px;
  z-index: 3;
  font-size: 12px;
  width: auto;
  display: inline-block;
  background-color: transparent;
}
.concept::after {
  content: "";
  display: block;
  position: absolute;
  text-align: center;
  margin-bottom: 0px;
  background: url(../images/concept/bg_concept.jpg) top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  /* blurの値と同じ値だけマイナス */
  top: -10px;
  right: 0;
  bottom: 0;
  left: 0;
}
.concept .block {
  position: relative;
  z-index: 60;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  text-align: center;
  width: 940px;
  color: #fff;
}
.concept .block .inner {
  padding: 70px 0 0;
  border: solid 1px rgba(255, 255, 255, 0.43);
}
.concept h2::after {
  border-bottom: solid 1px #000;
}
.concept h3 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: normal;
  color: #333333;
}
.concept h3 span {
  display: block;
  font-size: 20px;
}
.concept h3 span strong {
  font-size: 36px;
  color: #af1d00;
}
.concept .txt {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 30px;
}
.concept .sec01 {
  margin-bottom: 50px;
}
.concept .sec01 h3 {
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 1.2;
    color: #fff;
}
.concept .sec01 h3 small {
  font-size: 60%;
  letter-spacing: 5px;
}
.concept .sec01 .img {
  margin: 0 auto 50px;
  width: 96%;
}
.concept .sec01 .img img {
  width: 100%;
}
.concept .sec01 .cat {
  font-size: 26px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.2;
}
.concept .sec01 .cat small {
  font-size: 19px;
}
.concept .sec01 .cat small span {
  font-size: 30px;
  line-height: 30px;
  vertical-align: bottom;
}
.concept .sec01 .cat span {
  font-size: 125%;
  color: #fff0a6;
}
.concept .sec02 {
  background-color: #000000ab;
  padding: 50px 2% 20px;
  width: 92%;
  margin: 0 auto 20px;
  position: relative;
}
.concept .sec02 h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 2px;
  border-bottom: solid 1px #fff;
  position: relative;
}
.concept .sec02::before {
  content: "EQUIPMENT";
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 45px;
  color: #444;
  font-family: 'Cinzel', serif;
  line-height: 50px;
}
.concept .sec02 h3 span {
  display: block;
  font-size: 12px;
}
.concept .sec02 .txt {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 2px;
  color: #ffffff;
}
.concept .chu {
  color: #fff;
}
.equBox {
  width: 790px;
  margin: 0 auto;
}
.equBox h4 {
  background-color: #ccc;
  color: #000;
  padding: 3px 0;
  margin-bottom: 5px;
}
.equBox .left {
  width: 100%;
}
.equBox .right {
  float: right;
  width: 48%;
}
.equBox .left ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.equBox .left ul li {
  width: 48%;
  text-align: left;
  border-bottom: dotted 1px #eee;
  padding: 4px 2% 2px;
  box-sizing: border-box;
}
.concept .sec03 {
  background-color: #000000ab;
  padding: 50px 2% 20px;
  width: 92%;
  margin: 0 auto 20px;
  position: relative;
}
.concept .sec03 h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 2px;
  border-bottom: solid 1px #fff;
  position: relative;
}
.concept .sec03::before {
  content: "LIFE INFORMATION";
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 45px;
  color: #444;
  font-family: 'Cinzel', serif;
  line-height: 50px;
}
.concept .sec03 table {
  max-width: 790px;
  width: 96%;
  margin: 0 auto 20px;
}
.concept .sec03 table tr th, .concept .sec03 table tr td {
  padding: 5px 10px;
  border-bottom: dotted 1px #fff;
  vertical-align: middle;
}
.concept .sec03 table tr th .cate {
  border: solid 1px #fff;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 2px 0 2px;
}
.concept .sec03 table tr td:nth-child(3) {
  text-align: right;
}
/* プラン
========================================== */
.plan .block {
  min-height: 500px;
  margin-bottom: 100px;
}
.plan .tab {
  display: flex;
  margin-bottom: 30px;
}
.plan .tab li {
  width: calc(100%/3);
  color: #000;
  font-size: 10px;
  text-align: center;
  background-color: #f5f5f5;
  padding: 14px 0 13px;
  cursor: pointer;
  box-shadow: 1px 1px 0px #0d1e34, inset 1px 1px 0px #0d1e34;
  position: relative;
  line-height: 24px;
  box-sizing: border-box;
}
.plan .tab li span {
  font-size: 16px;
  margin-right: 2px;
}
.plan .tab li::before {
  content: "▼";
  font-size: 10px;
  position: absolute;
  left: 10px;
  top: 43%;
  margin-top: -8px;
}
.plan .tab li:hover, .plan .tab li.active {
  background-color: #000;
  color: #ffffff;
}
.plan #unitF02, .plan #unitF03, .plan #unitF04, .plan #unitF05, .plan #unitF06, .plan #unitF07, .plan #unitF08, .plan #unitF09, .plan #unitF10, .plan #unitF11, .plan #unitF12, .plan #unitF13, .plan #unitF14, .plan #unitF15, .plan #unitF16, .plan #unitF17, .plan #unitF18 {
  display: none;
}
.plan .planBox {
  margin-bottom: 40px;
}
.plan .planBox .left {
  background-color: #ffffff;
  min-height: 558px;
  padding-bottom: 0px;
  margin-bottom: 30px;
}
.plan .planBox .left table.planInfo {
  margin-bottom: 0px;
  width: 100%;
}
.plan .planBox .left table.planInfo tr th, .plan .planBox .left table.planInfo tr td {
  border-bottom: solid 1px #000000;
  margin-bottom: 10px;
  padding: 10px 4%;
  vertical-align: middle;
}
.plan .planBox .left table.planInfo tr th {
  background-color: #000;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  font-size: 18px;
  padding: 10px 2%;
  max-width: 20%;
}
.plan .planBox .left table.planInfo tr th span {
  font-size: 36px;
  margin-right: 3px;
}
.plan .planBox .left .img {
  text-align: center;
  position: relative;
  padding: 20px 0;
}
.plan .planBox .left .img img {
    width: auto;
    height: 1000px;
}
.plan .planBox .left .img::before {
  position: absolute;
  content: "間取図";
  top: 20px;
  left: 10px;
  background-color: #ffffff;
  border: solid 1px #000000;
  color: #000000;
  padding: 5px 10px;
  font-size: 14px;
}
.plan #unitF01.planBox .left .img::before {
  content: "間取図";
}
/***********階層**********/
.plan .planBox .right {
  float: right;
  width: 41%;
}
.plan .planBox .right table {
  border-spacing: 1px 1px;
  border-collapse: separate;
  margin-top: 0px;
  width: 100%;
}
.plan .planBox .right table tr th, .plan .planBox .right table tr td {
  padding: 5px 3px;
  vertical-align: middle;
  width: 3.7%;
}
.plan .planBox .right table tr th {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  line-height: 1;
}
.plan .planBox .right table tr th:first-child, .plan .planBox .right table tr th:nth-child(2) {
  padding: 15px 0;
}
/***********10F～6F**********/
.plan .planBox .right table.base tr td {
  text-align: center;
  opacity: 0.3;
  background-color: #e4e4e4;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.30);
  border: solid 1px #333333;
  padding: 30px 0;
  font-size: 18px;
}
.plan .planBox .right table.base tr {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.60);
  transition: all 0.3s linear;
}
.plan .planBox .right table.base tr td strong {
  font-size: 13px;
  font-weight: bold;
}
.plan .planBox .right table.base tr th.no, .plan .planBox .right table.base tr td.no {
  box-shadow: none;
  background-color: #ffffff;
  opacity: 1;
  border-color: transparent;
}
#unitF01.planBox .right table.base tr td.atype, #unitF02.planBox .right table.base tr td.b1type, #unitF03.planBox .right table.base tr td.b2type, #unitF04.planBox .right table.base tr td.ctype, #unitF05.planBox .right table.base tr td.d1type, #unitF06.planBox .right table.base tr td.d2type, #unitF07.planBox .right table.base tr td.d3type, #unitF08.planBox .right table.base tr td.etype {
  opacity: 1;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.30);
  background-color: #ffffff;
  color: #000;
  border: solid 1px #000;
}
.plan .planBox .right table.base tr td.normal, .plan .planBox .right table.base tr td.muki {
  opacity: 1;
  box-shadow: none;
  background-color: #ffffff;
  border: solid 1px #a7a7a7;
  font-size: 14px;
}
/***********1Fオプション用**********/
.plan .planBox .right table.option {
  border-spacing: 0px 0px;
  border-collapse: separate;
  margin-top: 0px;
  width: 100%;
  position: relative;
}
.plan .planBox .right table.option:after {
  content: "";
  position: absolute;
  top: -34px;
  left: 42px;
  margin-left: 0px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 6px 28px 6px;
  border-color: transparent transparent #ad5341 transparent;
  z-index: 0;
  display: block;
}
.plan .planBox .right table.option:before {
  content: "";
  position: absolute;
  background: url(../images/plan/step.png) no-repeat;
  background-size: contain;
  top: -81px;
  left: 38px;
  margin-left: 0px;
  width: 70px;
  height: 70px;
  z-index: 0;
  display: block;
}
.plan #unitF01.planBox .right table.option tr {
  opacity: 1;
}
.plan .planBox .right table.option tr th, .plan .planBox .right table.option tr td {
  padding: 10px 0px;
  vertical-align: middle;
}
.plan .planBox .right table.option tr th {
  background-color: #ad5341;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  font-size: 14px;
  width: 290px;
}
.plan .planBox .right table.option tr td {
  background-color: #ffffff;
  color: #b91f00;
  text-align: center;
  line-height: 1;
  font-size: 15px;
  font-weight: bold;
}
span.flick {
  display: none;
}
/* スペック
========================================== */
.specBox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.specBox li {
  position: relative;
  width: 32%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}
.specBox ul::after {
  display: block;
  content: "";
  width: 32%;
}
.specBox li:nth-child(4n) {
  margin-right: 0;
}
.spec .photo-list01 li a::before,
.spec .photo-list02 li a::before,
.spec .photo-list03 li a::before{
  content: "＋";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.59);
  bottom: 0px;
  right: 0px;
  z-index: 5;
  font-size: 16px;
  color: #ffffff;
  padding: 0px 5px;
  font-weight: bold;
}
.spec .photo-list01 li a,
.spec .photo-list02 li a,
.spec .photo-list03 li a{
  display: block;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.spec .photo-list01 li a .hover_box_bg,
.spec .photo-list02 li a .hover_box_bg,
.spec .photo-list03 li a .hover_box_bg{
  background: rgba(40, 22, 4, 0.7);
  height: 100%;
  opacity: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  -webkit-transition: opacity .8s ease-in-out;
  -moz-transition: opacity .8s ease-in-out;
  transition: opacity .8s ease-in-out;
}
.spec .photo-list01 li a .hover_box,
.spec .photo-list02 li a .hover_box,
.spec .photo-list03 li a .hover_box{
  box-sizing: border-box;
  color: #fff;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: normal;
  line-height: 1.4;
  opacity: 0;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  height: 100%;
  width: 100%;
  vertical-align: middle;
  z-index: 10;
  -webkit-transition: opacity .8s ease-in-out;
  -moz-transition: opacity .8s ease-in-out;
  transition: opacity .8s ease-in-out;
}
.spec .photo-list01 li a .hover_box .text01,
.spec .photo-list02 li a .hover_box .text01,
.spec .photo-list03 li a .hover_box .text01{
  font-size: 24px;
  margin: 0 0 10px;
}
.spec .photo-list01 li a .hover_box .text02,
.spec .photo-list02 li a .hover_box .text02,
.spec .photo-list03 li a .hover_box .text02{
  font-size: 16px;
  margin: 0;
  line-height: 1.8;
}
.spec .photo-list01 li img,
.spec .photo-list02 li img,
.spec .photo-list03 li img{
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
/* hover-animation */
@media screen and (min-width: 641px) {
  .spec .photo-list01 li a:hover,
    .spec .photo-list02 li a:hover,
    .spec .photo-list03 li a:hover{
    opacity: 1;
  }
  .spec .photo-list01 li a:hover .hover_box_bg,
    .spec .photo-list01 li a:hover .hover_box,
    .spec .photo-list02 li a:hover .hover_box_bg,
    .spec .photo-list02 li a:hover .hover_box,
    .spec .photo-list03 li a:hover .hover_box_bg,
    .spec .photo-list03 li a:hover .hover_box{
    opacity: 1;
    -webkit-transition: opacity .8s ease-in-out;
    -moz-transition: opacity .8s ease-in-out;
    transition: opacity .8s ease-in-out;
  }
}
.spec .photo-list01 + .anchor-list01,
.spec .photo-list02 + .anchor-list02,
.spec .photo-list03 + .anchor-list03{
  margin-top: 80px;
}
.spec .tab {
  display: flex;
    flex-wrap: wrap;
  margin-bottom: 20px;
}
.spec .tab li {
  width: calc(100%/3);
  color: #333333;
  font-size: 14px;
  text-align: center;
  background-color: #ffffff;
  padding: 17px 0 10px;
  cursor: pointer;
  box-shadow: 1px 1px 0px #000000, inset 1px 1px 0px #000000;
  position: relative;
  box-sizing: border-box;
}
.spec .tab li::before {
  content: "▼";
  font-size: 11px;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -8px;
}
.spec .tab li:hover, .spec .tab li.active {
  background-color: #000;
  color: #ffffff;
}
.spec .tab li:nth-child(4) {
  background-color: #aa925a;
  color: #ffffff;
}
.spec .tab li:nth-child(4) a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}
.spec .tab li.active a {
  color: #ffffff;
}
.spec .tab li a i {
  font-size: 16px;
  margin-left: 5px;
  margin-bottom: 0px;
  vertical-align: text-top;
}
.spec .specBox {
  margin-bottom: 40px;
}
.specBox .secBox li {
  float: left;
  position: relative;
  width: 32%;
  height: auto;
  overflow: initial;
  margin-right: 2%;
  margin-bottom: 20px;
}
.specBox .secBox li:nth-child(3n) {
  margin-right: 0;
}
.secBox li h4 {
  margin-bottom: 5px;
  border-left: solid 3px #000000;
  text-indent: 7px;
}
.secBox li .img {
  background-color: #cccccc;
  height: auto;
  text-align: center;
  padding: 100px 0;
  margin-bottom: 10px;
}
.secBox li .img img {
  width: 100%;
}
.spec #unitG02, .spec #unitG03, .spec #unitG04, .spec #unitG05, .spec #unitG06 {
  display: none;
}
.spec #unitG04 .panoBox {
  text-align: center;
  width: 958px;
  margin: 0 auto;
}
.spec #unitG04 .panoBox iframe {
  border: none;
}
/* アクセス
========================================== */
.access .block {
  margin-bottom: 100px;
}
.access .accessInfo {
  margin-bottom: 15px;
}
.access h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px;
  border-bottom: solid 1px #909090;
  padding-bottom: 5px;
  color: #333333;
}
.access h3 i {
  font-size: 29px;
  line-height: 20px;
  vertical-align: text-bottom;
  color: #aa925a;
}
.access .accessInfo li {
  float: left;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 30px;
  position: relative;
  color: #333333;
}
.access .accessInfo li:nth-child(even) {
  margin-right: 0;
}
.access .accessInfo li::after {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  width: 100%;
  border-bottom: dotted 2px #c5c5c5;
  z-index: 0;
}
.access .accessInfo li .name {
  font-family: "Hiragino Mincho Pro", "MS PMincho", "Times New Roman", Times, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", "ＭＳ 明朝", serif;
  font-size: 16px;
  float: left;
  background-color: #ffffff;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
.access .accessInfo li .name span {
  font-size: 30px;
}
.access .accessInfo li .dist {
  font-family: "Hiragino Mincho Pro", "MS PMincho", "Times New Roman", Times, "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", "ＭＳ 明朝", serif;
  font-size: 16px;
  float: right;
  background-color: #ffffff;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
.access .accessInfo li .dist span {
  font-size: 32px;
  color: #bf8a0d;
  vertical-align: sub;
  margin: 0 5px;
}
.access .accessInfo li .txt {
  line-height: 1.4;
  margin-left: 17px;
}
.access .accessInfo.bus li::after {
  content: none;
}
.access .accessInfo.bus li {
  font-size: 18px;
}
.access .accessInfo.bus li span {
  border: solid 1px #000000;
  padding: 2px 5px;
  margin-left: 5px;
}
/* 地図
========================================== */
.map .block {
  min-height: 500px;
  margin-bottom: 100px;
}
.map .mapimg {
  text-align: center;
  margin-bottom: 30px;
}
.map .mapTxt {
  font-size: 26px;
  letter-spacing: 1px;
  color: #fff;
  background-color: #000;
  text-align: center;
  padding: 10px 0 15px;
  line-height: 1.2;
}
.map .mapTxt small {
  font-size: 18px;
}
.map .mapTxt small span {
  font-size: 23px;
  line-height: 23px;
  vertical-align: bottom;
}
.map .mapTxt span {
  font-size: 40px;
  color: #fff0a6;
}
.pribtnw {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.pribtnw p {
  float: none;
  width: 32%;
  margin: 30px auto;
}
.pribtnw .clo {
  margin-right: 0px;
}
.pribtnw .pri a {
  display: block;
  text-decoration: none;
  text-align: center;
  background-color: #aa925a;
  color: #ffffff;
  padding: 10px 0;
  font-size: 16px;
}
.pribtnw .clo a {
  display: block;
  text-decoration: none;
  text-align: center;
  background-color: #f5f5f5;
  color: #132a88;
  padding: 10px 0;
  border: solid 1px #132a88;
  border-radius: 50px;
  font-size: 16px;
}
.pribtnw .pri a:hover, .pribtnw .clo a:hover {
  opacity: 0.6;
}
.pribtnw .pri a i, .pribtnw .clo a i {
  display: block;
}
/****
物件概要
*******************************************/
.outline .block {
  min-height: 500px;
  margin-bottom: 100px;
}
.outline .ttl_out {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333333;
}
.outline table {
  border: solid 1px #ffffff;
  margin-bottom: 10px;
  width: 100%;
}
.outline table th, .outline table td {
  vertical-align: middle;
  padding: 3px 0 3px 20px;
  font-size: 13px;
  color: #333333;
}
.outline table th {
  width: 20%;
  height: 36px;
  background-color: #f5f5f5;
  border-bottom: solid 1px #ffffff;
  border-right: solid 1px #ffffff52;
}
.outline table td {
  width: 70%;
  height: 36px;
  border-bottom: solid 1px #f5f5f5;
}
.contactBtn {
  background: url(../images/common/bg_contactBtn.jpg) bottom center no-repeat;
  background-size: cover;
  padding: 140px 0;
  position: relative;
}
.contactBtn a {
  width: 480px;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding: 30px 0 40px;
  background-color: rgba(148, 119, 52, 0.89);
  border: solid 1px #483200;
  color: #ffffff;
  font-size: 30px;
  text-decoration: none;
  line-height: 1;
  font-family: 'Cinzel', serif;
}
.contactBtn a:hover {
  background-color: rgba(0, 0, 0, 0.6);
  border: solid 1px #000000;
  color: #ffffff;
  opacity: 1;
}
.contactBtn a i {
  margin-bottom: 15px;
}
.contactBtn a span {
  font-size: 20px;
  letter-spacing: 3px;
}
/*============================
_print
============================*/
@media print {
  .detail .hdw_sp, .detail .hdw, .detail .titimg, .detail .fbtn, .detail .pribtnw, .detail .fnavw, .detail .ftw {
    display: none !important;
  }
  .map .con {
    padding: 0;
  }
  .map .carnavi {
    margin: 0;
  }
  .map .hdw_sp, .map .hdw, .map .titw, .map .panw, .map .fbtn, .map .pribtnw, .map .fnavw, .map .ftw, .map .copy, .map .page_top {
    display: none !important;
  }
}