@charset "utf-8";
/* CSS Document */

/* -------------------------------------------------

mainArea

------------------------------------------------- */
.mainArea{
  background-image: url("../images/bg_pattern.jpg");
}
.mainArea > h2{
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
  color:#fff;
}
.mainArea > h2:after{
  content: "";
  border-bottom: 8px solid #fff;
  display: block;
  width: 200px;
  margin: 30px auto 0;
}

/* PC */
@media print, screen and (min-width:769px) {
.mainArea{
  padding: 70px 0;
}
.mainArea > h2{
  font-size: 2.5em;
  margin: 0 0 40px;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.mainArea{
  padding: 50px 0;
  background-size:800px auto;
}
.mainArea > h2{
  font-size: 2.3em;
  margin: 0 0 30px;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.mainArea{
  padding: 30px 0;
  background-size:600px auto;
}
.mainArea > h2{
  font-size: 1.8em;
  letter-spacing: 0;
}
.mainArea > h2:after{
  border-bottom: 6px solid #797762;
  margin: 15px auto 0;
}
}

/* -------------------------------------------------

copyArea

------------------------------------------------- */
.copyArea{
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
}
.copyArea h3{
  font-weight: 700;
}
/* PC */
@media print, screen and (min-width:769px) {
.copyArea{
  width: 1000px;
  margin: 0 auto 40px;
}
.copyArea h3{
  font-size: 1.8em;
}
.copyArea p{
  font-size: 1.3em;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.copyArea{
  margin: 0 20px 20px;
}
.copyArea h3{
  font-size: 1.3em;
}
.copyArea p{
  font-size: 1em;
}
}


/* -----------------------------------------

stepArea

----------------------------------------- */
.stepArea{
  display: flex;
  justify-content:space-between;
}
.stepArea li{
  width: calc(33.33% - 50px);
  background: #fff;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  padding: 0 0 0 20px;
  position: relative;
  box-sizing: border-box;
  margin-right: 35px;
  box-shadow:-3px 0 3px 0px rgba(0,0,0,0.1);
}
.stepArea li:after {
  content: "";
  position:absolute;
  width:54px;
  height:56px;
  right:-28px;
  top:7px;
  background:#fff;
  -webkit-transform:rotate(45deg);
  transform:rotate(45deg);
  border-radius:10px;
  vertical-align: middle;
  z-index: -1;
}
.stepArea li > span{
  color:#fff;
  font-weight: 700;
  background-color: #ee8593;
  border-radius: 50%;
  width: 45px;
  line-height: 45px;
  display: inline-block;
  text-align: center;
  font-size: 1.4em;
}
.stepArea li strong{
  color:#ee8593;
  letter-spacing: 5px;
  font-weight: normal;
}
.stepArea li.active{
  background:url("../images/bg_pink.jpg");
}
.stepArea li.active:after {
  background:url("../images/bg_pink.jpg");
}
.stepArea li.active > span{
  color:#ee8593;
  background-color: #fff;
}
.stepArea li.active strong{
  color:#fff;
}
.stepArea li strong span.ta{
  display: inline;
}
/* PC */
@media print, screen and (min-width:769px) {
.stepArea{
  max-width: 1040px;
  margin: 0 auto 50px;
}
.stepArea li > span{
  margin-right: 30px;
}
.stepArea li strong{
  font-size: 1.5em;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.stepArea{
  padding: 0 30px 30px;
}
.stepArea li > span{
  margin-right: 15px;
}
.stepArea li strong{
  font-size: 1.2em;
}
}
/* SP横向き */
@media screen and (max-width:768px) and (orientation: landscape) {
.stepArea li strong{
  font-size: 1.1em;
  letter-spacing:3px;
}
.stepArea li strong span.ta{
  display: none;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.stepArea{
  padding: 0 20px 30px;
}
.stepArea li{
  width: calc(33.33% - 25px);
  height: 40px;
  line-height: 40px;
  padding: 0 0 0 10px;
  margin-right: 20px;
}
.stepArea li:after {
  width:34px;
  height:34px;
  right:-18px;
  top:3px;
}
.stepArea li > span{
  font-size: 1em;
  margin-right: 5px;
  width: 30px;
  line-height: 30px;
}
.stepArea li strong{
  font-size: 0.8em;
  letter-spacing: 0;
}
.stepArea li strong span.ta{
  display: none;
}
}
/* -----------------------------------------

okArea

----------------------------------------- */
.okArea{
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
}
.okArea p{
  margin: 0 0 30px;
}
.okArea p:first-child{
  font-size: 1.3em;  
}
.okArea p a{
  font-size: 1.2em;  
  display: inline-block;
  background-color: #72c7cd;
  padding: 20px 40px;
  border-radius: 15px;
  color:#fff;
}
.okArea p a:hover{
  transform: translateY(-5px);
}
/* PC */
@media print, screen and (min-width:769px) {
.okArea{
  width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.okArea{
  margin: 0 30px;
  padding: 30px 20px;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.okArea{
  margin: 0 20px;
}
.okArea p a{
  display: block;
  padding: 20px 10px;
}
}

/* -----------------------------------------

policyArea

----------------------------------------- */
.policyArea{
  background:#f9edd8;
  border-radius: 15px;
  padding: 30px;
  box-sizing: border-box;
}
.policyArea > h3{
  text-align: center;
  font-weight: bold;
  font-size: 1.3em;
  margin: 0 0 20px;
}
.policyArea > div{
  border:1px solid #ddd;
  background-color: #fff;
  padding: 30px;
  height: 200px;
  overflow-y: scroll;
  font-size: 0.95em;
}
.policyArea > div div ul{
  margin-left: 20px;
}
.policyArea > div div ul li{
  list-style: disc;
  margin: 0 0 7px;
}
.policyArea > p{
  text-align: center;
  font-weight: bold;
  font-size: 1.3em;
  margin-bottom: 30px;
}
.policyArea > p.policyTxt01 a{
  font-size: 0.7em;
  text-decoration: underline;
}
/* PC */
@media print, screen and (min-width:769px) {
.policyArea > div{
  margin: 0 0 30px;
  box-sizing: border-box;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.policyArea > div{
  margin: 0 0 20px;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.policyArea{
  padding: 20px;
}
.policyArea > div{
  height: 300px;
  padding: 20px;
}
.policyArea > p{
  font-size: 1.1em;
}
}


/* -----------------------------------------

formArea

----------------------------------------- */
.formArea > table{
  width: 100%;
  margin-bottom: 40px;
}
.formArea > table th,
.formArea > table td{
  vertical-align: middle;
  text-align: left;
  border-radius: 5px;
}
.formArea > table th{
  white-space: nowrap;
  background-color: #72c7cd;
  color:#fff;
  position: relative;
  padding: 20px 40px 20px 20px;
}
.formArea > table th.hissu:after{
  content: "※";
  position: absolute;
  right: 20px;
  top:calc(50% - 0.7em);
  color:#fff17d;
}
.formArea > table td{
  background-color: #fff;
  padding: 20px;
}

.sizeXL {
	width: 100% !important;
}
.sizeL {
	width: 70% !important;
}
.sizeM {
	width: 45% !important;
}
.sizeS {
	width: 30% !important;
}
.sizeXS {
	width: 25% !important;
}
/* PC */
@media print, screen and (min-width:769px) {
.formArea{
  max-width: 1040px;
  margin: 0 auto 50px;
}
.formArea > table th,
.formArea > table td{
  font-size: 1.1em;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.formArea{
  padding: 0 20px 30px;
}
.formArea > table{
  border-spacing:5px;
  margin-bottom: 30px;
}
.formArea > table th{
  display: block;
  padding: 10px 20px;
  margin-bottom: 3px;
}
.formArea > table td{
  display: block;
  padding: 20px;
  margin-bottom: 5px;
}
}


/* -------------------------------------------------

form reset

------------------------------------------------- */
.formText {
	padding: 5px;
	margin: 0 5px!important;
	font-size: 1.1em;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
	background-color: #eee!important;
  color: #797762;
	font-family: 'Noto Sans JP', sans-serif;
}
.formDate{
	padding: 5px;
	margin: 0 5px!important;
	font-size: 1.2em;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
	background-color: #eee!important;
}
.formTextArea {
	padding: 5px;
	margin: 0!important;
	font-size: 1.1em;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
	background-color: #eee!important;
	width: 100%;
  color: #797762;
	font-family: 'Noto Sans JP', sans-serif;
}
input[type="submit"] {
	cursor: pointer;
	border:0;
}
.submitBtn{
	background-color: #ee8593;
	font-family: 'Noto Sans JP', sans-serif;
	color:#fff;
	transition: 0.5s;
  font-size: 0.9em;
  border-radius:7px;
}
.submitBtn:hover{
	transform: translateY(-5px);
  opacity: 0.8;
}
select {
	font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1em;
  color: #797762;
}
.selectSP {
	margin:0 5px;
  display: inline-block;
}
/* PC */
@media print, screen and (min-width:769px) {
select {
	padding: 6px 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	outline: none;
	background-color: #eee;
	vertical-align: top;
}
.submitBtn{
	padding: 20px 80px;
}
}
/* Tablet */
@media screen and (max-width:768px) {

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea {
	margin: 0;
	padding:7px;
	background: none;
	border-radius: 5px;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ddd;
}
.formLayout.input_now .selectSP {
	position: relative;
	width: 55%;
	border: 1px solid #ddd;
	border-radius: 3px;
	display: inline-block;
  background-color: #eee;
}
.formLayout.input_now .slctSizeS {
	width: 28%;
}
.formLayout.input_now .slctSizeM {
	width: 50%;
}
.formLayout.input_now .selectSP::after{
	position: absolute;
	top:calc(50% - 10px);
	right: 8px;
	color: #797762;
	font-size: 16px;
	font-family: "Font Awesome 5 Free";
	content: "\f0d7";
	font-weight: bold;
}
.formLayout.input_now .selectSP > select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	height: 32px;
	line-height: 32px;
	font-size: 16px;
	box-sizing: border-box;
	padding-left: 5px;
	border: none;
	background-color: transparent;
	border-radius: 0;
	outline: none;
}
.submitBtn{
	padding: 20px;
	width:80%;
  font-size: 1em;
}
/* SearchBtn */
#submit_check{
	width: 90%;
}
input[type="submit"] {
	-webkit-appearance: none;
	font-size: 1em;
}
}



/* エラーメッセージ
-------------------------------------------------*/
.formLayout #errorMessage {
	box-sizing: border-box;
	width:100%;
	background:#FFF;
	border:3px solid #f00;
	padding:10px;
	margin:0 auto 10px auto;
	color:#F00;
	max-width: 1040px;
}
@media screen and (max-width: 768px) {
  .formLayout #errorMessage {
    width: auto;
    margin-right: 30px;
    margin-left: 30px;
  }
}

/* 画面別表示/非表示
-------------------------------------------------*/
.formLayout.input_now .display_check,
.formLayout.check_now .display_input{
	display:none;
}

.formLayout.check_now .selectSP {
  vertical-align: bottom;
}





/* -------------------------------------------------

footer

------------------------------------------------- */
footer address{
  background-color: #eee;
  text-align: center;
  letter-spacing: 1px;
  color:#b4b4b4;
  padding: 40px 20px;
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
footer address{
  padding: 30px;
  letter-spacing:0;
  text-align: left;
}
}

/* -------------------------------------------------

footerLink

------------------------------------------------- */
.footerLink{
  position: fixed;
  bottom: 0;
  right: 15px;
  padding-bottom: 15px;
  display: flex;
}
.footerLink a{
  padding: 20px;
  box-sizing: border-box;
	color: #fff;
	font-weight: bold;
	display: block;
	background-color: #dabc00;
}
.footerLink a:hover{
  background-color: #e6c706;
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {

}

