@charset "UTF-8";

/* ==========================================================================
                          animation
   ========================================================================== */
.tr-base {
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}


/* ==========================================================================
                          bg
   ========================================================================== */
.bg-red {
  background-color: #a80505 !important;
}
.bg-red2 {
  background-color: #e50020 !important;
}
.bg-light-gray {
  background-color: #f0f0f0 !important;
}
.bg-01 {
	background: linear-gradient(to right, #e9e9ea 50%, #F0F0F0 50%);
}


/* ==========================================================================
                          border
   ========================================================================== */
.border-gray {
  border: #868686 1px solid !important;
}
.border-light-gray {
  border: #F0F0F0 1px solid !important;
}


/* ==========================================================================
                          line
   ========================================================================== */
/* reset */
hr {
  border: none;
  height: 1px;
  margin: 0;
}
.line-gray {
  border-top: #868686 1px solid !important;
}
.line-bk {
  border-top: #231815 1px solid !important;
}


/* ==========================================================================
                          font
   ========================================================================== */
.font-red {
  color: #a80505 !important;
}
.font-gray {
  color: #868686 !important;
}
.font-gray2 {
  color: #717071 !important;
}
/* weight */
.font-light {
	font-weight: 300 !important;
}
.font-medium {
  font-weight: 500 !important;
}
/* ls */
.ls01 {
  letter-spacing: 0.1em;
}
.ls03 {
  letter-spacing: 0.3em;
}

/* ==========================================================================
                          btn
   ========================================================================== */
/* ========== form関連 ========== */
.btn-zip {
  position: relative;
  line-height: 40px;
  width: 140px;
}
.btn-zip:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0d7";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
.btn-conf {
  width: 200px;
  line-height: 50px;
  padding: 0 15px;
}


/* ==========================================================================
                           hover
    ========================================================================== */
.hover-font-red a:hover,
.hover-font-red:hover {
	opacity: 1;
  color: #a80505 !important;
}


/* ==========================================================================
                          inview
   ========================================================================== */


/* ==========================================================================
                          list
   ========================================================================== */


/* ==========================================================================
                          form
   ========================================================================== */
/* ========== default ========== */
/* reset */
.form-default input[type="text"],
.form-default input[type="email"],
.form-default input[type="tel"],
.form-default textarea,
.form-default select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 15px;
}
.form-default textarea {
  padding: 15px;
}
.form-default select::-ms-expand {
  display: none;
}
.form-default input[type="text"],
.form-default input[type="email"],
.form-default input[type="tel"],
.form-default select {
  height: 45px;
}
.form-default input[type="radio"],
.form-default input[type="checkbox"],
.form-default select,
.input-wrap {
  cursor: pointer;
}
.form-default input[type="radio"],
.form-default input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #ececec;
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: middle;
  margin: 0;
  border-radius: 50%;
  padding: 0;
}
.form-default input[type="radio"]:checked:before,
.form-default input[type="checkbox"]:checked:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #231815;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.input-wrap span {
  vertical-align: middle;
}

:placeholder-shown,
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
    color: #f1f1f1;
}

button, input, select, textarea {
  font-family : inherit;
  font-size : 15px;
  color: #000;
  padding: 15px;
}

/* selectタグをカスタマイズ */
.form-default .btn-form-select {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.form-default .btn-form-select select {
  background-color: transparent;
  padding-right: 30px;
}
.form-default .btn-form-select:after {
  z-index: -1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f0d7";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
}
/* ttl */
.form-default .form-ttl {
  position: relative;
  padding-left: 10px;
}
.form-default .form-ttl:before {
  font-size: 5px;
  font-size: 0.5rem;
  content: "\f111";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
}

/* ========== form内アコーディオン ========== */
.form-ac-btn {
  padding: 0 15px;
  line-height: 40px;
  cursor: pointer;
  position: relative;
}
.form-ac-btn:after {
  font-size: 20px;
  font-size: 2rem;
  content: "\f0d7";
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.form-ac-btn.on:after {
  content: "\f0d8";
}
.form-ac-btn.on {
  background-color: #A80505 !important;
  color: #fff;
}
.form-ac-content {
  display: none;
}

/* ========== form-agree ========== */
.form-agree-add {
  width: 700px;
}
.form-agree-photo {
  width: 110px;
}
.form-agree-check {
  display: none;
}
.form-agree-check-ap {
  display: inline-block;
  padding-left: 65px;
  line-height: 50px;
  background: url(../../img/entry/form-agree-check-off.png) no-repeat center left;
  -webkit-background-size: 50px auto;
       -o-background-size: 50px auto;
          background-size: 50px auto;
}
:checked + .form-agree-check-ap {
  color: #A80505;
  background-image: url(../../img/entry/form-agree-check-on.png);
}

/* ========== form-width ========== */
.form-fullWidth {
  width: 100% !important;
}
.form-Width30 {
  width: 30% !important;
}
.form-Width50 {
  width: 50% !important;
}


/* ==========================================================================
                          mainv
   ========================================================================== */
.mainv {
  width: 100%;
  /* height: 360px; */
  height:  100%;
  background: url(../../img/faq/mainv.jpg) center top no-repeat;
  background-size: cover;
  position: relative;
}
.mainv:before {
  content: '';
  display: block;
  padding-top: 30.5084%;
}
.mainv .mainv_p1,
.mainv .mainv_p2 {
  position: absolute;
  left: 0;
  width: 100%;
}
.mainv .mainv_p1 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1.35;
  letter-spacing: 0.1em;
}
.mainv .mainv_p1 p {
  letter-spacing: 0.14em;
  font-size: 50px;
  font-size: 5rem;
}
.mainv .mainv_p2 {
  top: 200px;
}


/* ==========================================================================
                          赤い下線のhead
   ========================================================================== */
.cate-head {
  border-bottom: solid 5px #a80505;
  padding-bottom: 55px;
  margin-top: 40px;
  margin-bottom: 80px;
}
.cate-head h1 {
  font-weight: 500;
  letter-spacing: .2em;
}

/* ==========================================================================
                          section内
   ========================================================================== */
/* セクション 共通 */
.sec-wrapper {
  background: #fff;
  padding: 65px 0 75px;
  margin-bottom: 70px;
}

.sec-wrapper  .red-ttl {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: .3rem;
  margin-bottom: 45px;
}


/* ==========================================================================
                          cat_list
   ========================================================================== */
.voice_cat_list {
    margin: 60px auto 80px;
}
.voice_cat_list ul li {
    /* display:  inline-block; */
    float:  left;
    margin: 0 2px;
    padding: 0 16px;
    border-right: 1px solid #868686;
    line-height: 30px;
    letter-spacing: 0.14em;
}
.voice_cat_list ul li:first-child {
    padding-left: 0;
    margin-left: 0;
}
.voice_cat_list ul li:last-child {
  border-right: none;
}
.voice_cat_list ul li span,
.voice_cat_list ul li a {
    display:  block;
    padding: 0 5px;
    font-size: 14px;
}
.voice_cat_list ul li a:hover {
  opacity: 1;
  /*color: #a80505 !important;*/
}
.voice_cat_list ul li:first-child a {
    /* padding-left: 5px; */
}


/* ==========================================================================
                          entryへリンク
   ========================================================================== */
.toentry {
  background: url(../../img/career/entry_arrow@2x.png) no-repeat right 20px center;
  background-size: 30px auto;
  font-size: 1.7rem;
  letter-spacing: .08em;
  display: inline-block;
  color: #fff;
  padding: 20px 70px 20px 40px;
  margin-bottom: 20px;
}


/* ==========================================================================
                          tab
   ========================================================================== */
@media screen and (max-width: 1000px) {
  /* ==========================================================================
                        cat_list
   ========================================================================== */
  .voice_cat_list ul li {
    position: relative;
    margin: 0 0 15px;
  }
  .voice_cat_list ul li:first-child {
    padding-left: 16px;
  }
  .voice_cat_list ul li:last-child {border-right: 1px solid #868686;}
  .voice_cat_list ul li:before {
    position: absolute;
    content: "";
    left: -1px;
    top: 0;
    height: 100%;
    border-left: 1px solid #868686;
  }


  /* ==========================================================================
                            form
     ========================================================================== */
  /* ========== form-agree ========== */
  .form-agree-add {
    width: calc(100% - 130px);
  }
  .form-agree-photo {
    width: 110px;
  }
}


/* ==========================================================================
                          sp
   ========================================================================== */
@media screen and (max-width: 680px) ,screen and (max-width: 737px) and (orientation: landscape) {
  /* ==========================================================================
                            font
     ========================================================================== */
  /* ls */
  .ls01 {
    letter-spacing: 0.05em;
  }
  .ls03 {
    letter-spacing: 0.15em;
  }
  
  /* ==========================================================================
                          section内
   ========================================================================== */
   /* セクション 共通 */
  .sec-wrapper {
    padding: 45px 0 ;
    margin-bottom: 70px;
  }

  .sec-wrapper  .red-ttl {
    font-size: 1.4rem;
    margin-bottom: 35px;
  }

  /* ==========================================================================
                            form
     ========================================================================== */
  /* ========== default ========== */
  /* reset */
  .form-default input[type="text"],
  .form-default input[type="email"],
  .form-default input[type="tel"],
  .form-default textarea,
  .form-default select {
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 15px;
  }
  .form-default textarea {
    padding: 15px;
  }
  .form-default select::-ms-expand {
    display: none;
  }
  .form-default input[type="text"],
  .form-default input[type="email"],
  .form-default input[type="tel"],
  .form-default select {
    height: 40px;
  }
  .form-default input[type="radio"],
  .form-default input[type="checkbox"],
  .form-default select,
  .input-wrap {
    cursor: pointer;
  }
  button, input, select, textarea {
    font-size : 1.2rem;
  }

  /* selectタグをカスタマイズ */
  .form-default .btn-form-select {
    display: inline-block;
    position: relative;
    z-index: 2;
  }
  .form-default .btn-form-select select {
    background-color: transparent;
    padding-right: 30px;
  }
  .form-default .btn-form-select:after {
    z-index: -1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0d7";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
  }
  /* ttl */
  .form-default .form-ttl {
    position: relative;
    padding-left: 10px;
  }
  .form-default .form-ttl:before {
    font-size: 5px;
    font-size: 0.5rem;
    content: "\f111";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
  }


.form-default input[type="radio"],
.form-default input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #ececec;
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: middle;
  margin: 0;
  border-radius: 50%;
  padding: 0;
  border: none;
}
.form-default input[type="radio"]:checked:before,
.form-default input[type="checkbox"]:checked:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #231815;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.input-wrap span {
  vertical-align: middle;
}



  /* ========== form内アコーディオン ========== */
  .form-ac-btn {
    padding: 0 15px;
    line-height: 40px;
    cursor: pointer;
    position: relative;
  }
  .form-ac-btn:after {
    font-size: 20px;
    font-size: 2rem;
    content: "\f0d7";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .form-ac-btn.on:after {
    content: "\f0d8";
  }
  .form-ac-btn.on {
    background-color: #A80505 !important;
    color: #fff;
  }
  .form-ac-content {
    display: none;
  }

  /* ========== form-agree ========== */
  .form-agree-add {
    width: 100%;
  }
  .form-agree-photo {
    width: 35%;
  }
  .form-agree-check {
    display: none;
  }
  .form-agree-check-ap {
    display: inline-block;
    padding-left: 65px;
    line-height: 50px;
    background: url(../../img/entry/form-agree-check-off.png) no-repeat center left;
    -webkit-background-size: 50px auto;
         -o-background-size: 50px auto;
            background-size: 50px auto;
  }
  :checked + .form-agree-check-ap {
    color: #A80505;
    background-image: url(../../img/entry/form-agree-check-on.png);
  }

  /* ========== form-width ========== */
  .form-fullWidth {
    width: 100% !important;
  }
  .form-Width30 {
    width: 30% !important;
  }
  .form-Width50 {
    width: 50% !important;
  }


  /* ==========================================================================
                          mainv
   ========================================================================== */
  .mainv {
    height: 180px;
    background-size:  cover;
  }
  .mainv:before {}
  .mainv .mainv_p1,
  .mainv .mainv_p2 {}
  .mainv .mainv_p1 {
    /* top:  0; */
    /*left: 9.53%;*/
  }
  .mainv .mainv_p1 p {
    font-size: 2rem;
  }
  .mainv .mainv_p1 span{
    font-size: 1.5rem;
  }



  /* ==========================================================================
                          赤い下線のhead
   ========================================================================== */
    .cate-head {
      border-bottom: solid 5px #a80505;
      padding-bottom: 25px;
      margin-top: 20px;
      margin-bottom: 35px;
    }
    .cate-head h1 {
      font-weight: 500;
    }
    
    /* entryへリンク */
    .toentry {
      font-size: 1.4rem;
      width: 100%;
      padding: 15px 60px 15px 40px;
    }



  /* ==========================================================================
                        cat_list
   ========================================================================== */
  .voice_cat_list {
    margin-bottom: 27px;
  }
  .voice_cat_list ul {}
  .voice_cat_list ul li {
    /* border-left: 1px solid #868686; */
    margin:  0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 15px;
    letter-spacing: 0.04em;
  }
  .voice_cat_list ul li:first-child {
    padding-left: 0;
  }
  .voice_cat_list ul li.sp_border_l {border-left: 1px solid #868686;clear:  both;}
  .voice_cat_list ul li span,
  .voice_cat_list ul li a {
    font-size: 10px;
    padding: 0 10px;
    letter-spacing: 0;
  }

  /*  cate-head  */
  .cate-head {
    border-bottom: solid 5px #a80505;
    padding-bottom: 25px;
    margin-top: 20px;
    margin-bottom: 35px;
  }
  .cate-head h1 {
    font-weight: 500;
  }
}/* spおわり */

/* ==========================================================================
                          @2x
   ========================================================================== */
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
}



/* 独自追加 情シス本部 */
.bigman { font-size:50pt !important;color:#ff0099 !important;}
.spc_top { margin-top:2em; }
.spc_btm1 { margin-bottom:1em; }
