/* menu */
.menu-container {
  display: block;
  height: 100%;
  width: 350px;
  /*
  z-index: 70;
  */
  position: absolute;
  top: 80px;
  left: 0;
  overflow: hidden;
  -ms-overflow-style: none;
}

.menu-container::-webkit-scrollbar {
  display: none;
}

.menu-iframe {
  overflow: hidden;
  -ms-overflow-style: none;
  height: 100%;
}

html {
  font-size: 62.5% !important;
}
/*
body {
  font-family: 'Noto Sans JP','Avenir','Helvetica Neue','Helvetica','Arial',sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1;
  position: relative;
  height: 100vh;
  width: 300px;
}
*/
/*
a {
  text-decoration: none;
}
*/
ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
/*
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*/
/*
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
*/

.dropdown {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 244px;
  background-color: #2A5772;
  font-family: "Montserrat", sans-serif;
  padding-top: 80px;
  font-size: 12px;
}

.dropdown li {
  position: relative;
}

.dropdown li.selected {
  background-color: #F8F8F8;
  color: #2A5772;
}

.dropdown li.selected a {
  color: #2A5772;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.dropdown li.selected > ul > li > a {
  color: #fff;
  padding-left: 92px;
}

.dropdown li a {
  display: block;
  /*
  width: 100%;
  */
  padding: 14px 0 14px 40px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all .3s;
}

.dropdown > li > ul > li > a {
  padding-left: 64px !important;
  background: #616C7A;
}

.dropdown li > ul li {
  color: #fff;
}

.dropdown li > ul li a {
  padding-left: 48px;
  color: #fff;
  transition: all .0s;
}

.dropdown li > ul li a:hover {
  color: #90A4AE;
}

.dropdown li > ul li a:active {
  color: #fff;
}

.dropdown li > ul li > ul li {
  padding: 10px 0 10px 30px;
}

.dropdown li > ul li > ul li a {
  color: #fff;
  font-size: 12px;
  text-transform: none;
  padding: 0;
}

.selected li:nth-child(2) {
  background: #616C7A;
  color: #fff;
}

.selected li:nth-child(2):hover {
  color: #90A4AE;
}

.selected li:nth-child(3) {
  background: #616C7A;
  color: #fff;
}

.selected li:nth-child(3):hover {
  color: #90A4AE;
}

.selected li:first-child {
  background: #616C7A;
  color: #fff;
}

.selected li:first-child:hover {
  color: #90A4AE;
}

.dropdown li.selected:first-child a {
  color: #2A5772;
}

.dropdown li.selected:first-child ul a {
  color: #fff;
}

.p-sidemenu {
  position: relative;
  height: 100vh;
  width: 244px;
}

.p-sidemenu__sidebtn {
  width: 44px;
  height: 120px;
  background-color: #2A5772;
  color: #fff;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 244px;
  top: 64px;
}

.wrapper_menu {
  height: 100%;
  width: 244px;
  position: relative;
  display: block;
}

/*
main {
  height: 100%;
  min-height: 100vh;
  width: 244px;
  transition: all .3s;
  position: absolute;
}
*/
.menu-trigger {
  width: 56px;
  height: 120px;
  cursor: pointer;
  position: fixed;
  top: 144px;
  left: 0px;
  z-index: 100;
  transform: translateX(0);
  transition: transform .3s;
  background-color: #2A5772;
  border-radius: 6px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-trigger__icon {
  height: 32px;
  width: auto;
  transform: rotate(0deg);
  transition: all .3s;
}

.active_tri {
  transform: rotate(180deg) !important;
  transition: all .3s;
}

.menu-trigger.active {
  transform: translateX(243px);
}

.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
}

.menu-trigger.active span {
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) {
  top: 12px;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

nav2 {
  width: 244px;
  height: 100%;
  padding-top: 100px;
  background-color: #2A5772;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transform: translate(-250px);
  transition: all .3s;
}

nav2.open {
  transform: translateZ(0);
}

nav2 li {
  color: #fff;
  text-align: left;
}

nav2 ul {
  list-style: none;
}

.navwrapper {
  width: 244px;
  height: 100%;
  position: relative;
  display: block;
  -webkit-font-smoothing: antialiased;
}

.menu-ic {
  fill: #fff;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

nav2 li.selected > a > .menu-ic {
  fill: #2A5772;
}

.u-menu-noChild {
  padding-left: 16px;
}

.menu-tri {
  fill: #fff;
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
  transition: all .3s;
}

#menu-tri01 {
  transform: rotate(0);
  transition: all .3s;
}

nav2 li.selected > a > .menu-tri {
  fill: #2A5772 !important;
  transform: rotate(90deg) !important;
}

nav2 li.selected > a > #menu-tri01.active_menutri {
  transform: rotate(90deg) !important;
}

nav2 li.hasChild > ul {
  display: none !important;
}

nav2 li.hasChild.selected > ul {
  display: block !important;
}

.menuobject:hover {
  background: #90A4AE;
}

/* header */
.section-header_lite {
  width: 100%;
  background-color: #2A5772;
  height: 80px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
}

.iu-header-box_lite {
  position: relative;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1808px;
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 32px;
  box-sizing: border-box;
}

.iu-box-header-left_lite {
  float: left;
  height: 100%;
  position: relative;
  width: 30%;
  /*
  width: 65%;
  */
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.iu-box-header-right_lite {
  width: auto;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
}

.text-logout_lite {
  font-size: 1.4rem;
  font-weight: 700;
  height: 32px;
  width: 144px;
  background-color: #fff;
  color: #2A5772;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.text-logout_lite:hover, .a-inner-link_lite:hover {
  color: #90A4AE;
}

.header-button_lite {
  position: relative;
  margin-left: 24px;
}

.a-inner-link_lite {
  position: relative;
}

.text-loginId_lite {
  font-weight: 300;
  vertical-align: middle;
  color: #fff;
  float: left;
}

/* footer */
footer_lite {
	/*
  background-color: #F8F8F8;
  */
  background-color: transparent;
  height: 80px;
  width: 100%;
  position: absolute;
  bottom: 0;
  color: #616C7A;
}

footer_lite .iu-header-box_lite {
  margin: 0 auto;
  color: #616C7A;
}

.text-footer_lite {
  font-size: 14px;
  color: #616C7A;
  height: 75%;
  margin-top: 25px;
  text-align: center;
}

/* page */
.u-center {
  display: block;
  margin: 0 auto;
}
.iu-header-box_bottom_page {
  position: relative;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1808px;
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 32px;
  box-sizing: border-box;
}
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImZvck1lbnUuc2NzcyIsImZvck1lbnUuY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBO0VBQ0UsY0FBYztFQUNkLFlBQVk7RUFDWixZQUFXO0VBQ1gsV0FBVztFQUNYLGtCQUFrQjtFQUNsQixTQUFRO0VBQ1IsT0FBTztFQUNQLGdCQUFnQjtFQUNoQix3QkFBd0I7QUNDMUI7O0FERUE7RUFDRSxhQUFZO0FDQ2Q7O0FERUE7RUFDRSxnQkFBZ0I7RUFDaEIsd0JBQXdCO0VBQ3hCLFlBQVc7QUNDYiIsImZpbGUiOiJmb3JNZW51LmNzcyIsInNvdXJjZXNDb250ZW50IjpbIi5tZW51LWNvbnRhaW5lcntcbiAgZGlzcGxheTogYmxvY2s7XG4gIGhlaWdodDogMTAwJTtcbiAgd2lkdGg6MzUwcHg7XG4gIHotaW5kZXg6IDcwO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDo4MHB4O1xuICBsZWZ0OiAwO1xuICBvdmVyZmxvdzogaGlkZGVuO1xuICAtbXMtb3ZlcmZsb3ctc3R5bGU6IG5vbmU7XG59XG5cbi5tZW51LWNvbnRhaW5lcjo6LXdlYmtpdC1zY3JvbGxiYXIge1xuICBkaXNwbGF5Om5vbmU7XG59XG5cbi5tZW51LWlmcmFtZXtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgLW1zLW92ZXJmbG93LXN0eWxlOiBub25lO1xuICBoZWlnaHQ6MTAwJTtcbn0iLCIubWVudS1jb250YWluZXIge1xuICBkaXNwbGF5OiBibG9jaztcbiAgaGVpZ2h0OiAxMDAlO1xuICB3aWR0aDogMzUwcHg7XG4gIHotaW5kZXg6IDcwO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogODBweDtcbiAgbGVmdDogMDtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgLW1zLW92ZXJmbG93LXN0eWxlOiBub25lO1xufVxuXG4ubWVudS1jb250YWluZXI6Oi13ZWJraXQtc2Nyb2xsYmFyIHtcbiAgZGlzcGxheTogbm9uZTtcbn1cblxuLm1lbnUtaWZyYW1lIHtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgLW1zLW92ZXJmbG93LXN0eWxlOiBub25lO1xuICBoZWlnaHQ6IDEwMCU7XG59XG4iXX0= */