@charset "utf-8";
.under_mv{
  background: url(../../img/mv.png) no-repeat center;
  background-size: cover;
}
main {
  padding-bottom: 90px;
}
.root-container{
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  border-radius: 0;
  cursor: pointer;
}

button:focus-visible,
input[type="submit"]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
input[type="text"], input[type="email"], input[type="password"], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* for focus animation */
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 2px;
  border: 1px solid #aaa;
  padding: 5px;
}

select {
  padding: 5px;
}
input[type="submit"], input[type="reset"], button {
  width: calc(50% - 10px);
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #000;
  height: 60px;
  @media screen and (max-width:767px) {
    width: 100%;
    height: 50px;
  }
}
input[type="submit"].back{
  background: #D9D9D9;
}
input[type="submit"]:hover, input[type="reset"]:hover, button:hover {
}
input[type="submit"]:active, input[type="reset"]:active, button:active {
}
.back_home a{
  width: 100%;
  max-width: 241px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #000;
  height: 60px;
  margin: auto;
}

.msgarea {
  color:#ff0000;
  margin: 20px 0px;
  padding: 10px 20px 10px 20px;
}

p.errmsg {
  color:#ff0000;
  margin:0px;
}
}
/* 確認部分
============================================== */
.btn_box {
  margin: 50px auto;
  background-color: #F4F4F3;
  padding: 70px 0;
  width: 571px;
}
.label_left{
  margin-right: 60px;
}
/* 三角フロー図
============================================== */
.flow-triangle{
  list-style-type: none;
  display:table;
  width:100%;
  padding:0;
  margin:0;
  overflow:hidden;
  margin-bottom: 40px;
}
.flow-triangle li {
  display: table-cell;
  position: relative;
  background: #DCDCDC;
  padding: 0.5em 0.5em 0.5em 2em;
  color: #000;
  text-align: center;
  width: 33%;
  font-size: 2rem;
  font-weight: bold;
}
.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:-10px;
  right:-1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 36px 0 36px 1em;
  z-index: 1;
}
.flow-triangle li:after{
  top:-10px;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #DCDCDC;
  border-width: 36px 0 36px 1em;
  z-index: 1;
}
.flow-triangle li.is-current {
  background: #000;
  color: #fff;
}
.flow-triangle li.is-current:after{
  border-color: transparent transparent transparent #000;
}
.flow-triangle span {
  display: inline-flex;
  justify-content: center;
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background: #fff;
  line-height: 1.5;
  font-size: 2rem;
  align-items: center;
}
.flow-triangle .is-current span {
  background: var(--red);
  color: #fff;
}

.cont_head {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.center {
  text-align: center;
  margin: 20px 0;
}

.tel {
  background: #EEEEEE;
  padding: 60px 0 0;
  margin-top: 60px;
}
.tel_inner{
  max-width: 1024px;
  width: 90%;
  margin: auto;
}
a.tel_num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  font-weight: bold;
  &::before{
    content: '';
    display: block;
    background: url(/contact/img/icon_tel.svg) no-repeat center;
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
}
.mail_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 0 0;
  max-width: 850px;
  width: 90%;
  margin: auto;
  line-height: 2;
}
.root-container {
  max-width: 1024px;
  width: 90%;
  margin: 60px auto 30px;
}

.form-element-container {
  margin-top: 10px;
}
.form-field-input-pair {
  display: flex;
  width: 100%;
}
.form-field {
  width: 235px;
  background: #EEEEEE;
  padding: 30px 15px;
  color: #000;
  border-top: 1px solid #000;
  display: flex;
  align-items: center;
}
.form-input {
  width: calc(100% - 235px);
  padding: 30px 15px;
  border-top: 1px solid #000;
}
.form-field-input-pair:last-child {
  .form-field {
    border-bottom: 1px solid #000;
  }
  .form-input {
    border-bottom: 1px solid #000;
  }
}
.confirm {
  display: flex;
  flex-wrap: wrap;
  max-width: 440px;
  width: 100%;
  margin: 60px auto 0;
  gap:20px;
  justify-content: center;
  > p{
    text-align: center;
    width: 100%;
  }
}
.main_text {
  line-height: 2;
}
.caution {
  line-height: 2;
  margin-top: 30px;
}
.radio_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.add {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  > p{
    width: 100%;
  }
  &:last-child{
    margin-top: 20px;
  }
}
.radio_box {
  display: flex;
  flex-direction: column;
}
.radio_box input[type="radio"]{
  appearance: none;
  -webkit-appearance: none;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid #217FC4;
  border-radius: 50%;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}
.radio_box input[type="radio"]:checked::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #217FC4;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.radio_box label {
  display: flex;
  align-items: center;
  margin: 2.5px 0;
}
.w_txt {
  width: 100%;
}
.w_full {
  width: calc(100% - 8em);
}
.w_half {width: 50%;}
.w_25pc {width: 25%;}

.required {color: red;}

.form-privacy {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  margin-top: 40px;
  background: #e8ecf7;
  flex-wrap: wrap;
  @media screen and (max-width:767px) {
    padding: 30px 5%;
  }
}
.pri_bold {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.pri_left {
  max-width: 760px;
}
.pri_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: bold;
  max-width: 100px;
  width: 100%;
  @media screen and (max-width:767px) {
    max-width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width:767px) {
  
.form-element-container {
}
.form-field-input-pair {
  display: block;
}
.form-field {
  width: 100%;
  padding: 15px 5%;
}
.form-input {
  width: 100%;
  padding: 15px 5%;
}
.confirm {
  gap: 20px 10px;
  justify-content: center;
}
input[type="submit"], input[type="reset"], button{
  width: calc(50% - 5px);
  height: 50px;
}

.back_home a{
  width: calc(50% - 5px);
  height: 50px;
}
/* 三角フロー図 ----------------------------*/
.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.1rem;
    width: 33%;
}


.w_full {
  width: 100%;
}
}