@charset "utf-8";
/*=============================================================
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/
@media screen and (min-width:1025px) {
  /* レスポンシブメニュー　 */
  header {
    display: none;
  }
  #nav-drawer {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  /* レスポンシブメニュー　 */
  header {
    position: fixed;
    padding: 10px 10px 15px 10px;
    background: #6DACE3;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  p.label_txt_menu {
    padding-top: 2em;
    font-size: .5em;
    color: #fff;
  }
  #nav-drawer {
    position: relative;
  }
  /*チェックボックス等は非表示に*/
  .nav-unshown {
    display: none;
  }
  /*アイコンのスペース*/
  #nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
  }
  /*ハンバーガーの形をCSSで表現*/
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px; /*線の太さ*/
    width: 25px; /*長さ*/
    border-radius: 3px;
    background: #fff;
    display: block;
    content: '';
    cursor: pointer;
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  /*閉じる用の薄黒箇所*/
  #nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  /*メニューの中身*/
  #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 90%;
    max-width: 330px; /*最大幅（お好みで調整を）*/
    height: 100%;
    background: #fff;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    -ms-transform: translateX(-105%);
    transform: translateX(-105%);
  }
  /*チェックがついたら表示させる*/
  #nav-input:checked ~ #nav-close {
    display: block;
    opacity: .5;
  }
  #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
  }
  .header-logo-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -ms-flex-direction: row;
  }
  .accordion {
    /*margin: 3em auto;
max-width: 70vw;*/
  }
  .toggle {
    display: none;
  }
  .option {
    width: 99%;
    position: relative;
    border-bottom: 1px solid #7DA6C0;
  }
  .title, .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .title {
    padding: 1em;
    display: block;
    background: #EEF5FD;
    color: #333;
    font-weight: bold;
  }
  .title::after, .title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    top: 1.25em;
    width: 2px;
    height: 0.75em;
    background-color: #999;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .title::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .content {
    max-height: 0;
    overflow: hidden;
  }
  .toggle:checked + .title + .content {
    max-height: 500px;
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s;
  }
  .toggle:checked + .title::before {
    -webkit-transform: rotate(90deg) !important;
    -ms-transform: rotate(90deg) !important;
    transform: rotate(90deg) !important;
  }
  .content ul {
    padding-left: 1em;
  }
  .content ul li a {
    display: block;
    padding: 1em 0;
    text-decoration: none;
    line-height: 1;
  }
  .onebtn {
    padding: 0 1em 1em 1em;
    border-bottom: 1px solid #E3E3E3;
  }
  .onebtn a {
    font-weight: bold;
    display: block;
    padding: .5em 0;
    color: #666 !important;
  }
}
/*========================================*/
.o_img_center {
  text-align: center;
  margin: 2em auto;
}
.o_img_center p {
  text-align: center;
  font-size: .9em;
}
/*　スクロールで固定追従*/
/*===================================*/
.sub-fix-block {
  position: sticky;
  top: 20px;
}
@media screen and (max-width:1024px) {
  .sub-fix-block {
    position: relative;
    top: 0;
  }
}
/* ドロップダウンメニュー*/
/*===================================*/
#g-nav ul {
  position: relative;
  top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#g-nav ul ul {
  display: block;
  margin: 0;
}
#g-nav ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #314051;
  padding: 10px 30px 10px 10px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  text-align: center;
  margin-left: 10px;
}
#g-nav ul > li > ul > li > a {
  padding: 10px;
  text-align: left;
}
#g-nav ul > li > ul > li > a span {
  margin-left: 20px;
}
#g-nav ul > li > ul > li > a span:before {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  left: 13px;
  margin-right: 10px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
/*hoverした際の移動*/
#g-nav ul > li > ul > li > a span:hover::before {
  left: 17px;
}
#g-nav ul li a:hover {
  color: #ffe7a4;
}
#g-nav ul li.has-child > a::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #636363;
  border-right: 2px solid #636363;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
#g-nav li.has-child ul {
  box-shadow: 0px 7px 10px 0px rgba(89, 167, 222, 0.4);
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: rgba(89, 167, 222, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 50%;
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
#g-nav li.has-child:hover > ul {
  visibility: visible;
  opacity: 1;
}
#g-nav li.has-child ul li {
  width: 50%;
}
/*見出し*/
#g-nav li.has-child ul li.menu_midashi {
  width: 100%;
  font-size: 1.1em;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  position: relative;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
}
#g-nav li.has-child ul li.menu_midashi span {
  padding-left: 20px;
}
#g-nav li.has-child ul li.menu_midashi span:before {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  left: 13px;
  /*矢印の形状*/
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(136deg);
}
/*画像*/
#g-nav li.has-child ul li.menu_img {
  width: 100% !important;
}
#g-nav li.has-child ul li.menu_img div {
  position: relative;
}
#g-nav li.has-child ul li.menu_img div img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  filter: blur(1px);
}
/*画像の上のタイトル*/
#g-nav li.has-child ul li.menu_img div h3 {
  position: absolute;
  top: 20px;
  left: 60px;
  font-size: 1.3em;
  color: #314051;
  font-weight: normal;
}
#g-nav li.has-child ul li.p_smp_item010 {
  width: 50%;
}
/* misc */
#g-nav ul li.sp_misc {
  display: none;
}
#g-nav li.has-child ul li a {
  color: #fff !important;
  font-size: 1em;
}
#g-nav li.has-child ul li a:hover {
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  color: #fff;
}
@media screen and (max-width:1024px) {
  #g-nav ul {
    display: none;
  }