@charset "UTF-8";
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: auto;
  font-size: 1.4rem;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, sans-serif, Helvetica;
  color: #333;
  background-color: #282046;
  line-height: 1.4;
}
/* margin and padding */
.mrg_box {
  margin: 0 10px 10px;
}
.mrg_0 {
  margin: 0;
}
.mrg_5 {
  margin: 5px;
}
.mrg_10 {
  margin: 10px;
}
.mrg_15 {
  margin: 15px;
}
.mrg_20 {
  margin: 20px;
}
.mrg_30 {
  margin: 30px;
}
.mrg_top_5 {
  margin-top: 5px;
}
.mrg_top_10 {
  margin-top: 10px;
}
.mrg_top_15 {
  margin-top: 15px;
}
.mrg_top_20 {
  margin-top: 20px;
}
.mrg_top_30 {
  margin-top: 30px;
}
.mrg_btm_5 {
  margin-bottom: 5px;
}
.mrg_btm_10 {
  margin-bottom: 10px;
}
.mrg_btm_15 {
  margin-bottom: 15px;
}
.mrg_btm_20 {
  margin-bottom: 20px;
}
.mrg_btm_30 {
  margin-bottom: 30px;
}
.mrg_btm_40 {
  margin-bottom: 40px;
}
.pdg_box {
  padding: 0 10px 10px;
}
.pdg_0 {
  padding: 0;
}
.pdg_5 {
  padding: 5px;
}
.pdg_10 {
  padding: 10px;
}
.pdg_15 {
  padding: 15px;
}
.pdg_20 {
  padding: 20px;
}
.pdg_30 {
  padding: 30px;
}
.pdg_top_5 {
  padding-top: 5px;
}
.pdg_top_10 {
  padding-top: 10px;
}
.pdg_top_15 {
  padding-top: 15px;
}
.pdg_top_20 {
  padding-top: 20px;
}
.pdg_top_30 {
  padding-top: 30px;
}
.pdg_btm_5 {
  padding-bottom: 5px;
}
.pdg_btm_10 {
  padding-bottom: 10px;
}
.pdg_btm_15 {
  padding-bottom: 15px;
}
.pdg_btm_20 {
  padding-bottom: 20px;
}
.pdg_btm_30 {
  padding-bottom: 30px;
}
/* Font */
.fs_d {
  font-size: 1.4rem;
}
.fs_p1 {
  font-size: 1.6rem;
}
.fs_p2 {
  font-size: 1.8rem;
}
.fs_p3 {
  font-size: 2rem;
}
.fs_p4 {
  font-size: 2.2rem;
}
.fs_p5 {
  font-size: 2.4rem;
}
.fs_p_ex {
  font-size: 3rem;
}
.fs_m1 {
  font-size: 1.2rem;
}
.fs_m2 {
  font-size: 1.1rem;
}
.fs_m3 {
  font-size: 1rem;
}
/* Color */
.txt_white {
  color: #fff;
}
.txt_black {
  color: #000;
}
.txt_glay {
  color: #999;
}
.txt_green {
  color: #094;
}
.txt_red {
  color: #f00;
}
.txt_pink {
  color: #ff1493;
}
.txt_pinkb {
  color: #90c;
}
.txt_blue {
  color: #002aff;
}
.txt_lightblue {
  color: #87cefa;
}
.txt_orange {
  color: #ff9d00;
}
.txt_yellow {
  color: #ffff00;
}
/* Background */
.bg_white {
  background-color: #ffffff;
}
.bg_gray {
  background-color: #F2F2F2;
}
.bg_red {
  background-color: #ff0000;
}
.bg_blue {
  background-color: #002aff;
}
.bg_lbule {
  background-color: #CCFFFF;
}
.bg_orange {
  background-color: #fffab6;
}
.bg_yellow {
  background-color: #ffff00;
}
/* txt-align */
.txt_left {
  text-align: left;
}
.txt_center {
  text-align: center;
}
.txt_right {
  text-align: right;
}
/* Display */
.dinline {
  display: inline;
}
.dblock {
  display: block;
}
.dinblock {
  display: inline-block;
}
.dnone {
  display: none;
}
/* Float */
.flt_l {
  float: left;
}
.flt_r {
  float: right;
}
/* Radius */
.radius3 {
  border-radius: 3px;
}
.radius8 {
  border-radius: 8px;
}
.radius8_top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.radius8_btm {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
/* Img */
img {
  width: 100%;
  vertical-align: bottom;
}
/* Clear fix */
.cf {
  zoom: 1;
}
.cf:after, .cf:before {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
