@charset "UTF-8";

/*ヘッダフッタ機能非表示*/
#gNav,
#pNav {
	display: none;
}

#tabArea {
	display: none;
}

#fNav ul li {
	display: none;
}
#hamburger p {
	display: none;
}
/*ヘッダフッタ機能非表示*/


/* layout */

.formArea {
  margin:0;
  padding:30px 0 0 0;
}

h2.title {
  font-size:22px;
  font-size:2.2rem;
  line-height:30px;
  line-height:3rem;
  font-weight:bold;
  max-width:1130px;
  margin:0 auto;
  /*padding:65px 0 15px 0;*/
  padding:40px 0 15px 0;
  background:#fdf4ef;
}

.pc_none {display:none;}
.sp_none{display:block;}

@media only screen and (max-width: 480px) {
.pc_none{display:block;}
.sp_none {display:none;}
	
h2.title {
  padding:15px 0;
}
}

h2.title p {
  font-weight:bold;
}

h3.title {
  font-size:16px;
  font-size:1.6rem;
  line-height:20px;
  line-height:2rem;
  font-weight:bold;
  margin:0;
  padding:25px 0 10px 0;
}

h3.title::before {
  display:inline-block;
  content:"";
  width:0.4rem;
  height:2rem;
  background:#000;
  margin:0 10px 0 0;
  padding:0;
  font-size:20px;
  font-size:2rem;
  line-height:20px;
  line-height:2rem;
  font-weight:bold;
  vertical-align:middle;
}

dl {
  width:100%;
  margin: 0;
  padding: 0;
  font-size: 0;
  border-top:2px solid #fff;
  border-bottom:2px solid #fff;
  display: inline-table;
}

dl dt {
  position:relative;
  width: 30%;
  display: table-cell;
  margin: 0;
  padding: 7px 0;
  background: #f4f4f4;
  text-align: center;
  vertical-align: middle;
}

dl dd {
  width: 68%;
  display: table-cell;
  margin: 0;
  padding: 0 1%;
  vertical-align: middle;
  background:#fff;
}

@media only screen and (max-width: 480px) {
dl dt {
  width: 98%;
  display: inline-block;
  margin: 0;
  padding: 7px 1%;
  text-align: left;
  vertical-align: top;
}

dl dd {
  width: 98%;
  display: inline-block;
  margin: 0;
  padding: 2% 1%;
  vertical-align: top;
  background:#fff;
}
}

dl dd p {
  margin:0;
  padding:2px 0;
}

.w50p {
  width: 50%;
  display: inline-block;
}
.w30p {
  width: 30%;
  display: inline-block;
}

/* form reset css  */

input, button, textarea, label {
  position:relative;
  margin: 0;
  padding: 5px 1%;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  line-height: 2.2rem;
}

/* IE only */
input::-ms-clear {
 display: none;
}
 input::-ms-reveal {
 display: none;
}

/* radio */
input[type="radio"] {
  display: none;
  display: inline-block\9;
}

label.radio {
  width: auto;
  position: relative;
  display: inline-block;
  padding: 5px 5px 5px 30px;
  line-height: 20px;
  line-height: 2rem;
  cursor: pointer;
}

label.radio::before, label.radio::after {
  position: absolute;
  content: '';
  top: 50%;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

label.radio::before {
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  background: #f3f3f3;
  border: 1px solid #ccc;
}

label.radio:hover::before {
  background: #fff;
}

label.radio::after {
  opacity: 0;
  left: 5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #d76261;
  -webkit-transform: scale(2);
  transform: scale(2);
}

input[type="radio"]:checked + label::before {
  background: #fff;
  border: 1px solid #d76261;
}

input[type="radio"]:checked + label::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* checkbox */
input[type="checkbox"] {
  display: none;
}

label.checkbox {
  width: auto;
  position: relative;
  display: inline-block;
  padding: 5px 5px 5px 30px;
  line-height: 20px;
  line-height: 2rem;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}

label.checkbox::before, label.checkbox::after {
  position: absolute;
  content: '';
  -webkit-transition: all .2s;
  transition: all .2s;
}

label.checkbox::before {
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 3px;
}

label.checkbox::after {
  opacity: 0;
  top: 50%;
  left: 2px;
  width: 14px;
  height: 7px;
  margin-top: -7px;
  border-left: 3px solid #d76261;
  border-bottom: 2px solid #d76261;
  -webkit-transform: rotate(-45deg) scale(.5);
  transform: rotate(-45deg) scale(.5);
}

label.checkbox:hover::before {
  background: #fff;
}

input[type="checkbox"]:checked + label::before {
  background: #fff;
  border: 1px solid #d76261;
}

input[type="checkbox"]:checked + label::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

/* focus color */

input, textarea, textarea {
  outline: none;
  border: 1px solid #ccc;
  -webkit-transition: all .3s;
  transition: all .3s;
}

input:focus, textarea:focus, textarea:focus {
  box-shadow: 0 0 7px #d76261;
  border: 1px solid #d76261 !important;
}

/* select */

/*
label.select::after {
  display: inline-block;
  content: "：";
  margin: 0;
  padding: 0;
}
*/
select {
  width: 100%;
  background: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin: 2px 0;
  padding: 5px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  line-height: 2.2rem;
}

select:hover {
  background: #fff;
}

/* button */



/* must */
span.must {
  margin: 0 10px;
  padding: 4px;
  background: #f00;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  vertical-align:middle !important;
}

dl dt span.must {
  position:absolute;
  right:0;
  margin: 0 10px;
  padding: 2px 4px;
}

.w50p input {
  width:85%;
}
@media only screen and (max-width: 736px) {
.w50p input {
  width:70%;
}
}
.name1:before {
  display:inline-block;
  content:"姓：";
  margin:0;
  padding:5px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}

.name2:before {
  display:inline-block;
  content:"名：";
  margin:0;
  padding:5px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}
.kana1:before {
  display:inline-block;
  content:"セイ";
  margin:0;
  padding:5px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}

.kana2:before {
  display:inline-block;
  content:"メイ";
  margin:0;
  padding:5px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}

input#age {
  width:50px;
}

select#address1 {
  width:auto;
  margin:0 0 0 10px;
}
input#postcode1 {
  width:40px;
}
input#postcode2 {
  width:80px;
}
input#address2,
input#address3 {
  width:85%;
}
@media only screen and (max-width: 736px) {
input#address2,
input#address3 {
  width:97%;
}
}
input#tel1,
input#tel2,
input#tel3 {
  width:15%;
}
@media only screen and (max-width: 736px) {
input#tel1,
input#tel2,
input#tel3 {
  width:27.5%;
}
}
input#email1,
input#email2 {
  width:97%;
}

textarea#etc {
  width:97%;
  resize: vertical;
}

.submit {
  text-align:center;
  font-size:0;
  margin:0;
  padding:5% 0 0 0;
}

.submit input {
  display:inline-block;
  margin:0 0.5% 5% 0.5%;
  background:url(../../imgs/hdrLine.png) top center repeat-y;
  padding:10px;
  color:#fff;
  font-weight:bold;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.submit input:hover {
  background:url(../../imgs/hdrLine.png) top right repeat-y;
}
#part {
  display:none;
}

.ppLink {
  position:relative;
  margin:30px 0 0 0;
  padding:0;
  font-size:16px;
  font-size:1.6rem;
  font-weight:bold;
  text-align:center;
}

.ppLink::before {
  display:inline-block;
  content:"";
  margin:0 0.5rem 0 0;
  padding:0;
  width:9px;
  height:9px;
  border:1px solid #444;
  border-right:2px solid #444;
  border-bottom:2px solid #444;
}
.ppLink a{
  text-decoration:underline;
}
