@charset "UTF-8";
/* ****************************** */
/* [000] 基本設定 */
/* ****************************** */
* {
  box-sizing: border-box;
  --colorHover: #00f;
  --colorKey: #f00;
  color: #fff;
  border-color: #fff !important;
}
body {
  background-color: #000;
  position: relative;
}
body::after {
  content: "";
  display: block;
  background-image: url(../res/img/omg001.jpg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/* ****************************** */
/* [001] グローバルヘッダー */
/* ****************************** */
.gHeader {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
}
.gHeader__siteTitle {
  text-align: center;
  font-size: 30px;
  color: #fff;
  text-shadow: 1px 1px 1px #f00;
  letter-spacing: 3px;
}
.gHeader__subTitle {
  display: inline;
  font-size: 20px;
  border-bottom: 1px solid #f00 !important;
}

/* ****************************** */
/* [002] グローバルナビゲーション */
/* ****************************** */
/*
.gNavi {
  width: 100%;
  margin-bottom: 40px;
  &__list {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin: 0 auto;
  }
  &__item {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
    font-size: 14px;
    &:hover {
      background-color: #fff;
      color: #000;
    }
  }
  &__item {
    &:after {
      content: attr(data-sub);
      display: block;
      width: 100%;
      font-size: 10px;
    }
  }
}
.wikiFrame {
  width: 100%;
  border: 1px solid #000;
  text-align: center;
  margin-bottom: 40px;
  & iframe {
    width: 100%;
    height: 30vh;
  }
}
*/
/* ****************************** */
/* [003] メインコンテンツ */
/* ****************************** */
.inner {
  width: 95%;
  margin: 0 auto;
}

.conversion {
  padding: 10px;
  margin-bottom: 40px;
}
.conversion > * {
  margin-right: 20px;
}
.conversion__inner {
  width: 70%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.conversion__ipt {
  display: inline-block;
  background-color: transparent;
  width: 60%;
  height: 50px;
  padding: 10px;
  border: 1px solid #fff;
  border-right: 0;
  border-radius: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px  1px 1px #333, -1px -1px 1px #333;
  -webkit-apealance: none;
  apealance: none;
}
.conversion__ipt:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.conversion__select {
  display: inline-block;
  background-color: transparent;
  width: 60px;
  height: 50px;
  padding: 3px 10px;
  border: 1px solid #fff;
  border-left: 0;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px  1px 1px #333, -1px -1px 1px #333;
}
.conversion__select:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.conversion__btn {
  display: inline-block;
  background: transparent;
  width: 80px;
  height: 50px;
  padding: 10px;
  border: 1px solid #fff;
  border-left: 0;
  border-radius: 0 5px 5px 0;
  font-size: 20px;
  color: #fff;
  text-shadow: 1px  1px 1px #333, -1px -1px 1px #333;
  -webkit-appearance: none;
  appearance: none;
}
.conversion__btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.conversion__btn:active {
  background-color: #000;
}
.conversion__check {
  display: block;
  width: 150px;
  height: 50px;
  border: 1px solid #fff;
  font-size: 20px;
  color: #fff;
}

.reselt {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px;
  margin: 0 auto 40px;
  font-size: 18px;
}
.reselt__icon {
  height: 50px;
  border: 1px solid #000;
  vertical-align: middle;
}
.reselt__icon img {
  display: block;
  height: 50px;
  margin: 0 auto;
  font-size: 0;
}
.reselt__tit {
  width: 250px;
  padding: 10px;
  border: 1px solid #000;
}
.reselt__tit::after {
  content: attr(data-sub);
  display: block;
  width: 100%;
  font-size: 13px;
  line-height: -1px;
}
.reselt__point {
  width: 100px;
  padding: 10px 5px 20px 10px;
  border: 1px solid #000;
  border-right: none;
  text-align: right;
}
.reselt__tani {
  width: 50px;
  border: 1px solid #000;
  border-left: none;
  text-align: left;
}

.redShadow {
  text-shadow: 1px 1px 1px #f00;
}

/* ****************************** */
/* [005] グローバルフッター */
/* ****************************** */
.gFooter {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px 10px 10px;
  border-top: 1px dotted #fff;
  text-align: center;
}
.gFooter__res {
  padding: 10px;
}
.gFooter__resUrl {
  border-bottom: 1px dotted #f00 !important;
  color: #3434ff !important;
  color: #ff4242 !important;
}

@media screen and (max-width: 768px) {
  body::after {
    background-position: center;
  }

  .gNavi__list {
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  .gNavi__item {
    width: 50%;
  }

  .conversion__inner {
    width: 100%;
    max-width: 100%;
  }
  .conversion__ipt {
    width: 50%;
  }
}

/*# sourceMappingURL=common.css.map */
