@charset "utf-8";

/* お問い合わせ
   ========================================================================== */
* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
	
}

/* インデックス
   ========================================================================== */
.contact-index li {
  position: relative;
  margin-top: 20px;
  border: 1px solid #dadada;
	border-top: 2px solid #32abde;
}
.contact-index li::before,
.contact-index li::after {
  position: absolute;
  display: block;
  content: "";
  top: -2px;
  height: 2px;
}
.contact-index li::before {
  left: -1px;
  border-left: 1px solid #32abde;
}
.contact-index li::after {
  right: -1px;
  border-right: 1px solid #32abde;
}
.contact-index li > a {
  display: block;
  padding: 6px 10px 10px 10px;
}
.contact-index .ttl {
  font-size: 1.6rem;
  font-weight: bold;
	margin-bottom: 1em;
}
@media (min-width:769px){
	.contact-index > p:first-of-type {
		margin-top: 0 !important;
	}
	.contact-index ul {
    display: flex;
    flex-wrap: wrap;
		margin-top: 30px;
	}
  .contact-index li {
    width: calc((100% - 30px) / 2);
		margin: 30px 30px 0 0;
  	border-top: 4px solid #32abde;
  }
  .contact-index li:nth-child(2n) {
    margin-right: 0;
  }
  .contact-index li::before,
  .contact-index li::after {
    top: -4px;
    height: 4px;
  }
	.contact-index li:first-child,
	.contact-index li:nth-child(2) {
		margin-top: 0;
	}
  .contact-index li > a {
    padding: 16px 20px 20px 20px;
    transition: .3s;
  }
  .contact-index li > a:hover {
		opacity: 0.6;
  }
	.contact-index .ttl {
    font-size: 1.8rem;
  }
	.contact-index .arrow-link:hover {
		text-decoration: none !important;
	}
}



/* フォーム共通
   ========================================================================== */
.form-area .req {
	color: #f00;
	font-size: 1.2rem;
	font-weight: bold;
}
.form-area > p:first-of-type {
	margin-top: 0;
}
.form-area table {
	width: 100%;
  font-size: 1.4rem !important;
	margin-top: 1em;
}
.form-area th {
	display: block;
	width: 100%;
	text-align: left;
	line-height: 1.0;
	padding: 1em 0 0.5em;
}
.form-area th .notes {
	margin-top: 0 !important;
}
.form-area td {
	display: block;
	padding-bottom: 1em;
}
.form-area input[type="text"],
.form-area input[type="email"],
.form-area textarea {
	width: 100%;
  height: 40px;
	padding: 10px;
  border: 1px solid #dadada;
}
.form-area input[type="text"]:focus,
.form-area input[type="email"]:focus,
.form-area textarea:focus {
	border-color: #32abde;
  outline: none;
}
.form-area textarea {
  height: 80px;
}
.form-area td .notice {
	display: block;
	font-size: 1.2rem;
	padding: 0;
	border: 0;
	margin-top: .5em;
}
.form-area .wpcf7-list-item {
	margin-left: 0 !important;
}
@media (min-width:769px){
	.form-area .req {
		font-size: 1.4rem;
	}
	.form-area table {
		display: table;
    font-size: 1.8rem !important;
	}
	.form-area th {
		display: table-cell;
		width: 1%;
		white-space: nowrap;
		font-weight: normal;
		line-height: 1.7;
		padding: 0 20px 0 0;
	}
	.form-area th .notes {
		margin-top: 0 !important;
	}
	.form-area td {
		display: table-cell;
		/*width: 850px;*/
		width: auto;
		padding-top: 1em;
	}
	.form-area td .notice {
		font-size: 1.4rem;
	}
	.form-area input[type="text"]:hover,
	.form-area input[type="email"]:hover,
	.form-area textarea:hover {
		border-color: #32abde;
	}
  .form-area textarea {
    height: 150px;
  }
}



/* チェックボックス
   ====================================== */
.wpcf7-checkbox .wpcf7-list-item {
	display: block;
	margin-top: 20px;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 50px;
  margin-right: 0;
  cursor: pointer;
}
input[type="checkbox"] + span::before {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  margin-top: -18px;
  border: 2px solid #dadada;
}
input[type="checkbox"]:checked + span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 19px;
  height: 10px;
  margin-top: -11px;
  border-left: 3px solid #32abde;
  border-bottom: 3px solid #32abde;
  transform: rotate(-45deg);
}
@media (min-width:769px){
	input[type="checkbox"] + span {
		padding: 0 0 0 40px;
	}
	input[type="checkbox"] + span:hover::before {
		border-color: #32abde;
	}
}


/* ラジオボタン
   ====================================== */
.wpcf7-radio > span.wpcf7-list-item {
	display: block !important;
	margin-top: 20px;
}
input[type="radio"] {
	display: none;
}
input[type="radio"] + span {
  position: relative;
  padding: 0 0 0 50px;
  margin-right: 0;
  cursor: pointer;
}
input[type="radio"] + span::before {
	display: block;
	position: absolute;
	content: "";
	top: 50%;
	width: 30px;
	height: 30px;
	margin-top: -18px;
	border: 2px solid #dadada;
	border-radius: 40px;
}
input[type="radio"]:checked + span::after {
	display: block;
	position: absolute;
	content: "";
	top: 50%;
	left: 8px;
	width: 18px;
	height: 18px;
	margin-top: -10px;
	background: #32abde;
	border-radius: 20px;
}
@media (min-width:769px){
	input[type="radio"] + span {
		padding: 0 0 0 40px;
	}
	input[type="radio"] + span:hover::before {
		border-color: #32abde;
	}
}


/* 送信ボタンエリア
   ====================================== */
.submit-area {
	margin: 20px 0 30px 0;
}
.submit-check {
	display: block;
}
@media (min-width:769px){
	.submit-area {
    text-align: center;
		margin: 40px 0 50px 0;
	}
	.submit-area .wpcf7-list-item-label {
		text-align: left;
	}
	.input-wrap {
		padding: 50px;
		text-align: center;
		background-color: #ccf;
	}
}


.wpcf7-submit {
	display: block;
	margin: 0 auto;
}

.form-area input[type="submit"] {
  width: 100%;
	background-color: #32abde;
	font-size: 1.6rem;
  color: #fff;
	text-align: center;
	line-height: 1.0;
	padding: calc(1em + 1px) 0 1em 0;
	margin-top: 10px;
}
.form-area input[type="submit"][disabled]{
	background-color: #dadada;
	color: #999;
	transition: 0;
}
@media (min-width:768px) {
  .form-area input[type="submit"] {
		width: 300px;
		font-size: 1.8rem;
		padding: calc(1em + 3px) 0 1em 0;
		margin-top: 20px;
		transition: .3s;
  }
  .form-area input[type="submit"]:hover {
		cursor: pointer;
    opacity: 0.6;
  }
  .form-area input[type="submit"][disabled]:hover {
		cursor: not-allowed;
    opacity: 1;
  }
}

/*cf7送信完了メッセージ*/
.form-area .wpcf7-mail-sent-ok {
	display:none !important;/*非表示*/
}



/* 注意書き
   ====================================== */
.form-area .notice {
	padding: 11px 10px 10px;
	margin-top: 20px;
	border: 1px solid #f00;
}
.form-area .notice a {
	font-weight: bold;
	text-decoration: underline;
}
@media (min-width:768px) {
	.form-area .notice {
		padding: 22px 20px 20px;
		margin-top: 30px;
	}
	.form-area .notice a:hover {
		text-decoration: none;
	}
}



/* 送信完了ページ
   ========================================================================== */
.form-area .thanks {
	margin: 20px 0;
}
.form-area .thanks p {
	font-size: 1.6rem;
}
@media (min-width:768px) {
	.form-area .thanks {
		margin: 40px 0;
	}
	.form-area .thanks p {
		font-size: 2.4rem;
		text-align: center;
	}
}


/* セミナーお申し込みフォーム
   ========================================================================== */
@media (min-width:768px) {
	.seminar-name .wpcf7-checkbox .wpcf7-list-item:first-of-type {
		margin-top: 0;
	}
}

.seminar-form .submit-area {
	padding-top: 20px;
	border-top: 1px solid #dadada;
}
@media (min-width:768px) {
	.seminar-form .submit-area {
		padding-top: 40px;
	}
}


.seminar-time-other-area {
	margin-top: 20px;
}
@media (min-width:768px) {
	.seminar-time-other-area {
		display: flex;
		margin-top: 20px;
	}
	.seminar-time-other-area > div:first-of-type {
		margin-right: 20px;
	}
	.seminar-time-other-area input {
		width: 300px !important;
	}
}









