html,
:root{
  font-size: 62.5%;
}
html{
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow: auto;
}
body{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  line-break: strict;
  letter-spacing: .1em;
  font-feature-settings: "palt";
  color: #333333;
  cursor: auto;
  text-rendering: optimizeLegibility;
  overflow: hidden;
}

/*HEADER*/
header.hdd{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0F1C50;
  z-index: 100;
}
header.hdd.-active .search_textbox{
}
header.hdd .hdd_inn{
  width: 90%;
  display: flex;
  align-items: center;
  height: 100%;
}
header.hdd .hlogo{
  margin-right: auto;
}
header.hdd .hlogo a{
  display: block;
}
header.hdd .hlogo img{
  margin: 0;
}
header.hdd .hsearch{
  margin-right: 6px;
}
header.hdd .hsearch .Icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
header.hdd .hsearch .Icon img {
    position: relative;
    top: 3px;
}
header.hdd .hsearch .hsearchInn {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 1000;
}
header.hdd .hsearch .hsearchInn_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

header.hdd .hsearch form {
    max-width: calc(90% - 530px);
    width: 94%;
    position: absolute;
    top: 15px;
    left: calc(180px + 1.5vw);
    transform: scaleX(0);
    transition: .6s;
    z-index: 1;
}
header.hdd .hsearch.-active form{
  transform: scaleX(1);
}
header.hdd .hsearch .search_textbox {
    width: 100%;
    height: 35px;
    border-radius: 3px;
    border-bottom: none;
    background: #FFF;
    padding: 0px 0.5em;
}
@media screen and (max-width: 980px) {
  header.hdd .hsearch form {
      max-width: 330px;
      left: 160px;
  }
}


header .gnav{
  display: flex;
  height: 100%;
  margin: 0 1% 0 0;
}
header .gnav ul{
  display: flex;
  flex-wrap: wrap;
}
header .gnav li{
  position: relative;
}
header .gnav li h3{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
header .gnav li h3 a[href="#"]{
  pointer-events: none;
}
header .gnav li a{
  padding: 0 1vw;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
}
header .gnav li a:hover{
  opacity: 1;
}

header .gnav li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transform: translateX(-50%);
    transition: .6s;
}
header .gnav li a:hover::after{
      width: 100%;
}

/*MEGAMENU*******************************/
  @media screen and (min-width: 981px) {
    header .gnav li.mmn:hover .mmnArea{
      opacity: 1;
      visibility: visible;
    }
    header .gnav .mmnArea, 
    header .gnav .mmnArea ul{
      min-width: 200px;
    }
  }

  header .gnav .mmnArea{
    position: absolute;
    top: 65px;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    /*transition: .6s;*/
    z-index: 1;
  }
  header .gnav .mmnArea li{
      display: flex;
  }
  @media screen and (min-width: 981px) {
    header .gnav .mmnArea li{
        background: rgba(15, 28, 80, 0.95);
    }
    header .gnav .mmnArea li:hover{
      background: rgba(44, 57, 108, 0.95);
    }
  }
  header .gnav .mmnArea li a:hover{
    /*background: rgba(81, 91, 132, 0.95);*/
  }
  header .gnav .mmnArea li a {
    position: relative;
    width: 100%;
    height: auto;
    padding: 7px 22px 7px 10px;
    display: block;
    font-weight: 400;
    /*background-color: rgba(15, 28, 80, 0.95);*/
    white-space: nowrap;
  }
  header .gnav .mmnArea li a:hover{
  }
  header .gnav .mmnArea .mmn-subtitl{
    position: relative;
  }
  header .gnav .mmnArea .mmn-subtitl::before{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    border-style: solid;
    border-width: 1px 1px 0 0;
    border-color: #FFF; 
    width: 6px;
    height: 6px;
    transform: rotate(45deg); 
    transition: .6s;
    z-index: 1;
  }
  header .gnav .mmnArea li a::after{
    display: none;
  }
  header .gnav .mmnArea ul {
      position: absolute;
      top: 0;
      right: 1px;
      display: block;
      transform: translateX(100%);
      opacity: 0;
      visibility: hidden;
      /*transition: .6s;*/
  }
  header .gnav .mmnArea li.mmn-sub{
    position:static;
    cursor: pointer;
  }
  header .gnav .mmnArea li.mmn-sub:hover > ul{
      opacity: 1;
      visibility: visible;
  }
  header .gnav .mmnArea li.mmn-sub > ul li{
      visibility: hidden;
      transition: .6s;
  }
  header .gnav .mmnArea li.mmn-sub:hover > ul li{
      height: auto;
      visibility: visible;
  }
  header .gnav .mmnArea li.mmn-sub > ul li a{

  }
  header .gnav .mmnArea li.mmn-sub > ul li a:before{
    /*display: none;*/
  }


header.hdd .hcta{
  display: flex;
  align-items: center;
}
header.hdd .hcta a {
    color: #FFF;
    font-size: 15px;
    padding: 11px 18px;
    border-radius: 5px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}
header.hdd .hcta.-sp{
  display: none;
}
header.hdd .hcta a+a{
  margin-left: 20px;
}
header.hdd .hcta a:hover{

}
header.hdd .hcta a::before{
  content: "";
  display: inline-block;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
header.hdd .hcta a.docdl{
  background-color: #162872;
}
header.hdd .hcta a#hdcontact{
  background-color: #0D233F;
  border: 2px solid #FFF;
  margin-top: 0;
  margin-left: 20px;
}
header.hdd .hcta a.docdl::before{
  width: 22px;
  height: 18px;
  background-image: url(../image/common/icon_folder.svg);
}
header.hdd .hcta a#hdcontact::before{
  width: 19px;
  height: 19px;
  background-image: url(../image/common/icon_window.svg);

}

@media screen and (min-width: 981px) {
  #menu-wrapper{display: none; }
}

/*tb**********************************************/
@media screen and (max-width: 980px) {
  #menu-wrapper {
      position: absolute;
      top: 8px;
      right: 16px;
      padding: 0;
      width: auto;
      height: auto;
      border: none;
      background: transparent;
      cursor: pointer;
      z-index: 1001;
      overflow: hidden;
  }
  #menu-wrapper.open {
    position: fixed;
  }
  #menu-wrapper #menu {
    position: relative;
    width: 25px;
    height: 20px;
    margin: 15px;
  }
  #menu-wrapper #menu span {
    opacity: 1;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    color: black;
    background-color: #FFF;
    position: absolute;
    transform: rotate(0deg);
    transition: .4s ease-in-out;
  }
  #menu-wrapper #menu span:nth-child(1) {top: 0; }
  #menu-wrapper #menu span:nth-child(2) {top: 9px; }
  #menu-wrapper #menu span:nth-child(3) {top: 18px; }
  #menu-wrapper.open #menu span:nth-child(1) {
    transform: translateY(9px) rotate(135deg);
  }
  #menu-wrapper.open #menu span:nth-child(2) {
    opacity: 0;
    transform: translateX(-60px);
  }
  #menu-wrapper.open #menu span:nth-child(3) {
    transform: translateY(-9px) rotate(-135deg);
  }
  header .gnav {
      padding: 80px 60px 30px 30px;
      position: absolute;
      top: 0;
      right: 0;
      width: 50vw;
      height: 100vh;
      background: rgba(9, 23, 42, 0.95);
      transform: translateX(150%);
      transition: .6s;
      /*overscroll-behavior-y: contain;*/
      overscroll-behavior: none;
      overflow-y: scroll;
      z-index: 10;
  }
  header .gnav.is-active{
      transform: translateX(0%);
      position: fixed;
  }
  header .gnav ul{
    width: 100%;
    display: block;
  }
  header .gnav li + li {
  }
  header .gnav li a{
    padding: 10px 0;
    justify-content: flex-start;
  }
  header.hdd .hcta {
      margin-right: 50px;
  }
  /*MEGAMENU****************************/
  header .gnav .mmnArea{
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
  }
  header .gnav li.mmn .mmn-titl a, 
  header .gnav .mmnArea li.mmn-sub .mmn-subtitl a {
      pointer-events: none;
  }
  header .gnav li.mmn :not(.mmn-titl) a{
    opacity: .6;
  }

  header .gnav .mmnArea li a{
    padding: 10px 0;
    background-color: transparent;
    white-space: nowrap;
    border-bottom: 1px solid RGBA(255, 255, 255, 0.26);
  }
  header .gnav .mmn-titl{
    position: relative;
  }
  header .gnav .mmn-titl::after {
      content: "";
      display: block;
      position: absolute;
      top: 16px;
      right: 10px;
      border-style: solid;
      border-width: 0 1px 1px 0;
      border-color: transparent #FFF #FFF transparent ;
      width: 8px;
      height: 8px;
      transform: rotate(45deg);
      transition: .6s;
  }
  header .gnav .mmn-titl.active::after{
      transform: rotate(225deg);

  }
  header .gnav .mmnArea li.mmn-sub {
      position: static;
      display: block;
  }
  header .gnav .mmnArea ul, 
  header .gnav .mmnArea li.mmn-sub > ul li {
      position: static;
      transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  header .gnav .mmnArea li.mmn-sub > ul{
    display: none;
  }
  header .gnav .mmnArea li.mmn-sub > ul li {
      list-style-type: none;
      color: #FFFFFF3B;
      /*display: list-item;*/
      margin-left: 1em;
  }
  header .gnav .mmnArea li.mmn-sub > ul li::before{
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background-color: currentColor;
    border-radius: 10px;
    position: absolute;
    top: 14px;
    left: -10px;
  }
  header .gnav .mmnArea li.mmn-sub > ul li a {
      padding: 6px;
      border: none;
      font-size: 13px;
  }
  header .gnav .mmnArea .mmn-subtitl::before {
      border-width: 0px 1px 1px 0px;
      right: 11px;
  }
  header .gnav .mmnArea .mmn-subtitl.is-active::before {
      transform: rotate(225deg);
  }
}
/*SP**********************************************/
@media screen and (max-width: 690px) {
  header.hdd .hsearch form {
      left: 50%;
      transform: translateX(-50%) scaleX(0);
  }
  header.hdd .hsearch.-active form {
      transform: translateX(-50%) scaleX(1);
  }
  header .gnav {
      width: calc(100vw - 60px);
      flex-direction: column;
  }
  header.hdd .hsearch{
    margin-right: 60px;
  }
  header.hdd .hsearch .Icon img{
    height: 30px;
  }

  header.hdd .hcta.-pc{
    display: none;
  }
  header.hdd .hcta.-sp{
    display: block;
    margin-top: 20px;
    margin-right: 0;
  }
  header.hdd .hcta a + a {
      margin-left: 0;
  }
  header.hdd .hcta a {
    padding: 10px;
    min-width: auto;
  }
  header.hdd .hcta a#hdcontact{
    margin-top: 15px;
    margin-left: 0;
  }
}
/*PAGETITL*/
.pageTitle {
    margin-top: 65px;
    margin-bottom: 80px;
}
.pageTitle.m0{
    margin-bottom: 0;
}
.pageTitle .inner{
  padding: 60px 0;
}
@media only screen and (max-width: 980px) {
.pageTitle {
    margin-bottom: 30px;
}
}
@media only screen and (max-width: 690px) {
.pageTitle .inner {
    padding: 40px 0;
}
}

/*LOCATOR*/
.locator{
}
.locator .inner{
  padding: 0;
}
.locator li {
  list-style: none;
  display: inline-block;
  font-size: 12px;
  color: #6785C0;
  position: relative;
}

.locator li::after {
  content: "";
  position: relative;
  top: -1px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  display: inline-block;
  vertical-align: middle;
  margin: 0 9px 0 6px;
}

.locator li a {
  text-decoration: underline;
}

.locator li a:hover {
  opacity: .7;
}

.locator li:last-child::after {
  display: none;
}


@media only screen and (max-width: 690px) {
  .locator {
    padding: 8px 0;
  }
}
/*pagetop*/
#topcontrol {
  z-index: 10;
  margin-bottom: 0;
}
#topcontrol a.pagetop {
  background-image: none;
}
a.pagetop {
  width: 60px;
  height: 60px;
  display: block;
  z-index: 50;
  background-color: #162872;
  position: relative;
  border-radius: 100px;
}
a.pagetop::before {
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 14px;
  height: 14px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (max-width: 979px) {
  #topcontrol {
    margin-bottom: 0;
  }
  a.pagetop {
    width: 50px;
    height: 50px;
    background-size: 50px 50px;
  }
  a.pagetop::before {
    top: calc(50% - 4px);
    width: 16px;
    height: 16px;
  }
}
@media only screen and (max-width: 690px) {
  #topcontrol {
    display: none;
  }
}



/*SIDE FIXED BTTN*/
@media screen and (min-width: 981px) {
.sidefixedbttn{
  opacity: 0;
  transition: all .5s ease;
  position: fixed;
  top: 20vh;
  right: 0;
  transform: translateX(100%);
  z-index: 100;
}
.is-show .sidefixedbttn{
  opacity: 1;
  transform: translateX(0);
}
.sidefixedbttn a {
    padding: 10px 10px 55px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    color: #FFF;
    display: block;
    border: 2px solid #F5CF2A;
    transition: background .6s ease 0s;
    background: #F5CF2A url(../image/common/icon_dl.svg)no-repeat center bottom 10px;
}
.sidefixedbttn a:hover{
  color: #F5CF2A;
  background-color: #FFF;
  background: #FFF url(../image/common/icon_dl_on.svg)no-repeat center bottom 10px;
}
/*.sidefixedbttn a::after{
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  margin: 5px auto 0;
  background: url(../css/assets/image/common/icon_dl.svg);
}
.sidefixedbttn a:hover::after{
  background: url(../css/assets/image/common/icon_dl_on.svg);
}*/

}
@media screen and (max-width: 980px) {
  .sidefixedbttn{display: none; }
}


/*FOOTER*/
footer.fttr{
  background-color: #0F1C50;
}
footer.fttr a{
  color: #FFF;
}
footer.fttr .inner{
  padding: 40px 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer.fttr ul li{
  line-height: 1.2;
  margin-bottom: 20px;
}
footer.fttr ul li a{
  font-size: 15px;
  font-weight: 700;
}
footer.fttr ul ul{
  margin-top: 13px;
  width: 100%;
}
footer.fttr ul li li{
  margin-bottom: 7px;
}
footer.fttr ul li li a{
  font-size: 13px;
  font-weight: 400;
  color: rgb(255 255 255 / 65%);
}
footer.fttr a:hover{
  text-decoration: underline;
}
footer.fttr .ftNavi .inner{
  padding: 0 0 30px;
}
footer.fttr .ftNavi .worksap{
padding: 0px;
justify-content: flex-end;
}
footer.fttr .ftNavi .worksap a{
color: rgb(255 255 255 / 65%);
}

footer.fttr .ftNavi ul{
  display: flex;
  flex-wrap: wrap;
}
footer.fttr .ftNavi ul.upper{
    width: 100%;
    border-bottom: 1px solid #879DC3;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
footer.fttr .ftNavi li{
  margin-bottom: 10px;
}
footer.fttr .ftNavi li:not(:last-child){
  /*margin-right: 1em;*/
}
footer.fttr .ftNavi li a::after{
  content: "";
  display: inline-block;
  border-left: 1px solid #879DC3;
  height: 10px;
  margin: 0 10px;
}
footer.fttr .ftNavi li:last-child a::after{
  display: none;
}
footer.fttr .ftNavi li a, 
footer.fttr .ftNavi small{
  color: #879DC3;
  font-size: 12px;
}

@media screen and (max-width: 980px) {
  footer.fttr .inner{
    justify-content: flex-start;
  }
  footer.fttr ul{
    width: calc(100%/3);
  }
  footer.fttr .ftNavi .inner {
      justify-content: center;
  }
  footer.fttr .ftNavi ul {
      justify-content: center;
      width: auto;
  }
  footer.fttr .ftNavi li:not(:last-child) {
      margin-bottom: 10px;
  }
}
@media screen and (max-width: 690px) {
  footer.fttr ul{
    width: 50%;
  }
  footer.fttr ul li a {
      font-size: 15px;
  }
  footer.fttr .ftNavi li a::after {
      margin: 0 6px;
  }
  footer.fttr .ftNavi ul:not(.upper) li:nth-child(2) a::after{
    display: none;
  }
}