@charset "UTF-8";

#menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin: 0 0px;
  align-items: center;
}

#menu-btn {
  display: none;
}

#menu-content {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}

#menu-content > li {
  position: relative;
  /*float: left;*/
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: flex;
  height: 80px;
  align-items: center;
}

#menu-content > li > a {
  display: block;
  padding: 0 0.8rem 0 0.8rem;
  line-height: 140%;
  color: #292725;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  transition-duration: 0s;
  white-space: nowrap;
}
#menu-content > li > a:hover {
  color: #172A88;
  font-weight: 500;
  opacity: 1 !important;
  transition-duration: 0s;
}



/*ブラウザ幅1023px以下*/
@media screen and (max-width: 1023px) {
#menu-content > li > a {
  padding: 0 5px 0 5px;
}
}

/*#menu-content > li > a > .blogicon-chevron-down {
  margin-right: 5px;
}*/

#menu-content > li > ul.second-content {
  visibility: hidden;/* ※※※※※※開発時は「visible」 本番設定は「hidden」※※※※※ */
  opacity: 0;/* ※※※※※※開発時は「1」 本番設定は「0」※※※※※ */
  position: absolute;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 0px;
  width: 18rem;
  top: 80px;/* ※※※※※※グローバルメニューからの距離※※※※※ */
  left: 50%;
  transform: translate(-50%, 0%);
  list-style-type: none;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 7px #bbb;
          box-shadow: 1px 1px 7px #bbb;
  background-color: #ffffff;
  z-index: 999; /* メニューを他の要素よりも前面に表示 */
}

#menu-content > li:hover > ul.second-content {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}

#menu-content > li > ul.second-content > li {
  text-align: center;
  width: auto;
  padding: 23px 0px;
  border-bottom: 1px solid #E3E8EE;
  margin: 0px 30px;
}
#menu-content > li > ul.second-content > li:last-child {
  border-bottom: none;
}
#menu-content > li > ul.second-content > li > a {
  display: block;
  line-height: 100%;
  color: #000;
  font-size: 15px;
  text-decoration: none;
  text-align: left;
}

#menu-content > li > ul.second-content > li > a::before{
    content: "";
    display: inline-block;
    margin-left: 0em;
  margin-right: 1em;
    vertical-align: 0.5px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #172A88;
    border-bottom: 2px solid #172A88;
    transform: rotate(-45deg);
}

#menu-content > li > ul.second-content > li > a:hover {
  /*background: #eee;*/
  color: #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/* ※※※※※※グローバルメニューホバー時イエローライン※※※※※ */
.sc_bottmline {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 18rem;
  top: 65px;/* ※※※※※※グローバルメニューからの距離※※※※※ */
  left: 50%;
  transform: translate(-50%, 0%);
}
.sc_bottmline2 {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 18rem;
  top: 65px;/* ※※※※※※グローバルメニューからの距離※※※※※ */
  left: 50%;
  transform: translate(-50%, 0%);
}

/* ※※※※※※グローバルメニューホバー時イエローライン表示※※※※※ */
#menu-content > li:hover .sc_bottmline {
  display: flex;
}

#menu-content > li .sc_bottmline {
  display: none;
}

#menu-content > li .sc_bottmline img {
  width: auto; /* 画像が親要素に合わせて表示されるように */
}
#menu-content > li:hover .sc_bottmline2 {
  display: flex;
}

#menu-content > li .sc_bottmline2 {
  display: none;
}

#menu-content > li .sc_bottmline2 img {
  width: auto; /* 画像が親要素に合わせて表示されるように */
}



@media screen and (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
  }
  nav {
    position: fixed;
    top: 70px;
    left: 0px;/* ※※※※※※開発時は「0」 本番設定で左から動かす場合は「-300」※※※※※ */
    bottom: 0;
    width: 100%;
    background: #F3F4FD;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 3;
    opacity: 0;/* ※※※※※※開発時は「1」 本番設定は「0」※※※※※ */
    pointer-events: none;
   }
  .open nav {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }
  nav .inner {
    padding: 45px 38px 20px 38px;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
  }
  nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .toggle_btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    position: absolute;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: #172A88;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 3px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(45deg);
  }
  #mask {
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
  }
    #menu-content {
    display: block;
  }
  #menu-content > li {
    width: 100%;
    margin-bottom: 30px;
    flex-direction: column;
    height: auto;
    align-items: baseline;
    position: static; 
    border-bottom: 2px solid #E3E8EE;
  }
  .sppb_30 {
    padding-bottom: 30px;
  }
  #menu-content > li:hover {
    background: none;
  }
  #menu-content > li > a {
    height: 100%;
    padding: 0px;
    font-size: 17px;
    font-weight: 600;
    /*border-bottom: 1px solid #000;*/
    text-align: left;
  }
   #menu-content > li > a::before{
    content: "";
    display: inline-block;
    margin-left: 0em;
    margin-right: 1em;
    vertical-align: 2px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #9DA8B6;
    border-bottom: 2px solid #9DA8B6;
    transform: rotate(-45deg);
}
  
  
  #menu-content > li > ul.second-content {
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: static; 
    -webkit-box-shadow: none;
            box-shadow: none;
    transform: translate(0%, 0%);
    background-color: transparent;
  }
  #menu-content > li > ul.second-content > li {
    width: 100%;
    text-align-last: left;
    border-bottom: none;
    padding: 15px 0px;
    margin: 0px 0px;
  }
  #menu-content > li > ul.second-content > li > a {
    padding-left: 3rem;
    font-size: 15px;
    font-weight: 400;
  }
  #menu-content > li > ul.second-content > li > a::before{
    display: none;
}
  #menu-content > li > ul.second-content > li > a:hover {
    background: none;
  }
  
.sc_bottmline {
  display: none !important;
}
.sc_bottmline2 {
  display: none !important;
}

.top-info-con-box-item-btn {
	display: flex !important;
	margin-top: 0px;
	margin-bottom: 80px;
	width: 100%;
	justify-content: center;
}  
.top-infoText05_300px {
  display: flex;
  gap: 0px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 70px;
  font-size: 14px;
  color: #172A88;
  text-align: center;
  overflow-wrap: anywhere;
  background-color: #ffffff;
  border-radius: 5px;
  padding-right: 15px;
  padding-left: 25px;
  border: 2px solid #172A88;
  font-weight: 400;
} 
  
  
  
  
  
  
}