@charset "utf-8";

.sp {
	display: none !important;
}

.areaWrap {
  display: block;
  background: #f5f5f5;
  margin: 15px auto;
}
.areaInfo {
  display: flex;
  align-items: stretch;
  margin: 0 0 30px;
}

/*--------------------------------------
.mapArea　
---------------------------------------*/
.mapArea {
  width: 220px;
  height: 220px;
  margin: 0 30px 0 0;
}

/*--------------------------------------
.areaTxtArea　
---------------------------------------*/
.areaTxtArea {
  width: calc(100% - 290px);
}
.areaTxtArea .areaTit {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-top: 2px solid #4497F7;
  margin: 30px 0 15px;
}
.osaka .areaTxtArea .areaTit {
  border-top: 2px solid #ff3d00;
}
.areaTxtArea .areaName {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: #4497F7;
  padding: 15px 15px;
}
.osaka .areaTxtArea .areaName {
  background: #ff3d00;
}
.areaTxtArea .areaStation {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 0 15px;
}
.areaTxtArea .areaCmt {
  width: 100%;
  font-size: 14px;
  background: #fff;
  padding: 13px 20px;
}
.areaTxtArea .areaCmt.more {
}
.areaTxtArea .areaCmt.more p {
}
.areaTxtArea .areaCmt .more__btn {
  display: none
}

/*--------------------------------------
.officeArea　
---------------------------------------*/
.officeArea {
  padding: 0 40px 30px;
}
.officeArea .officeTit {
	display: flex;
	box-sizing: border-box;
	max-width: 100%;
	font-size: 18px;
  font-weight: bold;
	align-items: center;
  margin: 0 0 15px;
}
.officeArea .officeTit::before, 
.officeArea .officeTit::after {
	content: "";
	display: block;
	height: 1px;
	flex-grow: 1;
	background: #d6d6d6;
}
.officeArea .officeTit::before {
	margin-right: 1.5em;
}
.officeArea .officeTit::after {
	margin-left: 1.5em;
}
.officeArea ul {
  display: flex;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  counter-reset: list_circle_num_counter;
}
.officeArea .officeBox {
  width: calc(100% / 3);
  background: #fff;
  box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.2);
  counter-increment: list_circle_num_counter;
}
.officeArea .officeBox a {
 display: block;
}
.officeArea .officeBoxInner {
  display: flex;
  align-items: stretch;
}
.officeArea .officePic {
  width: 75px;
  height: 100px;
  margin: 0 0 0 0;
}
.officeArea .officeTxt {
  width: calc(100% - 75px);
  padding: 12px 15px 0;
}
.officeArea .officeName {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 0 0 25px;
  margin: 0 0 6px;
  position: relative;
}
.officeArea .officeName::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: calc(1.5em);
  height: calc(1.5em);
  background-color: #4497F7;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  border-radius: 50%;
  text-align: center;
  line-height: calc(1.5em);
  content: counter(list_circle_num_counter);
}
.osaka .officeArea .officeName::before {
  background-color: #ff3d00;
}
.officeArea .roomAvailability {
  display: inline-block;
  font-size: 13px;
  list-style: 1;
  color: #9398a3;
  border: 1px solid #9398a3;
  border-radius: 100px;
  padding: 0 12px;
  margin: 0 0 0 25px;
}
.officeArea .roomAvailability.full {
  color: #fff;
  background: #9398a3;
}




@media (max-width: 985px) {
  .officeArea ul {
    display: flex;
    flex-wrap: wrap;
  }
	.officeArea .officeBox {
    width: calc(100% / 2 - 15px);
  }
}





@media (max-width: 779px) {
	.pc {
    display: block;
	}
}





@media (max-width: 768px) {
  .areaWrap {
    display: block;
    background: #f5f5f5;
    position: relative;
    width: 100vw;
    margin: 15px calc(50% - 50vw) 30px;
    padding: 0 0 1px;
  }

  .areaInfo {
    display: flex;
    align-items: stretch;
    margin: 0 0 30px;
  }

  /*--------------------------------------
  .mapArea　
  ---------------------------------------*/
  .mapArea {
    width: 60%;
    height: auto;
    margin: 0 auto 30px;
    display: none;
  }
  .areaWrap.is-open .mapArea {
  	display: block;
  }

  /*--------------------------------------
  .areaTxtArea　
  ---------------------------------------*/
  .areaTxtArea {
    width: 100%;
  }
  .areaTxtArea .areaTit {
    display: flex;
    align-items: stretch;
    width: 100%;
    border-top: 2px solid #4497F7;
    margin: 0 0 15px;
  }
  .osaka .areaTxtArea .areaTit {
    border-top: 2px solid #ff3d00;
  }
  .areaTxtArea .areaName {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    background: #4497F7;
    padding: 15px 15px;
  }
  .osaka .areaTxtArea .areaName {
    background: #ff3d00;
  }
  .areaTxtArea .areaStation {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 0 15px;
  }
  .areaTxtArea .areaCmt {
    width: 94%;
    font-size: 12px;
    background: #fff;
    padding: 15px 15px;
    margin: 0 auto;
  }


  .areaTxtArea .areaCmt .more {
    margin:0 auto;
    box-sizing: border-box;
  }
  .areaTxtArea .areaCmt .more__content {
    position: relative;
    height: auto;
    max-height: 90px;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .areaTxtArea .areaCmt .more__content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background: linear-gradient(to bottom,transparent 0%,#fff 100%);
  }
  .areaTxtArea .areaCmt .more__content.open:after {
    z-index: -1;
    opacity: 0;
  }
  .areaTxtArea .areaCmt .more__btn {
    font-size: 1.5rem;
    text-align: center;
    display: block;
    color: #4497F7;
    width: 180px;
    margin: 15px auto 0;
    background: #FFF;
    background-size: 20px auto;
    padding: 8px 15px;
    border: 1px solid #4497F7;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .osaka .areaTxtArea .areaCmt .more__btn {
    color: #FD6E01;
    border: 1px solid #FD6E01;
  }
  .areaTxtArea .areaCmt .more__btn:hover {
    opacity: .8
  }

  /*--------------------------------------
  .officeArea　
  ---------------------------------------*/
  .officeArea {
    padding: 0 3% 30px;
    display: none;
  }
  .areaWrap.is-open .officeArea {
  	display: block;
  }
  .officeArea .officeTit {
    display: flex;
    box-sizing: border-box;
    max-width: 100%;
    font-size: 18px;
    font-weight: bold;
    align-items: center;
    margin: 0 0 15px;
  }
  .officeArea .officeTit::before, 
  .officeArea .officeTit::after {
    content: "";
    display: block;
    height: 1px;
    flex-grow: 1;
    background: #d6d6d6;
  }
  .officeArea .officeTit::before {
    margin-right: 1.5em;
  }
  .officeArea .officeTit::after {
    margin-left: 1.5em;
  }
  .officeArea ul {
    display: block;
    width: 100%;
    counter-reset: list_circle_num_counter;
  }
  .officeArea .officeBox {
    width: 100%;
    background: #fff;
    box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.2);
    counter-increment: list_circle_num_counter;
    margin: 0 0 10px;
  }
  .officeArea .officeBox a {
   display: block;
  }
  .officeArea .officeBoxInner {
    display: table;
    width: 100%;
  }
  .officeArea .officePic {
    display: table-cell;
    vertical-align: middle;
    width: 75px;
    height: 100px;
    margin: 0 0 0 0;
  }
  .officeArea .officeTxt {
    width: calc(100% - 75px);
    padding: 0 15px;
    display: table-cell;
    vertical-align: middle;
  }
  .officeArea .officeName {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
    padding: 0 0 0 25px;
    margin: 0 0 6px;
    position: relative;
  }
  .officeArea .officeName::before {
    display: block;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    width: calc(1.5em);
    height: calc(1.5em);
    background-color: #4497F7;
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    border-radius: 50%;
    text-align: center;
    line-height: calc(1.5em);
    content: counter(list_circle_num_counter);
  }
  .osaka .officeArea .officeName::before {
    background-color: #ff3d00;
  }
  .officeArea .roomAvailability {
    display: inline-block;
    font-size: 13px;
    list-style: 1;
    color: #9398a3;
    border: 1px solid #9398a3;
    border-radius: 100px;
    padding: 0 12px;
    margin: 0 0 0 25px;
  }
  .officeArea .roomAvailability.full {
    color: #fff;
    background: #9398a3;
  }

}





@media only screen and (max-width: 480px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
		text-align: center;
		margin-bottom: 20px;
	}
}