/*------------------------------------------
  Base
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  font-family: "Hiragino Kaku Gothic Pro", "Meiryo", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  font-size: 1.3em;
  background: #fff;
  color: #000;
  line-height: 1.5; }

a {
  color: #000;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease; }
  a:hover {
    color: #333333;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
  a img {
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease; }
    a img:hover {
      opacity: 0.6;
      filter: alpha(opacity=60);
      -webkit-transition: opacity 0.2s ease;
      -moz-transition: opacity 0.2s ease;
      -o-transition: opacity 0.2s ease;
      transition: opacity 0.2s ease; }

/*------------------------------------------
  Layout
------------------------------------------*/
.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/bg-star.gif) no-repeat center top;
  -webkit-background-size: 500px;
  -o-background-size: 500px;
  background-size: 500px; }

/*  wrapper
-------------------------*/
.wrapper {
  padding: 0 10px 60px; }

/*  header
-------------------------*/
.header {
  text-align: center;
  padding-top: 45px;
  margin-bottom: 25px; }
  .header h1 {
    padding: 0 15px; }
  .header .catch {
    font-weight: bold;
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 12px; }

/*  contents
-------------------------*/
.contents-wrapper {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #000;
  background: #fff;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 25px 12px 35px; }
  .contents-wrapper .title {
    text-align: center;
    background: #000;
    padding: 13px 0; }

.contents {
  padding-top: 20px; }
  .contents .error-txt {
    color: #ed1c24;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 20px; }
  .contents .conf-txt {
    margin-bottom: 20px;
    color: #585858;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold; }
  .contents .comp-txt {
    text-align: center;
    color: #585858;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 35px;
    padding-top: 10px; }
  .contents table {
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: bold;
    width: 100%; }
  .contents th {
    font-weight: bold;
    padding-bottom: 10px; }
    .contents th .icon {
      display: inline-block;
      margin-left: 10px;
      color: #fff;
      font-size: 11px;
      font-size: 1.1rem;
      background: #ed1c24;
      line-height: 1;
      vertical-align: middle;
      padding: 4px 5px; }
  .contents td {
    padding-bottom: 22px; }
  .contents input, .contents select, .contents button, .contents textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline-style: none;
    display: block;
    color: #585858;
    border: none; }
  .contents .selectBox {
    width: 100%;
    overflow: hidden;
    background: #efefef url(../images/bg-select.png) no-repeat right center;
    -webkit-background-size: 26px;
    -o-background-size: 26px;
    background-size: 26px;
    color: #585858;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    border: 1px solid #a8a8a8;
    border-right: none; }
    .contents .selectBox select {
      font-size: 13px;
      font-size: 1.3rem;
      font-weight: bold;
      width: 150%;
      border: none;
      height: 30px;
      background: none;
      -webkit-border-radius: 0;
      border-radius: 0; }
  .contents .inputTextarea, .contents .inputText {
    width: 100%;
    background: #efefef;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 13px;
    font-size: 1.3rem; }
  .contents .inputTextarea {
    height: 110px;
    padding: 5px; }
  .contents .inputText {
    height: 50px;
    padding: 0 10px; }

.conf-contents th {
  color: #a7a7a7; }

.conf-contents td {
  padding-left: 30px;
  color: #585858;
  font-weight: bold; }

.radioBtn-wrap {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: bold; }

input[type=radio], input[type=checkbox] {
  display: none; }

.radioBtn, .checkbox {
  position: relative;
  vertical-align: middle;
  cursor: pointer; }

.checkbox, .radioBtn {
  padding: 12px 22px 12px 30px; }

.checkbox:after, .radioBtn:after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 1px solid #dddddd;
  border-radius: 2px;
  content: ''; }

.checkbox:before, .radioBtn:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  margin-top: -8px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

input[type=checkbox]:checked + .checkbox:before {
  opacity: 1; }

input[type=radio]:checked + .radioBtn:before {
  opacity: 1; }

.caution {
  font-size: 10px;
  font-size: 1rem;
  color: #585858;
  line-height: 1.7;
  margin-bottom: 30px; }

.caution02 {
  color: #747474;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px; }

.form-btn {
  text-align: center;
  margin-top: 10px; }
  .form-btn .inputBtn {
    display: inline-block; }
  .form-btn input {
    width: 100%;
    height: 60px;
    cursor: pointer; }
  .form-btn .inputBtn01 {
    width: 80%;
    margin-bottom: 15px; }
  .form-btn .inputBtn01 input {
    text-align: center;
    background: #003768;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    border-bottom: 5px solid #001a31; }
  .form-btn .inputBtn02 {
    width: 50%; }
  .form-btn .inputBtn02 input {
    text-align: center;
    background: #444444;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    border-bottom: 5px solid #000000; }

.top-link {
  width: 100%; }
  .top-link a {
    display: inline-block;
    text-align: center;
    background: #003768;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    border-bottom: 5px solid #001a31;
    text-decoration: none;
    width: 100%;
    padding: 24px 0; }

/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix {
  *zoom: 1; }
  .clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0; }
