@charset "utf-8";


body {
	overflow-y: scroll; /* あってもなくてもどちらでも可 */
}


div#confirm_field {
}

div#confirm_field {
	display: none;
}

#confirm_field dl * {
  box-sizing: border-box;
}

#confirm_field dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  border-top: 1px solid #cfcfcf;
  border-left: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf;
}

#confirm_field dl dt {
  position: relative;
  display: flex;
  align-items: center;
  width: 30%;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 20px 10px;
  background-color: #f6f6f6;
  border-right: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
}

#confirm_field dl dd {
  width: 70%;
  padding: 20px 10px;
  border-bottom: 1px solid #cfcfcf;
}

#confirm_field dl dt .optional {
  display: none;
}

#confirm_field dl dt .required {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  height: 22px;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  background: #cc0000;
  padding: 2px 7px;
}

form[name="catalog"] input[type="tel"],
form[name="catalog"] input[type="email"] {
    width: 85%;
}

#confirm_submit_button {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  color: #353535;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  padding: 10px 0 9px;
  border: 2px solid #E2E2E2;
  background-color: #ffffff;
  background-image: url(../img/arw_wb.png);
  background-position: 92% 50%;
  background-position: right 18px top 50%;
  background-repeat: no-repeat;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

#confirm_cancel_button {
	padding: 5px;
	font-size: 1.6rem;
	vertical-align: middle;
}








/* -- responsive ----------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {

#confirm_field dl dt {
  width: 100%;
  padding: 11px 25px;
  border-right: none;
}

#confirm_field dl dd {
  width: 100%;
  padding: 11px 19px;
}

form[name="catalog"] input[type="tel"],
form[name="catalog"] input[type="email"] {
    width: 90%;
}

#confirm_submit_button {
  width: 100%;
}
  
}
/* 1000pixel end */




