@charset "utf-8";

.mainVisual {
  background: url("../img/mainVisual_pc.jpg") center top no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
}

@media screen and (max-width:1200px){
  .mainVisual {
    background: url("../img/mainVisual_pc.jpg") center top 80px no-repeat;
    background-size: 100% auto;
    background-attachment: fixed;
  }
}

@media screen and (max-width:1000px){
  .mainVisual {
    background: url("../img/mainVisual_sp.jpg") center top no-repeat;
    background-size: 100% auto;
    background-attachment: scroll;
  }
}

.telArea {
  padding: 3% 0;
}
.telSet {
  width: 50%;
  margin: 0 auto;
  padding: 1em;
  text-align: center;
  border: 1px solid #ef3e2d;
}
.telSet .telNo {
  font-family: 'Lato', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #ef3e2d;
}
.telSet .time {
  font-size: 14px;
  color: #555;
}

@media (max-width: 800px) {
  .telArea {
    padding: 6% 0;
  }
  .telSet {
    width: 94%;  
  }
  .telSet .telNo {
    font-size: 7vw;
  }
  .telSet .time {
    font-size: 2.5vw;
  }
}

.formArea {
  padding: 0 0 8%;
  background: #f7f7f7;
}
.formArea .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5%;
  box-shadow: 0px 10px 10px rgba(0,0,0,.05);
  background: #fff;
}
.formArea h3 {
  margin: 0 0 0.5em;
  font-size: 18px;
  text-align: center;
}
.formArea .lead {
  font-size: 14px;
  text-align: center;
  color: #555;
}
.formArea .lead span {
  color: #ef3e2d;
}

@media (max-width: 800px) {
  .formArea .lead {
    text-align: left;
  }
}

/* mailform */
.formSet {
	padding: 2% 0;
}
.formSet form {
	margin: 4em 0 0;
}

.formSet form .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  margin: 0;
}

.formSet form .wrap .box {
	width: 49%;
  margin: 0 0 1em;
}
.formSet form .wrap .boxL {
	width: 100%;
  margin: 0 0 1em;
}
.formSet form p {
	margin: 0 0 0.25em;
	font-size: 13px;
	color: #666;
}
.formSet form p span {
  color: #ef3e2d;
}

input[type="text"], textarea {
  display: block;
	width: 100%;
  margin: 0 0 1em;
	padding: 5px;
	font-size: 110%;
  line-height: 2em;
  border: none;
  background: #ebebeb;
}
input[type="text"] + p, 
textarea + p {
  margin: -1em 0 0;
}
.formSet form .btnSet {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
	margin: 1.5em 0 3em;
}
.btnWrap {
  position: relative;
  margin: 0 2%;
  padding: 0;
  width: 15em;
  height: 60px;
  border: 1px solid #ef3e2d;
}
.formSet input[type="submit"], .formSet input[type="reset"], .formSet input[type="button"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
	display:inline-block;
  color: #ef3e2d;
  letter-spacing: .2em;
  border: none;
  background: none;
}
.btnWrap i {
  position: absolute;
  top: 0;
  right: 1em;
  line-height: 60px;
  color: #ef3e2d;
}

.formSet .policy {
  height: 15em;
  padding: 1em;
  font-size: 12px;
  color: #555;
  background: #f7f7f7;
  overflow-y: scroll;
}
.formSet label {
  font-size: 13px;
	color: #666;
}
input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  vertical-align: -0.8rem;
  transition:all .15s ease-out 0s;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: .4rem;
  outline: none;
  border-radius: 10%;
}
/* Checkbox */
input[type=checkbox]:before,input[type=checkbox]:after {
  position: absolute;
  content: "";
  background: #fff;
  transition: all .2s ease-in-out;
}
input[type=checkbox]:before {
  left: 2px;
  top: 6px;
  width: 0;
  height: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
input[type=checkbox]:after {
  right: 9px;
  bottom: 3px;
  width: 2px;
  height: 0;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transition-delay: .2s;
}
input[type=checkbox]:checked:before {
  left: 1px;
  top: 10px;
  width: 6px;
  height: 2px;
}
input[type=checkbox]:checked:after {
  right: 5px;
  bottom: 1px;
  width: 2px;
  height: 14px;
}
input[type=checkbox]:indeterminate:before,input[type=checkbox]:indeterminate:after {
  width: 7px;
  height: 2px;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}
input[type=checkbox]:indeterminate:before {
  left: 1px;
  top: 7px;
}
input[type=checkbox]:indeterminate:after {
  right: 1px;
  bottom: 7px;
}

input[type=checkbox],input[type=radio] {
    border: 2px solid #ef3e2d;
}
input[type=checkbox]:checked,input[type=checkbox]:indeterminate,input[type=radio]:checked:before {
    background: #ef3e2d;
}


@media (max-width: 480px) {
	.formSet form .wrap .box {
		width: 100%;
	}
}

.access {
  padding: 5% 0;
  background: #fff;
}
.access .wrap {
  justify-content: space-between;
}
.access .txSet {
  width: 30%;
}
.access h3 {
  font-size: 18px;
}
.access .mapSet {
  width: 65%;
}
.access .mapWrap {
  position: relative;
  width: 100%;
  padding-top: 65%;
}
.access .mapWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .access {
    padding: 8% 0 12%;
  }
  .access .txSet {
    width: 100%;
    margin: 0 0 1.5em;
  }
  .access .mapSet {
    width: 100%;
  }
}


.confirm {
  padding: 12% 0;
}

.thanks {
  padding: 12% 0;
}
.thanks h3 {
  margin: 0 0 0.5em;
  font-size: 18px;
  text-align: center;
}
.thanks .tx {
  text-align: center;
}