*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes zoomout {
  0% {
    opacity: 1;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(50, 1) rotate(60deg);
  }
}

@keyframes jumpout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    margin-top: -400px;
    transform: scale(4);
  }
}

@keyframes katakata {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1.1, 1) rotate(10deg);
  }
  50% {
    transform: scale(1, 1) rotate(0deg);
  }
  75% {
    transform: scale(1.1, 1) rotate(-10deg);
  }
  100% {
    transform: scale(1, 1) rotate(0deg);
  }
}

.loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #000000;
  overflow: hidden;
}

.loading .loadingText {
  background-image: url(../images/common/nowloading_bg.jpg);
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  background-attachment: fixed;
  background-position: center top;
}

.loaderText {
  width: 357px;
  height: 183px;
  position: absolute;
  background-image: url("../images/common/nowloading_text.png");
  background-repeat: no-repeat;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.loaderText.anime {
  animation: flash 2.0s linear infinite;
}

body {
  line-height: 1;
  background-color: #000000;
  color: black;
}

#wrapper {
  position: relative;
}

#contents {
  width: 100%;
  overflow: hidden;
  background-color: #000000;
  color: black;
}

#contents_inner {
  width: 640px;
  margin: 0 auto;
  padding: 0;
  min-width: 640px;
  background-color: transparent;
  position: relative;
}

.container {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.container .nondisp {
  position: absolute;
  top: 10000px;
}

.bottom-menu {
  position: absolute;
  width: 100%;
  margin: 0;
  padding: 0;
}

.bottom-menu .menu-items {
  width: 94%;
  margin: auto;
}

.bottom-menu .menu-items .item-2col {
  width: 100%;
  display: flex;
}

.bottom-menu .menu-items .item-2col .item {
  width: 50%;
  text-align: center;
  margin-bottom: 12px;
}

.bottom-menu .menu-items .item-center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bottom-menu .copyright {
  position: absolute;
  top: 900px;
  left: 206px;
  width: 225px;
  height: 35px;
}

.bottom-menu .sns_fb {
  position: absolute;
  top: 944px;
  left: 331px;
  width: 48px;
  height: 48px;
}

.bottom-menu .sns_tw {
  position: absolute;
  top: 944px;
  left: 257px;
  width: 48px;
  height: 48px;
}

.menubtn {
  position: fixed;
  top: 18px;
  left: 534px;
  width: 84px;
  height: 77px;
  background-image: url(../images/common/menubtn.png);
  transform: rotate(0deg);
  transition: all ease 600ms;
}

.menubtn.doShow {
  transform: rotate(90deg);
}

.headermenu {
  position: fixed;
  top: 0;
  left: 650px;
  width: 100%;
  height: 10000px;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all ease 600ms;
}

.headermenu.doShow {
  left: 0;
}

.headermenu .menu-items {
  width: 94%;
  margin: auto;
  padding-top: 140px;
}

.headermenu .menu-items .item-2col {
  width: 100%;
  display: flex;
}

.headermenu .menu-items .item-2col .item {
  width: 50%;
  text-align: center;
  margin-bottom: 12px;
}

.headermenu .menu-items .item-center {
  width: 100%;
  display: flex;
  justify-content: center;
}

.search {
  width: 584px;
  height: 168px;
	background-image: url(../images/common/bg_search.png);
  margin-bottom: 20px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  
  position: relative;
}



.search .select {
	width: 260px;
	height: 60px;
	font-size: 2rem;
	background-color: black;
	background-image: url(../images/common/bg_select.jpg);
	background-size: cover;
	color: white;
	border: 0;
    outline: 1px solid #ccc;
    outline-offset: -1px;
    padding-left: 10px;
    position: absolute;
    top:84px;
    left: 90px;
    }

#search_button {
	width: 140px;
	height: 60px;
	font-size: 2rem;
	background-color: black;
	border: 1px solid white;
	color: white;
	bottom: 10px;
    position: absolute;
    top:84px;
    left: 360px;
	}

select {
-webkit-appearance: none;/* ベンダープレフィックス(Google Chrome、Safari用) */
-moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
appearance: none; /* 標準のスタイルを無効にする */
}
::-ms-expand { /* select要素のデザインを無効にする（IE用） */
display: none;
}