/* ----------------------------------------

- company sidebar

---------------------------------------- */
#sidebar {
  width: 23%;
  float: left;
}
#main {
  width: 73%;
  float: right;
}
#sidebar .pagenav > ul > li {
  border-bottom: 1px solid #E5E5E5;
}
#sidebar .pagenav > ul > li > * {
  display: block;
  padding: 30px;
}
#sidebar .pagenav .head  > * {
  font-weight: bold;
  padding: 30px 20px;
  color: #fff;
  background: #1C6B85;
}
#sidebar .pagenav > ul > li > a:hover,
#sidebar .pagenav .active  > * {
  color: #189800;
}
@media only screen and (max-width: 737px) {
  #sidebar {
    width: auto;
    float: none;
    margin-bottom: 50px;
  }
  #main {
    width: auto;
    float: none;
  }
  #sidebar .pagenav > ul {
    display: flex;
    text-align: center;
  }
  #sidebar .pagenav > ul > li {
    width: 25%;
    border-right: 1px solid #E5E5E5;
    border-bottom: none;
  }
  #sidebar .pagenav > ul > li:first-child {
    border-left: 1px solid #E5E5E5;
}
  #sidebar .pagenav > ul > li > * {
    padding: 20px 5px;
  }
  #sidebar .pagenav .head  > * {
    padding: 20px 5px;
  }
}
/* ----------------------------------------

- profile

---------------------------------------- */
/* profileList
--------------------------------- */

#profileList {
	display: flex;
	flex-wrap: wrap;
}
#profileList dt {
	width: 22%;
  font-weight: bold;
  background: #F2F2F2;
}
#profileList dd {
	width: 78%;
}
#profileList dt,
#profileList dd {
	padding: 30px;
  box-sizing: border-box;
  border-bottom: 1px solid #CCCCCC;
}
#profileList dt:first-of-type,
#profileList dd:first-of-type {
  border-top: 1px solid #CCCCCC;
}
@media only screen and (max-width: 737px) {
	#profileList {
		font-size: 14px;
	}
	#profileList dt {
		width: 7em;
	}
	#profileList dd {
		width: calc(100% - 7em);
		text-align: left;
	}
	#profileList dt,
	#profileList dd {
		padding: 20px 1em;
	}
}
/* ----------------------------------------

- accessSec

---------------------------------------- */
.accessSec_mapArea {
  position: relative;
}
.accessSec_mapArea .googlemap {
  position: relative;
  width: 100%;
  padding-top: 47.1264%;
}
.accessSec_mapArea .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.accessSec_mapBtn {
  max-width: 40%;
  position: absolute;
  right: 0;
  bottom: -30px;
  transform: translateY(100%);
}
.accessSec_textArea {
  max-width: 58%;
  margin-top: 30px;
}
@media only screen and (max-width: 737px) {
  .accessSec_mapArea .googlemap {
    padding-top: 80%;
  }
  .accessSec_mapBtn {
    text-align: right;
    margin-top: 20px;
    max-width: none;
    position: static;
    transform: translateY(0);
  }
  .accessSec_textArea {
    max-width: none;
    margin-top: 20px;
  }
  
}