@charset "utf-8";

/*----------------------------------------------------
 elements
----------------------------------------------------*/
* {
	box-sizing: border-box;
}
body {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 18px;
	color: #333;
	min-width: 1300px;
}
img {
	width: 100%;
	object-fit: cover;
}
h2.headTitle {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.48;
	text-align: center;
	margin-bottom: 30px;
	padding-top: 30px;
}
span.sub_title {
	display: block;
	font-size: 20px;
}
.textMiddle {
	font-size: 24px;
}
.column {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
a {
	text-decoration: none;
	color: #333;
}
li a {
	display: block;
	height: 100%;
	width: 100%
}
.pc {
	display: block;
}
.sp{
	display: none;
}

/*  ------------------------------  */
/*  ----------  header  ----------  */
/*  ------------------------------  */
header {
	width: 100%;
	position: relative;
}
.headLink {
	padding-left: 20px;
}
.headLink a {
	position: relative;
	font-size: 16px;
	color: #333;
	font-weight: 200;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.5;
	width: 150px;
	height: 60px;
	border-radius: 6px;
	background: #cecdcd;
	/*background: rgb(167,208,230);
	background: linear-gradient(270deg, rgba(167,208,230,1) 0%, rgba(188,213,192,1) 100%);
	box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);*/
}
.headLink a:after {
	content: '';
	width: 8px;
	height: 14px;
	background: url(../images/header_arrow.svg) no-repeat;
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
#topHead {
	width: 100%;
	margin: 0 auto;
	z-index: 999;
	position: relative;
}
#topHead a,
#topHead {
	text-decoration: none;
}
#topHead .info {
	position: absolute;
	top: 30px;
	left: 50%;
}
#topHead .info a {
	position: relative;
	padding-left: 60px;
}
#topHead #headerInner {
	width: 1300px;
	margin: 0 auto;
	height: 90px;
	padding: 20px 0;
	position: relative;
}
#topHead #headerInner h1.logoArea {
	width: fit-content;
	text-align: center;
	margin: 0 auto;
}
.requestArea a {
	position: absolute;
	width: 240px;
	height: auto;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	text-align: center;
	background: #d1d1d2;
	padding: 36px 0;
}
.requestArea a:after {
	content: '';
	width: 10px;
	height: 20px;
	background: url(../images/top/pc/top_arrow.svg) no-repeat;
	position: absolute;
	right: 40px;
}

#topHead #headerInner .column {
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}
#topHead ul.column {
	flex-wrap: nowrap;
	flex-direction: row;
}
#topHead #headerInner:after {
	content: "";
	clear: both;
	display: block;
}
#topHead #headerInner nav.column {
	flex-wrap: nowrap;
	flex-direction: row;
	align-items: flex-end;
}
#globalNav ul {
	list-style: none;
	font-size: 14px;
}
#globalNav ul li a {
	padding: 0 10px;
	text-align: center;
}
#globalNav span {
	display: block;
	padding: 10px 0 0;
	font-size: 12px;
}
/* Fixed */
#topHead.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	height: 90px;
	background: #fff;
	background: rgba(255,255,255,.7);
	transition: top 0.65s ease-in;
	-webkit-transition: top 0.65s ease-in;
	-moz-transition: top 0.65s ease-in;
}
#topHead.fixed .logo {
	font-size: 24px;
	color: #333;
}
#topHead.fixed #globalNav ul li a {
	color: #333;
	padding: 0 10px;
}
/* Toggle Button */
#navToggle {
	display: none;
	position: absolute;
	right: 12px;
	top: 22px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}
#navToggle div {
	position: relative;
}
#navToggle span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #666;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#navToggle span:nth-child(1) {
	top: 0;
}
#navToggle span:nth-child(2) {
	top: 11px;
}
#navToggle span:nth-child(3) {
	top: 22px;
}

/*  ------------------------------  */
/*  ----------  footer  ----------  */
/*  ------------------------------  */
footer {
	width: 100%;
}
#footerInner {
	background: rgb(231,246,253);
	background: linear-gradient(0deg, rgba(231,246,253,1) 0%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
}
#footerInner .inner {
	width: 1000px;
	margin: 0 auto;
	padding: 60px 25px;
}
footer small {
	font-size: 14px;
	color: #fff;
	text-align: center;
	display: block;
	background: #1D2C83;
	padding: 28px 0;
	font-weight: 100;
}
.footerBtm {
	text-align: center;
	border-top: 1px solid #ddd;
}
.footerBtm p.telephone {
	margin-top: 30px;
}
.footerBtm p.telephone a {
	font-size: 90px;
	color: #1D2C83;
	text-align: center;
	text-decoration: none;
}
.footerBtm p.telephone:before {
	content: '';
	width: 105px;
	height: 60px;
	display: inline-block;
	margin-right: 30px;
	background: url(../images/top/pc/ico_freephone.svg) no-repeat;
}
p.reception_time {
	font-size: 20px;
	margin-top: 30px;
}
.footLink {
	width: 80%;
	margin: 60px auto 30px;
}
.footLink a {
	position: relative;
	font-size: 30px;
	color: #333;
	text-decoration: none;
	font-weight: 200;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.5;
	width: 100%;
	height: 90px;
	border-radius: 6px;
    background: #CDCECE;
}
.footLink a:after {
	content: '';
	width: 16px;
	height: 28px;
	background: url(../images/top/pc/top_arrow.svg) no-repeat;
	position: absolute;
	right: 40px;
}
.btmLink {
	width: 350px;
	height: 70px;
	margin: 0 auto 30px;
}
.btmLink a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #CDCECE;
	border-radius: 6px;
	height: 100%;
	font-size: 24px;
	text-decoration: none;
	color: #333;
	padding-left: 40px;
}
.btmLink a:before {
	content: '';
	width: 38px;
	height: 38px;
	background: url(../images/top/pc/property.svg) no-repeat;
	position: absolute;
	left: 90px;
}
.corp {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}
.corp dd {
	width: 50%;
}
.owner {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}
.owner dt {
	margin-right: 30px;
}
@media screen and (min-width: 751px){
	.telLink {
		pointer-events: none;
	}
}

/*  -------------------------------  */
/*  ----------  content  ----------  */
/*  -------------------------------  */
#content {
	width: 100%;
}
#contentInner {
}
#mainContent {
	width: 100%;
}
.blockInner {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
/* キービジュアル */
.kvImage {
	position: relative;
	height: auto;
	overflow: hidden;
}
.kvImage img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
/* インフォメーション */
#information {
	padding: 70px 0;
}
#information .inner {
	width: 1200px;
	margin: 0 auto;
}
#information .column {
	align-items: center;
	justify-content: space-between
}
#information h2 {
	font-size: 30px;
	padding: 0 60px;
}
#information ul {
	padding: 0 60px;
	border-left: 1px solid #333;
}
#information ul li {
	width: 714px;
	padding: 10px 0;
	max-width: 100%;
	position: relative;
}
#information ul li span {
	padding-right: 15px;
	color: #808080;
}
#information ul li a {
	font-size: 16px;
}
#information ul li:after {
	content: '';
	width: 8px;
	height: 14px;
	display: inline-block;
	margin-right: 30px;
	background: url(../images/top/information_arrow.svg) no-repeat;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/*コンテンツ*/
#contents {
	height: 615px;
	background: rgb(167,208,230);
	background: linear-gradient(270deg, rgba(167,208,230,1) 0%, rgba(188,213,192,1) 100%);
	box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 20%);
}
#contents .column {
	justify-content: center;
}
#contents .inner {
	width: 1200px;
	margin: 0 auto;
	max-width: 100%;
}
br.sp{
	display: none;
}
#pageTop {
	position: fixed;
	bottom: 80px;
	right: 20px;
}
#pageTop img {
	width: 92px;
	height: 92px;
}
#pageTop a:hover {
	text-decoration: none;
}
h2.titleArea  {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.48;
	text-align: center;
	padding: 35px 0;
	background: rgb(167,208,230);
	background: linear-gradient(270deg, rgba(167,208,230,1) 0%, rgba(188,213,192,1) 100%);
	box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
}
h2.titleArea span {
	display: block;
	font-size: 14px;
}
#imgBox .column {
	flex-wrap: nowrap;
	flex-direction: row;
}
#access h2.headTitle {
    padding: 80px 0 30px;
    width: 188px;
    margin: 0 auto;
}
/* 予告広告 */
.koukoku .inner {
	width: 1000px;
    margin: 0 auto;
    max-width: 100%;
}
.koukoku dl {
	margin: 30px 0;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.koukoku dt img {
	width: 166px;
}

/*  --------------------------------  */
/*  ----------  location  ----------  */
/*  --------------------------------  */
.location .inner {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
}
.location #about {
	padding: 60px 0;
}
.location #map .linkArea {
	text-align: center;
}
.location #map .linkArea a {
	display: inline-block;
	padding: 20px 110px;
	border: 1px solid #707070;
	box-shadow: 5px 5px 5px #eee;
	margin: 45px 0;
	font-size: 20px;
}
.location #lifeInformation {
	margin-bottom: 50px;
}
.location #lifeInformation div.column {
	justify-content: space-between;
	align-items: center;
	padding: 50px;
	border: 1px solid #707070;
}
.location #lifeInformation div.column div {
	width: 299px;
}
.location #lifeInformation ul {
	flex-direction: column;
}
.location #lifeInformation ul li {
	width: 100%;
	text-align: center;
}
.location #lifeInformation .distance li {
	padding: 10px 0;
	margin: 30px 0;
	border-bottom: 1px solid #474645;
	font-size: 20px;
}
.location #lifeInformation .distance li span {
	font-size: 16px;
}
.location #lifeInformation .place li {
	padding: 30px 0;
	margin: 10px 0;
	background: #009FD8;
	color: #fff;
	font-size: 20px;
}
.location #mainPlace {
	line-height: 1.6;
	font-size: 16px;
	margin-bottom: 60px;
}
.location #mainPlace h3 {
	background: #ECF2F5;
	padding: 5px 20px;
	margin-bottom: 10px;
}
.location #mainPlace .area01 p {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background-color: rgba(255,255,255,0.8);
	padding: 0 10px;
}
.location #mainPlace ul li {
	margin-bottom: 50px;
}
.location #mainPlace ul li figcaption {
	padding: 10px 0 0;
	font-size: 14px;
}
.location #mainPlace .area01,
.location #mainPlace .area02,
.location #mainPlace .area03 {
	justify-content: space-between;
}
.location #mainPlace .area01 li {
	width: calc((100% - 100px) / 3);
	position: relative;
}
.location #mainPlace .area02 {
	margin-bottom: 25px;
}
.location #mainPlace .area02 li {
	width: calc((100% - 120px) / 4);
	margin-bottom: 25px;
}
.location #mainPlace .area03 li {
	width: calc((100% - 50px) / 2);
}
.location #mainPlace .area03 li dl {
	width: 100%;
	display: flex;
	font-size: 16px;
}
.location #mainPlace .area03 li dl dt {
	width: 320px;
	max-width: 100%;
}
.location #mainPlace .area03 p {
	font-size: 14px;
}

/*  ---------------------------------  */
/*  ----------  equipment  ----------  */
/*  ---------------------------------  */
.equipment .inner {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
}
.equipment {
	font-size: 13px;
	line-height: 1.6;
}
.equipment .current {
	background: rgb(167,208,230);
	background: linear-gradient(270deg, rgba(167,208,230,1) 0%, rgba(188,213,192,1) 100%);
	box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
}
.equipment .anchor {
	background: #ECF2F5;
	padding: 45px 0;
	margin-bottom: 30px;
}
.equipment .anchor ul {
}
.equipment .anchor ul li {
	width: calc((100% - 60px) / 4);
	height: 62px;
	text-align: center;
	border: 1px solid #707070;
	box-shadow: 5px 5px 5px #eee;
	font-size: 20px;
	margin: 0 0 20px 20px;
}
.equipment .anchor ul li:nth-child(1) {
	margin: 0 0 20px 0;
}
.equipment .anchor ul li:nth-child(5) {
	margin: 0;
}
.equipment .anchor ul li:nth-child(6),
.equipment .anchor ul li:nth-child(7) {
	margin: 0 0 0 20px;
}
.equipment .anchor ul li a {
	padding: 14px 10px;
}
.equipment .anchor ul li a:hover {
	background: rgb(167,208,230);
	background: linear-gradient(270deg, rgba(167,208,230,1) 0%, rgba(188,213,192,1) 100%);
	box-shadow: 0 0 5px 0 rgb(0 0 0 / 20%);
}
.equipment section {
	margin-bottom: 60px;
}
.equipment section#kv{
	margin-bottom: 0;
}
.equipment .contBox div {
	margin-top: 30px;
}
.equipment h3 {
	color: #566D48;
	font-size: 18px;
	border-bottom: 1px solid #566D48;
	padding-bottom: 5px;
	margin: 10px 0 20px;
	position: relative;
	padding-left: 20px;
}
.equipment h3:before {
	background: #566D48;
	content: "";
	height: 15px;
	width: 15px;
	position: absolute;
	left: 0;
	top: 6px;
}
.equipment h4 {
	color: #566D48;
	font-size: 16px;
	margin-bottom: 5px;
}
.equipment p {
	margin-bottom: 10px;
}
.equipment p.sankou {
	text-align: right;
	margin-top: 10px;
	margin-bottom: 0;
	font-weight: bold;
	font-size: 12px;
}
.equipment .kitchenArea01,
.equipment .kitchenArea02,
.equipment .kitchenArea03 {
	width: 100%;
	justify-content: space-between;
}
.equipment .kitchenArea01 p {
	font-size: 10px;
	margin-top: 10px;
}
.equipment .kitchenArea01 > li {
	width: calc((100% - 60px) / 3);
}
.equipment .kitchenArea01 > li:nth-child(1) {
	width: 325px;
	max-width: 100%;
}
.equipment .kitchenArea01 > li:nth-child(2) {
	width: 400px;
	max-width: 100%;
}
.equipment .kitchenArea01 > li:nth-child(3) {
	width: 215px;
	max-width: 100%;
}
.equipment .kitchenArea01 > li ul {
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.equipment .kitchenArea01 > li ul li {
	width: calc((100% - 30px) / 3);
}
.equipment .kitchenArea01 > li > ul > li:nth-child(1) {
	width: 45px ;
}
.equipment .kitchenArea01 > li > ul > li:nth-child(2) {
	width: 245px;
}
.equipment .kitchenArea01 > li > ul > li:nth-child(3) {
	width: 85px;
	padding: 10px;
	background: #81A6CA;
	border-radius: 9px;
	color: #fff;
}
.equipment .kitchenArea01 > li > ul > li:nth-child(3) p {
	background: #fff;
	color: #333;
	margin: 0;
	font-size: 16px;
	text-align: center;
}
.equipment .kitchenArea01 > li > ul > li:nth-child(3) p span {
	display: inline-block;
	font-size: 10px;
}
.equipment .kitchenArea01 > li ul li ul {
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
}
.equipment .kitchenArea01 > li ul li ul li {
	width: calc((100% - 10px) / 2);
	padding: 10px;
	background: #eee;
	margin-bottom: 10px;
	text-align: center;
}
.equipment .kitchenArea02,
.equipment .kitchenArea03 {
	flex-wrap: nowrap;
	flex-direction: row;
}
.equipment .kitchenArea02 li {
	width: calc((100% - 40px) / 2);
}
.equipment .kitchenArea02 li ul li {
	width: calc((100% - 10px) / 2);
}
.equipment .kitchenArea02 li ul.column {
	justify-content: space-between;
	margin-top: 45px;
}
.equipment .kitchenArea02 li ul li figure {
	flex-wrap: nowrap;
	flex-direction: row;
}
.equipment .kitchenArea02 li ul li figcaption {
	font-size: 12px;
	padding-left: 15px;
}
.equipment .kitchenArea01 li ul li figure.column img,
.equipment .kitchenArea02 li ul li figure.column img {
	width: 50%;
}
.triangle {
	display: block;
	position: relative;
}
.tLeft::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	transform: translateY(-50%);
	border: 6px solid transparent;
	border-right: 6px solid #333;
}
.tRight::after {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: 0;
	right: -35px;
	transform: translateY(-50%);
	border: 15px solid transparent;
	border-left: 11px solid #888;
}
.equipment .kitchenArea03 li {
	width: calc((100% - 60px) / 3);
}
.equipment .kitchenArea03 li:first-child img {
	margin-top: 20px;
}
.equipment .kitchenArea03 li figure.column {
	flex-wrap: nowrap;
	flex-direction: row;
	width: 100%;
}
.txtAc {
	text-align: center;
}
p.txtAc{
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: bold;
	font-family: 'Shippori Mincho', serif;
}
.equipment #bathroom > .contBox > div.column {
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
}
.equipment .bathroomArea01 {
	width: 395px;
	max-width: 100%;
	margin-right: 30px;
}
.equipment .bathroomArea01 figure img {
	margin-bottom: 10px;
}
.equipment .bathroomArea02 {
	width: 575px;
	max-width: 100%;
}
.equipment .bathroomArea02 div > ul > li:first-child {
	width: 375px;
	max-width: 100%;
	margin-right: 20px;
	padding-right: 10px;
}
.equipment .bathroomArea02 ul li ul {
	flex-wrap: wrap;
	justify-content: space-between;
}
.equipment .bathroomArea02 .bathroomCont01 ul {
	flex-wrap: nowrap;
	flex-direction: row;
}
.equipment .bathroomArea02 .bathroomCont01 ul li {
	width: calc((100% - 60px) / 3);
}
.equipment .bathroomArea02 .bathroomCont01 figure img {
	margin-bottom: 10px;
}
.equipment .bathroomArea02 .bathroomCont01 > ul > li:nth-child(2) {
	margin-top: 50px;
}
.equipment .bathroomArea02 .bathroomCont02 ul {
	position: relative;
}
.equipment .bathroomArea02 .bathroomCont02 ul li.pictureArea {
	position: absolute;
	top: -70px;
	right: 0;
}
.equipment .bathroomArea02 .bathroomCont02 ul li.pictureArea img {
	width: 170px;
}
.equipment .bathroomArea02 .bathroomCont02 p {
	width: 400px;
}
.equipment .bathroomArea02 .bathroomCont02 ul li ul li {
	width: calc((100% - 30px) / 4);
}
.equipment .bathroomArea02 .bathroomCont02 dl dt {
	font-size: 16px;
	color: #DE6E0F;
}
.equipment .bathroomArea02 .bathroomCont02 dl dd {
	font-size: 10px;
}
.equipment .powderroom,
.equipment .restroom {
	flex-wrap: nowrap;
	flex-direction: row;
}
.equipment .powderroom .powderroomArea01,
.equipment .restroom .restroomArea01 {
	width: 265px;
	max-width: 100%;
	margin-right: 30px;
}
.equipment .powderroom .powderroomArea02 .powderroomCont01,
.equipment .restroom .restroomArea02 .restroomCont01 {
	width: 700px;
}
.equipment .powderroom .powderroomArea02 .powderroomCont01 ul,
.equipment .restroom .restroomArea02 .restroomCont01 ul {
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row;
}
.equipment .powderroom .powderroomCont01 li,
.equipment .restroom .restroomCont01 li {
	width: calc((100% - 30px) / 2);
}
.equipment .powderroom .powderroomCont01 figure,
.equipment .restroom .restroomCont01 figure,
.equipment .facility .facilityArea01 ul,
.equipment .facility .facilityArea02 > ul.column,
.equipment .security > ul {
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
}
.equipment .powderroom .powderroomCont01 figure img,
.equipment .restroom .restroomCont01 figure img {
	margin-left: 10px;
	height: 130px;
}
.equipment .facility .facilityArea01 ul li,
.equipment .facility .facilityArea02 > ul.column > li {
	width: calc((100% - 20px) / 2);
}
.equipment .facility .facilityArea01 dl {
	width: 100%;
	font-size: 12px;
	margin-bottom: 5px;
}
.equipment .facility .facilityArea01 dl dt {
	width: 150px;
	max-width: 100%;
	background: #2CA6E0;
	color: #fff;
	text-align: center;
}
.equipment .facility .facilityArea01 dl dd {
	width: 340px;
	max-width: 100%;
	background: #EEEEE8;
	padding: 0 10px;
}
.equipment .facility .familynetArea li h4 img {
	width: 250px;
}
.equipment .facility .familynetArea .partner img {
	height: 35px;
    width: 130px;
}
.equipment .facility .familynetArea .partner .times img {
	height: 40px;
	width: auto;
}
.equipment .facility .familynetArea h4 span {
	font-size: 10px;
	display: inline-block;
	line-height: 1.2;
	margin-left: 10px;
}
.equipment .facility .familynetArea >li
.equipment .facility .cyberhomeArea h4 ul {
	height: 60px;
	align-items: center;
	justify-content: flex-end;
}
.equipment .facility .cyberhomeArea li h4 img {
	width: 160px;
}
.equipment .facility .cyberhomeArea h4 ul li {
	border: 1px solid #566D48;
	font-weight: normal;
	border-radius: 9px;
	font-size: 12px;
	margin: 0 0 10px 10px;
	padding: 2px 6px;
	text-align: center;
	height: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.equipment .facility .cyberhomeArea h4 ul li:first-child {
	margin: 0 0 10px 0;
}
.equipment .facility .cyberhomeArea h4 ul li p {
	font-size: 8px;
	line-height: 1;
	margin: 0;
}
.equipment .facility .cyberhomeArea h4 {
	position: relative;
	height: 110px;
	margin-bottom: 30px;
}
.benefits {
	position: absolute;
	top: -25px;
	right: 0;
}
.benefits ul {
	flex-wrap: wrap;
	justify-content: flex-end;
}
.equipment .facility h5 {
	display: inline-block;
	position: relative;
	font-size: 18px;
	padding-left: 20px;
	margin-bottom: 10px;
}
.equipment .facility h5:before {
	background: #717071;
	content: "";
	height: 15px;
	width: 15px;
	position: absolute;
	left: 0;
	top: 6px;
}
.equipment .facility h5 span {
	font-size: 10px;
	display: inline-block;
	margin-left: 10px;
}
.directService {
	background: #55819D;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	line-height: 1.2;
}
.directService li {
	color: #fff;
	width: calc(100% / 2);
	padding: 10px 0;
	text-align: center;
	font-size: 14px;
}
.directService li p {
	border-right: 1px solid #fff;
	margin: 0;
}
.directService li:nth-child(2) {
	font-size: 30px;
}
.directService li span {
	display: inline-block;
	font-size: 10px;
	letter-spacing: -1px;
}
.partner p {
	font-size: 10px;
}
.partner ul {
	flex-wrap: nowrap;
}
.partner ul li {
	margin-right:10px;
}
.cleaning ul {
	flex-wrap: nowrap;
	justify-content: space-between;
}
.cleaning ul li {
	background: #566D48;
	border-radius: 9px;
	color: #fff;
	padding: 5px 10px;
	font-size: 12px;
}
.equipment .security > ul > li {
	width: calc((100% - 30px) / 2);
}
.equipment .security .securityArea01 dl {
	width: 100%;
	margin-bottom: 10px;
}
.equipment .security .securityArea01 dl dt {
	border: 2px solid #138AB7;
	color: #138AB7;
	width: 35%;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: center;
}
.equipment .security .securityArea01 dl dd {
	border: 2px solid #138AB7;
	background: #138AB7;
	color: #fff;
	width: 65%;
	font-size: 16px;
	padding: 0 10px;
}
.equipment .security .securityArea01 li {
	margin-bottom: 30px;
	position: relative;
}
.equipment .security .securityArea01 li:first-child {
	height: 260px;
}
.equipment .facility .facilityArea01 img {
    margin-top: 10px;
}
.equipment .security .securityArea01 li img {
	position: absolute;
	top: 55px;
	left: 0;
}
.equipment .security .securityArea01 .text01 {
	position: absolute;
	top: 36%;
	left: 3%;
	margin: 0;
	background: #9E9E9E;
	padding: 5px 17px;
	color: #fff;
	font-size: 14px;
}
.equipment .security .securityArea01 .text02 {
	position: absolute;
	top: 54%;
	left: 5%;
	margin: 0;
}
.equipment .security .securityArea01 .text02 dl dt {
	border: none;
	color: #63380C;
	width: auto;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: inherit;
}
.equipment .security .securityArea01 .text02 dl dd {
	border: none;
	background: none;
	color: inherit;
	width: auto;
	font-size: 12px;
	padding: 0;
}
.equipment .security .securityArea01 .text03 {
	position: absolute;
	top: 30%;
	right: 3%;
	margin: 0;
	text-align: center;
	color: #148AB8;
	font-size: 10px;
}
.tBotm::after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	border: 15px solid transparent;
	border-top-color: #888;
	border-bottom-width: 0;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.equipment .security .securityArea02 {
	margin-bottom: 30px;
}
.equipment .security .securityArea02 ul {
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-between;
	text-align: center;
	margin-top: 10px;
}
.equipment .security .securityArea03 {
	position: relative;
	height: 170px;
}
.equipment .security .securityArea03 img {
	width: 100px;
	position: absolute;
	top: 50px;
	right: 50px;
}
.equipment .construction ul {
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
}
.equipment .construction .constructionArea01 ul li {
	width: calc((100% - 100px) / 3);
	height: 360px;
}
.equipment .construction .constructionArea01 ul li:nth-child(1),
.equipment .construction .constructionArea01 ul li:nth-child(2),
.equipment .construction .constructionArea01 ul li:nth-child(3) {
	position: relative;
}

.equipment .construction .constructionArea01 ul li:nth-child(1) img,
.equipment .construction .constructionArea01 ul li:nth-child(2) img,
.equipment .construction .constructionArea01 ul li:nth-child(3) img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateY(0) translateX(-50%);
	-webkit- transform: translateY(0) translateX(-50%);
}
.equipment .construction .constructionArea01 ul li:nth-child(1) img{
	width: 220px;
}
.equipment .construction .constructionArea01 ul li:nth-child(2) img{
	width: 190px;
}
.equipment .construction .constructionArea01 ul li:nth-child(3) img{
	width: 270px;
}
.equipment .construction .constructionArea02 ul li:nth-child(1),
.equipment .construction .constructionArea04 ul li:nth-child(1) {
	width: 540px;
	max-width: 100%;
	margin-right: 65px;
}
.equipment .construction .constructionArea02 ul li:nth-child(2),
.equipment .construction .constructionArea04 ul li:nth-child(2) {
	width: 430px;
	max-width: 100%;
}
.equipment .construction .constructionArea02 ul li:nth-child(1) img {
	width: 510px;
}
.equipment .construction .constructionArea02 ul li:nth-child(2) img {
	width: 270px;
}
.equipment .construction .constructionArea03 > ul > li:nth-child(1) {
	width: 430px;
	max-width: 100%;
	margin-right: 40px;
}
.equipment .construction .constructionArea03 > ul > li:nth-child(2) {
	width: 540px;
	max-width: 100%;
}
.equipment .construction .constructionArea03 h5 {
	text-align: center;
	color: #fff;
	background: #333;
	padding: 3px 0 0;
}
.equipment .construction .constructionArea03 dl {
	flex-wrap: nowrap;
	align-items: center;
	border: 2px solid #333;
	margin-bottom: 10px;
}
.equipment .construction .constructionArea03 dl dt {
	width: 40px;
	max-width: 100%;
	text-align: center;
	padding: 10px 0;
	border-right: 2px solid #333;
}
.equipment .construction .constructionArea03 dl dd {
	width: 500px;
	max-width: 100%;
	font-size: 12px;
	padding: 2px 5px 0;
}
.equipment .construction .constructionArea03 .houseplus {
	text-align: center;
	padding: 20px 0 30px;
	border-bottom: 1px solid #707070;
}
.equipment .construction .constructionArea03 .houseplus img {
	width: 270px;
	max-width: 100%;
}
.equipment .construction .constructionArea03 .flat {
	justify-content: space-evenly;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	padding: 30px 0 0;
}
.equipment .construction .constructionArea03 .flat li {
	width: 170px;
	max-width: 100%;
}
.equipment .construction .constructionArea04 > ul > li {
	height: 300px;
}
.equipment .construction .constructionArea04 ul li .design01,
.equipment .construction .constructionArea04 ul li .design02 {
	justify-content: space-evenly;
}
.equipment .construction .constructionArea04 ul li .design01 li {
	text-align: center;
	width: 210px;
	max-width: 100%;
	border-radius: 9px;
	padding: 5px;
	font-size: 24px;
	font-weight: bold;
}
.equipment .construction .constructionArea04 ul li .design02 li {
	width: 210px;
	max-width: 100%;
	font-size: 14px;
	text-align: center;
	font-weight: bold;
}
.equipment .construction .constructionArea04 ul li .design01 li:nth-child(1) {
	border: 1px solid #231815;
}
.equipment .construction .constructionArea04 ul li .design01 li:nth-child(2) {
	background: #231815;
	color: #fff;
}
.equipment .construction .constructionArea04 ul li div {
	text-align: center;
}
.equipment .construction .constructionArea04 ul li div img {
	margin-bottom: 10px;
}

/*  ----------------------------------  */
/*  -------------  plan  -------------  */
/*  ----------------------------------  */
.plan .inner {
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
}
.plan .floorplan {
	margin-bottom: 60px;
}
.plan .floorplan ul {
	justify-content: space-between;
}
.plan .floorplan ul li:nth-child(1) {
	width: 611px;
	max-width: 100%;
	margin-bottom: 40px;
}
.plan .floorplan ul li:nth-child(2) {
	width: 349px;
	max-width: 100%;
}
.plan .floorplan ul li dl {
	line-height: 1.6;
}
.plan .floorplan ul li dl dt {
	font-size: 22px;
	font-weight: bold;
	padding: 60px 0 10px;
	border-bottom: 1px solid #ddd;
}
.plan .floorplan ul li dl dd {
	padding: 10px 0;
	font-size: 16px;
}
.plan .planlist li {
	margin-bottom: 30px;
	padding: 60px 0;
	border-top: 1px solid #ddd;
}
.plan .planlist li:first-child {
	border-top: 0;
}
.plan .planlist p {
	font-size: 14px;
	text-align: right;
	padding-top: 10px;
}
.plan .planlist figure {
	width: 100%;
}
.plan .planlist figure figcaption {
	width: 190px;
	max-width: 100%;
}
.plan .planlist figure img {
	width: 710px;
	max-width: 100%;
	margin-left: 100px;
}
.plan .planlist figure figcaption .type {
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}
.plan .planlist figure figcaption .type dt {
	font-size: 30px;
	background: #1D2C83;
	padding: 20px 10px;
}
.plan .planlist figure figcaption .type dt span {
	font-size: 60px;
}
.plan .planlist figure figcaption .type dd {
	font-size: 26px;
	background: #BDBEBF;
	padding: 10px;
}
.plan .planlist figure figcaption .breadth {
	margin-bottom: 20px;
}
.plan .planlist figure figcaption .breadth dt {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
}
.plan .planlist figure figcaption .breadth dt:before {
	background: #333;
	content: "";
	height: 15px;
	width: 15px;
	position: absolute;
	left: 0;
	top: 0;
}
.plan .planlist figure figcaption .breadth dd {
	font-size: 20px;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 16px;
		min-width: auto;
	}
	.pc {
		display: none;
	}
	.sp{
		display: block;
	}
	br.sp{
		display: inline-block;
	}
	.kvImage {
		position: relative;
		overflow: hidden;
		border: none;
	}
	img {
		width: 100%;
		vertical-align: bottom;
	}
	.blockCont h2 img {
		width: 60%;
	}
	.blockInner {
		padding: 0 10px;
	}
	h2.titleArea {
		padding: 81px 0 20px;
		font-size: 30px;
	}
	#access h2.headTitle {
		font-size: 25px;
		padding: 10% 0 5%;
	}
	h2.headTitle:before {
		background-size: 100%;
		width: 50px;
		height: 10px;
	}
	h1.logo img {
		width: 60%;
		padding: 5% 0;
	}
	#pageTop {
		position: static;
		text-align: center;
		padding: 40px 0 0;
	}

	/*----------------------------------------*/
	/*---------------  header  ---------------*/
	/*----------------------------------------*/
	#headerInner {
		width: 100%;
		height: 70px;
		margin: 0 auto;
		position: relative;
		padding: 0;
	}
	#topHead {
		width: 100%;
		top: 0;
		position: fixed;
		margin-top: 0;
		padding: 0;
	}
	#topHead #headerInner {
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding:  0;
		flex-wrap: nowrap;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}
	/* Fixed reset */
	#topHead.fixed {
		padding-top: 0;
		background: transparent;
		height: auto;
	}
	#topHead #headerInner .column {
		align-items: center;
		flex-direction: column;
		width: 100%;
		justify-content: inherit;
	}
	#topHead #headerInner .column .gNavMenu {
		width: 100%;
	}
	#topHead #headerInner .column .gNavMenu nav.column {
		align-items: center;
		flex-direction: column;
		padding: 0 0 10%;
		border-bottom: 1px solid #333;
	}
	#topHead #headerInner .gNavMenu ul {
		width: 100%;
	}
	#topHead #headerInner .gNavMenu ul li {
		width: 100%;
	}
	#topHead #headerInner .gNavMenu ul#globalMenu {
		flex-wrap: wrap;
		flex-direction: row;
		margin-bottom: 30px;
		border-top: 1px solid #333;
	}
	#topHead #headerInner .gNavMenu ul#globalMenu li {
		width: 50%;
		border-bottom: 1px solid #333;
	}
	#topHead #headerInner .gNavMenu ul#globalMenu li a {
		text-align: left;
		padding-left: 20px;
		position:relative;
	}
	#topHead #headerInner .gNavMenu ul#globalMenu li a:after {
		content: '';
		width: 14px;
		height: 24px;
		background: url(../images/sp_arrow.svg) no-repeat;
		position: absolute;
		top: 24px;
		right: 20px;
		background-size: 100%;
	}
	#topHead #headerInner .gNavMenu ul#globalMenu li:nth-child(5) a:after,
	#topHead #headerInner .gNavMenu ul#globalMenu li:nth-child(6) a:after {
		content: '';
		width: 20px;
		height: 20px;
		background: url(../images/sp_tab.svg) no-repeat;
		position: absolute;
		top: 24px;
		right: 20px;
		background-size: 100%;
	}
	#topHead #headerInner .gNavMenu ul#globalMenu li:nth-child(odd) {
		border-right: 1px solid #333;
	}
	#mobileHead {
		background: #fff;
		width: 100%;
		height: 66px;
		z-index: 999;
		position: relative;
	}
	.headLink {
		padding: 10px;
	}
	.headLink a {
		padding: 23px 20px;
		font-size: 16px;
	}
	#topHead #globalNav {
		position: absolute;
		background: #fff;
		width: 100%;
		text-align: center;
		padding: 0;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		-moz-transform: translateY(-800px);
		-webkit-transform: translateY(-800px);
		transform: translateY(-800px);
	}
	#topHead #globalNav ul {
		list-style: none;
		position: static;
		right: 0;
		bottom: 0;
		font-size: 14px;
	}
	#topHead #globalNav ul li {
		width: 50%;
	}
	#topHead #globalNav ul li a,
	#topHead.fixed #globalNav ul li a {
		width: 100%;
		display: block;
		color: #333;
		padding: 18px 0;
	}
	#navToggle {
		display: block;
	}
	/* #navToggle 切り替えアニメーション */
	#topHead.open #navToggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	#topHead.open #navToggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	#topHead.open #navToggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	/* #globalNav スライドアニメーション */
	#topHead.open #globalNav {
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	/*----------------------------------------*/
	/*---------------  footer  ---------------*/
	/*----------------------------------------*/
	.footerBtm p.telephone,
	.sp p.telephone {
		margin-top: 0;
	}
	.footerBtm p.telephone a,
	.sp p.telephone a {
		font-size: 40px;
	}
	.footerBtm p.telephone:before,
	.sp p.telephone:before {
		content: '';
		width: 50px;
		height: 34px;
		display: inline-block;
		margin-right: 10px;
		/*background: url(../images/top/sp/ico_freephone.png) no-repeat;*/
		background-size: 100%;
		position: relative;
		top: 6px;
	}
	.sp p.telephone a {
		color: #1D2C83;
	}
	.footLink {
		margin: 30px auto;
		width: 100%;
	}
	.footLink li:first-child {
		margin-bottom: 20px;
	}
	.footLink a {
		font-size: 22px;
		width: 100%;
		height: 70px;
	}
	.footLink a:after {
		content: '';
		width: 18px;
		height: 31px;
		background: url(../images/top/sp/footer_arrow.svg) no-repeat;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		background-size: 100%;
	}
	.btmLink a:before {
		left: 25%;
	}
	.btmLink {
		width: 100%;
		height: 60px;
		margin: 20px auto 0;
	}
	.btmLink a {
		height: 100%;
		font-size: 20px;
		width: 80%;
		margin: 0 auto;
	}
	.corp {
		display: block;
		justify-content: space-between;
		padding: 0;
		margin-top: 20px;
	}
	.owner {
		margin-top: 10px;
	}
	.owner dt {
		margin-right: 0;
	}
	.owner dd {
		width: 50%;
		margin: 0 auto;
		margin-top: 20px;
	}
	footer small {
		font-size: 10px;
		color: #fff;
		text-align: center;
		display: block;
		background: #1D2C83;
		padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
		font-weight: 100;
	}
	p.reception_time {
		line-height: 1.4;
		font-size: 14px;
		margin-top: 10px;
	}

	/*-------------------------------------*/
	/*---------------  top  ---------------*/
	/*-------------------------------------*/
	.top .kvImage {
		margin-top: 66px;
	}
	/*  #information  */
	#information {
		padding: 0;
	}
	#information .imgBox {
		width: 100%;
	}
	#information .column {
		width: 100%;
		flex-wrap: nowrap;
		flex-direction: column;
	}
	#information ul {
		padding: 0 0 30px 0;
		border-left: none;
	}
	#information ul li {
		width: 100%;
	}
	#information ul li span {
		padding: 0 0 10px 0;
		display: block;
	}
	#information ul li:after {
		margin-right: 0;
		right: -50px;
	}
	#information h2 {
		padding: 0 0 20px 0;
	}

	/*  #about  */
	#about h3 {
		font-size: 18px;
	}
	#about h2.headTitle {
		font-size: 42px;
	}
	#about {
		background: -moz-linear-gradient(90deg, rgba(231,246,253,1) 0%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
		background: -webkit-linear-gradient(90deg, rgba(231,246,253,1) 0%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
	}
	#about .column {
		flex-direction: column;
	}
	#about .column > div {
		width: 100%;
	}
	#about .imgArea ul {
		width: 100%;
		display: flex;
	}
	#about p {
		font-size: 12px;
		margin-bottom: 40px;
	}
	#about .column div.blockInner img {
		width: 50%;
	}
	.textArea {
		margin-bottom: 60px;
	}
	#about .textArea {
		margin-bottom: 0;
	}
	.contBox img {
		padding: 0 6px;
	}

	/*  #contents  */
	#contents {
		height: auto;
		padding-bottom: 60px;
	}
	span.sub_title {
		font-size: 16px;
	}
	#location .mapBox {
		height: 300px;
	}
	#footerInner .inner {
		width: 100%;
		margin: 0 auto;
		padding: 30px 10px;
	}
	.textMiddle {
		font-size: 16px;
		line-height: 1.6;
	}
	/* 予告広告 */
	.koukoku {
		padding: 0 5%;
	}
	.koukoku dl {
		margin: 30px 0;
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: center;
	}
	.koukoku dt {
		margin-bottom: 20px;
	}

	/*------------------------------------*/
	/*------------  location  ------------*/
	/*------------------------------------*/
	.location #about {
		padding: 40px 0;
	}
	.location #lifeInformation {
		padding: 0 10px;
	}
	.location #lifeInformation div.column {
		padding: 10px;
		flex-wrap: nowrap;
		flex-direction: row;
	}
	.location #lifeInformation div.column div {
		width: calc(100% / 3);
	}
	.location #lifeInformation .contBox div img {
		padding: 0;
	}
	.location #lifeInformation .place li {
		padding: 5px 0;
		margin: 5px 0;
		font-size: 14px;
	}
	.location #mainPlace .area01 li,
	.location #mainPlace .area02 li {
		width: calc(100% / 2);
	}
	.location #mainPlace .area03 {
		padding: 0 10px;
	}
	.location #mainPlace .area03 li {
		width: calc((100% - 10px) / 2);

	}
	.location #lifeInformation .distance li span {
		font-size: 10px;
	}
	.location #lifeInformation .distance li {
		padding: 5px 0;
		margin: 5px 0;
		font-size: 12px;
	}
	.location #mainPlace .area01 p {
		font-size: 12px;
	}
	.location #mainPlace .area03 li dl {
		flex-direction: column;
	}
	.location #mainPlace .area03 li dl dt {
		width: 100%;
	}
	.location #mainPlace .area03 li dl dd {
		width: 100%;
		text-align: right;
	}
	.location #mainPlace .area04 {
		padding: 0 10px;
	}
	.location.textArea {
		margin-bottom: 0;
	}
	.location #map .linkArea a {
		font-size: 16px;
	}
	.location #mainPlace ul li figcaption {
		padding: 10px 10px 0;
	}

	/*---------------------------------------*/
	/*-------------  equipment  -------------*/
	/*---------------------------------------*/
	.equipment .contBox {
		padding: 0 10px;
	}
	.equipment .anchor {
		padding: 20px 0;
		margin-bottom: 0;
	}
	.equipment .anchor ul {
		padding: 0 10px;
	}
	.equipment .anchor ul li {
		width: calc((100% - 20px) / 2);
		margin: 0 0 20px 0;
		height: 55px;
		font-size: 16px;
	}
	.equipment .anchor ul li:nth-child(1),
	.equipment .anchor ul li:nth-child(5),
	.equipment .anchor ul li:nth-child(6) {
		margin: 0 0 20px 0;
	}
	.equipment .anchor ul li:nth-child(7) {
		margin: 0;
	}
	.equipment .anchor ul li:nth-child(even) {
		margin-left: 20px;
	}
	.equipment .kitchenArea01 {
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: center;
	}
	.equipment .kitchenArea01 p {
		font-size: 10px;
	}
	.equipment .kitchenArea02,
	.equipment .kitchenArea03 {
		width: 100%;
		justify-content: normal;
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: center;
	}
	.equipment .kitchenArea01 > li,
	.equipment .kitchenArea02 li,
	.equipment .kitchenArea03 li {
		width: 100%;
		margin-bottom: 40px;
	}
	.equipment .bathroomArea01 {
		margin-right: 0;
	}
	.equipment .kitchenArea01 img {
		width: 100%;
	}
	.equipment .kitchenArea01 > li:last-child,
	.equipment .kitchenArea02 li:last-child,
	.equipment .kitchenArea03 li:last-child {
		margin-bottom: 0;
	}
	.equipment .kitchenArea01 > li:first-child {
		width: 100%;
	}
	.equipment .bathroomArea02 ul li ul {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.equipment .kitchenArea01 > li > ul > li:nth-child(1) {
		width: 18%;
	}
	.equipment .kitchenArea01 > li > ul > li:nth-child(2) {
		width: 60%;
	}
	.equipment .kitchenArea01 > li > ul > li:nth-child(3) {
		width: 20%;
		font-size: 10px;
	}
	.equipment .kitchenArea01 > li ul li ul li {
		width: calc((100% - 5px) / 2);
		padding: 10px;
		margin-bottom: 5px;
		font-size: 12px;
	}
	.equipment .kitchenArea02 li ul li {
		width: 100%;
	}
	.equipment .kitchenArea02 li ul.column {
		margin-top: 10px;
		flex-wrap: wrap;
		flex-direction: column;
	}
	.equipment .kitchenArea02 li ul li figcaption {
		font-size: 10px;
	}
	.equipment .kitchenArea01 li ul li figure.column img,
	.equipment .kitchenArea02 li ul li figure.column img {
		object-fit: none;
	}
	.equipment .kitchenArea03 li figure.column {
		flex-wrap: wrap;
	}
	.equipment .bathroomArea02 .bathroomCont01 > ul > li:nth-child(2) {
		margin-top: 20px;
		width: auto;
	}
	.equipment .bathroomArea02 .bathroomCont02 ul li.pictureArea {
		position: unset;
	}
	.equipment .bathroomArea02 .bathroomCont02 ul li.pictureArea img {
		width: 100%;
	}
	.equipment .bathroomArea02 .bathroomCont02 ul li ul li {
		width: calc((100% - 10px) /2);
		margin-bottom: 30px;
	}
	.equipment .bathroomArea02 div > ul > li:first-child {
		margin-right: 0;
		padding-right: 0;
		width: 100%;
	}
	.equipment .bathroomArea02 .bathroomCont01 ul {
		flex-wrap: wrap;
		flex-direction: row;
	}
	.equipment .bathroomArea02 .bathroomCont01 ul li {
		width: calc((100% - 30px) / 3);
	}
	.equipment #bathroom > .contBox > div.column {
		flex-wrap: wrap;
		flex-direction: inherit;
		justify-content: unset;
	}
	.tRight::after {
		right: -30px;
	}
	.equipment .powderroom .powderroomArea01,
	.equipment .restroom .restroomArea01 {
		width: 100%;
		margin-right: 0;
	}
	.equipment .powderroom .powderroomArea02 .powderroomCont01,
	.equipment .restroom .restroomArea02 .restroomCont01 {
		width: 100%;
	}
	.equipment .powderroom,
	.equipment .restroom,
	.equipment .powderroom .powderroomArea02 .powderroomCont01 ul,
	.equipment .restroom .restroomArea02 .restroomCont01 ul,
	.equipment .powderroom .powderroomCont01 figure,
	.equipment .restroom .restroomCont01 figure,
	.equipment .facility .facilityArea01 ul,
	.equipment .facility .facilityArea02 > ul.column,
	.equipment .security > ul,
	.equipment .construction ul {
		flex-wrap: nowrap;
		flex-direction: column;
	}
	.equipment .powderroom .powderroomCont01 li,
	.equipment .restroom .restroomCont01 li {
		width: calc(100% / 2);
		margin-bottom: 30px;
	}
	.equipment .powderroom .powderroomCont01 li:last-child,
	.equipment .restroom .restroomCont01 li:last-child {
		margin-bottom: 0;
	}
	.equipment .facility .facilityArea01 dl dt,
	.equipment .facility .facilityArea01 dl dd {
		width: 100%;
	}
	.equipment .facility .facilityArea01 ul li,
	.equipment .facility .facilityArea02 > ul.column > li,
	.equipment .security > ul > li {
		width: 100%;
		margin-bottom: 40px;
	}
	.equipment .construction .constructionArea01 ul li {
		width: 100%;
		height: 340px;
	}
	.equipment .construction .constructionArea02 ul li:nth-child(1),
	.equipment .construction .constructionArea04 ul li:nth-child(1) {
		width: 100%;
		margin-right: 0;
	}
	.equipment .construction .constructionArea01 ul li:nth-child(1)img,
	.equipment .construction .constructionArea01 ul li:nth-child(2) img,
	.equipment .construction .constructionArea01 ul li:nth-child(3) img {
		position: inherit;
	}
	.equipment .construction .constructionArea02 li:first-child img,
	.equipment .construction .constructionArea03 li img {
		width: 100%;
	}
	.equipment .construction .constructionArea02 ul li:nth-child(1) img {
		width: inherit;
	}
	.equipment .construction .constructionArea03 dl dt {
		width: 45px;
	}
	.equipment .construction .constructionArea04 ul li .design01 li {
		width: 180px;
		font-size: 20px;
	}
	.equipment .construction .constructionArea04 > ul > li {
		height: auto;
	}
	.equipment .construction .constructionArea04 ul li .design01,
	.equipment .construction .constructionArea04 ul li .design02 {
		flex-wrap: nowrap;
		flex-direction: row;
		justify-content: space-between;
	}
	.equipment .powderroom .powderroomCont01 figure img,
	.equipment .restroom .restroomCont01 figure img {
		margin: 10px auto 0;
		height: auto;
	}
	.equipment .powderroom .powderroomCont01 li,
	.equipment .restroom .restroomCont01 li {
		width: 100%;
	}
	.benefits {
		position: unset;
	}
	.cleaning ul {
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: center;
	}
	.cleaning ul li {
		margin-top: 10px;
		padding: 10px 20px;
	}
	.cleaning ul li:last-child {
		margin-bottom: 0;
	}
	.equipment .facility .cyberhomeArea h4 {
		height: auto;
	}
	.equipment .facility .cyberhomeArea h4 ul {
		justify-content: center;
	}
	.equipment .facility h4 img {
		margin-bottom: 10px;
	}
	.equipment .facility .familynetArea .partner img {
		height: auto;
		width: 100%;
	}
	.equipment .security .securityArea01 li img {
		position: unset;
	}
	.equipment .security .securityArea03 img {
		top: 80px;
		right: 0;
	}
	.directService li span {
		letter-spacing: 0;
	}


	/*--------------------------------------*/
	/*---------------  plan  ---------------*/
	/*--------------------------------------*/
	.plan .floorplan {
		padding: 0 10px;
	}
	.plan .floorplan ul {
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: center;
	}
	.plan .floorplan ul li dl dt {
		padding: 10px 0;
	}
	.plan .planlist p {
		text-align: unset;
	}
	.plan .planlist {
		padding: 0 10px;
	}
	.plan .planlist li {
		padding: 0 0 30px;
		margin-bottom: 0;
	}
	.plan .planlist figure {
		flex-wrap: nowrap;
		flex-direction: column;
		align-items: center;
	}
	.plan .planlist figure figcaption {
		width: 100%;
	}
	.plan .planlist figure img {
		width: 100%;
		margin-left: 0;
	}

}
