/* --------------------------------------------
    グローバルナビゲーション
-------------------------------------------- */
.md-nav { display: none; }
#nav01 {
    position: fixed;
    z-index: 101;
    width: 100%;
    height: 90px;
    background-color: #fff;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    -moz-filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    -ms-filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
#nav01.scrolled {
    animation: bgCh 1.3s ease 0s forwards;
    -webkit-animation: bgCh 1.3s ease 0s forwards;
}
/*--- 背景色透明度 ---*/
@keyframes bgCh {
    0% { background-color: rgba(255, 255, 255, 1); }
    100% { background-color: rgba(255, 255, 255, 0.7); }
}
@-webkit-keyframes bgCh {
    0% { background-color: rgba(255, 255, 255, 1); }
    100% { background-color: rgba(255, 255, 255, 0.7); }
}

@keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0}
}
@-webkit-keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0}
}

#drawer-checkbox {
    display: none;
}
.nav-wrap {
    width: 96vw;
    max-width: 1370px;
    margin: 0 auto;
    padding: 0;
    line-height: 0;
}
.nav-wrap label {
    display: none;
}
.hd-logo {
    display: inline-block;
    width: 180px;
    margin: 15px auto;
    padding: 0;
}
#drawer-content, .nav-box {
    display: inline-block;
    width: auto;
    float: right;
    text-align: right;
    margin-top: 5px;
}
.nav-list {
    display: block;
    width: auto;
    list-style: none;
    margin: 16px auto 10px;
    padding: 0;
    text-align: center;
}
.nav-list > li {
    position: relative;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    line-height: 1;
    border-right: 1px solid #AFAFAF;
}
.nav-list > li:last-child { border-right: none; }
.nav-list > li > a {
    position: relative;
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: none;
    margin: 0 1em;
    padding: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav-list > li > a:hover, .nav-list > li > a:focus {
    text-decoration: none;
    outline: none;
}

.nav-list > li > a::before {
    position: absolute;
    bottom: -7px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #123086;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav-list > li.dropdown > a::before { width: calc(100% - 1em); }
.nav-list > li > a:hover::before, .nav-list > li.open > a::before, .nav-list > li.current > a::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.nav-list > li.dropdown > a::after {
    font-family: "Font Awesome 5 Free";
    content: '\f078';
    color: #123086;
    font-weight: 900;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    margin-left: 6px;
    padding: 0.1em 0;
    vertical-align: bottom;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transform: rotateX(0deg) ;
}
.nav-list > li.open > a::after { transform:rotateX(180deg); }
/*
a[target=_blank][rel=nofollow]::after {
    font-family: "Font Awesome 5 Free";
    content: '\f35d';
    font-weight: 900;
    font-size: 0.9em;
    margin: 6px;
}
*/

/* child-box */
.child-box {
    position: relative;
    display: inline-block;
    width: auto;
    border: none;
    box-shadow: 0 0 0 #fff;
    transition: all .5s ease;
}
.child-box a {
    color: #fff;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.08em;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 8.2px 15px;
    background-color: #123086;
}
.child-box a:hover, .child-box a:focus { text-decoration: none; outline: none; }
.child-box a:hover { background-color: #063D81; }

/* select */
/*Styling Selectbox*/
.select-box {
  color: #fff;
  font-family: roboto, 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  width: 10em;
  display: inline-block;
  background-color: #123086;
  border: none;
  border-radius: 0;
  box-shadow: 0 0 0 #fff;
  transition: all .5s ease;
  position: relative;
  z-index: 100;
  height: 100%;
  text-align: left;
}
.select-box .select {
    cursor: pointer;
    display: block;
    padding: 8px 12px;
    line-height: 1.1;
}
.select-box .select > i.icon-lang {
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    line-height: 1.2;
    padding-right: 8px;
    float: left;
}
.select-box .select > i.icon-arrow {
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 1.5;
}
.select-box.active .select > i.icon-arrow { transform: rotate(-180deg); }
.select-box .select-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    border-radius: 0;
    box-shadow: 0 0 0 #fff;
    overflow: hidden;
    display: none;
    overflow-y: auto;
    z-index: 9;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    -moz-filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    -ms-filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
}
.select-box .select-menu {
    padding: 10px;
    list-style: none;
}
.select-box .select-menu li {
    color: #333;
    transition: all .2s ease-in-out;
    position: relative;
    padding: 0;
    line-height: 1.1;
    letter-spacing: 0.05em;
}
.select-box .select-menu li > a {
    color: #333;
    display: block;
    padding: 1em 1em 1em 1.6em;
    cursor: pointer;
}
.select-box .select-menu li > a, .select-box .select-menu li > a:hover, .select-box .select-menu li > a:focus { color: #333; }
.select-box .select-menu li:hover {
    background-color: #EDF2FE;
}
.select-box .select-menu li.now-lang {
    padding: 1em 1em 1em 1.6em;
    background-color: #EDF2FE;
}
.select-box .select-menu li.now-lang::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.7em;
    transform: translateY(-50%);
    display: block;
    width: 6px;
    height: 6px;
    background-color: #123086;
    border-radius: 100%;
}


  /*--- dropdown-menu ---*/
  .dropdown-menu {
    position: fixed;
    z-index: 13;
    top: 90px;
    left: 0;
    z-index: 0;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 0 rgb(0 0 0 / 0%);
    -webkit-filter: drop-shadow(0px 0px 0px rgba(0,0,0,0.1));
    -moz-filter: drop-shadow(0px 0px 0px rgba(0,0,0,0.1));
    -ms-filter: drop-shadow(0px 0px 0px rgba(0,0,0,0.1));
    filter: drop-shadow(0px 0px 0px rgba(0,0,0,0.1));
  }
  .dropdown-menu .menu-box { background-color: #EAEFFA; }
  .dropdown-menu .menu-txt {
    list-style: none;
    padding-left: 0;
  }
/*  .dropdown-menu .menu-txt:first-of-type { border-left: 1px solid #e5e5e5; }*/
  .dropdown-menu .menu-txt:not(:first-of-type) { padding-left: 25px; }
  .dropdown-menu .menu-txt li {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    padding: 16px 1em;
  }
  .dropdown-menu .menu-txt:not(:first-of-type) li { white-space: nowrap; }
  .dropdown-menu .menu-txt li.fst-item { position: relative; }
  .dropdown-menu .menu-txt li.fst-item::before {
    position: absolute;
    top: 52%;
    left: 100%;
    transform: translateY(-50%);
    content: '';
    width: 1px;
    height: 1em;
    background: #333;
  }
  .dropdown-menu .menu-txt li > a {
    position: relative;
    color: #333;
    font-size: 16px;
    padding: 5px 10px;
  }
  .dropdown-menu .menu-txt li > a::after {
    font-family: "Font Awesome 6 Free";
    content: "\f138";
    font-size: 13px;
    font-weight: 900;
    padding-left: 5px;
    color: #123086;
    position: relative;
}
.dropdown-menu .menu-txt li > a[target="_blank"]::after { content: "\f35d"; font-size: 1em; }
.dropdown-menu .menu-txt li > a:hover { background-color: #fff; }


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (max-width: 800px) {
  .nav-list > li > a { margin: 0 0.8em; }
}
/*@media screen and (max-width: 767px) {*/
@media screen and (max-width: 1000px) {
.child-box { display: block; margin: 0 auto 1em; text-align: center; }
.select-box { display: block; margin: 0 auto; }
/* --------------------------------------------
    nav
-------------------------------------------- */
#drawer-icon {
    display: inline-block;
    width: 65px;
    height: 65px;
    margin: 0 auto;
    padding: 12px;
    position: absolute;
    top: 50%;
    right: 1%;
    transform: translateY(-50%);
    z-index: 999;
    cursor: pointer;
}
#drawer-checkbox:checked ~ #drawer-icon {
  content: "";
  background-color: transparent;
}
#drawer-icon span {
  background:  #504E4E;
  border-radius: 0px;
  display: block;
  height: 2px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  width: 23px;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #333;
  border-radius: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
}
#drawer-icon span::before { margin-top: -14px; }
#drawer-icon span::after { margin-top: 26px; }
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
  top: 50%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  width: 105%;
  height: 100%;
  position: absolute;
  background-color: #504E4E;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 0;
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 0;
}
/*--- メニューコンテンツ ---*/
#drawer-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 0;
    max-width: 0;
    height: 0;
    display: none;
    background-color: #fff;
    overflow-x: hidden;
}
#drawer-content, .nav-box {
    display: block;
    float: none;
    width: 92vw;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.nav-box { padding: 35px 0 50px; }
.nav-list {
    display: block;
    text-align: left;
    margin: 1.5em auto 0;
}
.nav-list > li {
    display: block;
    border-right: none;
    margin: 0 auto 1.5em;
}
.nav-list > li.dropdown { position: relative; transition: all 0.3s ease-in-out; }
.nav-list > li.dropdown::before, .nav-list > li.dropdown::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 0.9em;
    right: 15px;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}
.nav-list > li.dropdown::before { transform: translateY(-50%); }
.nav-list > li.dropdown::after { transform:rotateZ(90deg) translateY(-50%); }
.nav-list > li.open::after { animation: 0.3s ease-out 1 rotation90 forwards; }
  @keyframes rotation90 {
    0%{ transform:rotateZ(90deg) translateY(-50%); }
    100%{ transform:rotateZ(0) translateY(-50%); }
  }
.nav-list > li > a {
    font-size: 17px;
    padding: 10px 0;
}
.nav-list > li > a::before, .nav-list > li.dropdown > a::after { display: none; }
.dropdown-menu {
    width: 100%;
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    float: none;

    -webkit-filter: drop-shadow(0px 0px 0px rgba(0,0,0,0));
    -moz-filter: drop-shadow(0px 0px 0px rgba(0,0,0,0));
    -ms-filter: drop-shadow(0px 0px 0px rgba(0,0,0,0));
    filter: drop-shadow(0px 0px 0px rgba(0,0,0,0));

    -webkit-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -o-transition: all 3s ease;
    transition: all 3s ease;
}
.dropdown-menu li {
    visibility: hidden;
	opacity: 0;
    padding-left: 5px;
}
.open > .dropdown-menu li { animation: 0.6s ease-out 0.5s 1 fadeIn-box forwards; }
  @keyframes fadeIn-box {
    0%{ opacity: 0; visibility: hidden; }
    100%{ opacity: 1; visibility: visible; padding-left: 0; }
  }
.dropdown-menu .menu-txt li.fst-item::before {
    top: calc(100% - 2px);
    left: 0;
    transform: translate(0%, -50%);
    content: '';
    width: 100%;
    height: 3px;
    background: #FFF;
}
.dropdown-menu .menu-wrap {
    width: 92%;
    margin: 10px auto;
    padding: 0;
    position: relative;
}
.dropdown-menu .menu-wrap::before {
    content: '';
    display: block;
    width: 1px;
    height: 0;
    background-color: #b0b0b0;
    position: absolute;
    top: 0;
    left: 0;
}
.open > .dropdown-menu .menu-wrap::before { animation: 0.5s ease-out 0.2s 1 line-box forwards; }
  @keyframes line-box {
    0%{ height: 0; }
    100%{ height: 100%; }
  }
.dropdown-menu .menu-box { display: block;  position: relative; z-index: 100; }
.dropdown-menu .menu-box > div:first-child { display: none; width: auto; }
.dropdown-menu .menu-box > div:last-child { width: 100%; }
.dropdown-menu .menu-txt { display: block; }
    .nav-drop-item02 { display: block; width: 100%; padding: 0; }
    .nav-drop-item02 .menu-txt {
        list-style: none;
        padding: 6px 0 6px 20px;
    }
    .nav-drop-item02 .menu-txt li { margin-bottom: 5px; }
    .nav-drop-item02 .menu-txt:last-of-type li:last-child { margin-bottom: 0; }
    .nav-drop-item02 .menu-txt li a {
        color: #8a8a8a;
        font-size: 16px;
        font-weight: bold;
        line-height: 1.2;
    }
.nav-drop-item03 { display: none; }
.close-content #drawer-content { display: none!important; }
#drawer-checkbox:checked ~ #drawer-content {
    display: block;
    position: absolute;
    top: 100%;
    transform: translateY(0);
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 60px);
    animation: fadeIn 0.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 0.5s ease 0s 1 normal;
    overflow-y: auto;
    padding-bottom: 3em;
}
#drawer-close {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 1;
    transition: all 0.3s ease-in-out 0s;
  }
  #drawer-checkbox:checked ~ #drawer-close {
    display: block;
    opacity: 1;
    margin: 0;
    background-color: transparent;
    z-index: 100;
  }
}
@media screen and (max-width: 767px) {
    .dropdown-backdrop { display: none; }
    #nav01 { height: 60px; }
    .nav-wrap { width: 94%; }
    .hd-logo { width: 160px; margin: 3.5px auto; }

  #drawer-icon { width: 60px; height: 60px; right: 0%; }
  #drawer-icon span::before { margin-top: -13px; }
  #drawer-icon span::after { margin-top: 24px; }
/*
  .dropdown-menu {
    width: calc(100% + 30px);
    height: auto;
    position: relative;
    top: 0;
    left: -15px;
    margin: 15px auto 15px;
  }
*/
  .dropdown-menu .menu-box .menu-tit { display: none; }
  .dropdown-menu .menu-box .menu-txt { width: 100%; margin: 0 auto; padding: 0; }
  .dropdown-menu .menu-box .menu-txt li { display: block; margin-bottom: 0; padding: 0; }
  .dropdown-menu .menu-box .menu-txt li > a { color: #333; font-size: 0.92em; font-weight: bold; display: block; padding: 13px 15px; }
  .dropdown-menu .menu-txt li > a::after { display: none; }
  .nav-list { width: 100%; }

  #content-main {  margin-top: 60px; }
}
@media screen and (max-width: 600px) {

}