@charset "utf-8";
/*---------------------------------
  Form Style
---------------------------------*/
.entry_content dl {
  display: flex;
  flex-wrap: wrap;
}

.entry_content dl:last-of-type {
  margin-bottom: 5em;
}

.entry_content dl dt,
.entry_content dl dd {
  box-sizing: border-box;
  padding: 2em 1em;
}

.entry_content dl dt {
	display: flex;
	align-items: center;
	width: 30%;
  font-weight: 600;
  border-bottom: solid 1px;
  border-image: linear-gradient(to right, #ff9933, #ff7166) 1;
}

.entry_content dl dt i {
  font-style: normal;
	position: relative;
  top: -2px;
}

.entry_content dl dd {
	width: 70%;
  border-bottom: dashed 1px #dcdfe1;
  padding-left: 2em;
}

.entry_content dl dd a {
  color: #ff7166;
  text-decoration: underline;
}

.entry_content dl dd a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

/* accordion */
.privacy_content {
  width: 100%;
  margin-bottom: 20px !important;
}

.privacy_open {
  width: 100%;
	border: solid 1px #dfe1e5;
	border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  padding: 0.7em 1.5em;
}

.privacy_open:after {
  content: "\f055";
  font-family: 'Font Awesome 5 Free';
  color: #ff7166;
  font-weight: 600;
  font-size: 21px;
  position: absolute;
  right: 15px;
}

.privacy_open.active:after {
  content: "\f056";
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
}

.privacy_inner {
	border-left: solid 1px #dfe1e5;
	border-right: solid 1px #dfe1e5;
	border-bottom: solid 1px #dfe1e5;
	background: #fff;
	padding: 1.5em;
}

.privacy_inner h5 {
  font-size: 13px;
  margin: 1em 0 0.2em 0;
}

.privacy_inner p,
.privacy_inner li {
  font-size: 12px;
  line-height: 1.8em;
}

/* .required, .optional */
.entry_content dl dt span.required,
.entry_content dl dt span.optional {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 2em;
  letter-spacing: 0.1em;
	border-radius: 3px;
	display: inline-block;
  margin-right: 1em;
	padding: 0 0.5em;
}

.entry_content dl dt span.required {
	background: #ff7166;
}

.entry_content dl dt span.optional {
  color: #c0c4cc;
  border: solid 1px #c0c4cc;
}

/* error message */
.entry_content dl dd span.error_blank,
.entry_content dl dd span.error_format,
.entry_content dl dd span.error_match {
	color: #ff7166;
	display: block;
	margin-top: 5px;
}

/*---------------------------------
  Basic
---------------------------------*/
button,
input,
select,
textarea {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 16px !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

input,
select,
textarea {
  border: none !important;
  background: #f6f7f8;
	border-radius: 3px;
	-webkit-appearance: none;
	box-sizing: border-box;
}

input,
select {
	padding: 1.2em;
}

textarea {
	width: 100%;
	min-height: 200px;
	padding: 1.2em;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
}

::-webkit-input-placeholder {
  color: #a7aeb3;
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* radio checkbox */
label {
  margin: 0 0.5em;
  position: relative;
  line-height: normal;
  cursor: pointer;
  display: block;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input[type="radio"] + span,
input[type="checkbox"] + span {
  padding-left: 2em;
}
 
/* radio */
input[type="radio"] + span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border: solid 1px #a7aeb3;
  border-radius: 50%;
  display: block;
}

input[type="radio"]:checked + span::before {
  background: #fff;
}

input[type="radio"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 8px;
  left: 5px;
  background: #ff7166;
  border-radius: 50%;
}
 
/* checkbox */
input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: solid 1px #a7aeb3;
  border-radius: 3px;
  display: block;
}

input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 6px;
  width: 8px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 2px solid #ff7166;
  border-right: 2px solid #ff7166;
}

input[type="submit"] {
  width: 30% !important;
  min-width: 300px;
  color: #fff;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
	font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 5em;
  background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
	-webkit-appearance: none;
  margin: 0 auto;
  padding: 1.5em 2em;
  display: block;
	cursor: pointer;
  position: relative;
}

input[type="submit"]:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.wpcf7-form input {
  width: 100%;
}

.wpcf7-not-valid-tip {
  color: #ff7166 !important;
  font-weight: 500 !important;
  display: inline-block;
  padding: 0.5em;
}

.wpcf7-response-output {
  color: #ff7166 !important;
  text-align: center;
  border: none !important;
}

.wpcf7-list-item {
  margin: 0 0 0.5em 0 !important;
}

.wpcf7-spinner {
  display: none !important;
}

@media print, screen and (max-width: 896px) {
  .entry_content dl {
    flex-direction: column;
  }
  
  .entry_content dl:last-of-type {
    border-bottom: solid 1px #dcdfe1;
  }
	
  .entry_content dl dt,
  .entry_content dl dd {
    width: 100%;
    border: none;
  }
	
  .entry_content dl dt {
    border-top: solid 1px #dcdfe1;
    padding-bottom: 0;
    position: relative;
  }
  
  .entry_content dl dt:before {
    content: '';
    width: 100px;
    height: 1px;
    background: linear-gradient(100deg, #ff9933 20%, #ff7166 80%);
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
  }
	
  .entry_content dl dd {
    width: 100%;
    padding-top: 0.5em;
    padding-left: 1em;
  }
}