@charset "utf-8";
@import url("destyle.css");

/* ----------------------------------------------- font */
/*Noto Sans（日本語）*/
@font-face {
  font-family: 'NotoSans_JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format('woff2'), url("../font/NotoSansJP-Regular.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans_JP_Bold';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Medium.woff2") format('woff2'), url("../font/NotoSansJP-Medium.woff") format('woff');
}
/*MPLUS1p（日本語）*/
@font-face {
  font-family: 'MPLUS1p';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/MPLUS1p-Regular.woff2") format('woff2'), url("../font/MPLUS1p-Regular.woff") format('woff');
}
/* ----------------------------------------------- */
* {
  color: #222;
  line-height: 170%;
  box-sizing: border-box;
  font-family: 'NotoSans_JP', sans-serif;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.7rem;
  min-height: 100vh;
  -webkit-print-color-adjust: exact;
  -webkit-text-size-adjust: 100%;
  background: #eeeff4;
  background: linear-gradient(127deg, rgba(238, 239, 244, 1) 39%, rgba(207, 219, 239, 1) 100%);
  word-wrap: break-word;
}
@media screen and (max-width: 900px) {
  * {
    line-height: 160%;
  }
  html {}
  body {
    font-size: 1.6rem;
  }
}
/* ----------------------------------------------- link */
a {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
  color: #888;
}
a:hover {
  color: #ccc;
}
::before,::after {
  transition: all 0.3s ease 0s;
}
/* ----------------------------------------------- selection */
/*::selection {
  color: #000;
  background-color: #f5ab18;
}*/
/* ----------------------------------------------- file */
a[href$=".pdf"]:after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/pdf.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  bottom: 0;
  text-indent: -9999px;
}
a[href$=".doc"]:after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/doc.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  text-indent: -9999px;
}
a[href$=".docx"]:after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/doc.svg);
  background-repeat: no-repeat;
  background-position: 4px center;
  content: ".";
  text-indent: -9999px;
}
a[href$=".xls"]:after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/xls.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  text-indent: -9999px;
}
a[href$=".xlsx"]:after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/xls.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  text-indent: -9999px;
}

/* ----------------------------------------------- wrapper */
#wrapper {
  min-width: 900px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #wrapper {
    min-width: 100%;
  }
}
/* ----------------------------------------------- header */
header {
  position: relative;
  height: 100px;
  text-align: left;
  background-color: #fff;
  border-top: 5px solid rgba(0,166,141,1);
  box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.2);
}
header h1 {}
header h1 a {
  text-decoration: none;
}
header h1 img {
  vertical-align: text-botom;
}
header h1 img.jsrcr {
  width: 400px;
  max-width: 400px;
  height: auto;
  margin: 15px 15px 0 15px;
}
header h1 img.mori {
  margin-bottom: 15px;
}
header ul {
  position: absolute;
  top: -5px;
  right: 0;
  display: table;
  list-style: none;
}
header li {
  display: table-cell;
  margin: 0;
  padding: 0 0 0 1px;
}
header li a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  padding-top: 55px;
  box-sizing: border-box;
  font-size: 1.3rem;
  text-align: center;
}
header li a:link,
header li a:active,
header li a:visited {
  color: #fff;
  text-decoration: none;
  background-color: rgba(46,129,235,0.9);
}
header li a:hover {
  background-color: rgba(46,129,235,1.0);
}
header li.logout a:link,
header li.logout a:active,
header li.logout a:visited {
  background-color: rgba(85,85,85,0.85);
}
header li.logout a:hover {
  background-color: rgba(85,85,85,1.0);
}
/**/
header li a::before {
  position: absolute;
  content: '';
  top: 25px;
  left: 38px;
  width: 23px;
  height: 23px;
  background-repeat: no-repeat;
  background-position: center;
}
header li.mypage a::before {
  background-image: url("../img/icon_mypage.png")
}
header li.setting a::before {
  background-image: url("../img/icon_setting.png")
}
header li.logout a::before {
  background-image: url("../img/icon_logout.png")
}
@media screen and (max-width: 900px) {
  header ul {
    display: none;
  }
  @media screen and (max-width: 650px) {
    header {
      display: table;
      width: 100%
    }
    header h1 {
      display: table-cell;
      vertical-align: middle;
    }
    header h1 img.jsrcr {
      width: 50%;
      margin: 0 10px 0 15px;
    }
    header h1 img.mori {
      width: 20%;
      height: auto;
      margin-bottom: 5px;
    }
    @media screen and (max-width: 550px) {
      header {
        height: 80px;
      }
    }
  }
}
/* -------------------------------------------------- breadcrumbs */
.breadcrumbs {
  width: 95%;
  margin: 30px auto;
  text-align: left;
}
.breadcrumbs ul {
}
.breadcrumbs ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}
.breadcrumbs ul li a,
.breadcrumbs ul li span {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}
.breadcrumbs ul li a::before,
.breadcrumbs ul li span::before {
  position: absolute;
  content: '';
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumbs ul li a:link,
.breadcrumbs ul li a:active,
.breadcrumbs ul li a:visited {
  color: #333;
}
.breadcrumbs ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 900px) {
  .breadcrumbs ul li {
    display: none;
  }
}
/* -------------------------------------------------- nav */
nav {
  width: 95%;
  margin: 0 auto;
  text-align: left;
}
nav ul {
  display: flex;
  display: -webkit-flex;
}
nav ul li {
  margin-right: 10px;
}
nav ul li a {
  position: relative;
  display: block;
  padding: 40px 30px 10px 30px;
  border-radius: 10px 10px 0 0;
  font-size: 1.7rem;
  font-family: "NotoSans_JP_Bold";
  text-decoration: none;
}
nav ul li a {
  position: relative;
  background-color: #00a68d;
}
nav ul li a:link,
nav ul li a:active,
nav ul li a:visited,
nav ul li a:hover {
  color: #fff;
}
nav ul li.on a {
  background-color: #fff;
  color: #008d78;
}
/* top line */
nav ul li a::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60%;
  height: 2px;
  border-radius: 5px;
  background-color: #00a68d;
}
nav ul li.on a:hover::before {
  background-color: #00a68d;
}
/* icon */
nav ul li a::after {
  position: absolute;
  content: '';
  top: 18px;
  right: 0;
  left: 0;
  margin: auto;
  width: 32px;
  height: 23px;
  background-repeat: no-repeat;
  background-position: center;
}
nav ul li:nth-child(1) a::after {
  background-image: url("../img/icon_nav1_w.png");
}
nav ul li.on:nth-child(1) a::after {
  background-image: url("../img/icon_nav1_g.png");
}
nav ul li:nth-child(2) a::after {
  background-image: url("../img/icon_nav2_w.png");
}
nav ul li.on:nth-child(2) a::after {
  background-image: url("../img/icon_nav2_g.png");
}
nav ul li:nth-child(3) a::after {
  background-image: url("../img/icon_nav3_w.png");
}
nav ul li.on:nth-child(3) a::after {
  background-image: url("../img/icon_nav3_g.png");
}
nav ul li:nth-child(4) a::after {
  background-image: url("../img/icon_nav4_w.png");
}
nav ul li.on:nth-child(4) a::after {
  background-image: url("../img/icon_nav4_g.png");
}
nav ul li:nth-child(5) a::after {
  background-image: url("../img/icon_nav5_w.png");
}
nav ul li.on:nth-child(5) a::after {
  background-image: url("../img/icon_nav5_g.png");
}
@media screen and (max-width: 900px) {
  nav {
    margin-top: 50px;
  }
  nav ul li a {
    font-size: 1.6rem;
    padding: 40px 25px 10px 25px;
  }
  @media screen and (max-width: 800px) {
    nav {
      display: none;
    }
  }
}
/* -------------------------------------------------- main */
main {
  width: 95%;
  margin: 0 auto 30px auto;
  padding: 40px 50px 50px 50px;
  text-align: left;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 0px 0px -10px rgba(0,0,0,0.2);
}
@media screen and (max-width: 900px) {
  main {
    padding: 30px;
  }
  @media screen and (max-width: 650px) {
    main  {
      width: 96%;
      padding: 20px;
    }
  }
}
/* -------------------------------------------------- column */
#column {
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  #column {
    display: block;
    display: -webkit-block;
  }
}
/* -------------------------------------------------- content */
#content {
  flex: 1;
}
/* -------------------------------------------------- dashboard */
#dashboard {
  padding-bottom: 20px;
}
/* -------------------------------------------------- aside */
aside {
  width: 190px;
  margin-right: 50px;
  box-sizing: border-box;
  background-color: #eceff3;
  border-radius: 3px;
}
aside ul {
  padding: 25px 15px;
}
aside ul li {}
aside ul li a {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-size: 1.6rem;
  font-family: "NotoSans_JP_Bold";
}
aside ul li a:link,
aside ul li a:active,
aside ul li a:visited {
  color: #333;
  text-decoration: none;
}
aside ul li a::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #eceff3;
  border-right: 2px solid #eceff3;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
aside ul li a:hover::before {
  right: 15px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
/**/
aside li.on {
  padding-bottom: 5px;
}
aside li.on a {
  background-color: #76cac0;
  border-radius: 30px;
}
aside li.on a::before {
  right: 15px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
/* sp用プルダウン */
aside .sp {
  display: none;
}
@media screen and (max-width: 900px) {
  aside {
    width: 100%;
    margin: 0 0 20px 0;
    background-color: transparent;
  }
  aside ul {
    display: none;
  }
  /* sp用プルダウン */
  aside .sp {
    display: block;
    display: -webkit-flex;
    display: flex;
  }
  aside .sp p {
    margin: 0;
    padding: 0 15px 0 0;
    color: #00a68d;
    font-weight: bold;
    font-size: 2.5rem;
  }
  aside .sp .select_sp {
    position: relative;
    display: inline-block;
  }
  aside .sp .select_sp::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 8px;
    height: 8px;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 10;
  }
  aside .sp select {
    display: inline-block;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 8px 50px 8px 20px;
    cursor: pointer;
  }
  aside .sp select option {
    padding: 15px;
    background-color: #fff;
    font-family: 'NotoSans_JP' !important;
  }
  aside .sp select option:checked {
    background: #e8f0fe;
  }
  @media screen and (max-width: 500px) {
    aside .sp p {
      font-size: 2.2rem;
    }
    aside .sp select {
      font-size: 1.4rem;
      padding: 5px 35px 5px 15px;
    }
    @media screen and (max-width: 380px) {
      aside .sp {
        margin: -15px 0 0 0;
        display: block;
      }
      aside .sp select {
        display: block;
        margin-top: 10px;
        width: 100%;
      }
    }
  }
}
/* ----------------------------------------------- pagetop */
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100000;
}
.pagetop a {
  position: relative;
  display: block;
  margin: 0px;
  padding: 0px;
  width: 20px;
  height: 20px;
  text-decoration: none;
}
.pagetop a::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-top: 4px solid #00a68d;
  border-right: 4px solid #00a68d;
  border-radius: 3px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 900px) {
  .pagetop {
    right: 46%;
    bottom: 20px;
  }
}

/* ----------------------------------------------- footer */
footer {
  padding: 30px 0 60px 0;
  font-family: "MPLUS1p";
  font-weight: bold;
  font-size: 0.6em;
  color: #555;
  text-align: center;
}

/* ----------------------------------------------- sp navi */
.toggle,
#sp_open,
.sp_nav,
.sp_nav_sub {
  display: none;
}
@media screen and (max-width: 900px) {
  /* toggle開いたら */
  body.fixed {
    overflow-y: hidden;
  }
  /* メニューオープン時、下の要素は非表示 */
  #sp_open {
    display: none;
  }
  #sp_open .active {
    display: block !important;
  }
  /* toggle */
   .toggle * {
  /*  margin: 0;
    padding: 0;
    outline: none;
    border: none;
    font: inherit;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: left;
    text-decoration: none;
    list-style: none;
    pointer-events: auto;*/
  }
   .toggle {
    position: fixed;
    z-index: 100000;
    top: 12px;
    right: 0;
    display: block;
    padding: 0;
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: none;
    text-align: center;
    cursor: pointer;
    outline: none;
    pointer-events: auto;/**/
  }
   .toggle span {
    display: block;
    width: 30px;
    height: 3px;
    transition: all 0.2s;
    transform-origin: 0% 0%;
    transform: translateY(-50%);
    position: absolute;
    background-color: #00a68d;
    border-radius: 10px;
    right: 25px;
  }
   .toggle .bar01 {
    top: 35%;
  }
   .toggle .bar02 {
    top: 50%;
  }
   .toggle .bar03 {
    top: 65%;
  }
  /**/
  .toggle.active span {
    width: 35px;
    right: 15px;
     background-color: #fff;
  }
  .toggle.active .bar01 {
    transform: rotate(0.7853981633974483rad) translateY(-50%);
  }
  .toggle.active .bar02 {
    opacity: 0;
  }
  .toggle.active .bar03 {
    transform: rotate(-0.7853981633974483rad) translateY(-50%);
  }
  /* sp nav*/
  #sp_open {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    padding-bottom: 50px;
    background-color: #00a68d;
    overflow-y: auto;
  }
  .sp_nav {
    display: block;
    padding: 90px 30px 10px 30px
  }
  .sp_nav ul.accordion {
  }
  .sp_nav ul.accordion li {
  }
  .sp_nav ul.accordion li a,
  .sp_nav ul.accordion li p {
    position: relative;
    display: block;
    padding: 20px 0 20px 40px;
    font-size: 1.6rem;
    font-family: "NotoSans_JP_Bold";
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    background-repeat: no-repeat;
    background-position: left center;
  }
  .sp_nav ul.accordion li:nth-child(1) a,
  .sp_nav ul.accordion li:nth-child(1) p {
    background-image: url("../img/icon_nav1_w.png");
  }
  .sp_nav ul.accordion li:nth-child(2) a,
  .sp_nav ul.accordion li:nth-child(2) p {
    background-image: url("../img/icon_nav2_w.png");
  }
  .sp_nav ul.accordion li:nth-child(3) a,
  .sp_nav ul.accordion li:nth-child(3) p {
    background-image: url("../img/icon_nav3_w.png");
  }
  .sp_nav ul.accordion li:nth-child(4) a,
  .sp_nav ul.accordion li:nth-child(4) p {
    background-image: url("../img/icon_nav4_w.png");
  }
  .sp_nav ul.accordion li:nth-child(5) a,
  .sp_nav ul.accordion li:nth-child(5) p {
    background-image: url("../img/icon_nav5_w.png");
  }
  .sp_nav ul.accordion li a::after,
  .sp_nav ul.accordion li p::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .sp_nav ul.accordion li:hover,.sp_nav ul.accordion li p:hover {
    color: #fff;
  }
  /*アコーディオン時のアイコン*/
  .sp_nav ul.accordion li.dm_i p::after {
     -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  /*サブメニュー中身*/
  .sp_nav ul.accordion li .dropmenu {
    display: none;
  }
  .sp_nav ul.accordion li .dropmenu {
    margin-left: 30px;
    background-color: rgba(255,255,255,0.2);
  }
  .sp_nav ul.accordion li .dropmenu a {
    padding: 10px;
    font-size: 1.5rem;
    background: none;
  }
  /* sub */
  .sp_nav_sub {
    display: table;
    width: 100%;
    padding: 15px 20px;
  }
  .sp_nav_sub li {
    display: table-cell;
    width: 50%;
    text-align: center;
  }
  .sp_nav_sub li a {
    position: relative;
    display: block;
    margin: 5px;
    padding: 10px;
    background-color: #fff;
    border-radius: 30px;
    font-size: 1.3rem;
  }
  .sp_nav_sub li a:link,
  .sp_nav_sub li a:active,
  .sp_nav_sub li a:visited {
    text-decoration: none;
    color: #000;
  }
  .sp_nav_sub li a span {
    display: inline-block;
    width: 25px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    line-height: 120%;
  }
  .sp_nav_sub li:nth-child(1) a span {
    background-image: url("../img/icon_mypage_b.png");
  }
  .sp_nav_sub li:nth-child(2) a span {
    background-image: url("../img/icon_setting_b.png");
  }
  .sp_nav_logout {
    display: block;
    margin: 0;
    padding: 5px 20px;
    text-align:  center;
  }
  .sp_nav_logout a {
    width: 50%;
    display: block;
    margin: 5px auto;
    padding: 10px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 30px;
    font-size: 1.3rem;
  }
  .sp_nav_logout a:link,
  .sp_nav_logout a:active,
  .sp_nav_logout a:visited {
    text-decoration: none;
    color: #fff;
  }
  .sp_nav_logout a span {
    display: inline-block;
    margin-right: 10px;
    width: 25px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    background-image: url("../img/icon_logout.png");
    line-height: 120%;
  }
  @media screen and (max-width: 550px) {
    .toggle {
      top: 0;
    }
    @media screen and (max-width: 550px) {
      .sp_nav_sub {
        padding: 15px 20px 5px 20px;
      }
      .sp_nav_logout a {
        width: 80%;
      }
    }
  }
}

