@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.kufuHeader {
  z-index: 9;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px 1fr;
  grid-template-columns: 240px 1fr;
  padding: 0 24px;
  height: 97px;
  border-bottom: 1px solid #E3E3E3;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kufuHeader_menu {
  display: none;
}
.kufuHeader_logo {
  display: block;
}
.kufuHeader > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kufuHeader_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.kufuHeader_nav > li {
  padding: 36px 10px;
  border-bottom: 2px solid #fff;
}
.kufuHeader_nav > li a, .kufuHeader_nav > li span {
  color: #313E42;
  display: block;
  cursor: pointer;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .kufuHeader_nav > li:hover {
    border-bottom: 2px solid #006AB6;
  }
  .kufuHeader_nav > li:hover > a, .kufuHeader_nav > li:hover > span {
    color: #006AB6;
  }
  .kufuHeader_nav > li:hover ul {
    -webkit-animation: show 0.3s linear 0s;
            animation: show 0.3s linear 0s;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.kufuHeader_nav > li ul {
  display: none;
  opacity: 0;
  background-color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 64px 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 97px;
}
.kufuHeader_nav > li ul li a {
  color: #313E42;
  font-weight: bold;
}
.kufuHeader_nav > li ul li.el_title {
  font-size: 2.4rem;
  color: #006AB6;
  font-weight: bold;
  border-right: 1px solid #ccc;
  padding-right: 40px;
}
.kufuHeader_cv {
  font-weight: bold;
  text-align: center;
  width: 160px;
  height: 48px;
  line-height: 48px;
  background-color: #006AB6;
  color: #fff !important;
  border-radius: 24px;
}
@media screen and (max-width: 980px) {
  .kufuHeader {
    padding: 0 24px;
    -ms-grid-columns: 160px 1fr;
    grid-template-columns: 160px 1fr;
    height: 50px;
  }
  .kufuHeader_nav {
    gap: 20px;
  }
  .kufuHeader_nav > li {
    padding: 12px 0;
  }
  .kufuHeader_nav > li:hover ul {
    top: 50px;
  }
  .kufuHeader_cv {
    height: 34px;
    line-height: 34px;
  }
}
@media screen and (max-width: 768px) {
  .kufuHeader {
    padding: 0 12px;
  }
  .kufuHeader_menu {
    position: absolute;
    right: 12px;
    top: 10px;
    display: inline-block;
  }
  .kufuHeader_menu:after {
    content: "\f0c9";
    font-family: FontAwesome;
    font-size: 22px;
  }
  .kufuHeader_menu.is-open + .kufuHeader_list {
    height: 100dvh;
  }
  .kufuHeader_menu.is-open:after {
    content: "\f00d";
  }
  .kufuHeader > div {
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background-color: #fff;
  }
  .kufuHeader_nav {
    display: none;
    padding: 0 16px;
    opacity: 0;
    -webkit-transition: 1s opacity;
    transition: 1s opacity;
  }
  .kufuHeader_nav.is-open {
    display: block;
    opacity: 1;
  }
  .kufuHeader_nav.is-open + .kufuHeader_cv {
    position: static;
    display: block;
    margin: 40px auto 80px;
    width: 90%;
    background-color: #006AB6;
    color: #fff !important;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .kufuHeader_nav > li {
    border-bottom: 1px solid #efefef;
    padding: 26px 0;
    line-height: 16px;
    position: relative;
  }
  .kufuHeader_nav > li span:before {
    content: "\f055";
    position: absolute;
    color: #006AB6;
    font-family: FontAwesome;
    right: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .kufuHeader_nav > li.is-open {
    padding-bottom: 0;
  }
  .kufuHeader_nav > li.is-open span:before {
    content: "\f056";
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .kufuHeader_nav > li.is-open ul {
    display: block;
  }
  .kufuHeader_nav > li ul {
    display: none;
    position: static;
    padding: 26px 0 0 20px;
    opacity: 1;
  }
  .kufuHeader_nav > li ul li {
    border-top: 1px solid #efefef;
    padding: 26px 0;
    line-height: 16px;
  }
  .kufuHeader_nav > li ul li.el_title {
    display: none;
  }
  .kufuHeader_cv {
    background-color: #fff;
    border: 1px solid #006AB6;
    color: #006AB6 !important;
    height: 48px;
    line-height: 46px;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
    position: fixed;
    bottom: 20px;
    right: 12px;
    font-weight: bold;
  }
}

.kufuFooter {
  text-align: center;
  background-color: #313E42;
  color: #fff;
  padding: 64px 0;
}
.kufuFooter_cv {
  width: 90%;
  max-width: 360px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 4px;
  border: 1px solid #FFF;
  display: inline-block;
  color: #fff !important;
  margin-bottom: 40px;
}
.kufuFooter_link {
  font-size: 1.4rem;
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
}
.kufuFooter_link a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .kufuFooter_link {
    display: -ms-grid;
    display: grid;
    gap: 20px;
  }
}

.kufuCopyright {
  background-color: #313E42;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  font-size: 1.2rem;
  border-top: 1px solid #616161;
}
@media screen and (max-width: 768px) {
  .kufuCopyright {
    display: block;
  }
  .kufuCopyright div + div {
    margin-top: 20px;
  }
}