@charset "UTF-8";


#contact {
  max-width: 1200px;
  margin: 0 auto;
}
#contact table {
  width: 100%;
  border-collapse: collapse;
}
#contact table tr {
  border-bottom: solid 2px white;
}
#contact table tr:last-child {
  border-bottom: none;
}
#contact table th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #4B75C0;
  color: white;
  padding: 3%;
}
#contact table td {
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding: 5%;
}

/* ラジオボタン全体 */
.radio-group{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
	margin-bottom: 20px;
	margin-top: 10px;
}

/* ラジオ本体は非表示 */
.radio02-input{
  display:none;
}

/* ボタンデザイン */
.radio-group label{
  display:block;
  padding:12px 18px;
  border:1px solid #dcdcdc;
  border-radius:6px;
  background:#fff;
  cursor:pointer;
  transition:all .2s;
  font-size:14px;
}

/* ホバー */
.radio-group label:hover{
  border-color:#0D6EB8;
  background:#F3F8FF;
}

/* 選択された時 */
.radio02-input:checked + label{
  border-color:#0D6EB8;
  background:#0D6EB8;
  color:#fff;
}

/*thanksページ*/

.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
	margin-bottom: 30px;
}

.thanks-box {
  background: #fff;
  max-width:700px;
  width: 100%;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.thanks-title {
  font-size: 1.8rem;
  margin-bottom:30px;
  font-weight: 600;
	text-align: center;
	color:#000;
}

.thanks-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
	text-align: left;
}

.thanks-note {
  font-size: 13px;
  color: #777;
  margin-bottom: 32px;
}

.thanks-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0D6EB8;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.thanks-btn:hover {
  opacity: 0.85;
}

.back-blue-thanks{
 background: #D4ECFF;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 10px 4%;
}


/*== 影がついて浮き上がる */
/*ボタンの形状*/
.float3 {
  border: 1px solid #ccc;
  color: #333;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all .3s;
  margin-top: 5%;
  margin-bottom: 2%;
  font-size: 30px;
}
/*hoverをしたらボックスに影がつく*/
.float3:hover {
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}
.heading03 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  text-align: center;
}
.heading03::before, .heading03::after {
  content: '';
  width: 70px;
  height: 3px;
  background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);
}
.heading03::before {
  margin-right: 20px;
}
.heading03::after {
  margin-left: 20px;
}
/*ボタンクリック時*/
.action_input {
  margin: 50px 0;
}
input[type="submit"], input[type="button"] {
  border: 1px solid #0D6EB8;
  color: #fff;
  background: #0D6EB8;
  width: 350px;
  padding: 20px 40px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all .3s;
  margin: 0 5%;
  font-size: 1.3rem;
  white-space: nowrap;
  border-radius: 5px;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover, input[type="button"]:hover {
  opacity: 0.5;
}
input[type="reset"] {
  border: none;
  text-decoration: underline;
  color: #848484;
  padding: 15px 40px;
  display: block;
  outline: none;
  /*アニメーションの指定*/
  transition: all .3s;
  margin: 0 5%;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: 5px;
  background: none;
}
#contact input[type="text"], .selectform {
  border: none; /* 枠線 */
  border-radius: 5px; /* 角丸 */
  padding: 20px 20px; /* 内側の余白量 */
  background-color: #fff; /* 背景色 */
  width: 90%; /* 横幅 */
  height: auto; /* 高さ */
  font-size: 1.3em; /* 文字サイズ */
  line-height: 1.2;
  margin: 20px 10px; /* 行の高さ */
}
input[type="text"]::placeholder {
  color: #DBDBDB;
}
textarea::placeholder {
  color: #DBDBDB;
}
.form_container {
  max-width: 800px;
  margin: 30px auto;
  background: #f8f8f8;
  border-radius: 5px;
  padding: 4%;
}
.heading-28 {
  font-weight: 400;
  font-size: .75rem;
  letter-spacing: .04em;
  text-align: center;
  margin-bottom: 50px;
  color: #0D6EB8;
}
.heading-28::before {
  display: block;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: .02em;
  content: attr(data-label);
}
#contact .contact_area {
  max-width: 800px;
  margin: 0 auto;
  background-color: none;
  padding: 0px 4%;
  border-radius: 10px;
}
#contact .contact_area p {
  padding: 3% 0 0 0;
}
#contact textarea {
  border: none; /* 枠線 */
  border-radius: 5px; /* 角丸 */
  padding: 0.5em; /* 内側の余白量 */
  background-color: #fff; /* 背景色 */
  width: 95%; /* 横幅 */
  height: 120px; /* 高さ */
  font-size: 1.2em; /* 文字サイズ */
  line-height: 1.2; /* 行の高さ */
  margin: 20px 0;
}
#contact .required {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1;
  background-color: #FF902d;
  border-radius: 5px;
  color: #fff;
}
#contact .policy {
  font-size: 20px;
}
/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 900px;
  margin: 0 auto;
}
.con_pri .box_pri {
  height: 250px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}
.con_pri .box_pri .box_tori h4 {
  font-weight: normal;
  margin-bottom: 10px;
  font-size: 150%;
}
.box_tori {
  margin-bottom: 30px;
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
.con_pri .box_pri .box_num h4 {
  font-weight: normal;
  font-size: 113%;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
}
.box_num {
  padding: 2% 0;
  text-align: left;
}