@charset "UTF-8";
/* Scss Document */
/* CSS Document */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

html {
  overflow-y: scroll; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

input, textarea {
  margin: 0;
  padding: 0; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th {
  text-align: left; }

a:focus {
  outline: none; }

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

.clearfix {
  min-height: 1px; }

* html .clearfix {
  height: 1px;
  /*¥*/
     /*/
height: auto;
overflow: hidden;
/**/ }

.both {
  clear: both; }

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/* よく使うCSS start

img {
	max-width:100%;
}

table {
	width:100%;
}

a,a:hover {
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

a img:hover {
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}

よく使うCSS end -----
時々使うCSS3 start ---

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

テキストシャドウ {
	text-shadow: 1px 1px 3px #000;
}

ボックスシャドウ {
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

ボックスシャドウ内側 {
	-moz-box-shadow: inset 1px 1px 3px #000;
	-webkit-box-shadow: inset 1px 1px 3px #000;
	box-shadow: inset 1px 1px 3px #000;
}

角丸 {
	border-radius: 8px; 
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px; 
}

トランジション {
	-webkit-transition: 1.5s;
	-moz-transition: 1.5s;
	-o-transition: 1.5s;
	transition: 1.5s;
}

透明 {
	filter: alpha(opacity=25);
	-moz-opacity:0.25;
	opacity:0.25;
}

背景のみ透明 {
	background-color:rgba(255,255,255,0.2);
}

グラデーション {
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
	background-image: -moz-linear-gradient(top, #ffffff, #000000);
	background-image: -ms-linear-gradient(top, #ffffff, #000000);
	background-image: -o-linear-gradient(top, #ffffff, #000000);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#000000));
	background-image: -webkit-linear-gradient(top, #ffffff, #000000);
	background-image: linear-gradient(top, #ffffff, #000000);
}

スマホ対応
@media screen and (max-width: 480px){
	
}
@media screen and (max-width: 320px){
	
}

時々使うCSS3 end */
/* Scss Document */
body {
  width: 100%;
  background-color: #000;
  min-width: 1100px; }

p {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  text-shadow: 2px 2px 1px #000; }

h2, h3, h4 {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  text-shadow: 3px 3px 1px #000; }

img {
  width: 100%;
  vertical-align: bottom; }

a {
  display: block;
  text-decoration: none;
  cursor: pointer; }

label {
  cursor: pointer; }

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px; }

.clear {
  clear: both; }

.flexbox {
  display: flex; }

.yellow {
  color: yellow; }

/*アニメーション*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeInAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0; }

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
/*ボーダー*/
.border {
  width: 100%;
  height: 3px;
  background: #8c5b00;
  background: linear-gradient(135deg, #b8751e 0%, #ffce08 37%, #fefeb2 47%, #fafad6 50%, #fefeb2 53%, #e1ce08 63%, #b8751e 100%); }

/*ウェルカムページ------------------*/
#toppage {
  /*end_header*/
  /*end_main*/
  /*end_footer*/
  /* --------------------------------
   * 登録ボタン
   * -------------------------------- */ }
  #toppage header {
    width: 100%;
    background-image: url("../img/header/header_bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    z-index: 1111;
    border-bottom: 1px solid rgba(238, 172, 18, 0.8);
    /*background-color:#000;*/ }
    #toppage header #header_cont {
      font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
      #toppage header #header_cont #login {
        padding: 0 1vw; }
        #toppage header #header_cont #login .fl_left {
          float: left; }
          #toppage header #header_cont #login .fl_left h1 {
            width: 200px;
            padding: 12px 5px 0 0; }
        #toppage header #header_cont #login .fl_right {
          float: right;
          text-align: center;
          line-height: 55px;
          text-shadow: 1px 1px 2px #000; }
          #toppage header #header_cont #login .fl_right .login_line {
            line-height: 40px;
            margin-right: 5px;
            padding: 8px 0; }
            #toppage header #header_cont #login .fl_right .login_line a {
              color: #fff;
              background-color: #26ce00;
              border: 1.5px solid #cccccc;
              border-radius: 2px;
              height: 40px;
              padding: 0 5px;
              font-size: 1rem;
              font-weight: bold;
              box-shadow: 2px 2px 2px #000; }
              #toppage header #header_cont #login .fl_right .login_line a span {
                font-size: 1.5rem !important; }
            #toppage header #header_cont #login .fl_right .login_line a:hover {
              border: 2px solid #26ce00;
              background-color: #2ce800;
              transition: .3s; }
          #toppage header #header_cont #login .fl_right .icon_login {
            margin-right: 5px;
            padding: 7px 0; }
            #toppage header #header_cont #login .fl_right .icon_login a {
              color: #fff;
              background-color: rgba(0, 0, 0, 0.5);
              border: 1.5px solid #cccccc;
              border-radius: 2px;
              height: 40px;
              line-height: 1;
              width: 110px;
              padding: 2px 1px 0 1px;
              font-size: .9rem;
              font-weight: bold;
              box-shadow: 2px 2px 2px #000; }
            #toppage header #header_cont #login .fl_right .icon_login a:hover {
              border: 2px solid yellow;
              background-color: rgba(0, 0, 0, 0.2);
              transition: .3s; }
            #toppage header #header_cont #login .fl_right .icon_login img {
              width: 30px;
              line-height: 1;
              margin: 4px 3px 0 2px; }
          #toppage header #header_cont #login .fl_right .l_box01 {
            padding: 13px 10px;
            margin: 0 3px;
            width: 170px;
            border-radius: 2px;
            border: 2px solid #fff;
            background-color: #e8e8e8;
            box-shadow: 2px 2px 2px #000; }
          #toppage header #header_cont #login .fl_right .l_box02 {
            padding: 13px 10px;
            margin: 0 3px;
            width: 120px;
            border-radius: 2px;
            border: 2px solid #fff;
            background-color: #e8e8e8;
            box-shadow: 2px 2px 2px #000; }
          #toppage header #header_cont #login .fl_right .login_btn input {
            font-size: 1rem;
            padding: 8px 3px;
            margin: 5px 3px 0;
            width: 80px;
            text-align: center;
            font-weight: bold;
            border-radius: 2px;
            border: 2px solid #876800;
            background: #e8ca1e;
            background: -moz-linear-gradient(#f5ee81 0%, #f7ef9d 40%, #e5c551 100%, #ffd119 100%, #e8ca1e 100%);
            background: -webkit-gradient(linear, left top, left bottom, from(#f5ee81), color-stop(40%, #f7ef9d), color-stop(100%, #e5c551), color-stop(100%, #ffd119), to(#e8ca1e));
            background: -webkit-linear-gradient(#f5ee81 0%, #f7ef9d 40%, #e5c551 100%, #ffd119 100%, #e8ca1e 100%);
            background: -o-linear-gradient(#f5ee81 0%, #f7ef9d 40%, #e5c551 100%, #ffd119 100%, #e8ca1e 100%);
            background: linear-gradient(#f5ee81 0%, #f7ef9d 40%, #e5c551 100%, #ffd119 100%, #e8ca1e 100%);
            box-shadow: 2px 2px 2px #000;
            cursor: pointer; }
  #toppage main {
    width: 100%;
    /*TOP*/
    /*登録フォーム1,2　共通*/
    /*end #registration_content*/
    /*STEP*/
    /*POINT*/
    /*決済方法*/
    /*的中実績*/
    /*口コミ*/
    /*end #reviews_content*/ }
    #toppage main #top_cont {
      width: 100%;
      background-color: #fff !important;
      margin-top: 60px; }
      #toppage main #top_cont .h2_top_pc {
        width: 100%;
        height: 800px;
        overflow: hidden;
        margin: 0 auto;
        background-image: url("../img/top/top.png");
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover; }
    #toppage main #registration_content1, #toppage main #registration_content2 {
      background-image: url("../img/top/regist_bg02.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom center;
      padding: 14rem 0 8rem;
      text-align: center;
      position: relative;
      height: auto; }
      #toppage main #registration_content1 .registration_content1_inner, #toppage main #registration_content2 .registration_content1_inner {
        background-color: rgba(0, 0, 0, 0.5);
        box-shadow: 1px 1px 10px #cf8800;
        border: 1px solid red;
        margin: 0 auto;
        color: #fff;
        padding: 3vw 0;
        width: 1000px; }
        #toppage main #registration_content1 .registration_content1_inner .mail_content, #toppage main #registration_content2 .registration_content1_inner .mail_content {
          margin: 3rem auto;
          text-align: center;
          text-shadow: 1px 1px 2px #000; }
          #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner {
            width: 100%;
            text-align: center; }
            #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .campaign, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .campaign {
              position: absolute;
              top: 8rem;
              height: auto;
              width: 850px;
              left: 50%;
              transform: translateX(-50%); }
            #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .regist_tx, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .regist_tx {
              width: 70%;
              margin: .5vw auto 0; }
            #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .regist_line, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .regist_line {
              cursor: pointer;
              letter-spacing: 1.5px;
              text-shadow: 1px 1px 2px #000;
              font-size: 1.5vw;
              font-weight: bold;
              font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
              width: 780px;
              padding: 1rem 0;
              margin: 0 auto 1.5vw;
              border-radius: 5px;
              border: none;
              text-align: center;
              background: #00db00;
              background: -moz-linear-gradient(#00e300 0%, #00e300 25%, #00e300 50%, #00ba09 51%, #00db00 100%);
              background: -webkit-gradient(linear, left top, left bottom, from(#00e300), color-stop(25%, #00e300), color-stop(50%, #00e300), color-stop(51%, #00ba09), to(#00db00));
              background: -webkit-linear-gradient(#00e300 0%, #00e300 25%, #00e300 50%, #00ba09 51%, #00db00 100%);
              background: -o-linear-gradient(#00e300 0%, #00e300 25%, #00e300 50%, #00ba09 51%, #00db00 100%);
              background: linear-gradient(#00e300 0%, #00e300 25%, #00e300 50%, #00ba09 51%, #00db00 100%);
              box-shadow: 0 3px 0 0 #02920d; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .regist_line a, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .regist_line a {
                color: #fff; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .regist_line a span, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .regist_line a span {
                  font-size: 2vw;
                  font-weight: bold;
                  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
                  margin-right: .51rem; }
            #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .regist_line:hover, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .regist_line:hover {
              box-shadow: none; }
            #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox {
              width: 800px;
              margin: .5rem auto 0;
              flex-wrap: wrap; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login_tx, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login_tx {
                font-size: 1.4rem;
                font-weight: bold;
                text-align: center;
                width: 370px;
                line-height: 2;
                padding-top: .7rem;
                border: 3px solid yellow;
                background-color: rgba(255, 239, 0, 0.4);
                border-radius: 5px;
                margin: 0 .5rem 1rem .5rem;
                font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
                color: #fff; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login {
                margin: 0 .5rem .5rem .5rem; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login img, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login img {
                  width: 40px;
                  margin: 0 .5rem .25rem 0; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login a, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login a {
                  color: #fff;
                  border: 3px solid #fff;
                  background-color: rgba(0, 0, 0, 0.4);
                  border-radius: 5px;
                  padding: .5rem;
                  width: 361px;
                  line-height: 2.5;
                  text-align: center;
                  font-size: 1.2rem;
                  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login a:hover, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login a:hover {
                  color: yellow;
                  transition: .2s ease all;
                  border: 3px solid yellow; }
            #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry {
              width: 782px;
              margin: .5rem auto 0; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist {
                font-size: 2.1vw;
                font-weight: bold;
                line-height: 1.5;
                font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist .red, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist .red {
                  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
                  font-weight: bold;
                  color: red;
                  font-size: 3vw;
                  -webkit-animation: blink 1s  infinite alternate;
                  -moz-animation: blink 1s  infinite alternate;
                  animation: blink 1s  infinite alternate; }
@-webkit-keyframes blink {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes blink {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes blink {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist .h2_regist_b, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist .h2_regist_b {
                  font-weight: bold;
                  font-size: 3vw;
                  color: yellow;
                  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .caution1, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .caution1 {
                font-size: 2vw;
                font-weight: bold;
                margin: 0 auto 1rem;
                font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .mail_entry_tx, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .mail_entry_tx {
                color: yellow;
                font-size: 1.8vw;
                font-weight: bold;
                line-height: 1.2;
                letter-spacing: 1.3px; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .mail_box, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .mail_box {
                width: 450px;
                padding: 1rem 0;
                margin: .2rem 0 0 0;
                border-radius: 5px;
                border: none;
                text-align: center;
                font-size: 1rem; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .entry_btn, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .entry_btn {
                width: 350px;
                background-image: url("../img/top/regist_btn.png");
                background-color: inherit;
                background-repeat: no-repeat;
                background-size: 100%;
                height: 70px;
                -webkit-appearance: none;
                cursor: pointer; }
    #toppage main #step_content {
      background-image: url("../img/top/step_bg.png");
      background-repeat: no-repeat;
      background-size: cover;
      text-align: center; }
      #toppage main #step_content .step_inner {
        width: 1000px;
        padding: 7rem 0 10rem;
        margin: 0 auto; }
        #toppage main #step_content .step_inner h2 {
          margin: 1rem auto;
          color: #fff;
          font-size: 2.8rem;
          font-weight: bold;
          text-shadow: 2px 2px 1px #000; }
          #toppage main #step_content .step_inner h2 .step_y {
            color: yellow;
            font-weight: bold; }
          #toppage main #step_content .step_inner h2 img {
            width: 400px; }
        #toppage main #step_content .step_inner ul {
          width: 1000px;
          margin: 0 auto;
          overflow: hidden; }
          #toppage main #step_content .step_inner ul .step_li {
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            text-align: left;
            text-shadow: 2px 2px 1px #000;
            padding: 2rem 1rem;
            border: 3px solid #c21500;
            border-image: linear-gradient(to right, #c21500 0%, #C2B900 20%, #49C200 40%, #0011C2 60%, #9300C2 80%, #C20071 100%);
            border-image-slice: 1; }
            #toppage main #step_content .step_inner ul .step_li .step_y {
              color: yellow;
              font-size: 2rem;
              margin: 0 1rem 0 3rem;
              font-weight: bold; }
            #toppage main #step_content .step_inner ul .step_li .step_tx {
              line-height: 1.5;
              font-weight: bold;
              font-size: 1.9rem;
              margin-left: 3rem; }
          #toppage main #step_content .step_inner ul .step_allow {
            padding: 3rem 0 0; }
            #toppage main #step_content .step_inner ul .step_allow .allow {
              width: 0;
              height: 0;
              border-style: solid;
              border-width: 30px 60px 0 60px;
              border-color: yellow transparent transparent transparent; }
    #toppage main #point_content {
      height: auto;
      background-image: url("../img/top/point_bg.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 60% center;
      background-attachment: fixed; }
      #toppage main #point_content h2 {
        height: auto;
        position: relative;
        top: .5vw;
        left: 50%;
        transform: translateX(-50%);
        width: 1000px; }
        #toppage main #point_content h2 .point_h2 {
          text-align: center; }
          #toppage main #point_content h2 .point_h2 img {
            width: 1000px;
            margin: 0 auto; }
        #toppage main #point_content h2 .point_h2_Left {
          width: 700px;
          height: auto;
          position: absolute;
          left: 12%;
          top: 35%; }
        #toppage main #point_content h2 .point_h2_Right {
          width: 500px;
          height: auto;
          position: absolute;
          right: 5%;
          top: 45%; }
        #toppage main #point_content h2 span {
          display: block; }
          #toppage main #point_content h2 span img {
            width: 100%; }
      #toppage main #point_content .point_inner {
        padding-bottom: 1rem; }
        #toppage main #point_content .point_inner .point_fadeup01 {
          background-image: url("../img/top/point_bg01.jpg");
          width: 1000px;
          height: 450px;
          object-fit: cover;
          margin: 0 auto;
          background-size: cover;
          background-repeat: no-repeat;
          margin-bottom: 5rem;
          border: 1px solid yellow;
          box-shadow: 0 0 80px yellow; }
          #toppage main #point_content .point_inner .point_fadeup01 .point_inner01 {
            padding: 5rem 0 0 2rem; }
            #toppage main #point_content .point_inner .point_fadeup01 .point_inner01 h3 {
              font-size: 2.5rem;
              font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
              color: yellow;
              text-shadow: 3px 3px 3px black;
              font-weight: bold; }
            #toppage main #point_content .point_inner .point_fadeup01 .point_inner01 p {
              width: 90%;
              margin: 1.5rem 0;
              color: #fff;
              font-size: 1.2rem;
              font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
              text-align: justify; }
        #toppage main #point_content .point_inner .point_fadeup02 {
          background-image: url("../img/top/point_bg02.jpg");
          width: 1000px;
          height: 450px;
          object-fit: cover;
          margin: 0 auto;
          background-size: cover;
          background-repeat: no-repeat;
          margin-bottom: 5rem;
          border: 1px solid aqua;
          box-shadow: 0 0 80px aqua; }
          #toppage main #point_content .point_inner .point_fadeup02 .point_inner02 {
            padding: 5rem 2rem 0 0; }
            #toppage main #point_content .point_inner .point_fadeup02 .point_inner02 h3 {
              font-size: 2.5rem;
              font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
              color: aqua;
              text-shadow: 3px 3px 3px black;
              text-align: right;
              font-weight: bold; }
            #toppage main #point_content .point_inner .point_fadeup02 .point_inner02 p {
              width: 82%;
              margin: 1.5rem 0 0 12rem;
              color: #fff;
              font-size: 1.2rem;
              font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
              text-align: justify; }
        #toppage main #point_content .point_inner .point_fadeup03 {
          background-image: url("../img/top/point_bg03.jpg");
          width: 1000px;
          height: 600px;
          object-fit: cover;
          margin: 0 auto;
          background-size: cover;
          background-repeat: no-repeat;
          margin-bottom: 8rem;
          border: 1px solid chartreuse;
          box-shadow: 0 0 80px chartreuse; }
          #toppage main #point_content .point_inner .point_fadeup03 .point_inner03 {
            padding: 5rem 0 0 2rem; }
            #toppage main #point_content .point_inner .point_fadeup03 .point_inner03 h3 {
              font-size: 2.5rem;
              font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
              color: chartreuse;
              text-shadow: 3px 3px 3px black;
              font-weight: bold; }
            #toppage main #point_content .point_inner .point_fadeup03 .point_inner03 p {
              width: 90%;
              margin: 1.5rem 0;
              color: #fff;
              font-size: 1.2rem;
              font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
              text-align: justify; }
    #toppage main #payment_content {
      background-image: url("../img/top/payment_bg.jpg");
      background-repeat: no-repeat;
      background-position: 30% center;
      background-size: cover; }
      #toppage main #payment_content .payment_inner {
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        margin: 0 auto;
        padding: 10rem 0; }
        #toppage main #payment_content .payment_inner h2 {
          font-size: 2.6rem;
          font-weight: bold;
          color: #ffa200;
          width: 600px;
          margin: 2rem auto;
          text-align: center;
          font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; }
          #toppage main #payment_content .payment_inner h2 .payment_img {
            width: 100px;
            height: auto;
            margin-left: 7%; }
        #toppage main #payment_content .payment_inner .rotate-anime {
          animation: rotate-anime 3s linear infinite; }
@keyframes rotate-anime {
  0% {
    transform: rotateY(0deg); }
  100% {
    transform: rotateY(360deg); } }
        #toppage main #payment_content .payment_inner .payment_tx {
          width: 600px;
          margin: 1rem auto; }
          #toppage main #payment_content .payment_inner .payment_tx h3 {
            padding-bottom: .5rem;
            color: #ffa200;
            font-size: 2.2rem;
            font-weight: bold;
            border-bottom: 2px solid #fff;
            font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; }
          #toppage main #payment_content .payment_inner .payment_tx p {
            color: #fff;
            font-size: 1.3rem;
            min-height: 1.3;
            text-align: left;
            font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; }
    #toppage main #hit_content {
      background-image: url("../img/top/hit_bg.jpg");
      background-position: center top;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      padding: 10rem 0 5rem; }
      #toppage main #hit_content h2 {
        font-size: 3rem;
        color: yellow;
        text-align: center;
        margin: 0 auto 2rem;
        text-shadow: 1px 1px 2px #000;
        font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; }
        #toppage main #hit_content h2 img {
          width: 400px; }
      #toppage main #hit_content p {
        font-size: 2rem;
        color: #fff;
        text-align: center;
        text-shadow: 1px 1px 2px #000;
        font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; }
      #toppage main #hit_content .hit_list {
        width: 820px;
        flex-wrap: wrap;
        margin: 3rem auto; }
      #toppage main #hit_content .hit_list_img {
        width: 260px;
        height: auto;
        margin: 0 10px 1rem 0;
        position: relative;
        list-style: none;
        opacity: 0; }
      #toppage main #hit_content .hit_list_img:nth-child(1) {
        -webkit-animation: fadeup 0.1s ease 0.4s 1 forwards;
        animation: fadeup 0.1s ease 0.4s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(2) {
        -webkit-animation: fadeup 0.2s ease 0.8s 1 forwards;
        animation: fadeup 0.2s ease .8s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(3) {
        -webkit-animation: fadeup 0.3s ease 1.0s 1 forwards;
        animation: fadeup 0.3s ease 1.0s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(4) {
        -webkit-animation: fadeup 0.4s ease 1.2s 1 forwards;
        animation: fadeup 0.4s ease 1.2s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(5) {
        -webkit-animation: fadeup 0.5s ease 1.4s 1 forwards;
        animation: fadeup 0.6s ease 1.4s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(6) {
        -webkit-animation: fadeup 0.7s ease 1.6s 1 forwards;
        animation: fadeup 0.7s ease 1.6s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(7) {
        -webkit-animation: fadeup 0.8s ease 1.8s 1 forwards;
        animation: fadeup 0.8s ease 1.8s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(8) {
        -webkit-animation: fadeup 0.9s ease 2s 1 forwards;
        animation: fadeup 0.9s ease 2s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(9) {
        -webkit-animation: fadeup 1.1s ease 2.2s 1 forwards;
        animation: fadeup 1.1s ease 2.2s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(10) {
        -webkit-animation: fadeup 1.2s ease 2.4s 1 forwards;
        animation: fadeup 1.2s ease 2.4s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(11) {
        -webkit-animation: fadeup 1.3s ease 2.8s 1 forwards;
        animation: fadeup 1.3s ease 2.8s 1 forwards; }
      #toppage main #hit_content .hit_list_img:nth-child(12) {
        -webkit-animation: fadeup 1.4s ease 3s 1 forwards;
        animation: fadeup 1.4s ease 3s 1 forwards; }
@-webkit-keyframes fadeup {
  100% {
    opacity: 1; } }
@keyframes fadeup {
  100% {
    opacity: 1; } }
      #toppage main #hit_content .hit_list_img_l {
        width: 260px;
        height: auto;
        position: relative;
        margin-bottom: 1rem; }
      #toppage main #hit_content .hit_day {
        position: absolute;
        top: 38%;
        left: 50%;
        transform: translate(-50%);
        font-weight: bold;
        font-size: 1.3rem;
        text-align: center;
        width: 90%;
        color: #fff;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
      #toppage main #hit_content .hit_race {
        position: absolute;
        top: 51%;
        left: 50%;
        transform: translate(-50%);
        font-weight: bold;
        font-size: 1.3rem;
        text-align: center;
        width: 90%;
        color: #fff;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
      #toppage main #hit_content .hit_buy {
        position: absolute;
        top: 64%;
        left: 50%;
        transform: translate(-50%);
        font-weight: bold;
        font-size: 1.3rem;
        text-align: center;
        width: 90%;
        color: #fff;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
      #toppage main #hit_content .hit_price {
        position: absolute;
        top: 78%;
        left: 50%;
        transform: translate(-50%);
        font-weight: bold;
        font-size: 2.2rem;
        text-align: center;
        width: 90%;
        color: yellow;
        font-family: "Times New Roman", Times, "serif"; }
    #toppage main #reviews_content {
      background-image: url("../img/top/comment_bg.jpg");
      background-position: center top;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed; }
      #toppage main #reviews_content .contents_cover {
        width: 100%;
        background-color: rgba(0, 0, 7, 0.4);
        padding: 8rem 0; }
        #toppage main #reviews_content .contents_cover h2 {
          font-size: 3rem;
          color: yellow;
          text-align: center;
          margin: 0 auto 2rem;
          text-shadow: 1px 1px 2px #000;
          font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; }
          #toppage main #reviews_content .contents_cover h2 img {
            width: 400px; }
        #toppage main #reviews_content .contents_cover .comment {
          width: 800px;
          height: auto;
          margin: 2rem auto;
          padding: 2rem;
          font-size: 1.1rem;
          color: #fff;
          background-color: rgba(0, 0, 0, 0.6); }
          #toppage main #reviews_content .contents_cover .comment .comment_left {
            width: 150px;
            float: left; }
            #toppage main #reviews_content .contents_cover .comment .comment_left img {
              width: 120px;
              height: auto;
              border: 1px solid silver;
              padding: 1rem .5rem; }
          #toppage main #reviews_content .contents_cover .comment .comment_right {
            width: 650px;
            float: right; }
            #toppage main #reviews_content .contents_cover .comment .comment_right h3 {
              font-size: 1.5rem;
              border-bottom: 1px solid #fff;
              margin-bottom: .5rem;
              line-height: 1; }
              #toppage main #reviews_content .contents_cover .comment .comment_right h3 .comment_name {
                text-align: right;
                font-size: 1rem;
                margin: .5rem 0 .2rem; }
            #toppage main #reviews_content .contents_cover .comment .comment_right .comment_tx {
              text-align: justify; }
        #toppage main #reviews_content .contents_cover .comment1 {
          border: 2px solid #ff006a; }
        #toppage main #reviews_content .contents_cover .comment2 {
          border: 2px solid #ff8900; }
        #toppage main #reviews_content .contents_cover .comment3 {
          border: 2px solid #fff100; }
        #toppage main #reviews_content .contents_cover .comment4 {
          border: 2px solid #20ff00; }
        #toppage main #reviews_content .contents_cover .comment5 {
          border: 2px solid #00bdff; }
  #toppage footer {
    background-image: url("../img/footer/footer_bg.jpg");
    background-size: cover;
    background-position: center center;
    padding: 2rem 0 7rem;
    width: 100%; }
    #toppage footer .caution_content {
      margin: 1rem auto;
      text-align: center; }
      #toppage footer .caution_content p {
        color: #fff;
        text-shadow: none; }
      #toppage footer .caution_content a {
        color: red;
        display: inline-block; }
    #toppage footer #link_footer {
      text-align: center;
      background-color: rgba(0, 0, 0, 0.5); }
      #toppage footer #link_footer #footer_top {
        width: 880px;
        margin: .2rem auto;
        padding: 1rem 0; }
        #toppage footer #link_footer #footer_top li {
          padding: .5rem 2rem;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
          font-weight: bold; }
        #toppage footer #link_footer #footer_top .flexitem {
          color: #fff; }
          #toppage footer #link_footer #footer_top .flexitem a {
            color: #fff;
            font-size: 1rem; }
          #toppage footer #link_footer #footer_top .flexitem a:hover {
            color: yellow;
            transition: .2s; }
    #toppage footer #footer_bottom {
      text-align: center;
      color: #fff; }
      #toppage footer #footer_bottom p {
        margin-bottom: 1rem;
        text-shadow: none; }
  #toppage #registration_button {
    position: fixed;
    width: 100%;
    height: auto;
    bottom: 0;
    z-index: 111;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
    opacity: 0;
    visibility: hidden; }
    #toppage #registration_button .registration_img {
      position: absolute;
      height: auto;
      width: 85%;
      min-width: 900px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%); }
    #toppage #registration_button .regist_btntx {
      color: yellow;
      font-size: 1.5rem;
      position: absolute;
      top: 0;
      right: 0; }
  #toppage #registration_button.visible {
    opacity: 1;
    bottom: 0;
    visibility: visible; }

/*各ページ共通--------------------------*/
#page_top {
  width: 100%;
  background-color: #141414;
  background-image: repeating-linear-gradient(-50deg, #000, #000 15px, transparent 0, transparent 30px);
  background-attachment: fixed;
  /*footer-------------------*/ }
  #page_top footer {
    background-image: url("../img/footer/footer_bg.jpg");
    background-size: cover;
    background-position: center center;
    padding: 2rem 0 5rem; }
    #page_top footer .caution_content {
      margin: 1rem auto;
      text-align: center;
      color: #fff; }
      #page_top footer .caution_content a {
        color: red;
        display: inline-block; }
    #page_top footer #link_footer {
      text-align: center;
      /*link_ポリシー・規約*/ }
      #page_top footer #link_footer #footer_top {
        width: 770px;
        margin: .2rem auto;
        padding: 1rem 0; }
        #page_top footer #link_footer #footer_top li {
          padding: .5rem 2rem;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
          font-weight: bold; }
        #page_top footer #link_footer #footer_top .flexitem {
          color: #fff; }
          #page_top footer #link_footer #footer_top .flexitem a {
            color: #fff;
            font-size: 1rem; }
          #page_top footer #link_footer #footer_top .flexitem a:hover {
            color: yellow;
            transition: .2s; }
    #page_top footer #footer_bottom {
      text-align: center;
      color: #fff; }
      #page_top footer #footer_bottom p {
        margin-bottom: 1rem;
        text-shadow: none; }
    #page_top footer #pc_footer {
      color: #fff;
      background-color: rgba(0, 0, 0, 0.5); }
      #page_top footer #pc_footer #footer_sitemap {
        width: 640px;
        margin: 1rem auto;
        padding: 2rem; }
        #page_top footer #pc_footer #footer_sitemap li {
          padding-right: 1rem;
          margin-right: 1rem;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
        #page_top footer #pc_footer #footer_sitemap li:last-child {
          border-right: none;
          padding-right: 0;
          margin-right: 0; }
        #page_top footer #pc_footer #footer_sitemap .flexitem {
          color: #fff; }
          #page_top footer #pc_footer #footer_sitemap .flexitem a {
            color: yellow;
            font-size: 1rem; }
          #page_top footer #pc_footer #footer_sitemap .flexitem a:hover {
            color: red;
            transition: .2s; }

#page {
  width: 100%;
  background-image: url("../img/bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  /*footer-------------------*/ }
  #page footer {
    background-image: url("../img/footer/footer_bg.jpg");
    background-size: cover;
    background-position: center center;
    padding: 2rem 0 3rem; }
    #page footer .caution_content {
      margin: 1rem auto;
      text-align: center;
      color: #fff; }
      #page footer .caution_content a {
        color: red;
        display: inline-block; }
    #page footer #link_footer {
      text-align: center;
      /*link_ポリシー・規約*/ }
      #page footer #link_footer #footer_top {
        width: 770px;
        margin: .2rem auto;
        padding: 1rem 0; }
        #page footer #link_footer #footer_top li {
          padding: .5rem 2rem;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
          font-weight: bold; }
        #page footer #link_footer #footer_top .flexitem {
          color: #fff; }
          #page footer #link_footer #footer_top .flexitem a {
            color: #fff;
            font-size: 1rem; }
          #page footer #link_footer #footer_top .flexitem a:hover {
            color: yellow;
            transition: .2s; }
    #page footer #footer_bottom {
      text-align: center;
      color: #fff; }
      #page footer #footer_bottom p {
        margin-bottom: 1rem;
        text-shadow: none; }
    #page footer #pc_footer {
      color: #fff;
      background-color: rgba(0, 0, 0, 0.5); }
      #page footer #pc_footer #footer_sitemap {
        width: 640px;
        margin: 1rem auto;
        padding: 2rem; }
        #page footer #pc_footer #footer_sitemap li {
          padding-right: 1rem;
          margin-right: 1rem;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
        #page footer #pc_footer #footer_sitemap li:last-child {
          border-right: none;
          padding-right: 0;
          margin-right: 0; }
        #page footer #pc_footer #footer_sitemap .flexitem {
          color: #fff; }
          #page footer #pc_footer #footer_sitemap .flexitem a {
            color: yellow;
            font-size: 1rem; }
          #page footer #pc_footer #footer_sitemap .flexitem a:hover {
            color: red;
            transition: .2s; }
  #page .footer_welcome {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1.5rem 0 !important; }
    #page .footer_welcome #footer_bottom p {
      margin-bottom: 0 !important; }

/*end_#page*/
#page_lp {
  width: 100%;
  background-image: url("../img/lp_bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  /*footer-------------------*/ }
  #page_lp footer {
    background-image: url("../img/footer/footer_bg.jpg");
    background-size: cover;
    background-position: center center;
    padding: 2rem 0 5rem; }
    #page_lp footer .caution_content {
      margin: 1rem auto;
      text-align: center;
      color: #fff; }
      #page_lp footer .caution_content a {
        color: red;
        display: inline-block; }
    #page_lp footer #link_footer {
      text-align: center;
      /*link_ポリシー・規約*/ }
      #page_lp footer #link_footer #footer_top {
        width: 770px;
        margin: .2rem auto;
        padding: 1rem 0; }
        #page_lp footer #link_footer #footer_top li {
          padding: .5rem 2rem;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
          font-weight: bold; }
        #page_lp footer #link_footer #footer_top .flexitem {
          color: #fff; }
          #page_lp footer #link_footer #footer_top .flexitem a {
            color: #fff;
            font-size: 1rem; }
          #page_lp footer #link_footer #footer_top .flexitem a:hover {
            color: yellow;
            transition: .2s; }
    #page_lp footer #footer_bottom {
      text-align: center;
      color: #fff; }
      #page_lp footer #footer_bottom p {
        margin-bottom: 1rem;
        text-shadow: none; }
    #page_lp footer #pc_footer {
      color: #fff;
      background-color: rgba(0, 0, 0, 0.5); }
      #page_lp footer #pc_footer #footer_sitemap {
        width: 640px;
        margin: 1rem auto;
        padding: 2rem; }
        #page_lp footer #pc_footer #footer_sitemap li {
          padding-right: 1rem;
          margin-right: 1rem;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
        #page_lp footer #pc_footer #footer_sitemap li:last-child {
          border-right: none;
          padding-right: 0;
          margin-right: 0; }
        #page_lp footer #pc_footer #footer_sitemap .flexitem {
          color: #fff; }
          #page_lp footer #pc_footer #footer_sitemap .flexitem a {
            color: yellow;
            font-size: 1rem; }
          #page_lp footer #pc_footer #footer_sitemap .flexitem a:hover {
            color: red;
            transition: .2s; }

/*end_#page*/
#home, #hit, #shop, #mypage {
  margin-bottom: 10rem; }

#home, #race, #hit, #shop, #mypage, #policy {
  /*end_main*/ }
  #home header, #race header, #hit header, #shop header, #mypage header, #policy header {
    width: 100%;
    position: fixed;
    z-index: 11111;
    background-color: rgba(9, 32, 0, 0.9);
    /*end header_cont*/ }
    #home header #header_cont, #race header #header_cont, #hit header #header_cont, #shop header #header_cont, #mypage header #header_cont, #policy header #header_cont {
      padding: 5px 5px;
      font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
      #home header #header_cont #pc_nav h1, #race header #header_cont #pc_nav h1, #hit header #header_cont #pc_nav h1, #shop header #header_cont #pc_nav h1, #mypage header #header_cont #pc_nav h1, #policy header #header_cont #pc_nav h1 {
        width: 230px;
        padding: 15px 5px 0 0; }
      #home header #header_cont #pc_nav .fl_left, #race header #header_cont #pc_nav .fl_left, #hit header #header_cont #pc_nav .fl_left, #shop header #header_cont #pc_nav .fl_left, #mypage header #header_cont #pc_nav .fl_left, #policy header #header_cont #pc_nav .fl_left {
        float: left; }
      #home header #header_cont #pc_nav .fl_right, #race header #header_cont #pc_nav .fl_right, #hit header #header_cont #pc_nav .fl_right, #shop header #header_cont #pc_nav .fl_right, #mypage header #header_cont #pc_nav .fl_right, #policy header #header_cont #pc_nav .fl_right {
        float: right;
        text-align: center;
        margin-top: .3rem; }
        #home header #header_cont #pc_nav .fl_right li, #race header #header_cont #pc_nav .fl_right li, #hit header #header_cont #pc_nav .fl_right li, #shop header #header_cont #pc_nav .fl_right li, #mypage header #header_cont #pc_nav .fl_right li, #policy header #header_cont #pc_nav .fl_right li {
          margin-right: 5px;
          line-height: 50px; }
          #home header #header_cont #pc_nav .fl_right li a, #race header #header_cont #pc_nav .fl_right li a, #hit header #header_cont #pc_nav .fl_right li a, #shop header #header_cont #pc_nav .fl_right li a, #mypage header #header_cont #pc_nav .fl_right li a, #policy header #header_cont #pc_nav .fl_right li a {
            color: #fff;
            background-color: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(204, 204, 204, 0.8);
            border-radius: 2px;
            padding: 1px 0;
            font-size: 1rem;
            font-weight: bold; }
          #home header #header_cont #pc_nav .fl_right li a:hover, #race header #header_cont #pc_nav .fl_right li a:hover, #hit header #header_cont #pc_nav .fl_right li a:hover, #shop header #header_cont #pc_nav .fl_right li a:hover, #mypage header #header_cont #pc_nav .fl_right li a:hover, #policy header #header_cont #pc_nav .fl_right li a:hover {
            transition: .5s;
            border: 2px solid yellow; }
          #home header #header_cont #pc_nav .fl_right li img, #race header #header_cont #pc_nav .fl_right li img, #hit header #header_cont #pc_nav .fl_right li img, #shop header #header_cont #pc_nav .fl_right li img, #mypage header #header_cont #pc_nav .fl_right li img, #policy header #header_cont #pc_nav .fl_right li img {
            height: 2.5rem;
            width: auto;
            padding-bottom: .3rem; }
        #home header #header_cont #pc_nav .fl_right li:first-child, #race header #header_cont #pc_nav .fl_right li:first-child, #hit header #header_cont #pc_nav .fl_right li:first-child, #shop header #header_cont #pc_nav .fl_right li:first-child, #mypage header #header_cont #pc_nav .fl_right li:first-child, #policy header #header_cont #pc_nav .fl_right li:first-child {
          width: 90px; }
        #home header #header_cont #pc_nav .fl_right li, #race header #header_cont #pc_nav .fl_right li, #hit header #header_cont #pc_nav .fl_right li, #shop header #header_cont #pc_nav .fl_right li, #mypage header #header_cont #pc_nav .fl_right li, #policy header #header_cont #pc_nav .fl_right li {
          width: 135px; }
    #home header #header_bottom, #race header #header_bottom, #hit header #header_bottom, #shop header #header_bottom, #mypage header #header_bottom, #policy header #header_bottom {
      line-height: 1;
      color: #fff;
      background-color: rgba(0, 0, 0, 0.2);
      border-bottom: 0.5px solid rgba(255, 255, 255, 0.5); }
      #home header #header_bottom .marquee, #race header #header_bottom .marquee, #hit header #header_bottom .marquee, #shop header #header_bottom .marquee, #mypage header #header_bottom .marquee, #policy header #header_bottom .marquee {
        line-height: 1.6;
        color: #fff;
        font-size: 1.3rem;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
  #home main, #race main, #hit main, #shop main, #mypage main, #policy main {
    padding-top: 80px;
    /*home_TOP画像*/
    /*お問い合わせ*/
    /*予想*/
    /*race_contet*/
    /*LP*/
    /*買い目*/
    /*的中実績*/
    /*shop用 top_content*/
    /*決済方法*/
    /*end_shop_content*/
    /*shop table*/
    /*マイページ*/
    /*end_mypage_content*/
    /*メールボックス #mypage使用*/
    /*メールボックス メッセージ本文表示*/
    /*fin_top_content*/
    /*fin_content*/
    /*規約各ページ*/ }
    #home main #top_cont, #race main #top_cont, #hit main #top_cont, #shop main #top_cont, #mypage main #top_cont, #policy main #top_cont {
      /*ヘッダー画像下テキスト*/ }
      #home main #top_cont .h2_home, #race main #top_cont .h2_home, #hit main #top_cont .h2_home, #shop main #top_cont .h2_home, #mypage main #top_cont .h2_home, #policy main #top_cont .h2_home {
        width: 100%;
        margin: 20px auto 0;
        border-bottom: 3px solid #d08800; }
      #home main #top_cont .h2_page, #race main #top_cont .h2_page, #hit main #top_cont .h2_page, #shop main #top_cont .h2_page, #mypage main #top_cont .h2_page, #policy main #top_cont .h2_page {
        width: 100%;
        margin: 100px auto 0;
        text-align: center; }
        #home main #top_cont .h2_page img, #race main #top_cont .h2_page img, #hit main #top_cont .h2_page img, #shop main #top_cont .h2_page img, #mypage main #top_cont .h2_page img, #policy main #top_cont .h2_page img {
          height: 160px;
          width: auto; }
      #home main #top_cont p, #race main #top_cont p, #hit main #top_cont p, #shop main #top_cont p, #mypage main #top_cont p, #policy main #top_cont p {
        font-size: 1.7rem;
        color: #fff;
        margin: 0 auto;
        padding: 3rem 0;
        text-align: justify;
        height: auto;
        width: 60%;
        font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"; }
    #home main .main_content, #race main .main_content, #hit main .main_content, #shop main .main_content, #mypage main .main_content, #policy main .main_content {
      width: 80%;
      margin: 4rem auto;
      /*home_banner*/ }
      #home main .main_content ul li a img, #race main .main_content ul li a img, #hit main .main_content ul li a img, #shop main .main_content ul li a img, #mypage main .main_content ul li a img, #policy main .main_content ul li a img {
        width: 100%;
        margin: 0 auto; }
      #home main .main_content .info-bannar_cont, #home main .main_content .bannar_cont, #race main .main_content .info-bannar_cont, #race main .main_content .bannar_cont, #hit main .main_content .info-bannar_cont, #hit main .main_content .bannar_cont, #shop main .main_content .info-bannar_cont, #shop main .main_content .bannar_cont, #mypage main .main_content .info-bannar_cont, #mypage main .main_content .bannar_cont, #policy main .main_content .info-bannar_cont, #policy main .main_content .bannar_cont {
        flex-wrap: wrap;
        width: 820px;
        margin: 2rem auto;
        text-align: center; }
        #home main .main_content .info-bannar_cont li, #home main .main_content .bannar_cont li, #race main .main_content .info-bannar_cont li, #race main .main_content .bannar_cont li, #hit main .main_content .info-bannar_cont li, #hit main .main_content .bannar_cont li, #shop main .main_content .info-bannar_cont li, #shop main .main_content .bannar_cont li, #mypage main .main_content .info-bannar_cont li, #mypage main .main_content .bannar_cont li, #policy main .main_content .info-bannar_cont li, #policy main .main_content .bannar_cont li {
          width: 400px;
          margin: 0 20px 1rem 0; }
        #home main .main_content .info-bannar_cont li:nth-child(2), #home main .main_content .info-bannar_cont li:nth-child(4), #home main .main_content .info-bannar_cont li:nth-child(6), #home main .main_content .info-bannar_cont li:nth-child(8), #home main .main_content .info-bannar_cont li:nth-child(10), #home main .main_content .info-bannar_cont li:nth-child(12), #home main .main_content .info-bannar_cont li:nth-child(14), #home main .main_content .info-bannar_cont li:nth-child(16), #home main .main_content .info-bannar_cont li:nth-child(18), #home main .main_content .info-bannar_cont li:nth-child(20), #home main .main_content .bannar_cont li:nth-child(2), #home main .main_content .bannar_cont li:nth-child(4), #home main .main_content .bannar_cont li:nth-child(6), #home main .main_content .bannar_cont li:nth-child(8), #home main .main_content .bannar_cont li:nth-child(10), #home main .main_content .bannar_cont li:nth-child(12), #home main .main_content .bannar_cont li:nth-child(14), #home main .main_content .bannar_cont li:nth-child(16), #home main .main_content .bannar_cont li:nth-child(18), #home main .main_content .bannar_cont li:nth-child(20), #race main .main_content .info-bannar_cont li:nth-child(2), #race main .main_content .info-bannar_cont li:nth-child(4), #race main .main_content .info-bannar_cont li:nth-child(6), #race main .main_content .info-bannar_cont li:nth-child(8), #race main .main_content .info-bannar_cont li:nth-child(10), #race main .main_content .info-bannar_cont li:nth-child(12), #race main .main_content .info-bannar_cont li:nth-child(14), #race main .main_content .info-bannar_cont li:nth-child(16), #race main .main_content .info-bannar_cont li:nth-child(18), #race main .main_content .info-bannar_cont li:nth-child(20), #race main .main_content .bannar_cont li:nth-child(2), #race main .main_content .bannar_cont li:nth-child(4), #race main .main_content .bannar_cont li:nth-child(6), #race main .main_content .bannar_cont li:nth-child(8), #race main .main_content .bannar_cont li:nth-child(10), #race main .main_content .bannar_cont li:nth-child(12), #race main .main_content .bannar_cont li:nth-child(14), #race main .main_content .bannar_cont li:nth-child(16), #race main .main_content .bannar_cont li:nth-child(18), #race main .main_content .bannar_cont li:nth-child(20), #hit main .main_content .info-bannar_cont li:nth-child(2), #hit main .main_content .info-bannar_cont li:nth-child(4), #hit main .main_content .info-bannar_cont li:nth-child(6), #hit main .main_content .info-bannar_cont li:nth-child(8), #hit main .main_content .info-bannar_cont li:nth-child(10), #hit main .main_content .info-bannar_cont li:nth-child(12), #hit main .main_content .info-bannar_cont li:nth-child(14), #hit main .main_content .info-bannar_cont li:nth-child(16), #hit main .main_content .info-bannar_cont li:nth-child(18), #hit main .main_content .info-bannar_cont li:nth-child(20), #hit main .main_content .bannar_cont li:nth-child(2), #hit main .main_content .bannar_cont li:nth-child(4), #hit main .main_content .bannar_cont li:nth-child(6), #hit main .main_content .bannar_cont li:nth-child(8), #hit main .main_content .bannar_cont li:nth-child(10), #hit main .main_content .bannar_cont li:nth-child(12), #hit main .main_content .bannar_cont li:nth-child(14), #hit main .main_content .bannar_cont li:nth-child(16), #hit main .main_content .bannar_cont li:nth-child(18), #hit main .main_content .bannar_cont li:nth-child(20), #shop main .main_content .info-bannar_cont li:nth-child(2), #shop main .main_content .info-bannar_cont li:nth-child(4), #shop main .main_content .info-bannar_cont li:nth-child(6), #shop main .main_content .info-bannar_cont li:nth-child(8), #shop main .main_content .info-bannar_cont li:nth-child(10), #shop main .main_content .info-bannar_cont li:nth-child(12), #shop main .main_content .info-bannar_cont li:nth-child(14), #shop main .main_content .info-bannar_cont li:nth-child(16), #shop main .main_content .info-bannar_cont li:nth-child(18), #shop main .main_content .info-bannar_cont li:nth-child(20), #shop main .main_content .bannar_cont li:nth-child(2), #shop main .main_content .bannar_cont li:nth-child(4), #shop main .main_content .bannar_cont li:nth-child(6), #shop main .main_content .bannar_cont li:nth-child(8), #shop main .main_content .bannar_cont li:nth-child(10), #shop main .main_content .bannar_cont li:nth-child(12), #shop main .main_content .bannar_cont li:nth-child(14), #shop main .main_content .bannar_cont li:nth-child(16), #shop main .main_content .bannar_cont li:nth-child(18), #shop main .main_content .bannar_cont li:nth-child(20), #mypage main .main_content .info-bannar_cont li:nth-child(2), #mypage main .main_content .info-bannar_cont li:nth-child(4), #mypage main .main_content .info-bannar_cont li:nth-child(6), #mypage main .main_content .info-bannar_cont li:nth-child(8), #mypage main .main_content .info-bannar_cont li:nth-child(10), #mypage main .main_content .info-bannar_cont li:nth-child(12), #mypage main .main_content .info-bannar_cont li:nth-child(14), #mypage main .main_content .info-bannar_cont li:nth-child(16), #mypage main .main_content .info-bannar_cont li:nth-child(18), #mypage main .main_content .info-bannar_cont li:nth-child(20), #mypage main .main_content .bannar_cont li:nth-child(2), #mypage main .main_content .bannar_cont li:nth-child(4), #mypage main .main_content .bannar_cont li:nth-child(6), #mypage main .main_content .bannar_cont li:nth-child(8), #mypage main .main_content .bannar_cont li:nth-child(10), #mypage main .main_content .bannar_cont li:nth-child(12), #mypage main .main_content .bannar_cont li:nth-child(14), #mypage main .main_content .bannar_cont li:nth-child(16), #mypage main .main_content .bannar_cont li:nth-child(18), #mypage main .main_content .bannar_cont li:nth-child(20), #policy main .main_content .info-bannar_cont li:nth-child(2), #policy main .main_content .info-bannar_cont li:nth-child(4), #policy main .main_content .info-bannar_cont li:nth-child(6), #policy main .main_content .info-bannar_cont li:nth-child(8), #policy main .main_content .info-bannar_cont li:nth-child(10), #policy main .main_content .info-bannar_cont li:nth-child(12), #policy main .main_content .info-bannar_cont li:nth-child(14), #policy main .main_content .info-bannar_cont li:nth-child(16), #policy main .main_content .info-bannar_cont li:nth-child(18), #policy main .main_content .info-bannar_cont li:nth-child(20), #policy main .main_content .bannar_cont li:nth-child(2), #policy main .main_content .bannar_cont li:nth-child(4), #policy main .main_content .bannar_cont li:nth-child(6), #policy main .main_content .bannar_cont li:nth-child(8), #policy main .main_content .bannar_cont li:nth-child(10), #policy main .main_content .bannar_cont li:nth-child(12), #policy main .main_content .bannar_cont li:nth-child(14), #policy main .main_content .bannar_cont li:nth-child(16), #policy main .main_content .bannar_cont li:nth-child(18), #policy main .main_content .bannar_cont li:nth-child(20) {
          margin: 0 0 1rem 0; }
        #home main .main_content .info-bannar_cont li:hover, #home main .main_content .bannar_cont li:hover, #race main .main_content .info-bannar_cont li:hover, #race main .main_content .bannar_cont li:hover, #hit main .main_content .info-bannar_cont li:hover, #hit main .main_content .bannar_cont li:hover, #shop main .main_content .info-bannar_cont li:hover, #shop main .main_content .bannar_cont li:hover, #mypage main .main_content .info-bannar_cont li:hover, #mypage main .main_content .bannar_cont li:hover, #policy main .main_content .info-bannar_cont li:hover, #policy main .main_content .bannar_cont li:hover {
          box-shadow: 0 0 12px #fff;
          transition: .5s; }
      #home main .main_content .race_yoso, #race main .main_content .race_yoso, #hit main .main_content .race_yoso, #shop main .main_content .race_yoso, #mypage main .main_content .race_yoso, #policy main .main_content .race_yoso {
        width: 800px;
        margin: 0 auto 14rem; }
    #home main .info_content, #race main .info_content, #hit main .info_content, #shop main .info_content, #mypage main .info_content, #policy main .info_content {
      width: 800px;
      margin: 3rem auto;
      border: 1px solid #fff;
      text-align: center;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.5);
      line-height: 1.6; }
      #home main .info_content h3, #race main .info_content h3, #hit main .info_content h3, #shop main .info_content h3, #mypage main .info_content h3, #policy main .info_content h3 {
        text-align: center;
        font-size: 1.4rem;
        color: #fff;
        border-bottom: 1px solid #fff;
        line-height: 2.5; }
      #home main .info_content p, #race main .info_content p, #hit main .info_content p, #shop main .info_content p, #mypage main .info_content p, #policy main .info_content p {
        color: #fff;
        font-size: 1.2rem; }
      #home main .info_content dl, #race main .info_content dl, #hit main .info_content dl, #shop main .info_content dl, #mypage main .info_content dl, #policy main .info_content dl {
        margin: 2rem auto 1rem;
        width: 700px; }
        #home main .info_content dl dt, #home main .info_content dl dd, #race main .info_content dl dt, #race main .info_content dl dd, #hit main .info_content dl dt, #hit main .info_content dl dd, #shop main .info_content dl dt, #shop main .info_content dl dd, #mypage main .info_content dl dt, #mypage main .info_content dl dd, #policy main .info_content dl dt, #policy main .info_content dl dd {
          color: #fff;
          font-size: 1.2rem; }
        #home main .info_content dl dd textarea, #race main .info_content dl dd textarea, #hit main .info_content dl dd textarea, #shop main .info_content dl dd textarea, #mypage main .info_content dl dd textarea, #policy main .info_content dl dd textarea {
          width: 700px;
          height: 100px;
          margin: 1rem auto 0;
          font-size: 1.2rem;
          padding: .5rem; }
      #home main .info_content .btn, #race main .info_content .btn, #hit main .info_content .btn, #shop main .info_content .btn, #mypage main .info_content .btn, #policy main .info_content .btn {
        width: 200px;
        text-align: center;
        line-height: 2;
        cursor: pointer;
        font-size: 1.2rem;
        background-color: #fff;
        margin-top: 1rem; }
    #home main .race_content ul, #race main .race_content ul, #hit main .race_content ul, #shop main .race_content ul, #mypage main .race_content ul, #policy main .race_content ul {
      width: 950px;
      height: auto;
      margin: 4rem auto 10rem;
      flex-wrap: wrap; }
      #home main .race_content ul .yoso_img, #home main .race_content ul .yoso_img1, #race main .race_content ul .yoso_img, #race main .race_content ul .yoso_img1, #hit main .race_content ul .yoso_img, #hit main .race_content ul .yoso_img1, #shop main .race_content ul .yoso_img, #shop main .race_content ul .yoso_img1, #mypage main .race_content ul .yoso_img, #mypage main .race_content ul .yoso_img1, #policy main .race_content ul .yoso_img, #policy main .race_content ul .yoso_img1 {
        height: auto;
        position: relative;
        width: 50%; }
        #home main .race_content ul .yoso_img a, #home main .race_content ul .yoso_img1 a, #race main .race_content ul .yoso_img a, #race main .race_content ul .yoso_img1 a, #hit main .race_content ul .yoso_img a, #hit main .race_content ul .yoso_img1 a, #shop main .race_content ul .yoso_img a, #shop main .race_content ul .yoso_img1 a, #mypage main .race_content ul .yoso_img a, #mypage main .race_content ul .yoso_img1 a, #policy main .race_content ul .yoso_img a, #policy main .race_content ul .yoso_img1 a {
          border-radius: 10px;
          color: #000; }
          #home main .race_content ul .yoso_img a .yoso_date, #home main .race_content ul .yoso_img1 a .yoso_date, #race main .race_content ul .yoso_img a .yoso_date, #race main .race_content ul .yoso_img1 a .yoso_date, #hit main .race_content ul .yoso_img a .yoso_date, #hit main .race_content ul .yoso_img1 a .yoso_date, #shop main .race_content ul .yoso_img a .yoso_date, #shop main .race_content ul .yoso_img1 a .yoso_date, #mypage main .race_content ul .yoso_img a .yoso_date, #mypage main .race_content ul .yoso_img1 a .yoso_date, #policy main .race_content ul .yoso_img a .yoso_date, #policy main .race_content ul .yoso_img1 a .yoso_date {
            position: absolute;
            width: 26rem;
            top: 6.8rem;
            left: 1.8rem;
            font-size: .9rem;
            font-weight: bold; }
          #home main .race_content ul .yoso_img a .yoso_race, #home main .race_content ul .yoso_img1 a .yoso_race, #race main .race_content ul .yoso_img a .yoso_race, #race main .race_content ul .yoso_img1 a .yoso_race, #hit main .race_content ul .yoso_img a .yoso_race, #hit main .race_content ul .yoso_img1 a .yoso_race, #shop main .race_content ul .yoso_img a .yoso_race, #shop main .race_content ul .yoso_img1 a .yoso_race, #mypage main .race_content ul .yoso_img a .yoso_race, #mypage main .race_content ul .yoso_img1 a .yoso_race, #policy main .race_content ul .yoso_img a .yoso_race, #policy main .race_content ul .yoso_img1 a .yoso_race {
            position: absolute;
            width: 26rem;
            top: 9.2rem;
            left: 1.8rem;
            font-size: .9rem;
            font-weight: bold; }
          #home main .race_content ul .yoso_img a .yoso_comment, #home main .race_content ul .yoso_img1 a .yoso_comment, #race main .race_content ul .yoso_img a .yoso_comment, #race main .race_content ul .yoso_img1 a .yoso_comment, #hit main .race_content ul .yoso_img a .yoso_comment, #hit main .race_content ul .yoso_img1 a .yoso_comment, #shop main .race_content ul .yoso_img a .yoso_comment, #shop main .race_content ul .yoso_img1 a .yoso_comment, #mypage main .race_content ul .yoso_img a .yoso_comment, #mypage main .race_content ul .yoso_img1 a .yoso_comment, #policy main .race_content ul .yoso_img a .yoso_comment, #policy main .race_content ul .yoso_img1 a .yoso_comment {
            width: 26rem;
            position: absolute;
            top: 11.5rem;
            left: 1.8rem;
            font-size: .8rem;
            line-height: 1.1;
            font-weight: bold;
            text-align: justify; }
      #home main .race_content ul .yoso_img2, #race main .race_content ul .yoso_img2, #hit main .race_content ul .yoso_img2, #shop main .race_content ul .yoso_img2, #mypage main .race_content ul .yoso_img2, #policy main .race_content ul .yoso_img2 {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 12.9rem;
        height: auto; }
    #home main .race_content_lp, #race main .race_content_lp, #hit main .race_content_lp, #shop main .race_content_lp, #mypage main .race_content_lp, #policy main .race_content_lp {
      width: 700px;
      margin: 33px auto 0; }
      #home main .race_content_lp .race_lp_buy, #race main .race_content_lp .race_lp_buy, #hit main .race_content_lp .race_lp_buy, #shop main .race_content_lp .race_lp_buy, #mypage main .race_content_lp .race_lp_buy, #policy main .race_content_lp .race_lp_buy {
        margin: 1rem auto;
        width: 85%;
        height: auto;
        position: relative; }
        #home main .race_content_lp .race_lp_buy .race_buy_day, #race main .race_content_lp .race_lp_buy .race_buy_day, #hit main .race_content_lp .race_lp_buy .race_buy_day, #shop main .race_content_lp .race_lp_buy .race_buy_day, #mypage main .race_content_lp .race_lp_buy .race_buy_day, #policy main .race_content_lp .race_lp_buy .race_buy_day {
          position: absolute;
          font-size: 2.2vw;
          top: 35%;
          left: 6rem;
          color: #fff;
          font-weight: bold; }
      #home main .race_content_lp .race_lp_list, #race main .race_content_lp .race_lp_list, #hit main .race_content_lp .race_lp_list, #shop main .race_content_lp .race_lp_list, #mypage main .race_content_lp .race_lp_list, #policy main .race_content_lp .race_lp_list {
        width: 100%;
        height: auto;
        position: relative;
        margin-top: 3rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day, #race main .race_content_lp .race_lp_list .race_lp_list_day, #hit main .race_content_lp .race_lp_list .race_lp_list_day, #shop main .race_content_lp .race_lp_list .race_lp_list_day, #mypage main .race_content_lp .race_lp_list .race_lp_list_day, #policy main .race_content_lp .race_lp_list .race_lp_list_day {
          color: #fff;
          font-size: 2rem;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
          position: absolute;
          left: 3.5rem;
          width: 12rem;
          text-align: center; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day01, #race main .race_content_lp .race_lp_list .race_lp_list_day01, #hit main .race_content_lp .race_lp_list .race_lp_list_day01, #shop main .race_content_lp .race_lp_list .race_lp_list_day01, #mypage main .race_content_lp .race_lp_list .race_lp_list_day01, #policy main .race_content_lp .race_lp_list .race_lp_list_day01 {
          top: 14.5rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day02, #race main .race_content_lp .race_lp_list .race_lp_list_day02, #hit main .race_content_lp .race_lp_list .race_lp_list_day02, #shop main .race_content_lp .race_lp_list .race_lp_list_day02, #mypage main .race_content_lp .race_lp_list .race_lp_list_day02, #policy main .race_content_lp .race_lp_list .race_lp_list_day02 {
          top: 24rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day03, #race main .race_content_lp .race_lp_list .race_lp_list_day03, #hit main .race_content_lp .race_lp_list .race_lp_list_day03, #shop main .race_content_lp .race_lp_list .race_lp_list_day03, #mypage main .race_content_lp .race_lp_list .race_lp_list_day03, #policy main .race_content_lp .race_lp_list .race_lp_list_day03 {
          top: 33.5rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day04, #race main .race_content_lp .race_lp_list .race_lp_list_day04, #hit main .race_content_lp .race_lp_list .race_lp_list_day04, #shop main .race_content_lp .race_lp_list .race_lp_list_day04, #mypage main .race_content_lp .race_lp_list .race_lp_list_day04, #policy main .race_content_lp .race_lp_list .race_lp_list_day04 {
          top: 42.8rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day05, #race main .race_content_lp .race_lp_list .race_lp_list_day05, #hit main .race_content_lp .race_lp_list .race_lp_list_day05, #shop main .race_content_lp .race_lp_list .race_lp_list_day05, #mypage main .race_content_lp .race_lp_list .race_lp_list_day05, #policy main .race_content_lp .race_lp_list .race_lp_list_day05 {
          top: 51.9rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race, #race main .race_content_lp .race_lp_list .race_lp_list_race, #hit main .race_content_lp .race_lp_list .race_lp_list_race, #shop main .race_content_lp .race_lp_list .race_lp_list_race, #mypage main .race_content_lp .race_lp_list .race_lp_list_race, #policy main .race_content_lp .race_lp_list .race_lp_list_race {
          color: #fff;
          font-size: 1.9rem;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
          position: absolute;
          left: 15.5rem;
          width: 25rem;
          text-align: center; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race01, #race main .race_content_lp .race_lp_list .race_lp_list_race01, #hit main .race_content_lp .race_lp_list .race_lp_list_race01, #shop main .race_content_lp .race_lp_list .race_lp_list_race01, #mypage main .race_content_lp .race_lp_list .race_lp_list_race01, #policy main .race_content_lp .race_lp_list .race_lp_list_race01 {
          top: 13rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race02, #race main .race_content_lp .race_lp_list .race_lp_list_race02, #hit main .race_content_lp .race_lp_list .race_lp_list_race02, #shop main .race_content_lp .race_lp_list .race_lp_list_race02, #mypage main .race_content_lp .race_lp_list .race_lp_list_race02, #policy main .race_content_lp .race_lp_list .race_lp_list_race02 {
          top: 22.5rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race03, #race main .race_content_lp .race_lp_list .race_lp_list_race03, #hit main .race_content_lp .race_lp_list .race_lp_list_race03, #shop main .race_content_lp .race_lp_list .race_lp_list_race03, #mypage main .race_content_lp .race_lp_list .race_lp_list_race03, #policy main .race_content_lp .race_lp_list .race_lp_list_race03 {
          top: 32rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race04, #race main .race_content_lp .race_lp_list .race_lp_list_race04, #hit main .race_content_lp .race_lp_list .race_lp_list_race04, #shop main .race_content_lp .race_lp_list .race_lp_list_race04, #mypage main .race_content_lp .race_lp_list .race_lp_list_race04, #policy main .race_content_lp .race_lp_list .race_lp_list_race04 {
          top: 41.5rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race05, #race main .race_content_lp .race_lp_list .race_lp_list_race05, #hit main .race_content_lp .race_lp_list .race_lp_list_race05, #shop main .race_content_lp .race_lp_list .race_lp_list_race05, #mypage main .race_content_lp .race_lp_list .race_lp_list_race05, #policy main .race_content_lp .race_lp_list .race_lp_list_race05 {
          top: 51rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result, #race main .race_content_lp .race_lp_list .race_lp_list_result, #hit main .race_content_lp .race_lp_list .race_lp_list_result, #shop main .race_content_lp .race_lp_list .race_lp_list_result, #mypage main .race_content_lp .race_lp_list .race_lp_list_result, #policy main .race_content_lp .race_lp_list .race_lp_list_result {
          color: yellow;
          font-size: 2rem;
          font-weight: bold;
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
          position: absolute;
          left: 15.5rem;
          width: 25rem;
          text-align: center;
          line-height: 1.2; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result01, #race main .race_content_lp .race_lp_list .race_lp_list_result01, #hit main .race_content_lp .race_lp_list .race_lp_list_result01, #shop main .race_content_lp .race_lp_list .race_lp_list_result01, #mypage main .race_content_lp .race_lp_list .race_lp_list_result01, #policy main .race_content_lp .race_lp_list .race_lp_list_result01 {
          top: 16rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result02, #race main .race_content_lp .race_lp_list .race_lp_list_result02, #hit main .race_content_lp .race_lp_list .race_lp_list_result02, #shop main .race_content_lp .race_lp_list .race_lp_list_result02, #mypage main .race_content_lp .race_lp_list .race_lp_list_result02, #policy main .race_content_lp .race_lp_list .race_lp_list_result02 {
          top: 25.5rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result03, #race main .race_content_lp .race_lp_list .race_lp_list_result03, #hit main .race_content_lp .race_lp_list .race_lp_list_result03, #shop main .race_content_lp .race_lp_list .race_lp_list_result03, #mypage main .race_content_lp .race_lp_list .race_lp_list_result03, #policy main .race_content_lp .race_lp_list .race_lp_list_result03 {
          top: 35rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result04, #race main .race_content_lp .race_lp_list .race_lp_list_result04, #hit main .race_content_lp .race_lp_list .race_lp_list_result04, #shop main .race_content_lp .race_lp_list .race_lp_list_result04, #mypage main .race_content_lp .race_lp_list .race_lp_list_result04, #policy main .race_content_lp .race_lp_list .race_lp_list_result04 {
          top: 44.5rem; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result05, #race main .race_content_lp .race_lp_list .race_lp_list_result05, #hit main .race_content_lp .race_lp_list .race_lp_list_result05, #shop main .race_content_lp .race_lp_list .race_lp_list_result05, #mypage main .race_content_lp .race_lp_list .race_lp_list_result05, #policy main .race_content_lp .race_lp_list .race_lp_list_result05 {
          top: 54rem; }
    #home main .race_buy, #race main .race_buy, #hit main .race_buy, #shop main .race_buy, #mypage main .race_buy, #policy main .race_buy {
      margin: 4rem auto;
      width: 800px;
      border: 2px solid #fff;
      padding: 3rem 2rem;
      background-color: rgba(0, 0, 0, 0.3); }
      #home main .race_buy h3, #race main .race_buy h3, #hit main .race_buy h3, #shop main .race_buy h3, #mypage main .race_buy h3, #policy main .race_buy h3 {
        text-align: center; }
        #home main .race_buy h3 img, #race main .race_buy h3 img, #hit main .race_buy h3 img, #shop main .race_buy h3 img, #mypage main .race_buy h3 img, #policy main .race_buy h3 img {
          height: 80px;
          width: auto;
          margin-bottom: 1rem; }
      #home main .race_buy .buy_list, #race main .race_buy .buy_list, #hit main .race_buy .buy_list, #shop main .race_buy .buy_list, #mypage main .race_buy .buy_list, #policy main .race_buy .buy_list {
        text-align: center; }
        #home main .race_buy .buy_list ul li, #race main .race_buy .buy_list ul li, #hit main .race_buy .buy_list ul li, #shop main .race_buy .buy_list ul li, #mypage main .race_buy .buy_list ul li, #policy main .race_buy .buy_list ul li {
          margin-bottom: 1.5rem; }
          #home main .race_buy .buy_list ul li p, #race main .race_buy .buy_list ul li p, #hit main .race_buy .buy_list ul li p, #shop main .race_buy .buy_list ul li p, #mypage main .race_buy .buy_list ul li p, #policy main .race_buy .buy_list ul li p {
            color: #fff;
            font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
            font-size: 1.5rem;
            width: 50%;
            margin: 1.5rem auto 0;
            text-align: left; }
          #home main .race_buy .buy_list ul li .mb-1, #race main .race_buy .buy_list ul li .mb-1, #hit main .race_buy .buy_list ul li .mb-1, #shop main .race_buy .buy_list ul li .mb-1, #mypage main .race_buy .buy_list ul li .mb-1, #policy main .race_buy .buy_list ul li .mb-1 {
            margin: .2rem auto; }
        #home main .race_buy .buy_list img, #race main .race_buy .buy_list img, #hit main .race_buy .buy_list img, #shop main .race_buy .buy_list img, #mypage main .race_buy .buy_list img, #policy main .race_buy .buy_list img {
          width: 70%;
          margin: 0 auto; }
    #home main .hit_content, #race main .hit_content, #hit main .hit_content, #shop main .hit_content, #mypage main .hit_content, #policy main .hit_content {
      width: 100%; }
      #home main .hit_content .hit_item, #race main .hit_content .hit_item, #hit main .hit_content .hit_item, #shop main .hit_content .hit_item, #mypage main .hit_content .hit_item, #policy main .hit_content .hit_item {
        width: 1000px;
        height: auto;
        margin: 0 auto; }
      #home main .hit_content .hit_list, #race main .hit_content .hit_list, #hit main .hit_content .hit_list, #shop main .hit_content .hit_list, #mypage main .hit_content .hit_list, #policy main .hit_content .hit_list {
        width: 820px;
        flex-wrap: wrap;
        margin: 3rem auto;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
      #home main .hit_content .hit_list_img, #race main .hit_content .hit_list_img, #hit main .hit_content .hit_list_img, #shop main .hit_content .hit_list_img, #mypage main .hit_content .hit_list_img, #policy main .hit_content .hit_list_img {
        width: 260px;
        height: auto;
        margin: 0 10px 1rem 0;
        position: relative;
        list-style: none; }
      #home main .hit_content .hit_list_img_l, #race main .hit_content .hit_list_img_l, #hit main .hit_content .hit_list_img_l, #shop main .hit_content .hit_list_img_l, #mypage main .hit_content .hit_list_img_l, #policy main .hit_content .hit_list_img_l {
        width: 260px;
        height: auto;
        position: relative;
        margin-bottom: 1rem; }
      #home main .hit_content .hit_day, #race main .hit_content .hit_day, #hit main .hit_content .hit_day, #shop main .hit_content .hit_day, #mypage main .hit_content .hit_day, #policy main .hit_content .hit_day {
        position: absolute;
        top: 38%;
        left: 50%;
        transform: translate(-50%);
        font-weight: bold;
        font-size: 1.3rem;
        text-align: center;
        width: 100%;
        color: #fff; }
      #home main .hit_content .hit_race, #race main .hit_content .hit_race, #hit main .hit_content .hit_race, #shop main .hit_content .hit_race, #mypage main .hit_content .hit_race, #policy main .hit_content .hit_race {
        position: absolute;
        top: 51%;
        left: 50%;
        transform: translate(-50%);
        font-weight: bold;
        font-size: 1.3rem;
        text-align: center;
        width: 100%;
        color: #fff; }
      #home main .hit_content .hit_buy, #race main .hit_content .hit_buy, #hit main .hit_content .hit_buy, #shop main .hit_content .hit_buy, #mypage main .hit_content .hit_buy, #policy main .hit_content .hit_buy {
        position: absolute;
        top: 64%;
        left: 50%;
        transform: translate(-50%);
        font-weight: bold;
        font-size: 1.3rem;
        text-align: center;
        width: 100%;
        color: #fff; }
      #home main .hit_content .hit_price, #race main .hit_content .hit_price, #hit main .hit_content .hit_price, #shop main .hit_content .hit_price, #mypage main .hit_content .hit_price, #policy main .hit_content .hit_price {
        position: absolute;
        top: 78%;
        left: 50%;
        transform: translate(-50%);
        font-weight: bold;
        font-size: 2.2rem;
        text-align: center;
        width: 100%;
        color: yellow;
        font-family: "Times New Roman", Times, "serif"; }
    #home main #shop_top_cont, #race main #shop_top_cont, #hit main #shop_top_cont, #shop main #shop_top_cont, #mypage main #shop_top_cont, #policy main #shop_top_cont {
      text-align: center; }
      #home main #shop_top_cont h2, #race main #shop_top_cont h2, #hit main #shop_top_cont h2, #shop main #shop_top_cont h2, #mypage main #shop_top_cont h2, #policy main #shop_top_cont h2 {
        font-size: 2.5rem;
        color: #fff;
        margin: 6rem auto 2rem;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif" !important; }
        #home main #shop_top_cont h2 img, #race main #shop_top_cont h2 img, #hit main #shop_top_cont h2 img, #shop main #shop_top_cont h2 img, #mypage main #shop_top_cont h2 img, #policy main #shop_top_cont h2 img {
          width: 50px;
          margin: 0 1rem .8rem 0; }
      #home main #shop_top_cont p, #race main #shop_top_cont p, #hit main #shop_top_cont p, #shop main #shop_top_cont p, #mypage main #shop_top_cont p, #policy main #shop_top_cont p {
        text-align: center;
        font-size: 1.6rem;
        color: #fff;
        width: 90%;
        margin: 0 auto; }
    #home main .shop_content, #race main .shop_content, #hit main .shop_content, #shop main .shop_content, #mypage main .shop_content, #policy main .shop_content {
      margin: 0 auto 4rem;
      font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
      #home main .shop_content .shop_tx, #race main .shop_content .shop_tx, #hit main .shop_content .shop_tx, #shop main .shop_content .shop_tx, #mypage main .shop_content .shop_tx, #policy main .shop_content .shop_tx {
        color: #fff;
        margin-bottom: 3rem;
        text-align: justify; }
      #home main .shop_content .shop_bank, #race main .shop_content .shop_bank, #hit main .shop_content .shop_bank, #shop main .shop_content .shop_bank, #mypage main .shop_content .shop_bank, #policy main .shop_content .shop_bank {
        width: 80%;
        margin: 0 auto 2rem;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.5);
        border: 3px solid #FFF;
        padding: .5rem 1rem;
        border-radius: 10px; }
        #home main .shop_content .shop_bank img, #race main .shop_content .shop_bank img, #hit main .shop_content .shop_bank img, #shop main .shop_content .shop_bank img, #mypage main .shop_content .shop_bank img, #policy main .shop_content .shop_bank img {
          width: 50px;
          margin: 0 1rem .3rem 0; }
        #home main .shop_content .shop_bank a, #race main .shop_content .shop_bank a, #hit main .shop_content .shop_bank a, #shop main .shop_content .shop_bank a, #mypage main .shop_content .shop_bank a, #policy main .shop_content .shop_bank a {
          color: yellow;
          line-height: 40px;
          font-size: 1.4rem; }
      #home main .shop_content .shop_bank:hover, #race main .shop_content .shop_bank:hover, #hit main .shop_content .shop_bank:hover, #shop main .shop_content .shop_bank:hover, #mypage main .shop_content .shop_bank:hover, #policy main .shop_content .shop_bank:hover {
        border: 3px solid yellow;
        transition: .5s; }
      #home main .shop_content .shop_card, #race main .shop_content .shop_card, #hit main .shop_content .shop_card, #shop main .shop_content .shop_card, #mypage main .shop_content .shop_card, #policy main .shop_content .shop_card {
        width: 80%;
        margin: 0 auto 2rem;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.3);
        border: 3px solid #FFF;
        padding: .5rem 1rem;
        border-radius: 10px; }
        #home main .shop_content .shop_card img, #race main .shop_content .shop_card img, #hit main .shop_content .shop_card img, #shop main .shop_content .shop_card img, #mypage main .shop_content .shop_card img, #policy main .shop_content .shop_card img {
          width: 45px;
          margin: 0 1rem .3rem 0; }
        #home main .shop_content .shop_card a, #race main .shop_content .shop_card a, #hit main .shop_content .shop_card a, #shop main .shop_content .shop_card a, #mypage main .shop_content .shop_card a, #policy main .shop_content .shop_card a {
          color: aqua;
          line-height: 40px;
          font-size: 1.4rem; }
      #home main .shop_content .shop_card:hover, #race main .shop_content .shop_card:hover, #hit main .shop_content .shop_card:hover, #shop main .shop_content .shop_card:hover, #mypage main .shop_content .shop_card:hover, #policy main .shop_content .shop_card:hover {
        border: 3px solid aqua;
        transition: .5s; }
      #home main .shop_content .shop_point_banner, #race main .shop_content .shop_point_banner, #hit main .shop_content .shop_point_banner, #shop main .shop_content .shop_point_banner, #mypage main .shop_content .shop_point_banner, #policy main .shop_content .shop_point_banner {
        width: 500px;
        margin: 0 auto;
        text-align: center; }
      #home main .shop_content h3, #race main .shop_content h3, #hit main .shop_content h3, #shop main .shop_content h3, #mypage main .shop_content h3, #policy main .shop_content h3 {
        text-align: center;
        color: #fff;
        font-size: 1.6rem;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
      #home main .shop_content ul, #race main .shop_content ul, #hit main .shop_content ul, #shop main .shop_content ul, #mypage main .shop_content ul, #policy main .shop_content ul {
        width: 500px;
        margin: 2rem auto;
        text-align: center; }
        #home main .shop_content ul .shop_button, #race main .shop_content ul .shop_button, #hit main .shop_content ul .shop_button, #shop main .shop_content ul .shop_button, #mypage main .shop_content ul .shop_button, #policy main .shop_content ul .shop_button {
          height: auto;
          position: relative; }
          #home main .shop_content ul .shop_button .shop_point, #race main .shop_content ul .shop_button .shop_point, #hit main .shop_content ul .shop_button .shop_point, #shop main .shop_content ul .shop_button .shop_point, #mypage main .shop_content ul .shop_button .shop_point, #policy main .shop_content ul .shop_button .shop_point {
            color: yellow;
            font-weight: bold;
            font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
            font-size: 3rem;
            position: absolute;
            top: 2rem;
            left: 9rem;
            width: 10rem;
            text-align: center; }
          #home main .shop_content ul .shop_button .shop_price, #race main .shop_content ul .shop_button .shop_price, #hit main .shop_content ul .shop_button .shop_price, #shop main .shop_content ul .shop_button .shop_price, #mypage main .shop_content ul .shop_button .shop_price, #policy main .shop_content ul .shop_button .shop_price {
            color: red;
            font-weight: bold;
            font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
            font-size: 1.5rem;
            position: absolute;
            bottom: 2.7rem;
            left: 9rem;
            width: 12.5rem;
            text-align: center;
            text-shadow: none; }
    #home main .shoptransfer_content table, #home main .shoptransfer_fin_content table, #race main .shoptransfer_content table, #race main .shoptransfer_fin_content table, #hit main .shoptransfer_content table, #hit main .shoptransfer_fin_content table, #shop main .shoptransfer_content table, #shop main .shoptransfer_fin_content table, #mypage main .shoptransfer_content table, #mypage main .shoptransfer_fin_content table, #policy main .shoptransfer_content table, #policy main .shoptransfer_fin_content table {
      width: 800px;
      margin: 0 auto;
      background-color: rgba(0, 0, 0, 0.4); }
      #home main .shoptransfer_content table tbody .td1, #home main .shoptransfer_fin_content table tbody .td1, #race main .shoptransfer_content table tbody .td1, #race main .shoptransfer_fin_content table tbody .td1, #hit main .shoptransfer_content table tbody .td1, #hit main .shoptransfer_fin_content table tbody .td1, #shop main .shoptransfer_content table tbody .td1, #shop main .shoptransfer_fin_content table tbody .td1, #mypage main .shoptransfer_content table tbody .td1, #mypage main .shoptransfer_fin_content table tbody .td1, #policy main .shoptransfer_content table tbody .td1, #policy main .shoptransfer_fin_content table tbody .td1 {
        text-align: center;
        width: 150px;
        vertical-align: inherit; }
      #home main .shoptransfer_content table tbody th, #home main .shoptransfer_content table tbody td, #home main .shoptransfer_fin_content table tbody th, #home main .shoptransfer_fin_content table tbody td, #race main .shoptransfer_content table tbody th, #race main .shoptransfer_content table tbody td, #race main .shoptransfer_fin_content table tbody th, #race main .shoptransfer_fin_content table tbody td, #hit main .shoptransfer_content table tbody th, #hit main .shoptransfer_content table tbody td, #hit main .shoptransfer_fin_content table tbody th, #hit main .shoptransfer_fin_content table tbody td, #shop main .shoptransfer_content table tbody th, #shop main .shoptransfer_content table tbody td, #shop main .shoptransfer_fin_content table tbody th, #shop main .shoptransfer_fin_content table tbody td, #mypage main .shoptransfer_content table tbody th, #mypage main .shoptransfer_content table tbody td, #mypage main .shoptransfer_fin_content table tbody th, #mypage main .shoptransfer_fin_content table tbody td, #policy main .shoptransfer_content table tbody th, #policy main .shoptransfer_content table tbody td, #policy main .shoptransfer_fin_content table tbody th, #policy main .shoptransfer_fin_content table tbody td {
        color: #fff;
        font-weight: bold;
        padding: 2rem 1rem;
        border: 2px solid #fff; }
        #home main .shoptransfer_content table tbody th p, #home main .shoptransfer_content table tbody td p, #home main .shoptransfer_fin_content table tbody th p, #home main .shoptransfer_fin_content table tbody td p, #race main .shoptransfer_content table tbody th p, #race main .shoptransfer_content table tbody td p, #race main .shoptransfer_fin_content table tbody th p, #race main .shoptransfer_fin_content table tbody td p, #hit main .shoptransfer_content table tbody th p, #hit main .shoptransfer_content table tbody td p, #hit main .shoptransfer_fin_content table tbody th p, #hit main .shoptransfer_fin_content table tbody td p, #shop main .shoptransfer_content table tbody th p, #shop main .shoptransfer_content table tbody td p, #shop main .shoptransfer_fin_content table tbody th p, #shop main .shoptransfer_fin_content table tbody td p, #mypage main .shoptransfer_content table tbody th p, #mypage main .shoptransfer_content table tbody td p, #mypage main .shoptransfer_fin_content table tbody th p, #mypage main .shoptransfer_fin_content table tbody td p, #policy main .shoptransfer_content table tbody th p, #policy main .shoptransfer_content table tbody td p, #policy main .shoptransfer_fin_content table tbody th p, #policy main .shoptransfer_fin_content table tbody td p {
          font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
        #home main .shoptransfer_content table tbody th .my_input_setting, #home main .shoptransfer_content table tbody td .my_input_setting, #home main .shoptransfer_fin_content table tbody th .my_input_setting, #home main .shoptransfer_fin_content table tbody td .my_input_setting, #race main .shoptransfer_content table tbody th .my_input_setting, #race main .shoptransfer_content table tbody td .my_input_setting, #race main .shoptransfer_fin_content table tbody th .my_input_setting, #race main .shoptransfer_fin_content table tbody td .my_input_setting, #hit main .shoptransfer_content table tbody th .my_input_setting, #hit main .shoptransfer_content table tbody td .my_input_setting, #hit main .shoptransfer_fin_content table tbody th .my_input_setting, #hit main .shoptransfer_fin_content table tbody td .my_input_setting, #shop main .shoptransfer_content table tbody th .my_input_setting, #shop main .shoptransfer_content table tbody td .my_input_setting, #shop main .shoptransfer_fin_content table tbody th .my_input_setting, #shop main .shoptransfer_fin_content table tbody td .my_input_setting, #mypage main .shoptransfer_content table tbody th .my_input_setting, #mypage main .shoptransfer_content table tbody td .my_input_setting, #mypage main .shoptransfer_fin_content table tbody th .my_input_setting, #mypage main .shoptransfer_fin_content table tbody td .my_input_setting, #policy main .shoptransfer_content table tbody th .my_input_setting, #policy main .shoptransfer_content table tbody td .my_input_setting, #policy main .shoptransfer_fin_content table tbody th .my_input_setting, #policy main .shoptransfer_fin_content table tbody td .my_input_setting {
          width: 300px;
          line-height: 2;
          margin-bottom: .5rem; }
    #home main .shoptransfer_content .bank_report, #home main .shoptransfer_content .credit_report, #home main .shoptransfer_fin_content .bank_report, #home main .shoptransfer_fin_content .credit_report, #race main .shoptransfer_content .bank_report, #race main .shoptransfer_content .credit_report, #race main .shoptransfer_fin_content .bank_report, #race main .shoptransfer_fin_content .credit_report, #hit main .shoptransfer_content .bank_report, #hit main .shoptransfer_content .credit_report, #hit main .shoptransfer_fin_content .bank_report, #hit main .shoptransfer_fin_content .credit_report, #shop main .shoptransfer_content .bank_report, #shop main .shoptransfer_content .credit_report, #shop main .shoptransfer_fin_content .bank_report, #shop main .shoptransfer_fin_content .credit_report, #mypage main .shoptransfer_content .bank_report, #mypage main .shoptransfer_content .credit_report, #mypage main .shoptransfer_fin_content .bank_report, #mypage main .shoptransfer_fin_content .credit_report, #policy main .shoptransfer_content .bank_report, #policy main .shoptransfer_content .credit_report, #policy main .shoptransfer_fin_content .bank_report, #policy main .shoptransfer_fin_content .credit_report {
      width: 300px;
      margin: 3rem auto; }
      #home main .shoptransfer_content .bank_report input, #home main .shoptransfer_content .credit_report input, #home main .shoptransfer_fin_content .bank_report input, #home main .shoptransfer_fin_content .credit_report input, #race main .shoptransfer_content .bank_report input, #race main .shoptransfer_content .credit_report input, #race main .shoptransfer_fin_content .bank_report input, #race main .shoptransfer_fin_content .credit_report input, #hit main .shoptransfer_content .bank_report input, #hit main .shoptransfer_content .credit_report input, #hit main .shoptransfer_fin_content .bank_report input, #hit main .shoptransfer_fin_content .credit_report input, #shop main .shoptransfer_content .bank_report input, #shop main .shoptransfer_content .credit_report input, #shop main .shoptransfer_fin_content .bank_report input, #shop main .shoptransfer_fin_content .credit_report input, #mypage main .shoptransfer_content .bank_report input, #mypage main .shoptransfer_content .credit_report input, #mypage main .shoptransfer_fin_content .bank_report input, #mypage main .shoptransfer_fin_content .credit_report input, #policy main .shoptransfer_content .bank_report input, #policy main .shoptransfer_content .credit_report input, #policy main .shoptransfer_fin_content .bank_report input, #policy main .shoptransfer_fin_content .credit_report input {
        width: 100%;
        line-height: 2;
        border-radius: 20px;
        cursor: pointer;
        font-size: 1.2rem;
        background-color: #fff; }
      #home main .shoptransfer_content .bank_report input:hover, #home main .shoptransfer_content .credit_report input:hover, #home main .shoptransfer_fin_content .bank_report input:hover, #home main .shoptransfer_fin_content .credit_report input:hover, #race main .shoptransfer_content .bank_report input:hover, #race main .shoptransfer_content .credit_report input:hover, #race main .shoptransfer_fin_content .bank_report input:hover, #race main .shoptransfer_fin_content .credit_report input:hover, #hit main .shoptransfer_content .bank_report input:hover, #hit main .shoptransfer_content .credit_report input:hover, #hit main .shoptransfer_fin_content .bank_report input:hover, #hit main .shoptransfer_fin_content .credit_report input:hover, #shop main .shoptransfer_content .bank_report input:hover, #shop main .shoptransfer_content .credit_report input:hover, #shop main .shoptransfer_fin_content .bank_report input:hover, #shop main .shoptransfer_fin_content .credit_report input:hover, #mypage main .shoptransfer_content .bank_report input:hover, #mypage main .shoptransfer_content .credit_report input:hover, #mypage main .shoptransfer_fin_content .bank_report input:hover, #mypage main .shoptransfer_fin_content .credit_report input:hover, #policy main .shoptransfer_content .bank_report input:hover, #policy main .shoptransfer_content .credit_report input:hover, #policy main .shoptransfer_fin_content .bank_report input:hover, #policy main .shoptransfer_fin_content .credit_report input:hover {
        background-color: yellow;
        transition: .5s; }
    #home main .shoptransfer_content .shoptransfer_caution, #home main .shoptransfer_fin_content .shoptransfer_caution, #race main .shoptransfer_content .shoptransfer_caution, #race main .shoptransfer_fin_content .shoptransfer_caution, #hit main .shoptransfer_content .shoptransfer_caution, #hit main .shoptransfer_fin_content .shoptransfer_caution, #shop main .shoptransfer_content .shoptransfer_caution, #shop main .shoptransfer_fin_content .shoptransfer_caution, #mypage main .shoptransfer_content .shoptransfer_caution, #mypage main .shoptransfer_fin_content .shoptransfer_caution, #policy main .shoptransfer_content .shoptransfer_caution, #policy main .shoptransfer_fin_content .shoptransfer_caution {
      color: yellow;
      width: 800px;
      margin: 0 auto 4rem; }
    #home main .shoptransfer_content .shop_fin_h2, #home main .shoptransfer_fin_content .shop_fin_h2, #race main .shoptransfer_content .shop_fin_h2, #race main .shoptransfer_fin_content .shop_fin_h2, #hit main .shoptransfer_content .shop_fin_h2, #hit main .shoptransfer_fin_content .shop_fin_h2, #shop main .shoptransfer_content .shop_fin_h2, #shop main .shoptransfer_fin_content .shop_fin_h2, #mypage main .shoptransfer_content .shop_fin_h2, #mypage main .shoptransfer_fin_content .shop_fin_h2, #policy main .shoptransfer_content .shop_fin_h2, #policy main .shoptransfer_fin_content .shop_fin_h2 {
      width: 800px;
      margin: 1rem auto;
      color: #fff;
      font-size: 2rem;
      text-align: center;
      font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
    #home main .shoptransfer_content .shop_fin_tx, #home main .shoptransfer_fin_content .shop_fin_tx, #race main .shoptransfer_content .shop_fin_tx, #race main .shoptransfer_fin_content .shop_fin_tx, #hit main .shoptransfer_content .shop_fin_tx, #hit main .shoptransfer_fin_content .shop_fin_tx, #shop main .shoptransfer_content .shop_fin_tx, #shop main .shoptransfer_fin_content .shop_fin_tx, #mypage main .shoptransfer_content .shop_fin_tx, #mypage main .shoptransfer_fin_content .shop_fin_tx, #policy main .shoptransfer_content .shop_fin_tx, #policy main .shoptransfer_fin_content .shop_fin_tx {
      width: 800px;
      margin: 0 auto 2rem;
      color: #fff;
      font-size: 1.2rem; }
      #home main .shoptransfer_content .shop_fin_tx p, #home main .shoptransfer_fin_content .shop_fin_tx p, #race main .shoptransfer_content .shop_fin_tx p, #race main .shoptransfer_fin_content .shop_fin_tx p, #hit main .shoptransfer_content .shop_fin_tx p, #hit main .shoptransfer_fin_content .shop_fin_tx p, #shop main .shoptransfer_content .shop_fin_tx p, #shop main .shoptransfer_fin_content .shop_fin_tx p, #mypage main .shoptransfer_content .shop_fin_tx p, #mypage main .shoptransfer_fin_content .shop_fin_tx p, #policy main .shoptransfer_content .shop_fin_tx p, #policy main .shoptransfer_fin_content .shop_fin_tx p {
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif" !important; }
    #home main .shoptransfer_fin_content, #race main .shoptransfer_fin_content, #hit main .shoptransfer_fin_content, #shop main .shoptransfer_fin_content, #mypage main .shoptransfer_fin_content, #policy main .shoptransfer_fin_content {
      margin-bottom: 4rem; }
    #home main .mypage_content, #race main .mypage_content, #hit main .mypage_content, #shop main .mypage_content, #mypage main .mypage_content, #policy main .mypage_content {
      margin: 0 auto 4rem;
      width: 750px;
      text-align: center; }
      #home main .mypage_content .id_cont, #race main .mypage_content .id_cont, #hit main .mypage_content .id_cont, #shop main .mypage_content .id_cont, #mypage main .mypage_content .id_cont, #policy main .mypage_content .id_cont {
        width: 90%;
        margin: 0 auto 2rem;
        height: auto;
        position: relative;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
        text-align: center; }
        #home main .mypage_content .id_cont .id_no, #race main .mypage_content .id_cont .id_no, #hit main .mypage_content .id_cont .id_no, #shop main .mypage_content .id_cont .id_no, #mypage main .mypage_content .id_cont .id_no, #policy main .mypage_content .id_cont .id_no {
          width: 23rem;
          position: absolute;
          top: 15%;
          left: 40%;
          height: auto;
          font-size: 2.5rem;
          font-weight: bold;
          font-style: italic;
          font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
          margin-top: 0;
          color: #fff;
          text-align: center; }
        #home main .mypage_content .id_cont .id_point, #race main .mypage_content .id_cont .id_point, #hit main .mypage_content .id_cont .id_point, #shop main .mypage_content .id_cont .id_point, #mypage main .mypage_content .id_cont .id_point, #policy main .mypage_content .id_cont .id_point {
          width: 18rem;
          position: absolute;
          top: 53%;
          left: 37%;
          height: auto;
          font-size: 2.5rem;
          font-weight: bold;
          font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
          margin-top: 0;
          color: #fff;
          text-align: center; }
      #home main .mypage_content p, #race main .mypage_content p, #hit main .mypage_content p, #shop main .mypage_content p, #mypage main .mypage_content p, #policy main .mypage_content p {
        color: #fff;
        font-size: 1.5rem;
        text-align: center; }
      #home main .mypage_content .mypage_mail, #race main .mypage_content .mypage_mail, #hit main .mypage_content .mypage_mail, #shop main .mypage_content .mypage_mail, #mypage main .mypage_content .mypage_mail, #policy main .mypage_content .mypage_mail {
        margin: 1rem auto; }
        #home main .mypage_content .mypage_mail li, #race main .mypage_content .mypage_mail li, #hit main .mypage_content .mypage_mail li, #shop main .mypage_content .mypage_mail li, #mypage main .mypage_content .mypage_mail li, #policy main .mypage_content .mypage_mail li {
          margin: 2rem auto; }
          #home main .mypage_content .mypage_mail li a img, #race main .mypage_content .mypage_mail li a img, #hit main .mypage_content .mypage_mail li a img, #shop main .mypage_content .mypage_mail li a img, #mypage main .mypage_content .mypage_mail li a img, #policy main .mypage_content .mypage_mail li a img {
            height: 100px;
            width: auto; }
      #home main .mypage_content .mypage_setting, #race main .mypage_content .mypage_setting, #hit main .mypage_content .mypage_setting, #shop main .mypage_content .mypage_setting, #mypage main .mypage_content .mypage_setting, #policy main .mypage_content .mypage_setting {
        margin: 0 auto;
        border: 1px solid #fff;
        color: #fff; }
        #home main .mypage_content .mypage_setting li, #race main .mypage_content .mypage_setting li, #hit main .mypage_content .mypage_setting li, #shop main .mypage_content .mypage_setting li, #mypage main .mypage_content .mypage_setting li, #policy main .mypage_content .mypage_setting li {
          border: 1px solid #fff;
          line-height: 3;
          padding: 1%; }
        #home main .mypage_content .mypage_setting .fl_left, #race main .mypage_content .mypage_setting .fl_left, #hit main .mypage_content .mypage_setting .fl_left, #shop main .mypage_content .mypage_setting .fl_left, #mypage main .mypage_content .mypage_setting .fl_left, #policy main .mypage_content .mypage_setting .fl_left {
          width: 30%;
          float: left;
          text-align: center; }
        #home main .mypage_content .mypage_setting .fl_right, #race main .mypage_content .mypage_setting .fl_right, #hit main .mypage_content .mypage_setting .fl_right, #shop main .mypage_content .mypage_setting .fl_right, #mypage main .mypage_content .mypage_setting .fl_right, #policy main .mypage_content .mypage_setting .fl_right {
          width: 65.3%;
          float: right;
          padding-left: 1%; }
        #home main .mypage_content .mypage_setting input, #race main .mypage_content .mypage_setting input, #hit main .mypage_content .mypage_setting input, #shop main .mypage_content .mypage_setting input, #mypage main .mypage_content .mypage_setting input, #policy main .mypage_content .mypage_setting input {
          width: 97%;
          line-height: 3;
          padding-left: 1%; }
      #home main .mypage_content .toroku a, #race main .mypage_content .toroku a, #hit main .mypage_content .toroku a, #shop main .mypage_content .toroku a, #mypage main .mypage_content .toroku a, #policy main .mypage_content .toroku a {
        margin: 2rem auto; }
        #home main .mypage_content .toroku a img, #race main .mypage_content .toroku a img, #hit main .mypage_content .toroku a img, #shop main .mypage_content .toroku a img, #mypage main .mypage_content .toroku a img, #policy main .mypage_content .toroku a img {
          width: auto;
          height: 100px; }
    #home main .mailbox_content .mail_content, #race main .mailbox_content .mail_content, #hit main .mailbox_content .mail_content, #shop main .mailbox_content .mail_content, #mypage main .mailbox_content .mail_content, #policy main .mailbox_content .mail_content {
      width: 750px;
      margin: 2rem auto 4rem;
      padding: 50px 100px;
      background-color: rgba(0, 0, 0, 0.3); }
      #home main .mailbox_content .mail_content .new_message, #race main .mailbox_content .mail_content .new_message, #hit main .mailbox_content .mail_content .new_message, #shop main .mailbox_content .mail_content .new_message, #mypage main .mailbox_content .mail_content .new_message, #policy main .mailbox_content .mail_content .new_message {
        text-align: center; }
        #home main .mailbox_content .mail_content .new_message img, #race main .mailbox_content .mail_content .new_message img, #hit main .mailbox_content .mail_content .new_message img, #shop main .mailbox_content .mail_content .new_message img, #mypage main .mailbox_content .mail_content .new_message img, #policy main .mailbox_content .mail_content .new_message img {
          height: 100px;
          width: auto;
          margin: 0 auto 2rem; }
      #home main .mailbox_content .mail_content .mail, #race main .mailbox_content .mail_content .mail, #hit main .mailbox_content .mail_content .mail, #shop main .mailbox_content .mail_content .mail, #mypage main .mailbox_content .mail_content .mail, #policy main .mailbox_content .mail_content .mail {
        margin-bottom: 1rem; }
        #home main .mailbox_content .mail_content .mail a, #race main .mailbox_content .mail_content .mail a, #hit main .mailbox_content .mail_content .mail a, #shop main .mailbox_content .mail_content .mail a, #mypage main .mailbox_content .mail_content .mail a, #policy main .mailbox_content .mail_content .mail a {
          color: #fff; }
          #home main .mailbox_content .mail_content .mail a ul .message, #race main .mailbox_content .mail_content .mail a ul .message, #hit main .mailbox_content .mail_content .mail a ul .message, #shop main .mailbox_content .mail_content .mail a ul .message, #mypage main .mailbox_content .mail_content .mail a ul .message, #policy main .mailbox_content .mail_content .mail a ul .message {
            width: 100%;
            font-size: 1.3rem;
            text-align: justify; }
          #home main .mailbox_content .mail_content .mail a ul .read, #race main .mailbox_content .mail_content .mail a ul .read, #hit main .mailbox_content .mail_content .mail a ul .read, #shop main .mailbox_content .mail_content .mail a ul .read, #mypage main .mailbox_content .mail_content .mail a ul .read, #policy main .mailbox_content .mail_content .mail a ul .read {
            font-size: 1rem;
            float: left;
            color: red; }
          #home main .mailbox_content .mail_content .mail a ul .mail_time, #race main .mailbox_content .mail_content .mail a ul .mail_time, #hit main .mailbox_content .mail_content .mail a ul .mail_time, #shop main .mailbox_content .mail_content .mail a ul .mail_time, #mypage main .mailbox_content .mail_content .mail a ul .mail_time, #policy main .mailbox_content .mail_content .mail a ul .mail_time {
            font-size: 1rem;
            float: right; }
        #home main .mailbox_content .mail_content .mail a:hover li, #race main .mailbox_content .mail_content .mail a:hover li, #hit main .mailbox_content .mail_content .mail a:hover li, #shop main .mailbox_content .mail_content .mail a:hover li, #mypage main .mailbox_content .mail_content .mail a:hover li, #policy main .mailbox_content .mail_content .mail a:hover li {
          color: yellow;
          transition: .2s; }
      #home main .mailbox_content .mail_content .border, #race main .mailbox_content .mail_content .border, #hit main .mailbox_content .mail_content .border, #shop main .mailbox_content .mail_content .border, #mypage main .mailbox_content .mail_content .border, #policy main .mailbox_content .mail_content .border {
        margin: 1rem auto 2rem; }
    #home main .mailbox_message .message_content, #race main .mailbox_message .message_content, #hit main .mailbox_message .message_content, #shop main .mailbox_message .message_content, #mypage main .mailbox_message .message_content, #policy main .mailbox_message .message_content {
      width: 750px;
      margin: 2rem auto 4rem;
      padding: 50px 100px;
      background-color: rgba(0, 0, 0, 0.3); }
      #home main .mailbox_message .message_content .message_title ul .title, #race main .mailbox_message .message_content .message_title ul .title, #hit main .mailbox_message .message_content .message_title ul .title, #shop main .mailbox_message .message_content .message_title ul .title, #mypage main .mailbox_message .message_content .message_title ul .title, #policy main .mailbox_message .message_content .message_title ul .title {
        width: 100%;
        font-size: 1.5rem;
        text-align: justify;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        color: yellow; }
      #home main .mailbox_message .message_content .message_title ul .mail_time, #race main .mailbox_message .message_content .message_title ul .mail_time, #hit main .mailbox_message .message_content .message_title ul .mail_time, #shop main .mailbox_message .message_content .message_title ul .mail_time, #mypage main .mailbox_message .message_content .message_title ul .mail_time, #policy main .mailbox_message .message_content .message_title ul .mail_time {
        font-size: 1.3rem;
        text-align: right;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        color: #fff; }
      #home main .mailbox_message .message_content .message, #race main .mailbox_message .message_content .message, #hit main .mailbox_message .message_content .message, #shop main .mailbox_message .message_content .message, #mypage main .mailbox_message .message_content .message, #policy main .mailbox_message .message_content .message {
        font-size: 1.5rem;
        color: #fff;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
    #home main #fin_top_cont, #race main #fin_top_cont, #hit main #fin_top_cont, #shop main #fin_top_cont, #mypage main #fin_top_cont, #policy main #fin_top_cont {
      text-align: center; }
      #home main #fin_top_cont h2, #race main #fin_top_cont h2, #hit main #fin_top_cont h2, #shop main #fin_top_cont h2, #mypage main #fin_top_cont h2, #policy main #fin_top_cont h2 {
        font-size: 2rem;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
        color: #fff;
        margin: 6rem auto 4rem; }
        #home main #fin_top_cont h2 img, #race main #fin_top_cont h2 img, #hit main #fin_top_cont h2 img, #shop main #fin_top_cont h2 img, #mypage main #fin_top_cont h2 img, #policy main #fin_top_cont h2 img {
          width: 50px;
          margin: 0 1rem .8rem 0; }
      #home main #fin_top_cont .fin_tx, #race main #fin_top_cont .fin_tx, #hit main #fin_top_cont .fin_tx, #shop main #fin_top_cont .fin_tx, #mypage main #fin_top_cont .fin_tx, #policy main #fin_top_cont .fin_tx {
        color: #fff;
        text-align: center;
        font-size: 1.5rem;
        width: 100%;
        margin: 0 auto;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
      #home main #fin_top_cont .fin_logout a, #race main #fin_top_cont .fin_logout a, #hit main #fin_top_cont .fin_logout a, #shop main #fin_top_cont .fin_logout a, #mypage main #fin_top_cont .fin_logout a, #policy main #fin_top_cont .fin_logout a {
        width: 425px;
        text-align: center;
        margin: 2rem auto;
        padding: .5rem;
        border: 1px solid yellow;
        color: yellow;
        font-size: 1.6rem;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
        #home main #fin_top_cont .fin_logout a img, #race main #fin_top_cont .fin_logout a img, #hit main #fin_top_cont .fin_logout a img, #shop main #fin_top_cont .fin_logout a img, #mypage main #fin_top_cont .fin_logout a img, #policy main #fin_top_cont .fin_logout a img {
          width: 4vw;
          padding: 0 .3vw .2vw; }
      #home main #fin_top_cont .fin_logout a:hover, #race main #fin_top_cont .fin_logout a:hover, #hit main #fin_top_cont .fin_logout a:hover, #shop main #fin_top_cont .fin_logout a:hover, #mypage main #fin_top_cont .fin_logout a:hover, #policy main #fin_top_cont .fin_logout a:hover {
        box-shadow: 0 0 12px yellow;
        transition: .5s; }
    #home main .fin_content, #race main .fin_content, #hit main .fin_content, #shop main .fin_content, #mypage main .fin_content, #policy main .fin_content {
      width: 800px;
      margin: 2rem auto 4rem; }
      #home main .fin_content table, #race main .fin_content table, #hit main .fin_content table, #shop main .fin_content table, #mypage main .fin_content table, #policy main .fin_content table {
        width: 800px;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.4); }
        #home main .fin_content table .td1, #race main .fin_content table .td1, #hit main .fin_content table .td1, #shop main .fin_content table .td1, #mypage main .fin_content table .td1, #policy main .fin_content table .td1 {
          text-align: center;
          width: 150px;
          vertical-align: inherit; }
        #home main .fin_content table th, #home main .fin_content table td, #race main .fin_content table th, #race main .fin_content table td, #hit main .fin_content table th, #hit main .fin_content table td, #shop main .fin_content table th, #shop main .fin_content table td, #mypage main .fin_content table th, #mypage main .fin_content table td, #policy main .fin_content table th, #policy main .fin_content table td {
          color: #fff;
          font-weight: bold;
          padding: 2rem 1rem;
          border: 2px solid #fff; }
          #home main .fin_content table th p, #home main .fin_content table td p, #race main .fin_content table th p, #race main .fin_content table td p, #hit main .fin_content table th p, #hit main .fin_content table td p, #shop main .fin_content table th p, #shop main .fin_content table td p, #mypage main .fin_content table th p, #mypage main .fin_content table td p, #policy main .fin_content table th p, #policy main .fin_content table td p {
            font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
          #home main .fin_content table th .my_input_setting, #home main .fin_content table td .my_input_setting, #race main .fin_content table th .my_input_setting, #race main .fin_content table td .my_input_setting, #hit main .fin_content table th .my_input_setting, #hit main .fin_content table td .my_input_setting, #shop main .fin_content table th .my_input_setting, #shop main .fin_content table td .my_input_setting, #mypage main .fin_content table th .my_input_setting, #mypage main .fin_content table td .my_input_setting, #policy main .fin_content table th .my_input_setting, #policy main .fin_content table td .my_input_setting {
            width: 300px;
            line-height: 2;
            margin-bottom: .5rem; }
      #home main .fin_content .fin_tx02, #race main .fin_content .fin_tx02, #hit main .fin_content .fin_tx02, #shop main .fin_content .fin_tx02, #mypage main .fin_content .fin_tx02, #policy main .fin_content .fin_tx02 {
        color: #fff;
        text-align: justify;
        font-size: 1.5rem;
        width: 800px;
        margin: 2rem auto;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
        #home main .fin_content .fin_tx02 .fin_tx-y, #race main .fin_content .fin_tx02 .fin_tx-y, #hit main .fin_content .fin_tx02 .fin_tx-y, #shop main .fin_content .fin_tx02 .fin_tx-y, #mypage main .fin_content .fin_tx02 .fin_tx-y, #policy main .fin_content .fin_tx02 .fin_tx-y {
          color: yellow; }
    #home main .policy_content, #home main .policy_content_top, #race main .policy_content, #race main .policy_content_top, #hit main .policy_content, #hit main .policy_content_top, #shop main .policy_content, #shop main .policy_content_top, #mypage main .policy_content, #mypage main .policy_content_top, #policy main .policy_content, #policy main .policy_content_top {
      width: 800px;
      margin: 2rem auto 8rem;
      padding-bottom: 2rem; }
      #home main .policy_content h2, #home main .policy_content_top h2, #race main .policy_content h2, #race main .policy_content_top h2, #hit main .policy_content h2, #hit main .policy_content_top h2, #shop main .policy_content h2, #shop main .policy_content_top h2, #mypage main .policy_content h2, #mypage main .policy_content_top h2, #policy main .policy_content h2, #policy main .policy_content_top h2 {
        font-size: 2rem;
        color: #fff;
        margin: 6rem auto 4rem;
        text-align: center;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
      #home main .policy_content h3, #home main .policy_content_top h3, #race main .policy_content h3, #race main .policy_content_top h3, #hit main .policy_content h3, #hit main .policy_content_top h3, #shop main .policy_content h3, #shop main .policy_content_top h3, #mypage main .policy_content h3, #mypage main .policy_content_top h3, #policy main .policy_content h3, #policy main .policy_content_top h3 {
        font-size: 1.3rem;
        color: #fff;
        margin: 0 auto .6rem;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
      #home main .policy_content h4, #home main .policy_content_top h4, #race main .policy_content h4, #race main .policy_content_top h4, #hit main .policy_content h4, #hit main .policy_content_top h4, #shop main .policy_content h4, #shop main .policy_content_top h4, #mypage main .policy_content h4, #mypage main .policy_content_top h4, #policy main .policy_content h4, #policy main .policy_content_top h4 {
        font-size: 1.1rem;
        color: #fff;
        margin: 0 auto .6rem;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
      #home main .policy_content p, #home main .policy_content_top p, #race main .policy_content p, #race main .policy_content_top p, #hit main .policy_content p, #hit main .policy_content_top p, #shop main .policy_content p, #shop main .policy_content_top p, #mypage main .policy_content p, #mypage main .policy_content_top p, #policy main .policy_content p, #policy main .policy_content_top p {
        text-align: justify;
        font-size: 1rem;
        color: #fff;
        margin: 0 auto 3rem;
        width: 100%;
        line-height: 1.6;
        font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
      #home main .policy_content .policy_top, #home main .policy_content_top .policy_top, #race main .policy_content .policy_top, #race main .policy_content_top .policy_top, #hit main .policy_content .policy_top, #hit main .policy_content_top .policy_top, #shop main .policy_content .policy_top, #shop main .policy_content_top .policy_top, #mypage main .policy_content .policy_top, #mypage main .policy_content_top .policy_top, #policy main .policy_content .policy_top, #policy main .policy_content_top .policy_top {
        text-align: justify;
        font-size: 1.3rem;
        color: #fff;
        margin: 0 auto 3rem;
        width: 80%; }
      #home main .policy_content table, #home main .policy_content_top table, #race main .policy_content table, #race main .policy_content_top table, #hit main .policy_content table, #hit main .policy_content_top table, #shop main .policy_content table, #shop main .policy_content_top table, #mypage main .policy_content table, #mypage main .policy_content_top table, #policy main .policy_content table, #policy main .policy_content_top table {
        width: 800px;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.4); }
        #home main .policy_content table .tb_01, #home main .policy_content_top table .tb_01, #race main .policy_content table .tb_01, #race main .policy_content_top table .tb_01, #hit main .policy_content table .tb_01, #hit main .policy_content_top table .tb_01, #shop main .policy_content table .tb_01, #shop main .policy_content_top table .tb_01, #mypage main .policy_content table .tb_01, #mypage main .policy_content_top table .tb_01, #policy main .policy_content table .tb_01, #policy main .policy_content_top table .tb_01 {
          text-align: center;
          width: 150px;
          vertical-align: inherit; }
        #home main .policy_content table th, #home main .policy_content table td, #home main .policy_content_top table th, #home main .policy_content_top table td, #race main .policy_content table th, #race main .policy_content table td, #race main .policy_content_top table th, #race main .policy_content_top table td, #hit main .policy_content table th, #hit main .policy_content table td, #hit main .policy_content_top table th, #hit main .policy_content_top table td, #shop main .policy_content table th, #shop main .policy_content table td, #shop main .policy_content_top table th, #shop main .policy_content_top table td, #mypage main .policy_content table th, #mypage main .policy_content table td, #mypage main .policy_content_top table th, #mypage main .policy_content_top table td, #policy main .policy_content table th, #policy main .policy_content table td, #policy main .policy_content_top table th, #policy main .policy_content_top table td {
          color: #fff;
          font-weight: bold;
          padding: 2rem 1rem;
          border: 2px solid #fff; }
          #home main .policy_content table th p, #home main .policy_content table td p, #home main .policy_content_top table th p, #home main .policy_content_top table td p, #race main .policy_content table th p, #race main .policy_content table td p, #race main .policy_content_top table th p, #race main .policy_content_top table td p, #hit main .policy_content table th p, #hit main .policy_content table td p, #hit main .policy_content_top table th p, #hit main .policy_content_top table td p, #shop main .policy_content table th p, #shop main .policy_content table td p, #shop main .policy_content_top table th p, #shop main .policy_content_top table td p, #mypage main .policy_content table th p, #mypage main .policy_content table td p, #mypage main .policy_content_top table th p, #mypage main .policy_content_top table td p, #policy main .policy_content table th p, #policy main .policy_content table td p, #policy main .policy_content_top table th p, #policy main .policy_content_top table td p {
            font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }
          #home main .policy_content table th a, #home main .policy_content table td a, #home main .policy_content_top table th a, #home main .policy_content_top table td a, #race main .policy_content table th a, #race main .policy_content table td a, #race main .policy_content_top table th a, #race main .policy_content_top table td a, #hit main .policy_content table th a, #hit main .policy_content table td a, #hit main .policy_content_top table th a, #hit main .policy_content_top table td a, #shop main .policy_content table th a, #shop main .policy_content table td a, #shop main .policy_content_top table th a, #shop main .policy_content_top table td a, #mypage main .policy_content table th a, #mypage main .policy_content table td a, #mypage main .policy_content_top table th a, #mypage main .policy_content_top table td a, #policy main .policy_content table th a, #policy main .policy_content table td a, #policy main .policy_content_top table th a, #policy main .policy_content_top table td a {
            color: yellow;
            font-weight: bold; }
          #home main .policy_content table th a:hover, #home main .policy_content table td a:hover, #home main .policy_content_top table th a:hover, #home main .policy_content_top table td a:hover, #race main .policy_content table th a:hover, #race main .policy_content table td a:hover, #race main .policy_content_top table th a:hover, #race main .policy_content_top table td a:hover, #hit main .policy_content table th a:hover, #hit main .policy_content table td a:hover, #hit main .policy_content_top table th a:hover, #hit main .policy_content_top table td a:hover, #shop main .policy_content table th a:hover, #shop main .policy_content table td a:hover, #shop main .policy_content_top table th a:hover, #shop main .policy_content_top table td a:hover, #mypage main .policy_content table th a:hover, #mypage main .policy_content table td a:hover, #mypage main .policy_content_top table th a:hover, #mypage main .policy_content_top table td a:hover, #policy main .policy_content table th a:hover, #policy main .policy_content table td a:hover, #policy main .policy_content_top table th a:hover, #policy main .policy_content_top table td a:hover {
            color: red;
            transition: .3s; }
          #home main .policy_content table th .my_input_setting, #home main .policy_content table td .my_input_setting, #home main .policy_content_top table th .my_input_setting, #home main .policy_content_top table td .my_input_setting, #race main .policy_content table th .my_input_setting, #race main .policy_content table td .my_input_setting, #race main .policy_content_top table th .my_input_setting, #race main .policy_content_top table td .my_input_setting, #hit main .policy_content table th .my_input_setting, #hit main .policy_content table td .my_input_setting, #hit main .policy_content_top table th .my_input_setting, #hit main .policy_content_top table td .my_input_setting, #shop main .policy_content table th .my_input_setting, #shop main .policy_content table td .my_input_setting, #shop main .policy_content_top table th .my_input_setting, #shop main .policy_content_top table td .my_input_setting, #mypage main .policy_content table th .my_input_setting, #mypage main .policy_content table td .my_input_setting, #mypage main .policy_content_top table th .my_input_setting, #mypage main .policy_content_top table td .my_input_setting, #policy main .policy_content table th .my_input_setting, #policy main .policy_content table td .my_input_setting, #policy main .policy_content_top table th .my_input_setting, #policy main .policy_content_top table td .my_input_setting {
            width: 300px;
            line-height: 2;
            margin-bottom: .5rem; }
      #home main .policy_content .info_table, #home main .policy_content_top .info_table, #race main .policy_content .info_table, #race main .policy_content_top .info_table, #hit main .policy_content .info_table, #hit main .policy_content_top .info_table, #shop main .policy_content .info_table, #shop main .policy_content_top .info_table, #mypage main .policy_content .info_table, #mypage main .policy_content_top .info_table, #policy main .policy_content .info_table, #policy main .policy_content_top .info_table {
        margin: 0 auto 12rem; }
        #home main .policy_content .info_table a, #home main .policy_content_top .info_table a, #race main .policy_content .info_table a, #race main .policy_content_top .info_table a, #hit main .policy_content .info_table a, #hit main .policy_content_top .info_table a, #shop main .policy_content .info_table a, #shop main .policy_content_top .info_table a, #mypage main .policy_content .info_table a, #mypage main .policy_content_top .info_table a, #policy main .policy_content .info_table a, #policy main .policy_content_top .info_table a {
          color: #fff;
          font-weight: bold;
          font-size: 1.6rem; }
        #home main .policy_content .info_table a:hover, #home main .policy_content_top .info_table a:hover, #race main .policy_content .info_table a:hover, #race main .policy_content_top .info_table a:hover, #hit main .policy_content .info_table a:hover, #hit main .policy_content_top .info_table a:hover, #shop main .policy_content .info_table a:hover, #shop main .policy_content_top .info_table a:hover, #mypage main .policy_content .info_table a:hover, #mypage main .policy_content_top .info_table a:hover, #policy main .policy_content .info_table a:hover, #policy main .policy_content_top .info_table a:hover {
          color: yellow;
          transition: .5s; }
      #home main .policy_content .info_table_top, #home main .policy_content_top .info_table_top, #race main .policy_content .info_table_top, #race main .policy_content_top .info_table_top, #hit main .policy_content .info_table_top, #hit main .policy_content_top .info_table_top, #shop main .policy_content .info_table_top, #shop main .policy_content_top .info_table_top, #mypage main .policy_content .info_table_top, #mypage main .policy_content_top .info_table_top, #policy main .policy_content .info_table_top, #policy main .policy_content_top .info_table_top {
        margin: 0 auto 18rem; }
        #home main .policy_content .info_table_top a, #home main .policy_content_top .info_table_top a, #race main .policy_content .info_table_top a, #race main .policy_content_top .info_table_top a, #hit main .policy_content .info_table_top a, #hit main .policy_content_top .info_table_top a, #shop main .policy_content .info_table_top a, #shop main .policy_content_top .info_table_top a, #mypage main .policy_content .info_table_top a, #mypage main .policy_content_top .info_table_top a, #policy main .policy_content .info_table_top a, #policy main .policy_content_top .info_table_top a {
          color: #fff;
          font-weight: bold;
          font-size: 1.6rem; }
        #home main .policy_content .info_table_top a:hover, #home main .policy_content_top .info_table_top a:hover, #race main .policy_content .info_table_top a:hover, #race main .policy_content_top .info_table_top a:hover, #hit main .policy_content .info_table_top a:hover, #hit main .policy_content_top .info_table_top a:hover, #shop main .policy_content .info_table_top a:hover, #shop main .policy_content_top .info_table_top a:hover, #mypage main .policy_content .info_table_top a:hover, #mypage main .policy_content_top .info_table_top a:hover, #policy main .policy_content .info_table_top a:hover, #policy main .policy_content_top .info_table_top a:hover {
          color: yellow;
          transition: .5s; }
    #home main .policy_content_top, #race main .policy_content_top, #hit main .policy_content_top, #shop main .policy_content_top, #mypage main .policy_content_top, #policy main .policy_content_top {
      padding-bottom: 4rem; }

/* --------------------------------
 * backtop
 * -------------------------------- */
#backtop {
  display: block;
  position: fixed;
  z-index: 1111;
  right: 20px;
  bottom: -40px;
  width: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.5);
  transition: .5s;
  opacity: 0;
  visibility: hidden; }

#backtop.visible {
  opacity: 1;
  bottom: 100px;
  visibility: visible; }

.pc {
  display: block; }

.sp {
  display: none; }

/* SP -------------------------------------------*/
/* 全サイズ（共通） */
@media screen and (max-width: 767px) {
  .pc {
    display: none; }

  .sp {
    display: block; }

  body {
    width: 100%;
    min-width: inherit; }

  #toppage {
    /*end_header*/ }
    #toppage header {
      height: auto;
      background-color: rgba(0, 0, 0, 0.8);
      background-image: none; }
      #toppage header #header_cont {
        line-height: inherit;
        overflow: hidden; }
        #toppage header #header_cont #login_sp {
          padding: .8vw 0 .8vw;
          overflow: hidden; }
          #toppage header #header_cont #login_sp .fl_left {
            float: left;
            width: 43%; }
            #toppage header #header_cont #login_sp .fl_left h1 {
              width: 100%; }
              #toppage header #header_cont #login_sp .fl_left h1 img {
                padding: 0 0 0 .3vw; }
          #toppage header #header_cont #login_sp .fl_right {
            width: 56%;
            float: right;
            text-align: center;
            text-shadow: 1px 1px 2px #000;
            padding: 0 .3vw 0 0; }
            #toppage header #header_cont #login_sp .fl_right .login-tx {
              width: 100%;
              color: #fff;
              font-size: 3.2vw;
              line-height: 1;
              padding: 1vw; }
            #toppage header #header_cont #login_sp .fl_right .flexbox .login_line {
              flex-direction: row;
              line-height: 6vw;
              margin-right: 1%;
              width: 49%; }
              #toppage header #header_cont #login_sp .fl_right .flexbox .login_line a {
                color: #fff;
                background-color: #26ce00;
                border: 1.5px solid #cccccc;
                border-radius: 2px;
                height: 6vw;
                padding: 1vw .5vw;
                font-size: 3vw;
                font-weight: bold;
                box-shadow: 2px 2px 2px #000; }
                #toppage header #header_cont #login_sp .fl_right .flexbox .login_line a span {
                  font-size: 4vw !important;
                  font-weight: bold; }
            #toppage header #header_cont #login_sp .fl_right .flexbox .icon_login {
              flex-direction: row;
              padding: .3vw 0 1.7vw;
              background-color: rgba(0, 0, 0, 0.5);
              border: 1.5px solid #cccccc;
              border-radius: 2px;
              box-shadow: 2px 2px 2px #000;
              width: 49%;
              height: 6vw;
              line-height: .8; }
              #toppage header #header_cont #login_sp .fl_right .flexbox .icon_login span {
                color: #fff;
                font-size: 3vw;
                font-weight: bold;
                line-height: 1; }
          #toppage header #header_cont #login_sp #menu {
            overflow: hidden;
            width: 100%;
            clear: both; }
            #toppage header #header_cont #login_sp #menu #menuContent {
              display: none;
              margin: 0;
              padding: 2rem 0 1.5rem 0; }
              #toppage header #header_cont #login_sp #menu #menuContent .sns_login {
                width: 85%;
                margin: 0 auto .5rem;
                flex-wrap: wrap; }
                #toppage header #header_cont #login_sp #menu #menuContent .sns_login .icon_login_title {
                  width: 45%;
                  margin: 0.2rem auto !important;
                  color: #fff;
                  padding-top: 1%;
                  text-align: center;
                  font-size: .9rem;
                  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
                  line-height: 1.3;
                  font-weight: bold; }
                #toppage header #header_cont #login_sp #menu #menuContent .sns_login .icon_login {
                  width: 45%;
                  margin: 0.2rem auto !important; }
                  #toppage header #header_cont #login_sp #menu #menuContent .sns_login .icon_login a {
                    line-height: 2;
                    display: block;
                    padding: 7px;
                    text-align: center;
                    color: #fff;
                    font-size: 3.7vw;
                    font-weight: bold;
                    border: 2px solid #fff;
                    border-radius: 3px;
                    background-color: rgba(0, 0, 0, 0.3);
                    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"; }
                    #toppage header #header_cont #login_sp #menu #menuContent .sns_login .icon_login a img {
                      width: 7.5vw;
                      margin-right: 1rem; }
                  #toppage header #header_cont #login_sp #menu #menuContent .sns_login .icon_login a:hover {
                    color: yellow;
                    transition: .2s ease all;
                    border: 1px solid yellow; }
                #toppage header #header_cont #login_sp #menu #menuContent .sns_login .line_login a {
                  border: 2px solid 	#00B900;
                  color: #00B900;
                  background-color: #fff; }
              #toppage header #header_cont #login_sp #menu #menuContent .id, #toppage header #header_cont #login_sp #menu #menuContent .pass {
                width: 82%;
                margin: 0.2rem auto; }
                #toppage header #header_cont #login_sp #menu #menuContent .id input, #toppage header #header_cont #login_sp #menu #menuContent .pass input {
                  line-height: 2;
                  width: 95%;
                  border-radius: 5px;
                  padding: 2%;
                  margin: 0 auto; }
              #toppage header #header_cont #login_sp #menu #menuContent .login_btn {
                width: 82%;
                margin: 0 auto .5rem; }
                #toppage header #header_cont #login_sp #menu #menuContent .login_btn input {
                  line-height: 2;
                  width: 100%;
                  border-radius: 5px;
                  padding: 2%;
                  margin: 0 auto;
                  background: #00db00;
                  background: -moz-linear-gradient(#00e300 0%, #00e300 25%, #00e300 50%, #00ba09 51%, #00db00 100%);
                  background: -webkit-gradient(linear, left top, left bottom, from(#00e300), color-stop(25%, #00e300), color-stop(50%, #00e300), color-stop(51%, #00ba09), to(#00db00));
                  background: -webkit-linear-gradient(#00e300 0%, #00e300 25%, #00e300 50%, #00ba09 51%, #00db00 100%);
                  background: -o-linear-gradient(#00e300 0%, #00e300 25%, #00e300 50%, #00ba09 51%, #00db00 100%);
                  background: linear-gradient(#00e300 0%, #00e300 25%, #00e300 50%, #00ba09 51%, #00db00 100%); }
              #toppage header #header_cont #login_sp #menu #menuContent li {
                list-style-type: none;
                margin: 0 auto; }
    #toppage main {
      /*登録フォーム1*/
      /*STEP*/
      /*POINT*/
      /*決済方法*/
      /*的中実績*/
      /*口コミ*/
      /*end #reviews_content*/ }
      #toppage main #top_cont {
        margin-top: 15.5vw; }
      #toppage main #registration_content1, #toppage main #registration_content2 {
        padding: 24vw 0 10vw;
        margin-top: 0;
        width: 100%;
        margin: 0 auto; }
        #toppage main #registration_content1 .registration_content1_inner, #toppage main #registration_content2 .registration_content1_inner {
          width: 95%;
          max-width: inherit;
          min-width: inherit;
          padding: 1rem 0 1rem;
          margin: 0 auto 0;
          background-image: none; }
          #toppage main #registration_content1 .registration_content1_inner .mail_content, #toppage main #registration_content2 .registration_content1_inner .mail_content {
            margin: 1rem auto;
            width: 100%; }
            #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner {
              width: 100%;
              margin: 1rem auto;
              text-align: center; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .campaign, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .campaign {
                top: 3rem;
                height: auto;
                width: 100vw;
                left: 50%;
                transform: translateX(-50%); }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .regist_tx, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .regist_tx {
                width: 100%;
                margin: .5vw auto 0; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .regist_line, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .regist_line {
                cursor: pointer;
                text-shadow: 1px 1px 2px #000;
                font-size: 4vw;
                width: 95%;
                margin: 1rem auto; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .regist_line a span, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .regist_line a span {
                  font-size: 5vw;
                  margin-right: 1vw; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox {
                width: 100%;
                margin: .5rem auto 0;
                flex-wrap: wrap; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login {
                  margin: .5rem 2% 0 2%;
                  width: 45%; }
                  #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login img, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login img {
                    width: 7vw;
                    margin: 0 .5rem .25rem 0; }
                  #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login a, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login a {
                    width: 90%;
                    font-size: 3.7vw;
                    border: 2px solid #fff;
                    padding: .2rem .5rem; }
              #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry {
                width: 95%;
                margin: 3vw auto 0; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist {
                  font-size: 5vw; }
                  #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist .red, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist .red {
                    font-size: 6.5vw; }
                  #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist .h2_regist_b, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .h2_regist .h2_regist_b {
                    font-size: 6.5vw; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .mail_entry_tx, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .mail_entry_tx {
                  color: yellow;
                  font-size: 4vw;
                  font-weight: bold;
                  line-height: 1.5;
                  letter-spacing: 1.3px; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .mail_box, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .mail_box {
                  width: 95%;
                  padding: 1rem 0;
                  margin: .5rem 0 1rem 0;
                  border-radius: 5px;
                  border: none;
                  text-align: center;
                  font-size: 3.5vw; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .entry_btn, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .entry_btn {
                  width: 90%;
                  height: 18vw;
                  background-image: url("../img/top/regist_btn.png");
                  background-color: inherit;
                  background-repeat: no-repeat;
                  background-size: 100%;
                  -webkit-appearance: none;
                  cursor: pointer; }
                #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .caution1, #toppage main #registration_content2 .registration_content1_inner .mail_content .registration_inner .mail_entry .caution1 {
                  font-size: 4vw;
                  text-align: center;
                  margin: 3vw auto; }
      #toppage main #step_content {
        background-size: cover; }
        #toppage main #step_content .step_inner {
          width: 90%;
          padding: 3rem 0 5rem; }
          #toppage main #step_content .step_inner h2 {
            margin: 1rem auto 2rem;
            font-size: 6vw; }
            #toppage main #step_content .step_inner h2 img {
              width: 80%; }
          #toppage main #step_content .step_inner ul {
            width: 100%; }
            #toppage main #step_content .step_inner ul .step_li {
              padding: 1rem;
              border: 2px solid #c21500;
              border-image: linear-gradient(to right, #c21500 0%, #C2B900 20%, #49C200 40%, #0011C2 60%, #9300C2 80%, #C20071 100%);
              border-image-slice: 1; }
              #toppage main #step_content .step_inner ul .step_li .step_y {
                font-size: 5vw;
                margin: 0 .5rem 0 0; }
              #toppage main #step_content .step_inner ul .step_li .step_tx {
                font-size: 4vw;
                margin-left: inherit; }
      #toppage main #point_content {
        background-position: 30% center;
        background-attachment: scroll; }
        #toppage main #point_content h2 {
          width: 100%;
          padding-top: 1rem;
          margin-bottom: 1.5rem; }
          #toppage main #point_content h2 .point_h2 img {
            width: 100%; }
          #toppage main #point_content h2 .point_h2_Left_sp {
            position: absolute;
            width: 90vw;
            height: auto;
            left: 5%;
            top: 35%; }
          #toppage main #point_content h2 .point_h2_Right_sp {
            position: absolute;
            width: 60vw;
            height: auto;
            right: 5%;
            top: 50%; }
        #toppage main #point_content .point_inner .point_fadeup01 {
          background-image: url("../img/top/point_bg01_sp.jpg");
          width: 90%;
          height: auto;
          background-position: right center;
          margin-bottom: 4rem;
          box-shadow: 0 0 10px yellow; }
        #toppage main #point_content .point_inner .point_fadeup02 {
          background-image: url("../img/top/point_bg02_sp.jpg");
          width: 90%;
          height: auto;
          background-position: left center;
          margin-bottom: 4rem;
          box-shadow: 0 0 10px aqua; }
        #toppage main #point_content .point_inner .point_fadeup03 {
          background-image: url("../img/top/point_bg03_sp.jpg");
          width: 90%;
          height: auto;
          background-position: right center;
          margin-bottom: 4rem;
          box-shadow: 0 0 10px chartreuse; }
        #toppage main #point_content .point_inner .point_fadeup01 .point_inner01, #toppage main #point_content .point_inner .point_fadeup01 .point_inner02, #toppage main #point_content .point_inner .point_fadeup01 .point_inner03, #toppage main #point_content .point_inner .point_fadeup02 .point_inner01, #toppage main #point_content .point_inner .point_fadeup02 .point_inner02, #toppage main #point_content .point_inner .point_fadeup02 .point_inner03, #toppage main #point_content .point_inner .point_fadeup03 .point_inner01, #toppage main #point_content .point_inner .point_fadeup03 .point_inner02, #toppage main #point_content .point_inner .point_fadeup03 .point_inner03 {
          padding: 4vw 2vw; }
          #toppage main #point_content .point_inner .point_fadeup01 .point_inner01 h3, #toppage main #point_content .point_inner .point_fadeup01 .point_inner02 h3, #toppage main #point_content .point_inner .point_fadeup01 .point_inner03 h3, #toppage main #point_content .point_inner .point_fadeup02 .point_inner01 h3, #toppage main #point_content .point_inner .point_fadeup02 .point_inner02 h3, #toppage main #point_content .point_inner .point_fadeup02 .point_inner03 h3, #toppage main #point_content .point_inner .point_fadeup03 .point_inner01 h3, #toppage main #point_content .point_inner .point_fadeup03 .point_inner02 h3, #toppage main #point_content .point_inner .point_fadeup03 .point_inner03 h3 {
            font-size: 5.7vw;
            text-align: center; }
          #toppage main #point_content .point_inner .point_fadeup01 .point_inner01 p, #toppage main #point_content .point_inner .point_fadeup01 .point_inner02 p, #toppage main #point_content .point_inner .point_fadeup01 .point_inner03 p, #toppage main #point_content .point_inner .point_fadeup02 .point_inner01 p, #toppage main #point_content .point_inner .point_fadeup02 .point_inner02 p, #toppage main #point_content .point_inner .point_fadeup02 .point_inner03 p, #toppage main #point_content .point_inner .point_fadeup03 .point_inner01 p, #toppage main #point_content .point_inner .point_fadeup03 .point_inner02 p, #toppage main #point_content .point_inner .point_fadeup03 .point_inner03 p {
            width: 95%;
            margin: 1rem auto;
            font-size: 4.5vw; }
      #toppage main #payment_content {
        background-position: center center;
        padding: 3rem 0; }
        #toppage main #payment_content .payment_inner {
          width: 90%;
          margin: 0 auto;
          padding: 2rem 0; }
          #toppage main #payment_content .payment_inner h2 {
            width: 82%;
            padding-bottom: .3rem;
            margin: 1rem auto;
            color: #ffa200;
            font-size: 5vw;
            text-align: left; }
            #toppage main #payment_content .payment_inner h2 .payment_img {
              width: 3rem;
              margin-left: 5%; }
          #toppage main #payment_content .payment_inner .payment_tx {
            width: 82%; }
            #toppage main #payment_content .payment_inner .payment_tx h3 {
              font-size: 5vw; }
            #toppage main #payment_content .payment_inner .payment_tx p {
              margin-top: 1rem;
              color: #fff;
              font-size: 4vw;
              min-height: 1.3; }
      #toppage main #hit_content {
        background-attachment: scroll;
        padding: 4rem 0 1rem; }
        #toppage main #hit_content h2 {
          font-size: 7vw;
          margin-bottom: 1rem; }
          #toppage main #hit_content h2 img {
            width: 70%; }
        #toppage main #hit_content p {
          font-size: 5vw; }
        #toppage main #hit_content .hit_inner {
          width: 95%;
          margin: 2rem auto; }
        #toppage main #hit_content .hit_list {
          width: 100%; }
        #toppage main #hit_content .hit_list_img {
          width: 50%;
          margin: 0 0 1rem 0; }
        #toppage main #hit_content .hit_list_img_l {
          width: 50%;
          margin: 0 0 1rem 0; }
        #toppage main #hit_content .hit_day {
          font-size: 4.2vw;
          top: 20vw; }
        #toppage main #hit_content .hit_race {
          font-size: 4.2vw;
          top: 26.7vw; }
        #toppage main #hit_content .hit_buy {
          font-size: 4.2vw;
          top: 33.3vw; }
        #toppage main #hit_content .hit_price {
          font-size: 7vw;
          top: 39.7vw; }
      #toppage main #reviews_content {
        background-image: url("../img/top/comment_bg_sp.jpg");
        background-attachment: scroll;
        width: 100%; }
        #toppage main #reviews_content .contents_cover {
          width: 100%;
          background-color: rgba(0, 0, 7, 0.4);
          padding: 4rem 0; }
          #toppage main #reviews_content .contents_cover h2 {
            font-size: 7vw;
            margin-bottom: 2rem; }
            #toppage main #reviews_content .contents_cover h2 img {
              width: 70%; }
          #toppage main #reviews_content .contents_cover .comment {
            width: 80%;
            height: auto;
            margin: 4vw auto;
            padding: 5vw 3vw;
            font-size: 4vw;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.6); }
            #toppage main #reviews_content .contents_cover .comment .comment_left {
              width: 100%;
              margin-right: 0;
              float: inherit;
              display: none; }
            #toppage main #reviews_content .contents_cover .comment .comment_right {
              width: 95%;
              float: inherit; }
              #toppage main #reviews_content .contents_cover .comment .comment_right h3 {
                font-size: 4.5vw;
                border-bottom: 1px solid #fff;
                margin: 0 auto;
                line-height: 1.2;
                width: 95%; }
                #toppage main #reviews_content .contents_cover .comment .comment_right h3 .comment_name {
                  text-align: right;
                  font-size: 4vw;
                  margin: .5rem 0 .2rem; }
              #toppage main #reviews_content .contents_cover .comment .comment_right .comment_tx {
                text-align: justify;
                width: 95%;
                margin: 1rem auto 0;
                line-height: 1.6; }
          #toppage main #reviews_content .contents_cover .comment1 {
            border: 2px solid #ff006a; }
          #toppage main #reviews_content .contents_cover .comment2 {
            border: 2px solid #ff8900; }
          #toppage main #reviews_content .contents_cover .comment3 {
            border: 2px solid #fff100; }
          #toppage main #reviews_content .contents_cover .comment4 {
            border: 2px solid #20ff00; }
          #toppage main #reviews_content .contents_cover .comment5 {
            border: 2px solid #00bdff; }
    #toppage footer {
      padding: 6vw 0 20vw;
      z-index: 111111; }
      #toppage footer #link_footer {
        display: inherit; }
        #toppage footer #link_footer #footer_top {
          width: 98%;
          margin: 1rem auto;
          display: inherit; }
          #toppage footer #link_footer #footer_top li {
            padding: .5rem 0; }
          #toppage footer #link_footer #footer_top .flexitem a {
            font-size: 3vw; }
      #toppage footer .caution_content p {
        font-size: 3vw; }
      #toppage footer #footer_bottom p {
        font-size: 3vw;
        width: 90%;
        margin: .5rem auto; }
    #toppage #registration_button {
      position: fixed;
      width: 100%; }
      #toppage #registration_button .registration_img {
        width: 100%;
        min-width: inherit; }

  /*end_#toppage*/
  /*背景*/
  #page_top {
    background-image: none; }

  #page_top::before {
    background-image: repeating-linear-gradient(-50deg, #000, #000 10px, transparent 0, transparent 20px);
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh; }

  #page {
    background-image: none; }

  #page::before {
    background-image: url("../img/sp/sp_bg.jpg");
    background-image: no-repeat;
    background-image: center;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh; }

  #page_lp {
    background-image: none; }

  #page_lp::before {
    background-image: url("../img/sp/lp_bg_sp.jpg");
    background-image: no-repeat;
    background-image: center;
    background-size: cover;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh; }

  /*各ページ共通--------------------------*/
  #page_top, #page, #page_lp {
    /*footer*/ }
    #page_top footer, #page footer, #page_lp footer {
      padding: 0 0 4rem;
      z-index: 111111;
      border-top: 1px solid gray;
      background-image: url("../img/footer/footer_bg.jpg");
      /*スマホボタン*/ }
      #page_top footer #sp_footer, #page footer #sp_footer, #page_lp footer #sp_footer {
        width: 100%;
        position: fixed;
        bottom: 0;
        background-image: url("../img/footer/footer_sp_bg.jpg");
        background-size: cover;
        background-position: center center; }
      #page_top footer #link_footer #footer_top, #page footer #link_footer #footer_top, #page_lp footer #link_footer #footer_top {
        width: 98%;
        margin: 1rem auto;
        display: inherit; }
        #page_top footer #link_footer #footer_top .flexitem, #page footer #link_footer #footer_top .flexitem, #page_lp footer #link_footer #footer_top .flexitem {
          padding: .3rem; }
          #page_top footer #link_footer #footer_top .flexitem a, #page footer #link_footer #footer_top .flexitem a, #page_lp footer #link_footer #footer_top .flexitem a {
            font-size: .8rem; }
      #page_top footer #link_footer #footer_bottom p, #page footer #link_footer #footer_bottom p, #page_lp footer #link_footer #footer_bottom p {
        font-size: .8rem;
        line-height: 1.5; }
      #page_top footer .caution_content, #page footer .caution_content, #page_lp footer .caution_content {
        font-size: .8rem; }
    #page_top .footer_welcome, #page .footer_welcome, #page_lp .footer_welcome {
      padding: 1rem 0 !important;
      margin-top: 0; }

  #backtop {
    right: 0;
    bottom: 0;
    width: 30px;
    line-height: 30px;
    font-size: 20px; }

  #backtop.visible {
    bottom: 30vw; }

  /*各ページ------------------------------------------------------------------------*/
  #home, #hit, #shop, #policy, #mypage {
    margin-bottom: 0; }

  #home, #race, #hit, #shop, #policy, #mypage {
    /*end_main*/ }
    #home header, #race header, #hit header, #shop header, #policy header, #mypage header {
      width: 100%;
      min-width: inherit;
      height: auto;
      position: inherit;
      z-index: 11111;
      /*end header_cont*/ }
      #home header #header_cont, #race header #header_cont, #hit header #header_cont, #shop header #header_cont, #policy header #header_cont, #mypage header #header_cont {
        line-height: 5rem;
        font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        /*sp_メニュー*/ }
        #home header #header_cont #sp_nav h1, #race header #header_cont #sp_nav h1, #hit header #header_cont #sp_nav h1, #shop header #header_cont #sp_nav h1, #policy header #header_cont #sp_nav h1, #mypage header #header_cont #sp_nav h1 {
          width: 50%;
          line-height: 1.5;
          padding: 0;
          display: inline-block;
          float: left; }
      #home header #header_bottom, #race header #header_bottom, #hit header #header_bottom, #shop header #header_bottom, #policy header #header_bottom, #mypage header #header_bottom {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.4);
        line-height: 1; }
        #home header #header_bottom .marquee, #race header #header_bottom .marquee, #hit header #header_bottom .marquee, #shop header #header_bottom .marquee, #policy header #header_bottom .marquee, #mypage header #header_bottom .marquee {
          font-size: 1.2rem; }
    #home main, #race main, #hit main, #shop main, #policy main, #mypage main {
      padding-top: 0;
      /*home*/
      /*お問い合わせ*/
      /*予想*/
      /*LP*/
      /*買い目*/
      /*的中実績*/
      /*マイページ*/
      /*fin_top_content*/
      /*fin_content*/
      /*メールボックス*/
      /*メールボックス メッセージ本文表示*/
      /*shop用 top_content*/
      /*SHOP*/
      /*shop table*/
      /*各規約ページ*/ }
      #home main #top_cont, #race main #top_cont, #hit main #top_cont, #shop main #top_cont, #policy main #top_cont, #mypage main #top_cont {
        text-align: center; }
        #home main #top_cont .h2_home, #race main #top_cont .h2_home, #hit main #top_cont .h2_home, #shop main #top_cont .h2_home, #policy main #top_cont .h2_home, #mypage main #top_cont .h2_home {
          width: 100%;
          min-width: inherit;
          margin: 0 auto;
          padding: 0; }
        #home main #top_cont .h2_page, #race main #top_cont .h2_page, #hit main #top_cont .h2_page, #shop main #top_cont .h2_page, #policy main #top_cont .h2_page, #mypage main #top_cont .h2_page {
          width: 100%;
          min-width: inherit;
          margin: 2rem auto;
          padding: 0;
          text-align: center; }
          #home main #top_cont .h2_page img, #race main #top_cont .h2_page img, #hit main #top_cont .h2_page img, #shop main #top_cont .h2_page img, #policy main #top_cont .h2_page img, #mypage main #top_cont .h2_page img {
            height: 5rem; }
        #home main #top_cont p, #race main #top_cont p, #hit main #top_cont p, #shop main #top_cont p, #policy main #top_cont p, #mypage main #top_cont p {
          text-align: center;
          font-size: 1rem;
          color: #fff;
          width: 80%;
          padding: 0; }
        #home main #top_cont .fs11, #race main #top_cont .fs11, #hit main #top_cont .fs11, #shop main #top_cont .fs11, #policy main #top_cont .fs11, #mypage main #top_cont .fs11 {
          font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
          margin-top: 2rem;
          margin-bottom: 2rem;
          width: 90%;
          font-size: 1.2rem;
          line-height: 1.5; }
      #home main .main_content, #race main .main_content, #hit main .main_content, #shop main .main_content, #policy main .main_content, #mypage main .main_content {
        width: 100%;
        margin: 1.5rem auto 4rem; }
        #home main .main_content ul li a img, #race main .main_content ul li a img, #hit main .main_content ul li a img, #shop main .main_content ul li a img, #policy main .main_content ul li a img, #mypage main .main_content ul li a img {
          width: 100%;
          margin: 0 auto; }
        #home main .main_content .info-bannar_cont, #home main .main_content .bannar_cont, #race main .main_content .info-bannar_cont, #race main .main_content .bannar_cont, #hit main .main_content .info-bannar_cont, #hit main .main_content .bannar_cont, #shop main .main_content .info-bannar_cont, #shop main .main_content .bannar_cont, #policy main .main_content .info-bannar_cont, #policy main .main_content .bannar_cont, #mypage main .main_content .info-bannar_cont, #mypage main .main_content .bannar_cont {
          flex-wrap: wrap;
          width: 90%;
          margin: 0 auto;
          text-align: center; }
          #home main .main_content .info-bannar_cont li, #home main .main_content .bannar_cont li, #race main .main_content .info-bannar_cont li, #race main .main_content .bannar_cont li, #hit main .main_content .info-bannar_cont li, #hit main .main_content .bannar_cont li, #shop main .main_content .info-bannar_cont li, #shop main .main_content .bannar_cont li, #policy main .main_content .info-bannar_cont li, #policy main .main_content .bannar_cont li, #mypage main .main_content .info-bannar_cont li, #mypage main .main_content .bannar_cont li {
            width: 100%;
            margin: 1rem auto; }
          #home main .main_content .info-bannar_cont li:first-child, #home main .main_content .bannar_cont li:first-child, #race main .main_content .info-bannar_cont li:first-child, #race main .main_content .bannar_cont li:first-child, #hit main .main_content .info-bannar_cont li:first-child, #hit main .main_content .bannar_cont li:first-child, #shop main .main_content .info-bannar_cont li:first-child, #shop main .main_content .bannar_cont li:first-child, #policy main .main_content .info-bannar_cont li:first-child, #policy main .main_content .bannar_cont li:first-child, #mypage main .main_content .info-bannar_cont li:first-child, #mypage main .main_content .bannar_cont li:first-child {
            margin: 0 auto 1rem; }
          #home main .main_content .info-bannar_cont li:nth-child(2), #home main .main_content .info-bannar_cont li:nth-child(4), #home main .main_content .info-bannar_cont li:nth-child(6), #home main .main_content .info-bannar_cont li:nth-child(8), #home main .main_content .info-bannar_cont li:nth-child(10), #home main .main_content .info-bannar_cont li:nth-child(12), #home main .main_content .info-bannar_cont li:nth-child(14), #home main .main_content .info-bannar_cont li:nth-child(16), #home main .main_content .info-bannar_cont li:nth-child(18), #home main .main_content .info-bannar_cont li:nth-child(20), #home main .main_content .bannar_cont li:nth-child(2), #home main .main_content .bannar_cont li:nth-child(4), #home main .main_content .bannar_cont li:nth-child(6), #home main .main_content .bannar_cont li:nth-child(8), #home main .main_content .bannar_cont li:nth-child(10), #home main .main_content .bannar_cont li:nth-child(12), #home main .main_content .bannar_cont li:nth-child(14), #home main .main_content .bannar_cont li:nth-child(16), #home main .main_content .bannar_cont li:nth-child(18), #home main .main_content .bannar_cont li:nth-child(20), #race main .main_content .info-bannar_cont li:nth-child(2), #race main .main_content .info-bannar_cont li:nth-child(4), #race main .main_content .info-bannar_cont li:nth-child(6), #race main .main_content .info-bannar_cont li:nth-child(8), #race main .main_content .info-bannar_cont li:nth-child(10), #race main .main_content .info-bannar_cont li:nth-child(12), #race main .main_content .info-bannar_cont li:nth-child(14), #race main .main_content .info-bannar_cont li:nth-child(16), #race main .main_content .info-bannar_cont li:nth-child(18), #race main .main_content .info-bannar_cont li:nth-child(20), #race main .main_content .bannar_cont li:nth-child(2), #race main .main_content .bannar_cont li:nth-child(4), #race main .main_content .bannar_cont li:nth-child(6), #race main .main_content .bannar_cont li:nth-child(8), #race main .main_content .bannar_cont li:nth-child(10), #race main .main_content .bannar_cont li:nth-child(12), #race main .main_content .bannar_cont li:nth-child(14), #race main .main_content .bannar_cont li:nth-child(16), #race main .main_content .bannar_cont li:nth-child(18), #race main .main_content .bannar_cont li:nth-child(20), #hit main .main_content .info-bannar_cont li:nth-child(2), #hit main .main_content .info-bannar_cont li:nth-child(4), #hit main .main_content .info-bannar_cont li:nth-child(6), #hit main .main_content .info-bannar_cont li:nth-child(8), #hit main .main_content .info-bannar_cont li:nth-child(10), #hit main .main_content .info-bannar_cont li:nth-child(12), #hit main .main_content .info-bannar_cont li:nth-child(14), #hit main .main_content .info-bannar_cont li:nth-child(16), #hit main .main_content .info-bannar_cont li:nth-child(18), #hit main .main_content .info-bannar_cont li:nth-child(20), #hit main .main_content .bannar_cont li:nth-child(2), #hit main .main_content .bannar_cont li:nth-child(4), #hit main .main_content .bannar_cont li:nth-child(6), #hit main .main_content .bannar_cont li:nth-child(8), #hit main .main_content .bannar_cont li:nth-child(10), #hit main .main_content .bannar_cont li:nth-child(12), #hit main .main_content .bannar_cont li:nth-child(14), #hit main .main_content .bannar_cont li:nth-child(16), #hit main .main_content .bannar_cont li:nth-child(18), #hit main .main_content .bannar_cont li:nth-child(20), #shop main .main_content .info-bannar_cont li:nth-child(2), #shop main .main_content .info-bannar_cont li:nth-child(4), #shop main .main_content .info-bannar_cont li:nth-child(6), #shop main .main_content .info-bannar_cont li:nth-child(8), #shop main .main_content .info-bannar_cont li:nth-child(10), #shop main .main_content .info-bannar_cont li:nth-child(12), #shop main .main_content .info-bannar_cont li:nth-child(14), #shop main .main_content .info-bannar_cont li:nth-child(16), #shop main .main_content .info-bannar_cont li:nth-child(18), #shop main .main_content .info-bannar_cont li:nth-child(20), #shop main .main_content .bannar_cont li:nth-child(2), #shop main .main_content .bannar_cont li:nth-child(4), #shop main .main_content .bannar_cont li:nth-child(6), #shop main .main_content .bannar_cont li:nth-child(8), #shop main .main_content .bannar_cont li:nth-child(10), #shop main .main_content .bannar_cont li:nth-child(12), #shop main .main_content .bannar_cont li:nth-child(14), #shop main .main_content .bannar_cont li:nth-child(16), #shop main .main_content .bannar_cont li:nth-child(18), #shop main .main_content .bannar_cont li:nth-child(20), #policy main .main_content .info-bannar_cont li:nth-child(2), #policy main .main_content .info-bannar_cont li:nth-child(4), #policy main .main_content .info-bannar_cont li:nth-child(6), #policy main .main_content .info-bannar_cont li:nth-child(8), #policy main .main_content .info-bannar_cont li:nth-child(10), #policy main .main_content .info-bannar_cont li:nth-child(12), #policy main .main_content .info-bannar_cont li:nth-child(14), #policy main .main_content .info-bannar_cont li:nth-child(16), #policy main .main_content .info-bannar_cont li:nth-child(18), #policy main .main_content .info-bannar_cont li:nth-child(20), #policy main .main_content .bannar_cont li:nth-child(2), #policy main .main_content .bannar_cont li:nth-child(4), #policy main .main_content .bannar_cont li:nth-child(6), #policy main .main_content .bannar_cont li:nth-child(8), #policy main .main_content .bannar_cont li:nth-child(10), #policy main .main_content .bannar_cont li:nth-child(12), #policy main .main_content .bannar_cont li:nth-child(14), #policy main .main_content .bannar_cont li:nth-child(16), #policy main .main_content .bannar_cont li:nth-child(18), #policy main .main_content .bannar_cont li:nth-child(20), #mypage main .main_content .info-bannar_cont li:nth-child(2), #mypage main .main_content .info-bannar_cont li:nth-child(4), #mypage main .main_content .info-bannar_cont li:nth-child(6), #mypage main .main_content .info-bannar_cont li:nth-child(8), #mypage main .main_content .info-bannar_cont li:nth-child(10), #mypage main .main_content .info-bannar_cont li:nth-child(12), #mypage main .main_content .info-bannar_cont li:nth-child(14), #mypage main .main_content .info-bannar_cont li:nth-child(16), #mypage main .main_content .info-bannar_cont li:nth-child(18), #mypage main .main_content .info-bannar_cont li:nth-child(20), #mypage main .main_content .bannar_cont li:nth-child(2), #mypage main .main_content .bannar_cont li:nth-child(4), #mypage main .main_content .bannar_cont li:nth-child(6), #mypage main .main_content .bannar_cont li:nth-child(8), #mypage main .main_content .bannar_cont li:nth-child(10), #mypage main .main_content .bannar_cont li:nth-child(12), #mypage main .main_content .bannar_cont li:nth-child(14), #mypage main .main_content .bannar_cont li:nth-child(16), #mypage main .main_content .bannar_cont li:nth-child(18), #mypage main .main_content .bannar_cont li:nth-child(20) {
            margin: 0 auto; }
        #home main .main_content .race_yoso, #race main .main_content .race_yoso, #hit main .main_content .race_yoso, #shop main .main_content .race_yoso, #policy main .main_content .race_yoso, #mypage main .main_content .race_yoso {
          width: 90%;
          margin: 0 auto;
          display: inherit; }
          #home main .main_content .race_yoso li, #race main .main_content .race_yoso li, #hit main .main_content .race_yoso li, #shop main .main_content .race_yoso li, #policy main .main_content .race_yoso li, #mypage main .main_content .race_yoso li {
            margin-bottom: 0; }
      #home main .info_content, #race main .info_content, #hit main .info_content, #shop main .info_content, #policy main .info_content, #mypage main .info_content {
        width: 90%;
        margin: 2rem auto;
        padding: 0; }
        #home main .info_content dl, #race main .info_content dl, #hit main .info_content dl, #shop main .info_content dl, #policy main .info_content dl, #mypage main .info_content dl {
          width: 90%; }
          #home main .info_content dl dt, #home main .info_content dl dd, #race main .info_content dl dt, #race main .info_content dl dd, #hit main .info_content dl dt, #hit main .info_content dl dd, #shop main .info_content dl dt, #shop main .info_content dl dd, #policy main .info_content dl dt, #policy main .info_content dl dd, #mypage main .info_content dl dt, #mypage main .info_content dl dd {
            font-size: 1.2rem; }
            #home main .info_content dl dt textarea, #home main .info_content dl dd textarea, #race main .info_content dl dt textarea, #race main .info_content dl dd textarea, #hit main .info_content dl dt textarea, #hit main .info_content dl dd textarea, #shop main .info_content dl dt textarea, #shop main .info_content dl dd textarea, #policy main .info_content dl dt textarea, #policy main .info_content dl dd textarea, #mypage main .info_content dl dt textarea, #mypage main .info_content dl dd textarea {
              width: 100%;
              padding: .5rem 0; }
        #home main .info_content p, #race main .info_content p, #hit main .info_content p, #shop main .info_content p, #policy main .info_content p, #mypage main .info_content p {
          font-size: 1rem; }
        #home main .info_content .btn, #race main .info_content .btn, #hit main .info_content .btn, #shop main .info_content .btn, #policy main .info_content .btn, #mypage main .info_content .btn {
          width: 40%;
          margin: 1rem 0; }
      #home main .race_content ul, #race main .race_content ul, #hit main .race_content ul, #shop main .race_content ul, #policy main .race_content ul, #mypage main .race_content ul {
        width: 90%;
        margin: 2rem auto 4rem;
        display: inherit; }
        #home main .race_content ul .yoso_img, #home main .race_content ul .yoso_img1, #race main .race_content ul .yoso_img, #race main .race_content ul .yoso_img1, #hit main .race_content ul .yoso_img, #hit main .race_content ul .yoso_img1, #shop main .race_content ul .yoso_img, #shop main .race_content ul .yoso_img1, #policy main .race_content ul .yoso_img, #policy main .race_content ul .yoso_img1, #mypage main .race_content ul .yoso_img, #mypage main .race_content ul .yoso_img1 {
          width: 100%;
          height: auto;
          margin: 0 auto .5rem; }
          #home main .race_content ul .yoso_img a .yoso_date, #home main .race_content ul .yoso_img1 a .yoso_date, #race main .race_content ul .yoso_img a .yoso_date, #race main .race_content ul .yoso_img1 a .yoso_date, #hit main .race_content ul .yoso_img a .yoso_date, #hit main .race_content ul .yoso_img1 a .yoso_date, #shop main .race_content ul .yoso_img a .yoso_date, #shop main .race_content ul .yoso_img1 a .yoso_date, #policy main .race_content ul .yoso_img a .yoso_date, #policy main .race_content ul .yoso_img1 a .yoso_date, #mypage main .race_content ul .yoso_img a .yoso_date, #mypage main .race_content ul .yoso_img1 a .yoso_date {
            width: 80vw;
            top: 20.3vw;
            left: 5vw; }
          #home main .race_content ul .yoso_img a .yoso_race, #home main .race_content ul .yoso_img1 a .yoso_race, #race main .race_content ul .yoso_img a .yoso_race, #race main .race_content ul .yoso_img1 a .yoso_race, #hit main .race_content ul .yoso_img a .yoso_race, #hit main .race_content ul .yoso_img1 a .yoso_race, #shop main .race_content ul .yoso_img a .yoso_race, #shop main .race_content ul .yoso_img1 a .yoso_race, #policy main .race_content ul .yoso_img a .yoso_race, #policy main .race_content ul .yoso_img1 a .yoso_race, #mypage main .race_content ul .yoso_img a .yoso_race, #mypage main .race_content ul .yoso_img1 a .yoso_race {
            width: 80vw;
            top: 27.3vw;
            left: 5vw; }
          #home main .race_content ul .yoso_img a .yoso_comment, #home main .race_content ul .yoso_img1 a .yoso_comment, #race main .race_content ul .yoso_img a .yoso_comment, #race main .race_content ul .yoso_img1 a .yoso_comment, #hit main .race_content ul .yoso_img a .yoso_comment, #hit main .race_content ul .yoso_img1 a .yoso_comment, #shop main .race_content ul .yoso_img a .yoso_comment, #shop main .race_content ul .yoso_img1 a .yoso_comment, #policy main .race_content ul .yoso_img a .yoso_comment, #policy main .race_content ul .yoso_img1 a .yoso_comment, #mypage main .race_content ul .yoso_img a .yoso_comment, #mypage main .race_content ul .yoso_img1 a .yoso_comment {
            width: 80vw;
            font-size: .7rem;
            top: 35.2vw;
            left: 5vw; }
        #home main .race_content ul .yoso_img2, #race main .race_content ul .yoso_img2, #hit main .race_content ul .yoso_img2, #shop main .race_content ul .yoso_img2, #policy main .race_content ul .yoso_img2, #mypage main .race_content ul .yoso_img2 {
          position: absolute;
          top: 3.2vw;
          right: 3.2vw;
          width: 39vw;
          height: auto; }
      #home main .race_content_lp, #race main .race_content_lp, #hit main .race_content_lp, #shop main .race_content_lp, #policy main .race_content_lp, #mypage main .race_content_lp {
        width: 100%;
        margin: 0 auto; }
        #home main .race_content_lp .race_lp_buy, #race main .race_content_lp .race_lp_buy, #hit main .race_content_lp .race_lp_buy, #shop main .race_content_lp .race_lp_buy, #policy main .race_content_lp .race_lp_buy, #mypage main .race_content_lp .race_lp_buy {
          width: 100%; }
          #home main .race_content_lp .race_lp_buy .race_buy_day, #race main .race_content_lp .race_lp_buy .race_buy_day, #hit main .race_content_lp .race_lp_buy .race_buy_day, #shop main .race_content_lp .race_lp_buy .race_buy_day, #policy main .race_content_lp .race_lp_buy .race_buy_day, #mypage main .race_content_lp .race_lp_buy .race_buy_day {
            font-size: 5vw;
            top: 35%;
            left: 15vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day, #race main .race_content_lp .race_lp_list .race_lp_list_day, #hit main .race_content_lp .race_lp_list .race_lp_list_day, #shop main .race_content_lp .race_lp_list .race_lp_list_day, #policy main .race_content_lp .race_lp_list .race_lp_list_day, #mypage main .race_content_lp .race_lp_list .race_lp_list_day {
          color: #fff;
          font-size: 4.5vw;
          left: 8.5vw;
          width: 26vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day01, #race main .race_content_lp .race_lp_list .race_lp_list_day01, #hit main .race_content_lp .race_lp_list .race_lp_list_day01, #shop main .race_content_lp .race_lp_list .race_lp_list_day01, #policy main .race_content_lp .race_lp_list .race_lp_list_day01, #mypage main .race_content_lp .race_lp_list .race_lp_list_day01 {
          top: 33vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day02, #race main .race_content_lp .race_lp_list .race_lp_list_day02, #hit main .race_content_lp .race_lp_list .race_lp_list_day02, #shop main .race_content_lp .race_lp_list .race_lp_list_day02, #policy main .race_content_lp .race_lp_list .race_lp_list_day02, #mypage main .race_content_lp .race_lp_list .race_lp_list_day02 {
          top: 54.5vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day03, #race main .race_content_lp .race_lp_list .race_lp_list_day03, #hit main .race_content_lp .race_lp_list .race_lp_list_day03, #shop main .race_content_lp .race_lp_list .race_lp_list_day03, #policy main .race_content_lp .race_lp_list .race_lp_list_day03, #mypage main .race_content_lp .race_lp_list .race_lp_list_day03 {
          top: 76vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day04, #race main .race_content_lp .race_lp_list .race_lp_list_day04, #hit main .race_content_lp .race_lp_list .race_lp_list_day04, #shop main .race_content_lp .race_lp_list .race_lp_list_day04, #policy main .race_content_lp .race_lp_list .race_lp_list_day04, #mypage main .race_content_lp .race_lp_list .race_lp_list_day04 {
          top: 97.5vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_day05, #race main .race_content_lp .race_lp_list .race_lp_list_day05, #hit main .race_content_lp .race_lp_list .race_lp_list_day05, #shop main .race_content_lp .race_lp_list .race_lp_list_day05, #policy main .race_content_lp .race_lp_list .race_lp_list_day05, #mypage main .race_content_lp .race_lp_list .race_lp_list_day05 {
          top: 118.5vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race, #race main .race_content_lp .race_lp_list .race_lp_list_race, #hit main .race_content_lp .race_lp_list .race_lp_list_race, #shop main .race_content_lp .race_lp_list .race_lp_list_race, #policy main .race_content_lp .race_lp_list .race_lp_list_race, #mypage main .race_content_lp .race_lp_list .race_lp_list_race {
          font-size: 4.5vw;
          left: 36vw;
          width: 56vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race01, #race main .race_content_lp .race_lp_list .race_lp_list_race01, #hit main .race_content_lp .race_lp_list .race_lp_list_race01, #shop main .race_content_lp .race_lp_list .race_lp_list_race01, #policy main .race_content_lp .race_lp_list .race_lp_list_race01, #mypage main .race_content_lp .race_lp_list .race_lp_list_race01 {
          top: 29vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race02, #race main .race_content_lp .race_lp_list .race_lp_list_race02, #hit main .race_content_lp .race_lp_list .race_lp_list_race02, #shop main .race_content_lp .race_lp_list .race_lp_list_race02, #policy main .race_content_lp .race_lp_list .race_lp_list_race02, #mypage main .race_content_lp .race_lp_list .race_lp_list_race02 {
          top: 50vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race03, #race main .race_content_lp .race_lp_list .race_lp_list_race03, #hit main .race_content_lp .race_lp_list .race_lp_list_race03, #shop main .race_content_lp .race_lp_list .race_lp_list_race03, #policy main .race_content_lp .race_lp_list .race_lp_list_race03, #mypage main .race_content_lp .race_lp_list .race_lp_list_race03 {
          top: 72vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race04, #race main .race_content_lp .race_lp_list .race_lp_list_race04, #hit main .race_content_lp .race_lp_list .race_lp_list_race04, #shop main .race_content_lp .race_lp_list .race_lp_list_race04, #policy main .race_content_lp .race_lp_list .race_lp_list_race04, #mypage main .race_content_lp .race_lp_list .race_lp_list_race04 {
          top: 93vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_race05, #race main .race_content_lp .race_lp_list .race_lp_list_race05, #hit main .race_content_lp .race_lp_list .race_lp_list_race05, #shop main .race_content_lp .race_lp_list .race_lp_list_race05, #policy main .race_content_lp .race_lp_list .race_lp_list_race05, #mypage main .race_content_lp .race_lp_list .race_lp_list_race05 {
          top: 115vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result, #race main .race_content_lp .race_lp_list .race_lp_list_result, #hit main .race_content_lp .race_lp_list .race_lp_list_result, #shop main .race_content_lp .race_lp_list .race_lp_list_result, #policy main .race_content_lp .race_lp_list .race_lp_list_result, #mypage main .race_content_lp .race_lp_list .race_lp_list_result {
          font-size: 7vw;
          left: 36vw;
          width: 56vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result01, #race main .race_content_lp .race_lp_list .race_lp_list_result01, #hit main .race_content_lp .race_lp_list .race_lp_list_result01, #shop main .race_content_lp .race_lp_list .race_lp_list_result01, #policy main .race_content_lp .race_lp_list .race_lp_list_result01, #mypage main .race_content_lp .race_lp_list .race_lp_list_result01 {
          top: 36.5vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result02, #race main .race_content_lp .race_lp_list .race_lp_list_result02, #hit main .race_content_lp .race_lp_list .race_lp_list_result02, #shop main .race_content_lp .race_lp_list .race_lp_list_result02, #policy main .race_content_lp .race_lp_list .race_lp_list_result02, #mypage main .race_content_lp .race_lp_list .race_lp_list_result02 {
          top: 57vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result03, #race main .race_content_lp .race_lp_list .race_lp_list_result03, #hit main .race_content_lp .race_lp_list .race_lp_list_result03, #shop main .race_content_lp .race_lp_list .race_lp_list_result03, #policy main .race_content_lp .race_lp_list .race_lp_list_result03, #mypage main .race_content_lp .race_lp_list .race_lp_list_result03 {
          top: 79vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result04, #race main .race_content_lp .race_lp_list .race_lp_list_result04, #hit main .race_content_lp .race_lp_list .race_lp_list_result04, #shop main .race_content_lp .race_lp_list .race_lp_list_result04, #policy main .race_content_lp .race_lp_list .race_lp_list_result04, #mypage main .race_content_lp .race_lp_list .race_lp_list_result04 {
          top: 100vw; }
        #home main .race_content_lp .race_lp_list .race_lp_list_result05, #race main .race_content_lp .race_lp_list .race_lp_list_result05, #hit main .race_content_lp .race_lp_list .race_lp_list_result05, #shop main .race_content_lp .race_lp_list .race_lp_list_result05, #policy main .race_content_lp .race_lp_list .race_lp_list_result05, #mypage main .race_content_lp .race_lp_list .race_lp_list_result05 {
          top: 122vw; }
      #home main .race_buy, #race main .race_buy, #hit main .race_buy, #shop main .race_buy, #policy main .race_buy, #mypage main .race_buy {
        margin: 1rem auto 2rem;
        width: 98%;
        border: none;
        padding: 0 0 2%;
        background-color: inherit; }
        #home main .race_buy h3 img, #race main .race_buy h3 img, #hit main .race_buy h3 img, #shop main .race_buy h3 img, #policy main .race_buy h3 img, #mypage main .race_buy h3 img {
          height: 3.5rem; }
        #home main .race_buy .buy_list, #race main .race_buy .buy_list, #hit main .race_buy .buy_list, #shop main .race_buy .buy_list, #policy main .race_buy .buy_list, #mypage main .race_buy .buy_list {
          text-align: center; }
          #home main .race_buy .buy_list ul li, #race main .race_buy .buy_list ul li, #hit main .race_buy .buy_list ul li, #shop main .race_buy .buy_list ul li, #policy main .race_buy .buy_list ul li, #mypage main .race_buy .buy_list ul li {
            margin-bottom: 1rem; }
            #home main .race_buy .buy_list ul li p, #race main .race_buy .buy_list ul li p, #hit main .race_buy .buy_list ul li p, #shop main .race_buy .buy_list ul li p, #policy main .race_buy .buy_list ul li p, #mypage main .race_buy .buy_list ul li p {
              font-size: 1rem;
              margin: 1rem auto 0;
              width: 80%; }
          #home main .race_buy .buy_list img, #race main .race_buy .buy_list img, #hit main .race_buy .buy_list img, #shop main .race_buy .buy_list img, #policy main .race_buy .buy_list img, #mypage main .race_buy .buy_list img {
            width: 80%;
            margin: 0 auto; }
      #home main .hit_content .hit_item, #race main .hit_content .hit_item, #hit main .hit_content .hit_item, #shop main .hit_content .hit_item, #policy main .hit_content .hit_item, #mypage main .hit_content .hit_item {
        width: 100%; }
      #home main .hit_content .hit_list, #race main .hit_content .hit_list, #hit main .hit_content .hit_list, #shop main .hit_content .hit_list, #policy main .hit_content .hit_list, #mypage main .hit_content .hit_list {
        width: 100%; }
      #home main .hit_content .hit_list_img, #race main .hit_content .hit_list_img, #hit main .hit_content .hit_list_img, #shop main .hit_content .hit_list_img, #policy main .hit_content .hit_list_img, #mypage main .hit_content .hit_list_img {
        width: 50%;
        margin: 0 auto; }
      #home main .hit_content .hit_list_img_l, #race main .hit_content .hit_list_img_l, #hit main .hit_content .hit_list_img_l, #shop main .hit_content .hit_list_img_l, #policy main .hit_content .hit_list_img_l, #mypage main .hit_content .hit_list_img_l {
        width: 50%;
        margin: 0 auto; }
      #home main .hit_content .hit_day, #race main .hit_content .hit_day, #hit main .hit_content .hit_day, #shop main .hit_content .hit_day, #policy main .hit_content .hit_day, #mypage main .hit_content .hit_day {
        font-size: 4vw;
        top: 20vw; }
      #home main .hit_content .hit_race, #race main .hit_content .hit_race, #hit main .hit_content .hit_race, #shop main .hit_content .hit_race, #policy main .hit_content .hit_race, #mypage main .hit_content .hit_race {
        font-size: 4vw;
        top: 26.5vw; }
      #home main .hit_content .hit_buy, #race main .hit_content .hit_buy, #hit main .hit_content .hit_buy, #shop main .hit_content .hit_buy, #policy main .hit_content .hit_buy, #mypage main .hit_content .hit_buy {
        font-size: 4.5vw;
        top: 32.8vw; }
      #home main .hit_content .hit_price, #race main .hit_content .hit_price, #hit main .hit_content .hit_price, #shop main .hit_content .hit_price, #policy main .hit_content .hit_price, #mypage main .hit_content .hit_price {
        font-size: 7vw;
        top: 40vw; }
      #home main .mypage_content, #race main .mypage_content, #hit main .mypage_content, #shop main .mypage_content, #policy main .mypage_content, #mypage main .mypage_content {
        width: 95%;
        margin: 1.5rem auto 3rem; }
        #home main .mypage_content img, #race main .mypage_content img, #hit main .mypage_content img, #shop main .mypage_content img, #policy main .mypage_content img, #mypage main .mypage_content img {
          width: 100%; }
        #home main .mypage_content p, #race main .mypage_content p, #hit main .mypage_content p, #shop main .mypage_content p, #policy main .mypage_content p, #mypage main .mypage_content p {
          font-size: 5vw; }
        #home main .mypage_content .mypage_setting, #race main .mypage_content .mypage_setting, #hit main .mypage_content .mypage_setting, #shop main .mypage_content .mypage_setting, #policy main .mypage_content .mypage_setting, #mypage main .mypage_content .mypage_setting {
          margin: 0 auto;
          width: 95%; }
          #home main .mypage_content .mypage_setting li, #race main .mypage_content .mypage_setting li, #hit main .mypage_content .mypage_setting li, #shop main .mypage_content .mypage_setting li, #policy main .mypage_content .mypage_setting li, #mypage main .mypage_content .mypage_setting li {
            padding: 0.5rem 0; }
          #home main .mypage_content .mypage_setting .fl_left, #race main .mypage_content .mypage_setting .fl_left, #hit main .mypage_content .mypage_setting .fl_left, #shop main .mypage_content .mypage_setting .fl_left, #policy main .mypage_content .mypage_setting .fl_left, #mypage main .mypage_content .mypage_setting .fl_left {
            width: 100%;
            float: inherit;
            text-align: center; }
          #home main .mypage_content .mypage_setting .fl_right, #race main .mypage_content .mypage_setting .fl_right, #hit main .mypage_content .mypage_setting .fl_right, #shop main .mypage_content .mypage_setting .fl_right, #policy main .mypage_content .mypage_setting .fl_right, #mypage main .mypage_content .mypage_setting .fl_right {
            width: 100%;
            float: inherit;
            padding-left: 0; }
          #home main .mypage_content .mypage_setting input, #race main .mypage_content .mypage_setting input, #hit main .mypage_content .mypage_setting input, #shop main .mypage_content .mypage_setting input, #policy main .mypage_content .mypage_setting input, #mypage main .mypage_content .mypage_setting input {
            width: 97%;
            line-height: 3;
            padding-left: 0;
            background-color: rgba(255, 255, 255, 0.8); }
        #home main .mypage_content .id_cont .id_no, #race main .mypage_content .id_cont .id_no, #hit main .mypage_content .id_cont .id_no, #shop main .mypage_content .id_cont .id_no, #policy main .mypage_content .id_cont .id_no, #mypage main .mypage_content .id_cont .id_no {
          font-size: 6.5vw;
          top: 5vw;
          left: 38%;
          width: 47vw; }
        #home main .mypage_content .id_cont .id_point, #race main .mypage_content .id_cont .id_point, #hit main .mypage_content .id_cont .id_point, #shop main .mypage_content .id_cont .id_point, #policy main .mypage_content .id_cont .id_point, #mypage main .mypage_content .id_cont .id_point {
          width: 40vw;
          top: 19vw;
          left: 29vw;
          font-size: 6vw; }
        #home main .mypage_content .mypage_mail li a img, #race main .mypage_content .mypage_mail li a img, #hit main .mypage_content .mypage_mail li a img, #shop main .mypage_content .mypage_mail li a img, #policy main .mypage_content .mypage_mail li a img, #mypage main .mypage_content .mypage_mail li a img {
          height: 14vw; }
        #home main .mypage_content .toroku a img, #race main .mypage_content .toroku a img, #hit main .mypage_content .toroku a img, #shop main .mypage_content .toroku a img, #policy main .mypage_content .toroku a img, #mypage main .mypage_content .toroku a img {
          width: auto;
          height: 14vw; }
      #home main #fin_top_cont h2, #race main #fin_top_cont h2, #hit main #fin_top_cont h2, #shop main #fin_top_cont h2, #policy main #fin_top_cont h2, #mypage main #fin_top_cont h2 {
        font-size: 1.6rem;
        margin: 3rem auto 1rem; }
      #home main #fin_top_cont .fin_tx, #race main #fin_top_cont .fin_tx, #hit main #fin_top_cont .fin_tx, #shop main #fin_top_cont .fin_tx, #policy main #fin_top_cont .fin_tx, #mypage main #fin_top_cont .fin_tx {
        font-size: 5vw;
        width: 90%; }
      #home main #fin_top_cont .fin_logout a, #race main #fin_top_cont .fin_logout a, #hit main #fin_top_cont .fin_logout a, #shop main #fin_top_cont .fin_logout a, #policy main #fin_top_cont .fin_logout a, #mypage main #fin_top_cont .fin_logout a {
        font-size: 5vw;
        width: 80%;
        margin: 1rem auto; }
        #home main #fin_top_cont .fin_logout a img, #race main #fin_top_cont .fin_logout a img, #hit main #fin_top_cont .fin_logout a img, #shop main #fin_top_cont .fin_logout a img, #policy main #fin_top_cont .fin_logout a img, #mypage main #fin_top_cont .fin_logout a img {
          width: 8.2vw;
          padding: 0 .8vw .6vw; }
      #home main .fin_content, #race main .fin_content, #hit main .fin_content, #shop main .fin_content, #policy main .fin_content, #mypage main .fin_content {
        width: 100%; }
        #home main .fin_content table, #race main .fin_content table, #hit main .fin_content table, #shop main .fin_content table, #policy main .fin_content table, #mypage main .fin_content table {
          width: 95%; }
          #home main .fin_content table .td1, #race main .fin_content table .td1, #hit main .fin_content table .td1, #shop main .fin_content table .td1, #policy main .fin_content table .td1, #mypage main .fin_content table .td1 {
            width: 30%; }
          #home main .fin_content table th, #home main .fin_content table td, #race main .fin_content table th, #race main .fin_content table td, #hit main .fin_content table th, #hit main .fin_content table td, #shop main .fin_content table th, #shop main .fin_content table td, #policy main .fin_content table th, #policy main .fin_content table td, #mypage main .fin_content table th, #mypage main .fin_content table td {
            font-size: .8rem;
            padding: 1.5rem .5rem; }
            #home main .fin_content table th .my_input_setting, #home main .fin_content table td .my_input_setting, #race main .fin_content table th .my_input_setting, #race main .fin_content table td .my_input_setting, #hit main .fin_content table th .my_input_setting, #hit main .fin_content table td .my_input_setting, #shop main .fin_content table th .my_input_setting, #shop main .fin_content table td .my_input_setting, #policy main .fin_content table th .my_input_setting, #policy main .fin_content table td .my_input_setting, #mypage main .fin_content table th .my_input_setting, #mypage main .fin_content table td .my_input_setting {
              width: 80%; }
        #home main .fin_content .fin_tx02, #race main .fin_content .fin_tx02, #hit main .fin_content .fin_tx02, #shop main .fin_content .fin_tx02, #policy main .fin_content .fin_tx02, #mypage main .fin_content .fin_tx02 {
          font-size: 5vw;
          width: 90%; }
      #home main .mailbox_content .mail_content, #race main .mailbox_content .mail_content, #hit main .mailbox_content .mail_content, #shop main .mailbox_content .mail_content, #policy main .mailbox_content .mail_content, #mypage main .mailbox_content .mail_content {
        width: 85%;
        margin: 1.5rem auto 4rem;
        padding: 0;
        background-color: inherit; }
        #home main .mailbox_content .mail_content .new_message, #race main .mailbox_content .mail_content .new_message, #hit main .mailbox_content .mail_content .new_message, #shop main .mailbox_content .mail_content .new_message, #policy main .mailbox_content .mail_content .new_message, #mypage main .mailbox_content .mail_content .new_message {
          width: 100%;
          margin: 0 auto; }
          #home main .mailbox_content .mail_content .new_message img, #race main .mailbox_content .mail_content .new_message img, #hit main .mailbox_content .mail_content .new_message img, #shop main .mailbox_content .mail_content .new_message img, #policy main .mailbox_content .mail_content .new_message img, #mypage main .mailbox_content .mail_content .new_message img {
            height: 14vw; }
        #home main .mailbox_content .mail_content .mail a ul .message, #race main .mailbox_content .mail_content .mail a ul .message, #hit main .mailbox_content .mail_content .mail a ul .message, #shop main .mailbox_content .mail_content .mail a ul .message, #policy main .mailbox_content .mail_content .mail a ul .message, #mypage main .mailbox_content .mail_content .mail a ul .message {
          font-size: 4.5vw; }
        #home main .mailbox_content .mail_content .mail a ul .read, #race main .mailbox_content .mail_content .mail a ul .read, #hit main .mailbox_content .mail_content .mail a ul .read, #shop main .mailbox_content .mail_content .mail a ul .read, #policy main .mailbox_content .mail_content .mail a ul .read, #mypage main .mailbox_content .mail_content .mail a ul .read {
          font-size: 4vw; }
        #home main .mailbox_content .mail_content .mail a ul .mail_time, #race main .mailbox_content .mail_content .mail a ul .mail_time, #hit main .mailbox_content .mail_content .mail a ul .mail_time, #shop main .mailbox_content .mail_content .mail a ul .mail_time, #policy main .mailbox_content .mail_content .mail a ul .mail_time, #mypage main .mailbox_content .mail_content .mail a ul .mail_time {
          font-size: 4vw; }
      #home main .mailbox_message .message_content, #race main .mailbox_message .message_content, #hit main .mailbox_message .message_content, #shop main .mailbox_message .message_content, #policy main .mailbox_message .message_content, #mypage main .mailbox_message .message_content {
        width: 85%;
        margin: 1.5rem auto 4rem;
        padding: 0;
        background-color: inherit; }
        #home main .mailbox_message .message_content .message_title ul .title, #race main .mailbox_message .message_content .message_title ul .title, #hit main .mailbox_message .message_content .message_title ul .title, #shop main .mailbox_message .message_content .message_title ul .title, #policy main .mailbox_message .message_content .message_title ul .title, #mypage main .mailbox_message .message_content .message_title ul .title {
          font-size: 4.5vw; }
        #home main .mailbox_message .message_content .message_title ul .mail_time, #race main .mailbox_message .message_content .message_title ul .mail_time, #hit main .mailbox_message .message_content .message_title ul .mail_time, #shop main .mailbox_message .message_content .message_title ul .mail_time, #policy main .mailbox_message .message_content .message_title ul .mail_time, #mypage main .mailbox_message .message_content .message_title ul .mail_time {
          font-size: 4vw;
          margin-bottom: 1rem; }
        #home main .mailbox_message .message_content .message, #race main .mailbox_message .message_content .message, #hit main .mailbox_message .message_content .message, #shop main .mailbox_message .message_content .message, #policy main .mailbox_message .message_content .message, #mypage main .mailbox_message .message_content .message {
          font-size: 4.5vw;
          line-height: 1.5; }
      #home main #shop_top_cont h2, #race main #shop_top_cont h2, #hit main #shop_top_cont h2, #shop main #shop_top_cont h2, #policy main #shop_top_cont h2, #mypage main #shop_top_cont h2 {
        width: 100%;
        font-size: 2rem;
        margin: 3rem auto; }
        #home main #shop_top_cont h2 img, #race main #shop_top_cont h2 img, #hit main #shop_top_cont h2 img, #shop main #shop_top_cont h2 img, #policy main #shop_top_cont h2 img, #mypage main #shop_top_cont h2 img {
          width: auto;
          height: 10vw;
          margin: 0 0.7rem 0.5rem 0; }
      #home main .shop_content, #race main .shop_content, #hit main .shop_content, #shop main .shop_content, #policy main .shop_content, #mypage main .shop_content {
        margin: 1.5rem auto 4rem; }
        #home main .shop_content .shop_point_banner, #race main .shop_content .shop_point_banner, #hit main .shop_content .shop_point_banner, #shop main .shop_content .shop_point_banner, #policy main .shop_content .shop_point_banner, #mypage main .shop_content .shop_point_banner {
          width: 80%; }
        #home main .shop_content h2, #race main .shop_content h2, #hit main .shop_content h2, #shop main .shop_content h2, #policy main .shop_content h2, #mypage main .shop_content h2 {
          font-size: 7vw; }
        #home main .shop_content h3, #race main .shop_content h3, #hit main .shop_content h3, #shop main .shop_content h3, #policy main .shop_content h3, #mypage main .shop_content h3 {
          font-size: 6vw; }
        #home main .shop_content ul, #race main .shop_content ul, #hit main .shop_content ul, #shop main .shop_content ul, #policy main .shop_content ul, #mypage main .shop_content ul {
          width: 95%; }
          #home main .shop_content ul .shop_button .shop_point, #race main .shop_content ul .shop_button .shop_point, #hit main .shop_content ul .shop_button .shop_point, #shop main .shop_content ul .shop_button .shop_point, #policy main .shop_content ul .shop_button .shop_point, #mypage main .shop_content ul .shop_button .shop_point {
            font-size: 2.2rem;
            top: 8vw;
            left: 27vw;
            width: 30vw; }
          #home main .shop_content ul .shop_button .shop_price, #race main .shop_content ul .shop_button .shop_price, #hit main .shop_content ul .shop_button .shop_price, #shop main .shop_content ul .shop_button .shop_price, #policy main .shop_content ul .shop_button .shop_price, #mypage main .shop_content ul .shop_button .shop_price {
            font-size: 1.2rem;
            bottom: 8vw;
            left: 27vw;
            width: 40vw; }
        #home main .shop_content .shop_pay .shop_bank a, #race main .shop_content .shop_pay .shop_bank a, #hit main .shop_content .shop_pay .shop_bank a, #shop main .shop_content .shop_pay .shop_bank a, #policy main .shop_content .shop_pay .shop_bank a, #mypage main .shop_content .shop_pay .shop_bank a {
          font-size: 6vw; }
        #home main .shop_content .shop_pay .shop_card a, #race main .shop_content .shop_pay .shop_card a, #hit main .shop_content .shop_pay .shop_card a, #shop main .shop_content .shop_pay .shop_card a, #policy main .shop_content .shop_pay .shop_card a, #mypage main .shop_content .shop_pay .shop_card a {
          font-size: 6vw; }
        #home main .shop_content .shop_pay .shop_tx, #race main .shop_content .shop_pay .shop_tx, #hit main .shop_content .shop_pay .shop_tx, #shop main .shop_content .shop_pay .shop_tx, #policy main .shop_content .shop_pay .shop_tx, #mypage main .shop_content .shop_pay .shop_tx {
          width: 90%;
          margin: 0 auto 2rem;
          line-height: 1.5; }
      #home main .shoptransfer_content table, #home main .shoptransfer_fin_content table, #race main .shoptransfer_content table, #race main .shoptransfer_fin_content table, #hit main .shoptransfer_content table, #hit main .shoptransfer_fin_content table, #shop main .shoptransfer_content table, #shop main .shoptransfer_fin_content table, #policy main .shoptransfer_content table, #policy main .shoptransfer_fin_content table, #mypage main .shoptransfer_content table, #mypage main .shoptransfer_fin_content table {
        width: 90%; }
        #home main .shoptransfer_content table tbody .td1, #home main .shoptransfer_fin_content table tbody .td1, #race main .shoptransfer_content table tbody .td1, #race main .shoptransfer_fin_content table tbody .td1, #hit main .shoptransfer_content table tbody .td1, #hit main .shoptransfer_fin_content table tbody .td1, #shop main .shoptransfer_content table tbody .td1, #shop main .shoptransfer_fin_content table tbody .td1, #policy main .shoptransfer_content table tbody .td1, #policy main .shoptransfer_fin_content table tbody .td1, #mypage main .shoptransfer_content table tbody .td1, #mypage main .shoptransfer_fin_content table tbody .td1 {
          width: 30%; }
        #home main .shoptransfer_content table tbody th, #home main .shoptransfer_content table tbody td, #home main .shoptransfer_fin_content table tbody th, #home main .shoptransfer_fin_content table tbody td, #race main .shoptransfer_content table tbody th, #race main .shoptransfer_content table tbody td, #race main .shoptransfer_fin_content table tbody th, #race main .shoptransfer_fin_content table tbody td, #hit main .shoptransfer_content table tbody th, #hit main .shoptransfer_content table tbody td, #hit main .shoptransfer_fin_content table tbody th, #hit main .shoptransfer_fin_content table tbody td, #shop main .shoptransfer_content table tbody th, #shop main .shoptransfer_content table tbody td, #shop main .shoptransfer_fin_content table tbody th, #shop main .shoptransfer_fin_content table tbody td, #policy main .shoptransfer_content table tbody th, #policy main .shoptransfer_content table tbody td, #policy main .shoptransfer_fin_content table tbody th, #policy main .shoptransfer_fin_content table tbody td, #mypage main .shoptransfer_content table tbody th, #mypage main .shoptransfer_content table tbody td, #mypage main .shoptransfer_fin_content table tbody th, #mypage main .shoptransfer_fin_content table tbody td {
          padding: 2rem .5rem;
          font-size: .8rem; }
          #home main .shoptransfer_content table tbody th .my_input_setting, #home main .shoptransfer_content table tbody td .my_input_setting, #home main .shoptransfer_fin_content table tbody th .my_input_setting, #home main .shoptransfer_fin_content table tbody td .my_input_setting, #race main .shoptransfer_content table tbody th .my_input_setting, #race main .shoptransfer_content table tbody td .my_input_setting, #race main .shoptransfer_fin_content table tbody th .my_input_setting, #race main .shoptransfer_fin_content table tbody td .my_input_setting, #hit main .shoptransfer_content table tbody th .my_input_setting, #hit main .shoptransfer_content table tbody td .my_input_setting, #hit main .shoptransfer_fin_content table tbody th .my_input_setting, #hit main .shoptransfer_fin_content table tbody td .my_input_setting, #shop main .shoptransfer_content table tbody th .my_input_setting, #shop main .shoptransfer_content table tbody td .my_input_setting, #shop main .shoptransfer_fin_content table tbody th .my_input_setting, #shop main .shoptransfer_fin_content table tbody td .my_input_setting, #policy main .shoptransfer_content table tbody th .my_input_setting, #policy main .shoptransfer_content table tbody td .my_input_setting, #policy main .shoptransfer_fin_content table tbody th .my_input_setting, #policy main .shoptransfer_fin_content table tbody td .my_input_setting, #mypage main .shoptransfer_content table tbody th .my_input_setting, #mypage main .shoptransfer_content table tbody td .my_input_setting, #mypage main .shoptransfer_fin_content table tbody th .my_input_setting, #mypage main .shoptransfer_fin_content table tbody td .my_input_setting {
            width: 100%; }
      #home main .shoptransfer_content .bank_report, #home main .shoptransfer_content .credit_report, #home main .shoptransfer_fin_content .bank_report, #home main .shoptransfer_fin_content .credit_report, #race main .shoptransfer_content .bank_report, #race main .shoptransfer_content .credit_report, #race main .shoptransfer_fin_content .bank_report, #race main .shoptransfer_fin_content .credit_report, #hit main .shoptransfer_content .bank_report, #hit main .shoptransfer_content .credit_report, #hit main .shoptransfer_fin_content .bank_report, #hit main .shoptransfer_fin_content .credit_report, #shop main .shoptransfer_content .bank_report, #shop main .shoptransfer_content .credit_report, #shop main .shoptransfer_fin_content .bank_report, #shop main .shoptransfer_fin_content .credit_report, #policy main .shoptransfer_content .bank_report, #policy main .shoptransfer_content .credit_report, #policy main .shoptransfer_fin_content .bank_report, #policy main .shoptransfer_fin_content .credit_report, #mypage main .shoptransfer_content .bank_report, #mypage main .shoptransfer_content .credit_report, #mypage main .shoptransfer_fin_content .bank_report, #mypage main .shoptransfer_fin_content .credit_report {
        width: 80%; }
        #home main .shoptransfer_content .bank_report input, #home main .shoptransfer_content .credit_report input, #home main .shoptransfer_fin_content .bank_report input, #home main .shoptransfer_fin_content .credit_report input, #race main .shoptransfer_content .bank_report input, #race main .shoptransfer_content .credit_report input, #race main .shoptransfer_fin_content .bank_report input, #race main .shoptransfer_fin_content .credit_report input, #hit main .shoptransfer_content .bank_report input, #hit main .shoptransfer_content .credit_report input, #hit main .shoptransfer_fin_content .bank_report input, #hit main .shoptransfer_fin_content .credit_report input, #shop main .shoptransfer_content .bank_report input, #shop main .shoptransfer_content .credit_report input, #shop main .shoptransfer_fin_content .bank_report input, #shop main .shoptransfer_fin_content .credit_report input, #policy main .shoptransfer_content .bank_report input, #policy main .shoptransfer_content .credit_report input, #policy main .shoptransfer_fin_content .bank_report input, #policy main .shoptransfer_fin_content .credit_report input, #mypage main .shoptransfer_content .bank_report input, #mypage main .shoptransfer_content .credit_report input, #mypage main .shoptransfer_fin_content .bank_report input, #mypage main .shoptransfer_fin_content .credit_report input {
          font-size: 1rem; }
      #home main .shoptransfer_content .shoptransfer_caution, #home main .shoptransfer_fin_content .shoptransfer_caution, #race main .shoptransfer_content .shoptransfer_caution, #race main .shoptransfer_fin_content .shoptransfer_caution, #hit main .shoptransfer_content .shoptransfer_caution, #hit main .shoptransfer_fin_content .shoptransfer_caution, #shop main .shoptransfer_content .shoptransfer_caution, #shop main .shoptransfer_fin_content .shoptransfer_caution, #policy main .shoptransfer_content .shoptransfer_caution, #policy main .shoptransfer_fin_content .shoptransfer_caution, #mypage main .shoptransfer_content .shoptransfer_caution, #mypage main .shoptransfer_fin_content .shoptransfer_caution {
        width: 90%; }
      #home main .shoptransfer_content .shop_fin_h2, #home main .shoptransfer_fin_content .shop_fin_h2, #race main .shoptransfer_content .shop_fin_h2, #race main .shoptransfer_fin_content .shop_fin_h2, #hit main .shoptransfer_content .shop_fin_h2, #hit main .shoptransfer_fin_content .shop_fin_h2, #shop main .shoptransfer_content .shop_fin_h2, #shop main .shoptransfer_fin_content .shop_fin_h2, #policy main .shoptransfer_content .shop_fin_h2, #policy main .shoptransfer_fin_content .shop_fin_h2, #mypage main .shoptransfer_content .shop_fin_h2, #mypage main .shoptransfer_fin_content .shop_fin_h2 {
        width: 90%;
        font-size: 1.6rem; }
      #home main .shoptransfer_content .shop_fin_tx, #home main .shoptransfer_fin_content .shop_fin_tx, #race main .shoptransfer_content .shop_fin_tx, #race main .shoptransfer_fin_content .shop_fin_tx, #hit main .shoptransfer_content .shop_fin_tx, #hit main .shoptransfer_fin_content .shop_fin_tx, #shop main .shoptransfer_content .shop_fin_tx, #shop main .shoptransfer_fin_content .shop_fin_tx, #policy main .shoptransfer_content .shop_fin_tx, #policy main .shoptransfer_fin_content .shop_fin_tx, #mypage main .shoptransfer_content .shop_fin_tx, #mypage main .shoptransfer_fin_content .shop_fin_tx {
        width: 90%;
        font-size: 1.1rem; }
      #home main .policy_content, #home main .policy_content_top, #race main .policy_content, #race main .policy_content_top, #hit main .policy_content, #hit main .policy_content_top, #shop main .policy_content, #shop main .policy_content_top, #policy main .policy_content, #policy main .policy_content_top, #mypage main .policy_content, #mypage main .policy_content_top {
        width: 100%;
        margin: 1.5rem auto 2rem; }
        #home main .policy_content h2, #home main .policy_content_top h2, #race main .policy_content h2, #race main .policy_content_top h2, #hit main .policy_content h2, #hit main .policy_content_top h2, #shop main .policy_content h2, #shop main .policy_content_top h2, #policy main .policy_content h2, #policy main .policy_content_top h2, #mypage main .policy_content h2, #mypage main .policy_content_top h2 {
          width: 90%;
          font-size: 6.5vw;
          margin: 3rem auto 2rem; }
        #home main .policy_content h3, #home main .policy_content_top h3, #race main .policy_content h3, #race main .policy_content_top h3, #hit main .policy_content h3, #hit main .policy_content_top h3, #shop main .policy_content h3, #shop main .policy_content_top h3, #policy main .policy_content h3, #policy main .policy_content_top h3, #mypage main .policy_content h3, #mypage main .policy_content_top h3 {
          width: 85%;
          font-size: 4.5vw;
          margin: 0 auto .3rem; }
        #home main .policy_content h4, #home main .policy_content_top h4, #race main .policy_content h4, #race main .policy_content_top h4, #hit main .policy_content h4, #hit main .policy_content_top h4, #shop main .policy_content h4, #shop main .policy_content_top h4, #policy main .policy_content h4, #policy main .policy_content_top h4, #mypage main .policy_content h4, #mypage main .policy_content_top h4 {
          width: 85%;
          font-size: 1rem; }
        #home main .policy_content p, #home main .policy_content_top p, #race main .policy_content p, #race main .policy_content_top p, #hit main .policy_content p, #hit main .policy_content_top p, #shop main .policy_content p, #shop main .policy_content_top p, #policy main .policy_content p, #policy main .policy_content_top p, #mypage main .policy_content p, #mypage main .policy_content_top p {
          width: 85%;
          font-size: 4vw; }
        #home main .policy_content .policy_top, #home main .policy_content_top .policy_top, #race main .policy_content .policy_top, #race main .policy_content_top .policy_top, #hit main .policy_content .policy_top, #hit main .policy_content_top .policy_top, #shop main .policy_content .policy_top, #shop main .policy_content_top .policy_top, #policy main .policy_content .policy_top, #policy main .policy_content_top .policy_top, #mypage main .policy_content .policy_top, #mypage main .policy_content_top .policy_top {
          width: 85%;
          font-size: 5vw; }
        #home main .policy_content table, #home main .policy_content_top table, #race main .policy_content table, #race main .policy_content_top table, #hit main .policy_content table, #hit main .policy_content_top table, #shop main .policy_content table, #shop main .policy_content_top table, #policy main .policy_content table, #policy main .policy_content_top table, #mypage main .policy_content table, #mypage main .policy_content_top table {
          width: 95%; }
          #home main .policy_content table .tb_01, #home main .policy_content_top table .tb_01, #race main .policy_content table .tb_01, #race main .policy_content_top table .tb_01, #hit main .policy_content table .tb_01, #hit main .policy_content_top table .tb_01, #shop main .policy_content table .tb_01, #shop main .policy_content_top table .tb_01, #policy main .policy_content table .tb_01, #policy main .policy_content_top table .tb_01, #mypage main .policy_content table .tb_01, #mypage main .policy_content_top table .tb_01 {
            width: 30%; }
          #home main .policy_content table th, #home main .policy_content table td, #home main .policy_content_top table th, #home main .policy_content_top table td, #race main .policy_content table th, #race main .policy_content table td, #race main .policy_content_top table th, #race main .policy_content_top table td, #hit main .policy_content table th, #hit main .policy_content table td, #hit main .policy_content_top table th, #hit main .policy_content_top table td, #shop main .policy_content table th, #shop main .policy_content table td, #shop main .policy_content_top table th, #shop main .policy_content_top table td, #policy main .policy_content table th, #policy main .policy_content table td, #policy main .policy_content_top table th, #policy main .policy_content_top table td, #mypage main .policy_content table th, #mypage main .policy_content table td, #mypage main .policy_content_top table th, #mypage main .policy_content_top table td {
            font-size: 3.5vw;
            padding: 1.5rem .5rem; }
            #home main .policy_content table th .my_input_setting, #home main .policy_content table td .my_input_setting, #home main .policy_content_top table th .my_input_setting, #home main .policy_content_top table td .my_input_setting, #race main .policy_content table th .my_input_setting, #race main .policy_content table td .my_input_setting, #race main .policy_content_top table th .my_input_setting, #race main .policy_content_top table td .my_input_setting, #hit main .policy_content table th .my_input_setting, #hit main .policy_content table td .my_input_setting, #hit main .policy_content_top table th .my_input_setting, #hit main .policy_content_top table td .my_input_setting, #shop main .policy_content table th .my_input_setting, #shop main .policy_content table td .my_input_setting, #shop main .policy_content_top table th .my_input_setting, #shop main .policy_content_top table td .my_input_setting, #policy main .policy_content table th .my_input_setting, #policy main .policy_content table td .my_input_setting, #policy main .policy_content_top table th .my_input_setting, #policy main .policy_content_top table td .my_input_setting, #mypage main .policy_content table th .my_input_setting, #mypage main .policy_content table td .my_input_setting, #mypage main .policy_content_top table th .my_input_setting, #mypage main .policy_content_top table td .my_input_setting {
              width: 80%; }
        #home main .policy_content .info_table, #home main .policy_content .info_tabe_top, #home main .policy_content_top .info_table, #home main .policy_content_top .info_tabe_top, #race main .policy_content .info_table, #race main .policy_content .info_tabe_top, #race main .policy_content_top .info_table, #race main .policy_content_top .info_tabe_top, #hit main .policy_content .info_table, #hit main .policy_content .info_tabe_top, #hit main .policy_content_top .info_table, #hit main .policy_content_top .info_tabe_top, #shop main .policy_content .info_table, #shop main .policy_content .info_tabe_top, #shop main .policy_content_top .info_table, #shop main .policy_content_top .info_tabe_top, #policy main .policy_content .info_table, #policy main .policy_content .info_tabe_top, #policy main .policy_content_top .info_table, #policy main .policy_content_top .info_tabe_top, #mypage main .policy_content .info_table, #mypage main .policy_content .info_tabe_top, #mypage main .policy_content_top .info_table, #mypage main .policy_content_top .info_tabe_top {
          margin: 0 auto; }
          #home main .policy_content .info_table a, #home main .policy_content .info_tabe_top a, #home main .policy_content_top .info_table a, #home main .policy_content_top .info_tabe_top a, #race main .policy_content .info_table a, #race main .policy_content .info_tabe_top a, #race main .policy_content_top .info_table a, #race main .policy_content_top .info_tabe_top a, #hit main .policy_content .info_table a, #hit main .policy_content .info_tabe_top a, #hit main .policy_content_top .info_table a, #hit main .policy_content_top .info_tabe_top a, #shop main .policy_content .info_table a, #shop main .policy_content .info_tabe_top a, #shop main .policy_content_top .info_table a, #shop main .policy_content_top .info_tabe_top a, #policy main .policy_content .info_table a, #policy main .policy_content .info_tabe_top a, #policy main .policy_content_top .info_table a, #policy main .policy_content_top .info_tabe_top a, #mypage main .policy_content .info_table a, #mypage main .policy_content .info_tabe_top a, #mypage main .policy_content_top .info_table a, #mypage main .policy_content_top .info_tabe_top a {
            font-size: 5vw; }

  /*page*/ }
/*end_media_query*/
/*@media screen and (min-width: 281px) and (max-width: 360px)*/
/*Galaxy*/
@media screen and (max-width: 281px) {
  #toppage main {
    /*登録フォーム1*/
    /*STEP*/
    /*POINT*/
    /*決済方法*/
    /*的中実績*/ }
    #toppage main #registration_content1 .registration_content1_inner .mail_content {
      margin: 1rem auto;
      width: 100%; }
      #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox {
        width: 100%;
        margin: .5rem auto 0;
        flex-wrap: wrap; }
        #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login {
          margin: .5rem 2% 0 2%;
          width: 45%; }
          #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .flexbox .icon_login img {
            width: 7vw;
            margin: 0 .2rem .25rem 0; }
      #toppage main #registration_content1 .registration_content1_inner .mail_content .registration_inner .mail_entry .entry_btn {
        width: 100%;
        height: 7vh; }
    #toppage main #step_content .step_inner {
      padding: 2rem 0 4rem; }
      #toppage main #step_content .step_inner h2 {
        font-size: 7vw;
        margin: 1rem auto; }
        #toppage main #step_content .step_inner h2 img {
          width: 80%; }
      #toppage main #step_content .step_inner ul {
        width: 100%; }
        #toppage main #step_content .step_inner ul .step_li .step_y {
          font-size: 6vw;
          margin: 0 .5rem 0 0; }
        #toppage main #step_content .step_inner ul .step_li .step_tx {
          font-size: 5vw; }
    #toppage main #point_content h2 {
      margin-bottom: 0; }
      #toppage main #point_content h2 .point_h2_Left {
        width: 80vw;
        left: 10%; }
    #toppage main #point_content .point_inner .point_fadeup01, #toppage main #point_content .point_inner .point_fadeup02, #toppage main #point_content .point_inner .point_fadeup03 {
      margin-bottom: 2.5rem; }
      #toppage main #point_content .point_inner .point_fadeup01 h3 img, #toppage main #point_content .point_inner .point_fadeup02 h3 img, #toppage main #point_content .point_inner .point_fadeup03 h3 img {
        height: 12vw; }
      #toppage main #point_content .point_inner .point_fadeup01 p, #toppage main #point_content .point_inner .point_fadeup02 p, #toppage main #point_content .point_inner .point_fadeup03 p {
        width: 90%;
        margin: .5rem auto;
        font-size: 4vw; }
    #toppage main #payment_content {
      padding: 2rem 0; }
      #toppage main #payment_content .payment_inner {
        padding: 2rem 0; }
        #toppage main #payment_content .payment_inner h2 .payment_img {
          width: 2rem;
          margin-left: 3%; }
        #toppage main #payment_content .payment_inner .payment_tx {
          width: 82%; }
          #toppage main #payment_content .payment_inner .payment_tx h3 {
            font-size: 5vw; }
          #toppage main #payment_content .payment_inner .payment_tx p {
            font-size: 4vw; }
    #toppage main #hit_content {
      padding: 2rem 0 1rem; }
      #toppage main #hit_content h2 {
        font-size: 7vw;
        margin-bottom: 1rem; }
        #toppage main #hit_content h2 img {
          width: 80%; }
      #toppage main #hit_content p {
        font-size: 5vw; }
      #toppage main #hit_content .hit_inner {
        margin: 1rem auto; }
        #toppage main #hit_content .hit_inner .hit_list {
          margin: 1rem auto; }
      #toppage main #hit_content .hit_list_img {
        margin: 0 0 .2rem; }

  #page_top, #page, #page_lp {
    /*footer*/ }
    #page_top footer, #page footer, #page_lp footer {
      padding: 0 0 3rem; }
      #page_top footer #link_footer #footer_top, #page footer #link_footer #footer_top, #page_lp footer #link_footer #footer_top {
        margin: .5rem auto; }
        #page_top footer #link_footer #footer_top .flexitem, #page footer #link_footer #footer_top .flexitem, #page_lp footer #link_footer #footer_top .flexitem {
          padding: .3rem; }
          #page_top footer #link_footer #footer_top .flexitem a, #page footer #link_footer #footer_top .flexitem a, #page_lp footer #link_footer #footer_top .flexitem a {
            font-size: .8rem; }
      #page_top footer #link_footer #footer_bottom p, #page footer #link_footer #footer_bottom p, #page_lp footer #link_footer #footer_bottom p {
        font-size: .6rem; }

  #backtop {
    width: 30px;
    line-height: 30px;
    font-size: .7rem; }

  #backtop.visible {
    bottom: 10rem; }

  #home main, #race main, #hit main, #shop main, #policy main, #mypage main {
    /*お問い合わせ*/
    /*予想*/
    /*買い目*/
    /*shop用 top_content*/
    /*SHOP*/ }
    #home main .main_content, #race main .main_content, #hit main .main_content, #shop main .main_content, #policy main .main_content, #mypage main .main_content {
      margin: 1.5rem auto 2rem; }
    #home main #top_cont .h2_page, #race main #top_cont .h2_page, #hit main #top_cont .h2_page, #shop main #top_cont .h2_page, #policy main #top_cont .h2_page, #mypage main #top_cont .h2_page {
      margin: 2rem auto 1rem; }
      #home main #top_cont .h2_page img, #race main #top_cont .h2_page img, #hit main #top_cont .h2_page img, #shop main #top_cont .h2_page img, #policy main #top_cont .h2_page img, #mypage main #top_cont .h2_page img {
        height: 4rem; }
    #home main #top_cont .fs11, #race main #top_cont .fs11, #hit main #top_cont .fs11, #shop main #top_cont .fs11, #policy main #top_cont .fs11, #mypage main #top_cont .fs11 {
      font-size: .9rem; }
    #home main .info_content, #race main .info_content, #hit main .info_content, #shop main .info_content, #policy main .info_content, #mypage main .info_content {
      width: 95%; }
      #home main .info_content h3, #race main .info_content h3, #hit main .info_content h3, #shop main .info_content h3, #policy main .info_content h3, #mypage main .info_content h3 {
        font-size: 1rem; }
      #home main .info_content dl dd, #home main .info_content dl dt, #race main .info_content dl dd, #race main .info_content dl dt, #hit main .info_content dl dd, #hit main .info_content dl dt, #shop main .info_content dl dd, #shop main .info_content dl dt, #policy main .info_content dl dd, #policy main .info_content dl dt, #mypage main .info_content dl dd, #mypage main .info_content dl dt {
        font-size: 1rem; }
      #home main .info_content p, #race main .info_content p, #hit main .info_content p, #shop main .info_content p, #policy main .info_content p, #mypage main .info_content p {
        font-size: .9rem; }
      #home main .info_content .btn, #race main .info_content .btn, #hit main .info_content .btn, #shop main .info_content .btn, #policy main .info_content .btn, #mypage main .info_content .btn {
        font-size: 1rem; }
    #home main .race_content ul, #race main .race_content ul, #hit main .race_content ul, #shop main .race_content ul, #policy main .race_content ul, #mypage main .race_content ul {
      width: 90%;
      margin: 1rem auto 2rem;
      display: inherit; }
      #home main .race_content ul .yoso_img, #home main .race_content ul .yoso_img1, #race main .race_content ul .yoso_img, #race main .race_content ul .yoso_img1, #hit main .race_content ul .yoso_img, #hit main .race_content ul .yoso_img1, #shop main .race_content ul .yoso_img, #shop main .race_content ul .yoso_img1, #policy main .race_content ul .yoso_img, #policy main .race_content ul .yoso_img1, #mypage main .race_content ul .yoso_img, #mypage main .race_content ul .yoso_img1 {
        width: 100%;
        height: auto;
        margin: 0 auto .5rem; }
        #home main .race_content ul .yoso_img a .yoso_date, #home main .race_content ul .yoso_img1 a .yoso_date, #race main .race_content ul .yoso_img a .yoso_date, #race main .race_content ul .yoso_img1 a .yoso_date, #hit main .race_content ul .yoso_img a .yoso_date, #hit main .race_content ul .yoso_img1 a .yoso_date, #shop main .race_content ul .yoso_img a .yoso_date, #shop main .race_content ul .yoso_img1 a .yoso_date, #policy main .race_content ul .yoso_img a .yoso_date, #policy main .race_content ul .yoso_img1 a .yoso_date, #mypage main .race_content ul .yoso_img a .yoso_date, #mypage main .race_content ul .yoso_img1 a .yoso_date {
          width: 80vw;
          top: 19.5vw;
          left: 5vw;
          font-size: .7rem; }
        #home main .race_content ul .yoso_img a .yoso_race, #home main .race_content ul .yoso_img1 a .yoso_race, #race main .race_content ul .yoso_img a .yoso_race, #race main .race_content ul .yoso_img1 a .yoso_race, #hit main .race_content ul .yoso_img a .yoso_race, #hit main .race_content ul .yoso_img1 a .yoso_race, #shop main .race_content ul .yoso_img a .yoso_race, #shop main .race_content ul .yoso_img1 a .yoso_race, #policy main .race_content ul .yoso_img a .yoso_race, #policy main .race_content ul .yoso_img1 a .yoso_race, #mypage main .race_content ul .yoso_img a .yoso_race, #mypage main .race_content ul .yoso_img1 a .yoso_race {
          width: 80vw;
          top: 26.8vw;
          left: 5vw;
          font-size: .7rem; }
        #home main .race_content ul .yoso_img a .yoso_comment, #home main .race_content ul .yoso_img1 a .yoso_comment, #race main .race_content ul .yoso_img a .yoso_comment, #race main .race_content ul .yoso_img1 a .yoso_comment, #hit main .race_content ul .yoso_img a .yoso_comment, #hit main .race_content ul .yoso_img1 a .yoso_comment, #shop main .race_content ul .yoso_img a .yoso_comment, #shop main .race_content ul .yoso_img1 a .yoso_comment, #policy main .race_content ul .yoso_img a .yoso_comment, #policy main .race_content ul .yoso_img1 a .yoso_comment, #mypage main .race_content ul .yoso_img a .yoso_comment, #mypage main .race_content ul .yoso_img1 a .yoso_comment {
          width: 80vw;
          font-size: .5rem;
          top: 35.2vw;
          left: 5vw; }
    #home main .race_buy h3 img, #race main .race_buy h3 img, #hit main .race_buy h3 img, #shop main .race_buy h3 img, #policy main .race_buy h3 img, #mypage main .race_buy h3 img {
      height: 2rem; }
    #home main .race_buy .buy_list ul li p, #race main .race_buy .buy_list ul li p, #hit main .race_buy .buy_list ul li p, #shop main .race_buy .buy_list ul li p, #policy main .race_buy .buy_list ul li p, #mypage main .race_buy .buy_list ul li p {
      width: 85%; }
    #home main #shop_top_cont h2, #race main #shop_top_cont h2, #hit main #shop_top_cont h2, #shop main #shop_top_cont h2, #policy main #shop_top_cont h2, #mypage main #shop_top_cont h2 {
      width: 95%;
      font-size: 1.6rem; }
    #home main .shop_content ul .shop_button .shop_point, #race main .shop_content ul .shop_button .shop_point, #hit main .shop_content ul .shop_button .shop_point, #shop main .shop_content ul .shop_button .shop_point, #policy main .shop_content ul .shop_button .shop_point, #mypage main .shop_content ul .shop_button .shop_point {
      font-size: 1.5rem;
      top: 7vw; }
    #home main .shop_content ul .shop_button .shop_price, #race main .shop_content ul .shop_button .shop_price, #hit main .shop_content ul .shop_button .shop_price, #shop main .shop_content ul .shop_button .shop_price, #policy main .shop_content ul .shop_button .shop_price, #mypage main .shop_content ul .shop_button .shop_price {
      font-size: 1rem;
      bottom: 7vw; }
    #home main .shoptransfer_content .shoptransfer_caution p, #race main .shoptransfer_content .shoptransfer_caution p, #hit main .shoptransfer_content .shoptransfer_caution p, #shop main .shoptransfer_content .shoptransfer_caution p, #policy main .shoptransfer_content .shoptransfer_caution p, #mypage main .shoptransfer_content .shoptransfer_caution p {
      font-size: .8rem; } }
/*end_media_query*/

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