@charset "utf-8";
main{
  padding-bottom: 65px;
}
.under_mv{
  background: url("../img/mv.png")no-repeat 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;
}
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: 75%;}
.w_middle {width: 65%;}
.w_half {width: 50%;}

.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: 8px 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;
}
/* checkbox ========== */
.form-input label {
    width: 100%;
    max-width: 130px;
    display: block;
}
[type="checkbox"], [type="radio"] {
    padding: 0;
    display: inherit;
    margin-top: 3px;
    margin-right: 8px;
    transform: scale(1.2);
    height: 16px;
}
/* 確認・送信 ========== */
input[type="submit"], input[type="reset"], button {
    padding: 0;
    width: 150px;
    height: 70px;
    color: #fff;
    margin: 0;
    background: #EB5C02;
    border-radius: 5px;
    font-size: 1em;
  font-family: 'Noto Sans JP', "sans-serif", Meiryo;
}
/* リセット・戻る ========== */
input[type="reset"], input[type="submit"].back {
    background: #CBCBCB;
}
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 0;
}
.sub_text {
    margin: 1em 0 5px;
}
.sub_text.mt_0 {
    margin-top: 0;
}
/* 以下ページごと
============================================== */
[type="checkbox"] {
    padding: 10px;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    accent-color: #5fa094;
}
/* 以下ページごと
============================================== */
.container ,.root-container {
    max-width: 1024px;
    width: 90%;
    margin: 100px auto 0;
  padding-bottom: 100px;
}
.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: 60px 0 0;
}
.back_home a {
    color: #fff;
    padding: 15px 35px;
    background: #000;
    border-radius: 5px;
}
/* table ========== */
.form-field {
    display: table-cell;
    width: 260px;
    padding: 20px 25px;
    vertical-align: middle;
    text-align: left;
    color: #000;
    background: #F6F6F6;
    border-bottom: 1px solid #000000;
}
.form-input {
  display: table-cell;
  vertical-align: middle;
  padding: 8px 20px;
    background: #fff;
    border-bottom: 1px solid #000000;
}
.form-element-container {
  display: table;
  width: 100%;
  margin: 30px auto 0;
  border-top: 3px solid #C7C7C7;
}
.form-field-input-pair {
  display: table-row;
}
.form-field-input-pair:nth-child(odd) {
    background: #EEEEEE;
}
/* 確認部分
============================================== */
.btn_box {
    margin: 50px auto 0;
    background: #FFF8F3;
    padding: 40px 15px;
  gap:30px;
}
.btn_des {
}
/* 三角フロー図
============================================== */
.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: #CBCBCB;
    padding: 0.7em 0.5em 0.6em 2em;
    color: #000;
    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: 1;
}
.flow-triangle li:after{
  top:-15px;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #CBCBCB;
  border-width: 40px 0 40px 1em;
  z-index: 1;
}
.flow-triangle li.is-current {
    background: #EB5C02;
    color: #fff;
}
.flow-triangle li.is-current:after{
  border-color: transparent transparent transparent #EB5C02;
}
.flow-triangle span {
    display: inline-flex;
    justify-content: center;
    margin-right: 10px;
    width: 23px;
    height: 23px;
    background: #fff;
    color: #000;
    line-height: 1.5;
}
.flow-triangle .is-current span {
    background: #fff;
    color: #EB5C02;
}
/* ページ固有
------------------------------------------------------
------------------------------------------------------*/





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

@media screen and (max-width: 767px) {
  .w_full ,.w_middle , .w_half.mail{
    width: 100%;
    max-width: calc(100% - 5em);
  }
  .form-element-container {
    margin: 30px auto 0;
    border-top: 3px solid #000;
  }
  .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 5%;
    box-sizing: border-box;
    display: block;
  }
  input[type="submit"], input[type="reset"], button {
    width: 140px;
    height: 60px;
  }
  /* 三角フロー図 ----------------------------*/
  .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: 1.2rem;
    width: 33%;
  }
}