@charset "utf-8";
.pagevisual{
  background: url("../img/mv.webp") no-repeat center;
  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;
}
.cont_fix{
  display: none;
}
/* form共通
============================================== */
.w_all {width: 100%;}
.w_full {width: 80%;}
.w_middle {width: 65%;}
.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: 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;
}
/* 確認・送信 ========== */
input[type="submit"], input[type="reset"], button {
    padding: 0;
    width: 150px;
    height: 70px;
    margin: 30px 35px 0;
    background: #000;
  color: #fff;
    font-size: 1em;
font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3";
}
/* リセット・戻る ========== */
input[type="reset"], input[type="submit"].back {
    background: #CBCBCB;
  
}
input[type="reset"].reset{
  color: #000;
  font-weight: bold;
}
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;
}
.confirm{
  padding-top: 100px;
}
/* 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;
  margin-bottom: 10px;
  font-weight: bold;
}
.top_caution {
    margin: 1em 0;
  font-weight: bold;
}
.sub_text {
    margin: 1em 0 5px;
}
.sub_text.mt_0 {
    margin-top: 0;
}
.confirm{
  background-color: #fff;
  max-width: 571px;
  width: 90%;
  font-weight: bold;
  margin: auto;
  padding: 0px 0 50px;
  margin-top: 100px;
}
/* 以下ページごと
============================================== */
.container, .root-container {
    max-width: 976px;
    width: 90%;
    margin: 65px auto;
}
.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 {
    padding: 15px 35px;
    background: #000;
    border-radius: 5px;
    color: #fff;
}
/* table ========== */
.form-field {
    display: table-cell;
    width: 260px;
    padding: 20px 10px;
    vertical-align: middle;
    padding-left: 30px;
    border-bottom: 1px solid #a5a5a5;
    background: #f7f8f8;
    color: #000;
}
.form-input {
  display: table-cell;
  vertical-align: middle;
  padding: 20px 20px;
  border-bottom: 1px solid #a5a5a5;
  font-weight: bold;
}
.form-element-container {
  display: table;
  width: 100%;
  margin: 0px auto 0;
  border-top: 2px solid #000;
}
.form-field-input-pair {
  display: table-row;
}
/* 確認部分
============================================== */
.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;
}
.flow-triangle li {
  display: table-cell;
  position: relative;
  background: #ECEEEE;
  padding: 0.95em 0.5em 0.95em 2em;
  color: #000;
  font-weight: bold;
  width: 33%;
  font-size: 1.6rem;
}

.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: 38px 0 40px 1em;
  z-index: 1;
}
.flow-triangle li:after{
  top:-10px;
  right:-.8em;
  border-style: solid;
  border-color: transparent transparent transparent #ECEEEE;
  border-width: 38px 0 40px 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;
  color: #000;
  line-height: 1.5;
  font-size: 2rem;
  align-items: center;
}
.flow-triangle .is-current span {
  background: #fff;
}
/* ページ固有
------------------------------------------------------
------------------------------------------------------*/

.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}
.modal-container .img {
    background: #f1f1f1;
    margin-bottom: 15px;
}
.modal-container p {
    margin-bottom: 10px;
}
.modal-container p:last-child {
    margin-bottom: 0;
}
.modal-content {
    background: #FFF;
    overflow-y: auto;
    padding: 50px;
    max-width: 1100px;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 600px;
    animation: show 0.6s linear 0s;
    filter: drop-shadow(0px 2px 6px #777);
}
.modal-top {
  display: flex;
  width: 30px;
  height: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  right: 5px;
  top: 5px;
}
.modal-toggle{
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.modal-close {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    line-height: 1;
    padding: 0 8px;
}
.modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}
.privacy{
  max-width: 1024px;
  width: 90%;
  margin: auto;
}
.pri_inner h3{
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 10px;
  text-indent: -1.5em;
  padding-left: 1em;
}
.pri_inner p{
  font-size: 2rem;
  padding-bottom: 40px;
  font-size: 1.5rem;
}
.pri_inner .last{
  padding-bottom: 0px;
}


/* 固有レスポンシブ
------------------------------------------------------
------------------------------------------------------*/
/*タブレット（縦）*/
@media screen and (orientation: portrait) and (min-width: 768px){}

@media screen and (max-width: 767px) {
.pri_inner{
  background-color: #fff;
  padding: 20px 7%;
}
.modal-content {
    padding: 50px 0%;
}
  .w_full ,.w_middle , .w_half.mail{
    width: 100%;
    max-width: calc(100% - 5em);
}
  .form-element-container {
    margin: 30px auto 0;
  }
  .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: 175px;
    height: 60px;
    margin: 30px 15px 0;
    color: #fff;
font-weight: 900;
  font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3";
}
.btn_box {
  padding: 50px 0%;
  width: 100%;
  text-align: center;
}
.label_left {
  margin-right: 0px;
}
/* 三角フロー図 ----------------------------*/
.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: 3px 1% 3px 3%;
    font-size: 1.2rem;
    width: 33%;
    letter-spacing: 0;
    text-align: center;
}
.confirm{
  text-align: center;
  margin-top: 50px;
}
.flow-triangle li:before{
  border-width: 40px 0 40px 1em;
}
.flow-triangle li:after{
  border-width: 40px 0 40px 1em;
}
  .modal-content {
    background: #FFF;
    overflow-y: auto;
    max-width: 1100px;
    width: 90%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 600px;
    animation: show 0.6s linear 0s;
    filter: drop-shadow(0px 2px 6px #777);
    height: 80%;
}
}
