@charset "utf-8";
.under_mv_inner{
  background: url("../img/mv.png") center;
  -webkit-background-size: cover;
  background-size: cover;
}
/* iOSでのデフォルトスタイルをリセット
============================================== */
input[type="submit"],input[type="reset"],input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', Meiryo, "sans-serif";
}
input[type="submit"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="reset"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* form共通
============================================== */
.w_all {width: 100%;}
.w_full {width: 80%;}
.w_half {width: 50%;}
.w_25pc {width: 25%;}

.required {color: red;}

input[type="text"], input[type="email"], input[type="password"], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 2px;
  border: 1px solid #aaa;
  padding: 5px;
    box-sizing: border-box;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
  box-shadow: 0 0 7px #aaa;
}
select {
    padding: 5px;
    border: 1px solid #aaa;
}
/* 確認・送信 ========== */
input[type="submit"], input[type="reset"], button {
    padding: 0;
    width: 150px;
    height: 70px;
    color: #fff;
    margin: 30px 35px 0;
    background: #111868;
    border-radius: 5px;
    font-size: 1em;
}
/* リセット・戻る ========== */
input[type="reset"], input[type="submit"].back {
    background: #C3C5D9;
  color: #111868;
}
input[type="submit"]:hover, input[type="reset"]:hover, button:hover {
    opacity: .8;
}
input[type="submit"]:active, input[type="reset"]:active, button:active {
    opacity: .8;
}
  input.zipcode-3 {
    width: 45px;
}
  input.zipcode-4 {
    width: 55px;
}
/* error
============================================== */
p.errmsg {
  color:#ff0000;
  margin:0px;
}
.msgarea {
  color:#ff0000;
  margin: 20px 0px;
  padding: 10px 20px 10px 20px;
  background-color: #eeeeee;
}
.top_text {
    margin-top: 40px;
}
.top_caution {
    margin: 1em 0;
}
.sub_text {
    margin: 1em 0 5px;
}
.sub_text.mt_0 {
    margin-top: 0;
}
/* 以下ページごと
============================================== */
.container, .root-container {
    max-width: 1024px;
    width: 90%;
    margin: 50px auto 0;
}
.btn_box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    width: 100%;
    margin: 70px auto 0;
    font-weight: bold;
}
/* TOPへ戻る ========== */
.back_home {
    text-align: center;
    margin: 40px 0 80px;
}
.back_home a {
    color: #fff;
    padding: 15px 35px;
    background: #111868;
    border-radius: 5px;
    display: flex;
    max-width: 180px;
    margin: auto;
    justify-content: center;
    align-items: center;
}
/* table ========== */
.form-field {
    display: table-cell;
    width: 260px;
    padding: 20px 10px;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #111868;
    background: #e5e5ee;
    color: #000;
}
.form-input {
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
  border-bottom: 1px solid #111868;
}
.form-element-container {
  display: table;
  width: 100%;
  margin: 0 auto;
  border-top: 2px solid #111868;
}
.form-field-input-pair {
  display: table-row;
}
/* 確認部分
============================================== */
.btn_box {
    margin: 100px auto 80px;
}

/* 三角フロー図
============================================== */
.flow-triangle{
  list-style-type: none;
  display:table;
  width:100%;
  padding:0;
  margin:0;
  overflow:hidden;
}
.flow-triangle li {
    display: table-cell;
    position: relative;
    background: #C3C5D9;
    padding: 0.7em 0.5em 0.6em 2em;
    color: #111868;
    font-weight: bold;
    text-align: center;
    width: 33%;
}
.flow-triangle li:last-child{
  padding-right: 1em;
}
.flow-triangle li:last-child:before,
.flow-triangle li:last-child:after{
  display:none;
}
.flow-triangle li:before,
.flow-triangle li:after{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.flow-triangle li:before{
  top:-15px;
  right:-1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.flow-triangle li:after{
  top:-15px;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #C3C5D9;
  border-width: 40px 0 40px 1em;
  z-index: 10;
}
.flow-triangle li.is-current {
    background: #111868;
    color: #fff;
}
.flow-triangle li.is-current:after{
  border-color: transparent transparent transparent #111868;
}
.flow-triangle span {
    display: inline-flex;
    justify-content: center;
    margin-right: 10px;
    width: 23px;
    height: 23px;
    background: #fff;
    color: #111868;
    line-height: 1.5;
}
.flow-triangle .is-current span {
    background: #fff;
    color: #111868;
}
/* ページ固有
------------------------------------------------------
------------------------------------------------------*/





/* 固有レスポンシブ
------------------------------------------------------
------------------------------------------------------*/
/*タブレット（縦）*/
@media screen and (orientation: portrait) and (min-width: 768px){}

@media screen and (max-width: 767px) {
  .form-element-container {
    margin: 30px auto 0;
    border-top: 2px solid #111868;
  }
  .form-field-input-pair {
    display: block;
}
  .form-field {
    display: block;
    box-sizing: border-box;
    vertical-align: middle;
    width: 100%;
    padding: 10px 5%;
    text-align: left;
}
  .form-input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    display: block;
  }
input[type="submit"], input[type="reset"], button {
    width: 140px;
    height: 60px;
    margin: 30px 15px 0;
}
/* 三角フロー図 ----------------------------*/
.flow-triangle {
    display: flex;
}
.flow-triangle span {
    display: block;
    margin: 0 auto 2px;
    width: 20px;
    height: 20px;
    font-size: 1.4rem;
}
.flow-triangle li {
    padding: 8px 1% 5px 3%;
    font-size: min(3.7vw,1.2rem);
    width: 33%;
}
}
