@charset "UTF-8";

/*----------------------------------------レイアウト基礎----------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
}

a {
  color: #000;
}

a:hover {
  opacity: 0.7;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.left {
  float: left;
}

.right {
  float: right;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.centertxt {
  text-align: center;
}

/* .clearfix {margin: 0;} */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.cb {
  clear: both;
}

.oh {
  overflow: hidden;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

table {
  width: 100%;
}

table th {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid;
}

table td {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid;
}

@media screen and (max-width: 767px) {
  .left {
    float: none;
  }

  .right {
    float: none;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  table th, table td {
    display: block;
  }
}

/*---------------------------------------画像の基礎----------------------------------------*/
body {
  background-image: url("");
  background-color: #000;
  /*画像を背景に入れる方法。svgも可*/
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  color: #ffffff;
}

object, svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*---------------------------------------フォントの基礎----------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: 'メイリオ', 'Meiryo', 'Lucida Grande', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', Verdana, Helvetica, Arial, Sans-serif;
  color: #fff;
  font-size: 1.4rem;
  /* 16px*/
  line-height: 1.8;
}

h1 {
  font-size: 36px;
  /* IE8以下とAndroid4.3以下用フォールバック */
  font-size: calc(2.4rem + ((1vw - 0.64rem) * 2.1429));
  /* 24px~36pxで可変*/
  line-height: 1.3;
}

h2 {
  font-size: 24px;
  /* IE8以下とAndroid4.3以下用フォールバック */
  font-size: calc(2rem + ((1vw - 0.64rem) * 0.7143));
  /* 20px~24pxで可変*/
  line-height: 1.3;
}

p {
  line-height: 1.8;
}

dt {
  float: left;
}

dt::after {
  content: "："
}

input {
  color: #000;
}

select {
  color: black;
}

.bold {
  font-weight: bold;
}

@media (min-width: 1100px) {

  /* 1200px以上*/
  h1 {
    font-size: 3.6rem;
    /* 36px*/
  }

  h2 {
    font-size: 2.4rem;
    /* 24px*/
  }
}

@media screen and (max-width: 767px) {

  /* 640px以下*/
  body {
    line-height: 1.5;
  }

  h1 {
    font-size: 2.4rem;
    /* 24px*/
  }

  h2 {
    font-size: 2rem;
    /* 20px*/
  }

  p {
    line-height: 1.5;
  }
}

@media screen and (max-width: 500px) {

  /* 640px以下*/
  h1 {
    font-size: 2.4rem;
    /* 24px*/
  }

  h2 {
    font-size: 2rem;
    /* 20px*/
  }
}

/*----------------------------------------共通----------------------------------------*/
section {
  margin: 3% 0;
}

.container {
  min-height: 100vh;
  /*フッターを底に固定するのに必要*/
  position: relative;
  /*←相対位置。フッターを底に固定するのに必要*/
  padding: 0 0 120px 0;
  /*←footerの高さ*/
  box-sizing: border-box;
  /*←全て含めてmin-height:100vhに*/
}

#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: -50px;
  background: #c6c6c6;
  opacity: 0.8;
  text-align: center;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

/*ホバー時の挙動*/
.hoverbox {
  position: relative;
}

.imgWrap {
  overflow: hidden;
}

.imgEff {
  cursor: pointer;
  transition-duration: 0.3s;
}

.imgEff:before {
  /*文字に対する処理*/
  position: absolute;
  /*画像の上に文字を重ねる*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*以下文字の位置に関するCSS*/
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  content: "";
  /*文字の内容*/
  width: 100%;
  /*画像と文字範囲を同じ大きさに*/
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.1), #000);
  filter: blur(4px);
  transition-duration: 0.3s;
  opacity: 0;
  border-radius: 30px;
}

.imgEff:hover {
  transform: scale(1.1);
}

.imgEff:hover:before {
  /*hoverからのbeforeで動きを出してる*/
  transform: scale(2);
  filter: blur(0);
  opacity: 0.8;
  letter-spacing: 0px;
}

.imgEff_top {
  cursor: pointer;
  transition-duration: 0.3s;
}

.imgEff_top:before {
  /*文字に対する処理*/
  position: absolute;
  /*画像の上に文字を重ねる*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*以下文字の位置に関するCSS*/
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  content: "";
  /*文字の内容*/
  width: 100%;
  /*画像と文字範囲を同じ大きさに*/
  height: 100%;
  /* background: radial-gradient(rgba(0, 0, 0, 0.1), #000); */
  filter: blur(4px);
  transition-duration: 0.3s;
  opacity: 0;
  border-radius: 30px;
}

.imgEff_top:hover {
  transform: scale(1.1);
}

.imgEff_top:hover:before {
  /*hoverからのbeforeで動きを出してる*/
  transform: scale(2);
  filter: blur(0);
  opacity: 0.8;
  letter-spacing: 0px;
}

@media screen and (max-width: 500px) {
  .container {
    padding-bottom: 50px;
  }
}

/*----------------------------------------header----------------------------------------*/
header {}

header h1 {
  margin: 0 auto;
}

header img {}

header img.absolute {
  top: 0;
  left: 0;
}

header {}

/*----------------------------------------se01----------------------------------------*/
.social {}

.social h2 {
  text-align: center;
}

.social h2 img {
  width: 95%;
  max-width: 700px;
}

.social ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.social ul li {
  width: 45%;
  text-align: center;
}

.social ul li p {
  font-size: 1.8em;
  margin: 0px;
}

.social ul li p span {
  font-size: 2.2em;
}

@media screen and (max-width: 767px) {
  .social ul li {
    width: 100%;
  }

  .social ul li p {
    font-size: 1.5em;
  }

  .social ul li p span {
    font-size: 2em;
  }
}

@media screen and (max-width: 500px) {
  .social ul li p {
    font-size: 1em;
  }

  .social ul li p span {
    font-size: 1.5em;
  }
}

/*----------------------------------------se02----------------------------------------*/
#se02 {}

#se02 ul {
  display: flex;
  flex-wrap: wrap;
}

#se02 ul li {
  width: 45%;
  margin: 0 2.5%;
  text-align: center;
  background-color: #a05726;
}

#se02 ul li h2 {
  width: 100%;
  padding: 5px 0 12px;
  margin: 0px auto;
  background-color: #81252a;
}

#se02 ul li h2 img {
  width: 35%;
  max-width: 185px;
}

#se02 ul li form {}

#se02 ul li form.absolute {
  width: 85%;
  top: 19%;
  left: 8%;
}

#se02 form img {
  width: 45%;
  max-width: 200px;
}

#se02 dl {
  width: 90%;
  margin: 0 auto;
}

#se02 dt {
  width: 100%;
  text-align: left;
  padding: 6px 0px;
}

#se02 dt::after {
  content: ""
}

#se02 dd {
  width: 99%;
}

#se02 .mb {
  margin: 10px 0px 5px;
}

#se02 button img {
  width: 100%;
  padding: 5% 0 10%;
}

#se02 button:hover {
  opacity: 0.7;
}

#se02 button.btn_up {
  width: 50%;
  padding: 5% 0px 10%;
  background: url(../img/common/board_btn01.svg);
  background-repeat: no-repeat;
  background-position: center;
}

#se02 button.btn_login {
  width: 50%;
  padding: 5% 0px 10%;
  background: url(../img/common/board_btn02.svg);
  background-repeat: no-repeat;
  background-position: center;
}

#se02 .text {
  text-align: center;
  margin: 2% auto;
}

#se02 .text img {
  width: 95%;
}

@media screen and (max-width: 1060px) {
  #se02 ul li form.absolute {
    width: 85%;
    top: 20%;
  }

  #se02 .form-control {
    height: 30px;
    padding: 2px 12px;
  }
}

@media screen and (max-width: 900px) {
  #se02 .form-control {
    height: 26px;
    padding: 2px 12px;
  }

  #se02 dt {
    padding: 8px 0px;
  }
}

@media screen and (max-width: 820px) {
  #se02 .small {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  #se02 ul li:nth-child(1) {
    width: 100%;
    margin: 0 3% 10%;
  }

  #se02 ul li:nth-child(2) {
    width: 100%;
    margin: 0 3% 0;
  }

  #se02 .form-control {
    height: 30px;
    padding: 4px 12px;
  }

  #se02 .small {
    width: 100%;
  }
}

/*----------------------------------------se03----------------------------------------*/
.mydata {
  width: 90%;
  margin: 0 auto;
  background-color: #a05726;
}

.mydata h2 {
  font-weight: bold;
  text-align: center;
  padding: 3% 0;
  background-color: #81252a;
}

.mydata h2 img {
  width: 50%;
  max-width: 230px;
}

.mydata .clearfix {
  margin: 0 0 3%;
}

.mydata .left {
  width: 50%;
}

.mydata .right {
  width: 50%;
}

.mydata ul {
  width: 100%;
}

.mydata li {
  padding: 5% 0 8px 10%;
  margin: 0 3%;
  background-image: url(../img/common/data_bar.svg);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.mydata .logout {
  text-align: center;
  padding: 3% 0;
}

.mydata .logout img {
  width: 80%;
  max-width: 300px;
}

#bonus {
  text-align: center;
}

#bonus img {
  width: 80%;
  max-width: 750px;
}

@media screen and (max-width: 767px) {
  .mydata .left {
    width: 100%;
  }

  .mydata .right {
    width: 100%;
  }
}

/*----------------------------------------se04----------------------------------------*/
#se04 .map {}

#se04 .map ul {
  display: flex;
  flex-wrap: wrap;
  margin: 2%;
}

#se04 .map li {
  width: 50%;
}

#se04 .map li:nth-child(2n-1) {
  text-align: right;
}

#se04 .map li:nth-child(2n) {
  text-align: left;
}

#se04 .map li img {
  width: 95%;
  max-width: 350px;
  padding: 1%;
}

#se04 .search {
  width: 90%;
  margin: 3% auto 10%;
}

#se04 .search img {
  width: 80%;
  max-width: 280px;
}

#se04 h2 {
  text-align: center;
  margin: 3% auto;
}

#se04 .search .left {
  width: 60%;
  padding: 2%;
}

#se04 .search .right {
  width: 40%;
  padding: 2%;
}

#se04 .vws_box {
  width: 100%;
  text-align: center;
}

#se04 iframe {
  width: 100%;
  max-width: 1100px;
  height: 550px;
}

@media screen and (max-width: 767px) {
  #se04 .search .left {
    width: 100%;
    padding: 2%;
  }

  #se04 .search .right {
    width: 100%;
    padding: 2%;
    text-align: center;
  }
}

/*----------------------------------------collect----------------------------------------*/
.collect {
  text-align: center;
}

.collect h2 img {
  width: 70%;
  max-width: 300px;
}

.collect .bar {
  width: 96%;
  text-align: left;
  margin: 0px auto 5px;
  line-height: 0.7;
}

.collect .bar .hoshi {
  width: 15%;
  max-width: 65px;
}

.collect .bar:nth-child(8) .hoshi {
  width: 15%;
  max-width: 65px;
}

.collect .bar .star {
  width: 30%;
  max-width: 150px;
  margin: 0% 0% 0% 15px;
}

.collect ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.collect li {
  width: 20%;
  margin: 1% 0;
  text-align: center;
}

.collect li img {
  width: 90%;
  background-color: wheat;
  border-radius: 15px;
}

@media screen and (max-width: 767px) {
  .collect .bar {
    width: 95%;
    margin: 10% auto 5px;
  }

  .collect ul {
    margin: 0 5%;
  }

  .collect li {
    width: 50%;
  }
}

/*----------------------------------------modal----------------------------------------*/
.modal_open {}

.modal_box {
  position: fixed;
  z-index: 7777;
  display: none;
  width: 90%;
  max-width: 840px;
  margin: 0;
  padding: 50px 2vw 50px;
  border: 2px solid #aaa;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
}

.modal_box iframe {
  width: 100%;
  height: 70vh;
}

.modal_close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 62px;
  font-size: 46px;
  color: #000;
  line-height: 62px;
  text-align: center;
  background: #e6e6e6;
}

.modal_close i {
  line-height: 62px;
  vertical-align: bottom;
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7);
}

#modal-open {
  color: #cc0000;
}

/* モーダル コンテンツエリア */
#modal-main {
  display: none;
  width: 500px;
  height: 300px;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #666666;
  position: fixed;
  z-index: 2;
}

/* モーダル 背景エリア */
#modal-bg {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {

  /*  ウィンドウサイズ769px以下の時のスタイル  */
  .modal_box {
    padding: 40px 2vw 40px;
  }

  .modal_close {
    width: 40px;
    line-height: 40px;
    font-size: 30px;
  }

  .modal_close i {
    line-height: 44px;
  }

  .modal_box iframe {
    width: 100%;
    height: 50vh;
  }
}

/*----------------------------------------quiz----------------------------------------*/
#quiz {}

#quiz img {
  width: 100%;
}

#quiz {}

#quiz {}

#quiz {}

/*----------------------------------------waypoint----------------------------------------*/
/*----------------------------------------footer----------------------------------------*/
footer {
  width: 100%;
  text-align: center;
  bottom: 0;
  /*下に固定フッターを底に固定するのに必要*/
  padding: 0 0 5%;
  margin: 0 0 10%;
}

footer div.banner a {
  margin: 0 0 3%;
  opacity: 1;
}

footer div.banner a:hover {
  margin: 0 0 3%;
  opacity: 1;
}

footer ul {
  display: flex;
  margin: 2% auto 3%;
  width: 100%;
  max-width: 300px;
}

footer ul li {
  width: 50%;
  display: inline-block;
}

footer ul li a:hover {
  opacity: 1;
}

footer ul li img {
  width: 75px;
}

/*SNSボタンの挙動*/
.hovicon {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hovicon:after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  content: '';
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box
}

.hovicon:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased
}

.hovicon.effect-1 {
  background: #8b8b8b;
  -webkit-transition: background 0.2s, color 0.2s;
  -moz-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.hovicon.effect-1:after {
  top: -7px;
  left: -7px;
  padding: 7px;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -webkit-transform: scale(0.8);
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transition: transform 0.2s, opacity 0.2s;
  transform: scale(0.8);
  opacity: 0;
}

.hovicon.line:after {
  box-shadow: 0 0 0 4px #00b900;
}

.hovicon.twitter:after {
  box-shadow: 0 0 0 4px #00acee;
}

.hovicon.effect-1:hover:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1
}

.hovicon.effect-1.line:hover {
  background: #00b900;
}

.hovicon.effect-1.twitter:hover {
  background: #00acee;
}

@media screen and (max-width:767px) {
  footer ul {
    display: flex;
    margin: 10% auto 15%;
    width: 100%;
    max-width: 300px;
  }

  footer ul li img {
    width: 65px;
  }
}
