@charset "utf-8";
.inner {
  width: 90%;
  margin: 0 auto;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}
/* header */
#top-head {
  top: -100px;
  position: absolute;
  width: 100%;
  margin: 100px auto 0;
  padding: 0px 0;
  line-height: 1;
  z-index: 999;
  
}
#top-head .inner {
  max-width: 1100px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
#top-head .logo {
  float: left;
  font-size: 0;
  padding: 15px 0;
  max-width: 110px;
}
#top-head .logo img{
  width: 100%;
  height: auto;
}
#top-head .logo:hover {
  opacity: 0.7;
}
#global-nav ul.nav-menu {
  width: 69%;
  max-width: 870px;
  list-style: none;
  font-size: 14px;
  display: table;
  margin: 0 auto;
}
#global-nav ul li {
  display: table-cell;
  padding: 2.3% 0%;
  vertical-align: middle;
  position: relative;
  text-align: center;
}
#global-nav ul li a {
  padding: 10px 20px;
  display: block;
  transition: top 0.5s ease;
  -webkit-transition: top 0.5s ease;
  -moz-transition: top 0.5s ease;
    
}
#global-nav ul li a:hover {
  background-image: url('../img/float_mouse_on.png');
  background-position: center center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
/*#global-nav ul li a{
    border-left: 1px solid #B1B1B1;
    
}*/
#global-nav ul li a::before {
  content: '';
  display: block;
  width: 6px;
  height: 16px;
  border-left: 1px solid #B1B1B1;
  position: absolute;
  left: 0px;
  top: calc(50% - 8px);
}
#global-nav ul li:first-child a::before {
  border-left: none;
}
#global-nav ul li img {
  width: 100%;
}
/* Fixed */
#top-head.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.5);
}
#top-head.fixed #global-nav ul, .open #global-nav ul {
  bottom: 7px;
}


#top-head.fixed #global-nav ul li img, .open #global-nav ul li img {}
.dropdown__lists {
  /* display: none;*/ /*デフォルトでは非表示の状態にしておく*/
  width: 280px;
  position: absolute;
  top: 50px;
  left: -80px;
  ;
  transform: scaleY(0); /*デフォルトでは非表示の状態にしておく*/
  transform-origin: center top; /*変形を適応する基準をtopとする*/
  transition: all .3s; /*表示の変化を0.3秒に指定*/
}
.gnavi__list:hover .dropdown__lists {
  transform: scaleY(1); /*Gナビメニューにホバーしたら表示*/
}
#global-nav ul li .dropdown__list {
  display: block;
  width: 100%;
  background-image: url('../img/pulldown_menu/nav_pulldown.png');
  background-position: bottom right;
  background-size: 100% auto;
  background-repeat: repeat-y;
  transition: all .3s;
  position: relative;
}
#global-nav ul li .dropdown__list:hover {
  background-image: url('../img/pulldown_menu/nav_pulldown_select.png');
  background-position: bottom right;
  background-size: 100% auto;
  background-repeat: repeat-y;
}
#global-nav ul li .dropdown__list a:hover {
  background: none;
}
#global-nav ul li .dropdown__list img {
  height: 17px;
  width: auto;
}
#global-nav ul li .dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  background-color: #3492d1;
  position: absolute;
  top: 0;
  left: 0;
}
#global-nav ul li .dropdown__list:hover {
  background-color: #003558;
}
#global-nav ul li .dropdown__list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}
#global-nav ul li .dropdown__list a::before {
  border: none;
}
#global-nav ul li .dropdown__list .pulldown {
  display: block;
}
#global-nav ul li .dropdown__list:hover .pulldown {
  display: none;
}
#global-nav ul li .dropdown__list .pulldown_select {
  display: none;
}
#global-nav ul li .dropdown__list:hover .pulldown_select {
  display: block;
}
#top-head.fixed #global-nav ul li .dropdown__list a {
  padding: 10px 18px;
}
/*****************************************************************************/
@media screen and (min-width: 768px) {
  .global-nav-sp {
    display: none;
  }
}
/*****************************************************************************/
@media screen and (min-width: 1200px) {
  #top-head .logo {
    margin-right: 130px;
}
}
/*****************************************************************************/
@media screen and (max-width: 767px) {
    #top-head {
  top:0;
  position:relative;
  width: 100%;
  margin: 0px auto 0;
 background-image: url('../img/bk.jpg');
  background-position:top left;
  background-size:100% auto;
  background-repeat: repeat-y;
        
}
#top-head .inner {
  max-width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
    text-align: center;
}
#top-head .logo {
  float: none;
  font-size: 0;
  margin: 0 auto;
  padding: 15px 0 5px;
}
   #top-head .logo img {
       max-width: 72px;
} 
    #top-head.fixed {
  margin-top: 0;
  top: 0;
  position:relative;
  padding-top: 13px;
  
}
    
    
    #global-nav{
        display: none;
  }
    
    
  .global-nav-sp {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0px;
    height: 58px;
    background: #fff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    /* 非表示にする */
    opacity: 1;
    /*transform: scaleY(-3);*/ /*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top; /*変形を適応する基準をtopとする*/
    transition: all .3s; /*表示の変化を0.3秒に指定*/
    width: 100%;
    z-index: 110;
  }
  .is-active {
    /* 表示する */
    opacity: 0;
    /* transform: scaleY(0);*/ /*デフォルトでは非表示の状態にしておく*/
    bottom: -80px;
  }
  .global-nav-sp .nav-menu {
    width: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content:space-evenly;
  }
  .global-nav-sp .nav-menu li {
    list-style: none;
    width: 16.666%;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    padding-top: 8px;
  }
  .global-nav-sp .nav-menu li a {
    padding: 30px 0px 10px;
  }
  .global-nav-sp .nav-menu li img {
    width: 95%;
  }
  .global-nav-sp .nav-menu li a::before {
    content: '';
    display: block;
    width: 3px;
    height: 12px;
    border-left: 1px solid #B1B1B1;
    position: absolute;
    left: -5px;
    top: calc(50% - 16px);
    padding: 10px;
  }
  .global-nav-sp .nav-menu li:first-child a::before {
    content: '';
    display: block;
    border: none;
  }
  .global-nav-sp .nav-menu li span::before {
    content: '';
    display: block;
    width: 10px;
    padding: 18px 10px 12px;
    margin: 0 auto;
  }
  .global-nav-sp .nav-menu li:nth-child(1) span::before {
    background-image: url('../img/nav_to_admt_icon.svg');
    background-position: top center;
    background-size: auto 30px;
    background-repeat: no-repeat;
  }
  .global-nav-sp .nav-menu li:nth-child(2) span::before {
    background-image: url('../img/nav_spot_icon.svg');
    background-position: top center;
    background-size: auto 30px;
    background-repeat: no-repeat;
  }
  .global-nav-sp .nav-menu li:nth-child(3) span::before {
    background-image: url('../img/nav_goods_icon.svg');
    background-position: top center;
    background-size: auto 30px;
    background-repeat: no-repeat;
  }
  .global-nav-sp .nav-menu li:nth-child(4) span::before {
    background-image: url('../img/nav_photo_icon.svg');
    background-position: top center;
    background-size: auto 30px;
    background-repeat: no-repeat;
  }
  .global-nav-sp .nav-menu li:nth-child(5) span::before {
    background-image: url('../img/nav_hp_icon.svg');
    background-position: top center;
    background-size: auto 30px;
    background-repeat: no-repeat;
  }
  .global-nav-sp .nav-menu li:nth-child(6) span::before {
    background-image: url('../img/nav_exhibition_icon.svg');
    background-position: top center;
    background-size: auto 30px;
    background-repeat: no-repeat;
  }
}

@media all and (min-width: 768px) and (max-width: 1200px) {
  #global-nav ul li .dropdown__list img {
    height: 13px;
    width: auto;
}
#top-head .logo {
  width: 10%;
  padding: 10px 0;
}
.dropdown__lists {
  width: 190px;
}
}