<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.form-area label {
	cursor: pointer;
	margin-right: 15px;
}
::-webkit-input-placeholder {
	color: #ACACAC;
	font-size: 14px;
}

#formWrap .text, #formWrap textarea {
	border:1px solid #777;
	padding: 5px;
	color: #333;
	background: #fff;
	border-radius: 3px;
}	
	
select{
	outline: none;
	text-indent: 0.01px;
	text-overflow: '';
	background: none transparent;
	vertical-align: middle;
	font-size: 14px;
	color: inherit;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	/* padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 4px; */
	/* margin-bottom: 5px; */
	
}

select option{
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring { 
  color: transparent; 
  text-shadow: 0 0 0 #828c9a;
}

#formWrap #privacy {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 40px;
	margin-left: 0px;
}

#formWrap #privacy .pv {
	text-align: left;
	margin: 0px;
	padding: 20px;
	border: 1px solid #CCC;
}

#formWrap #privacy .pv dl {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	line-height: 1.5em;
}

#formWrap #privacy .pv dl .title {
	font-size: 18px;
	text-align: center;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}

#formWrap #privacy .pv dl dt {
	font-weight: bold;
}

#formWrap #privacy .pvbox {
	display: none;
}

#formWrap #privacy .open {
	text-align: center;
	margin-bottom: 20px;
	cursor: pointer;
}

#formWrap #privacy .open span {
	color: #06C;
	text-decoration: underline;
}

#formWrap .selectbt {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	list-style-type: none;
}

#formWrap .next {
	margin-bottom: 30px;
}

#formWrap .selectbt ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}

#formWrap .selectbt li {
	width: 30%;
	list-style-type: none;
}

#formWrap .selectbt li a {
	padding-top: 8px;
	padding-bottom: 8px;
	border: 2px solid #1D4C9E;
	color: #1D4C9E;
	display: block;
	text-decoration: none;
	border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	font-size: 18px;
	font-weight: bold;
}

#formWrap .selectbt li a:hover {
	background-color: #CCDEFF;
}

#formWrap .next a {
	background-color: #1D4C9E;
	width: 50%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
	color: #FFF;
	text-decoration: none;
	font-size: 16px;
}

#formWrap .selectbt p {
	text-align: center;
	margin-bottom: 20px;
	color: #666;
}

#formWrap .price li {
	width: 48%;
}

#formWrap table tr th .notes {
	height: 24px;
	width: 24px;
	display: inline-block;
	position: relative;
	top: 5px;
	left: 10px;
}
#formWrap table tr th .notes img {
	width: 100%!important;
}
.popup_wrap input {
	display: none;
}

.popup_overlay {
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.5s, transform 0s 0.5s;
	transform: scale(0);
}

.popup_trigger {
	position: absolute;
	width: 100%;
	height: 100%;
}

.popup_content {
	position: relative;
	align-self: center;
	width: 90%;
	max-width: 800px;
	box-sizing: border-box;
	background: #fff;
	line-height: 1.4em;
	transition: 0.5s;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

.close_btn {
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 30px;
	cursor: pointer;
}

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.open_btn {
  position: relative;
  top: 10;
  right: 0;
  bottom: 0;
  left: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .3s ease;

}

.open_btn:hover{
    background:#000;
    color:#fff;
    transition: .3s ease;
}

.popup_wrap .popup_overlay .popup_content p {
	text-align: left;
	line-height: 2.0em;
	padding: 20px;
	border: 1px solid #CCC;
}

.popup_wrap .popup_overlay .popup_content p a {
	color: #06C;
	text-decoration: underline;
}

.popup_wrap2 input {
	display: none;
}

.popup_overlay2 {
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.5s, transform 0s 0.5s;
	transform: scale(0);
}

.popup_trigger2 {
	position: absolute;
	width: 100%;
	height: 100%;
}

.popup_content2 {
	position: relative;
	align-self: center;
	width: 90%;
	max-width: 800px;
	box-sizing: border-box;
	background: #fff;
	line-height: 1.4em;
	transition: 0.5s;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

.popup_wrap2 input:checked ~ .popup_overlay2 {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.5s;
}

.open_btn2 {
	position: relative;
	top: 10;
	right: 0;
	bottom: 0;
	left: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: .3s ease;
}

.open_btn2:hover{
    background:#000;
    color:#fff;
    transition: .3s ease;
}

.popup_wrap2 .popup_overlay2 .popup_content2 p {
	text-align: left;
	line-height: 2.0em;
	padding: 20px;
	border: 1px solid #CCC;
}

.popup_wrap2 .popup_overlay2 .popup_conten2t p a {
	color: #06C;
	text-decoration: underline;
}

.close_btn2 {
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 30px;
	cursor: pointer;
}

#formWrap table tr .day {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	grid-gap: .5rem;
	margin-bottom: .5rem;
}
#formWrap table tr div select {
	border: 1px solid #777;
    padding: 5px;
    color: #333;
    background: #fff;
    border-radius: 3px;
}
#formWrap table tr span.small {
	font-size: 14px;
	display: block;
}

@media all, screen and (min-width: 769px) {

#container {
	padding-bottom: 140px!important;
}

.topicPath {
	padding-top: 20px!important;
}
	
.topicPathtopicPathtopicPathtopicPath {
	list-style-type: none;
	font-size: 0.8rem;
	text-align: left;
	margin-top: 10px;
	margin-bottom: 20px;
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
}

#form h1,
#thanks h1 {
	font-size: 24px;
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	line-height: 50px;
	background-image: url(/images/icon_h1_form.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 60px;
	font-weight: bold;
}

#form #top,
#thanks #top {
	overflow: hidden;
}

#form #top .flow,
#thanks #top .flow {
	float: right;
	width: 40%;
	margin-bottom: 10px;
}

#form #top p,
#thanks #top p {
	text-align: left;
}

#form #top p span,
#thanks #top p span {
	font-size: 18px;
	font-weight: bold;
	color: #C00;
}

#formWrap .step,
#thanks .step {
	width: 22%;
	margin-bottom: 20px;
}

#form #top .wrap,
#thanks #top .wrap {
	width: 58%;
	float: left;
}	

#form #top .wrap .bt {
	font-size: 17px;
	box-sizing: border-box;
	border: 2px solid #ddd;
	width: 380px;
	border-radius: 10px;
	text-align: center;
	bottom: 10px;
	right: 20px;
	background-color: #c03d3c;
	font-weight: bold;
	margin-bottom: 20px;
}

#form #top .wrap .bt a {
	color: #fff;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
}

#form #top .wrap .bt a:after {
	content: '';
	display: inline-block;
	width: 21px;
	height: 20px;
	background-image: url(/commonImage/bt_next.png);
	background-size: contain;
	vertical-align: -4px;
	background-repeat: no-repeat;
	padding-left: 3px;
}

#form #top .wrap .bt a:hover {
	background-color: #FFCD01;
	display: block;
}

#form .inner {
	padding: 0px;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

#form .caution {
	font-size: 18px;
	color: #C00;
	font-weight: bold;
}

#form .inner .strong {
	font-size: 18px;
	font-weight: 900;
}

#form h2 {
	font-size: 1.1rem !important;
	text-align: left !important;
	margin:  0 0 20px !important;
	border-left: 3px solid #999999 !important;
	padding: 0 0 0 10px !important;
	color: #333333;
	border-bottom: 2px solid #e66c73;
	font-weight: bold;
}

#formtop {
	font-size: 100%;
	text-align: left;
	line-height: 150%;
	margin-right: auto;
	margin-left: auto;
	border-collapse:collapse;
	margin-bottom: 40px;
	width: 100%;
	margin-top: 20px;
}

/* #formtop .formtop_list {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.5em;
	margin: 0 auto;
	width: 100%;
}

#formtop .formtop_list dl{
	margin: 0 ;
	width: 25%;
}
#formtop .formtop_list dt,
#formtop .formtop_list dd {
	border: 1px solid #CCC;
	box-sizing: border-box;
	line-height: 1.8em;
	text-align: center;
	padding: 15px;
}

#formtop .formtop_list dt {
	background-color: #f1f1f1;
	width: 100%;
}

#formtop .formtop_list dd {
	background-color: #fff;
	width: 100%;
	min-height: 92px;
} */

#formtop .formtop_list {
	padding: 0.5rem;
	margin: 0 auto clamp(2rem, 0.061rem + 8.25vw, 6.25rem);
	max-width: 1100px;
	border-collapse: collapse;
	width: 100%;
  }
  #formtop .formtop_list tr {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
  }
  #formtop .formtop_list th {
	flex: 1;
	padding: 0.5rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(1rem, 0.738rem + 0.81vw, 1.125rem);
	border: 1px solid #ccc;
	background-color: #f1f1f1;
  }
  #formtop .formtop_list td {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(0.875rem, 0.613rem + 0.81vw, 1rem); /*14~16px(520~768px)*/
	padding: 0.5rem 1rem;
	border: 1px solid #ccc;
  }
  #formtop .formtop_list td:nth-of-type(3){
	justify-content: flex-start;
  }


#formWrap {
	margin-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
}

#formWrap table {
	font-size: 100%;
	text-align: left;
	line-height: 1.8em;
	margin-right: auto;
	margin-left: auto;
	border-collapse:collapse;
	margin-bottom: 40px;
	width: 100%;
}

#formWrap th,#formWrap td {
	text-align: left;
	vertical-align: middle;
	padding: 15px;
	line-height: 1.5em;
	border: 1px solid #CCC;
}

#formtop .formtop_list dd b {
	color: #CC0000;
}

#formWrap td.tantou .radio {
	display: block;
	width: 97%;
}

#formWrap th div,#formWrap td div {
	text-align: left;
}

#formWrap td .err_msg {
	text-align: left;
	color: #f00;
}

#formWrap table tr th {
	width: 22%;
	padding: 15px;
	border: 1px solid #CCC;
	background-color: #f1f1f1;
	position: relative;
	font-weight: bold;
}

#formWrap table tr th b {
	display: inline-block;
}

#formWrap table tr td input.zip {
	padding-top: 4px;
	padding-bottom: 4px;
	margin-bottom: 10px;
}

#formWrap table tr td ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	line-height: 150%;
}

#formWrap table tr td ul li {
	margin-bottom: 5px;
}

#formWrap .selectbox {
	margin: 0px;
}

#formWrap .confirmation {
	line-height: 40px;
	background-color: #F5D6D6;
	text-align: center;
	margin-bottom: 30px;
}

#formWrap table th span {
	font-size: 90%;
}

#formWrap h3 {
	font-size: 18px;
	color: #000;
	height: 40px;
	text-align: center;
	line-height: 40px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	background-color: #eee;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}

#formWrap th{
	position: relative;
}

#formWrap .must {
	color: #FFF;
    display: block;
    font-size: 0.6em;
    background-color: #CC0000;
    padding: 0px 10px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0,-50%);
    width: fit-content;
    height: fit-content;
}

.submit {
	margin-bottom: 50px;
	text-align: center;
}

.security {
	border: 1px solid #CCC;
	padding: 20px;
	overflow: hidden;
	color: #666;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 50px;
	margin-top: 100px;
	box-sizing: border-box;
}

.security .logo {
	padding: 0px;
	float: left;
	width: 18%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

.security p {
	float: left;
	width: 80%;
	text-align: left;
	font-size: 15px;
	margin: 0px;
	padding: 0px;
	clear: left;
}

.security #veri {
	float: right;
}

#formWrap textarea {
	width: 60%
}

input[type='text'].tel_box {
	width: 20%
}

input[type='text'].mail_box {
	width: 60%
}

input[type='text'].name_box {
	width: 30%;
}

input[type='text'].text10 {
	width: 10%;
}

input[type='text'].text20 {
	width: 20%;
}

input[type='text'].text30 {
	width: 30%;
}

input[type='text'].text40 {
	width: 40%;
}

input[type='text'].text50 {
	width: 50%;
}

input[type='text'].text60 {
	width: 60%;
}

input[type='text'].text70 {
	width: 70%;
}

input[type='text'].text80 {
	width: 80%;
}

input[type='text'].text90 {
	width: 90%;
}

input[type='text'].text100 {
	width: 100%;
}

/*============================*/
input[type='tel'].text10 {
	width: 70px;
}

input[type='tel'].text20 {
	width: 80px;
}

input[type='tel'].text_postal {
	width: 80px;
}

input[type='button'].postal_bt {
	background-color: #ccc;
	font-size: 14px;
	margin-bottom:10px;
}

.form_box th,
.form_box td {
	line-height: 180%;
	vertical-align: middle; 
}

.radio, .checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 20px 8px 0;
	padding: 12px 12px 12px 42px;
	border-radius: 8px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
}

.radio:hover, .checkbox:hover {
	background-color: #FFD1D9;
}

.radio:hover:after, .checkbox:hover:after {
	border-color: #FF6600;
}

.radio:after, .checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}

.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 18px;
	display: block;
	margin-top: -7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #FF3808;
	content: '';
	opacity: 0;
}

input[type=radio]:checked + .radio:before {
	opacity: 1;
}

.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #FF3808;
	border-bottom: 3px solid #FF3808;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

input[type=checkbox]:checked + .checkbox:before,input[type=radio]:checked + .checkbox:before {
	opacity: 1;
}

/*=======================

========================*/

.radio_in {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 20px 8px 0;
	padding: 12px 12px 12px 42px;
	border-radius: 8px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
}

.checkbox_in {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	padding: 12px 12px 12px 42px;
	border-radius: 8px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
	margin-bottom: 0px;
	margin-left: 0;
	margin-right: 20px;
	margin-top: 0;
}

.radio_in:hover, .checkbox_in:hover {
	background-color: #FFD1D9;
}

.radio_in:hover:after, .checkbox_in:hover:after {
	border-color: #FF6600;
}

.radio_in:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}

.checkbox_in:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}

.radio_in:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #FF3808;
	content: '';
	opacity: 0;
}

input[type=radio]:checked + .radio_in:before {
	opacity: 1;
}

.checkbox_in:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #FF3808;
	border-bottom: 3px solid #FF3808;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

input[type=checkbox]:checked + .checkbox_in:before,input[type=radio]:checked + .checkbox_in:before {
	opacity: 1;
}

#submit {
	padding-top: 3%;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-bottom: 0%;
	display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem 1rem;
}
#submit .back-bn {
	line-height: 50px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-right: 40px;
    padding-left: 40px;
    font-size: 16px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
    background-color: #ccc;
    color: #ffffff;
    display: inline-block;
    border: none;
}

#submit p {
	font-size: 16px;
}

#submit .privacy {
	color: #D70100;
}

#submit .bt {
	padding-top: 30px;
	padding-bottom: 0px;
}

.css_btn_class {
	height: 60px;
	width: 400px;
	/* margin-right: auto;
	margin-left: auto; */
	line-height: 50px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-right: 50px;
	padding-left: 50px;
	font-size: 18px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	background-color: #D90E00;
	color: #ffffff;
	display: inline-block;
	border: none;
}

.css_btn_class:hover {
	background-color: #FFCD01;
	text-decoration: none;
}

.css_btn_class:active {
	position:relative;
	top:1px;
}

.css_btn_class2 {
	height: 60px;
	width: 400px;
	margin-right: auto;
	margin-left: auto;
	line-height: 50px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-right: 50px;
	padding-left: 50px;
	font-size: 18px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	background-color: #999999;
	color: #ffffff;
	display: inline-block;
	border: none;
}

.css_btn_class2:hover {
	background-color: #FFCD01;
	text-decoration: none;
}

.css_btn_class2:active {
	position:relative;
	top:1px;
}

.css_btn_class_back {
	height: 60px;
	width: 200px;
	margin-left: 40px;
	line-height: 50px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-right: 50px;
	padding-left: 50px;
	font-size: 18px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	background-color: #999999;
	color: #ffffff;
	display: inline-block;
	border: none;
}

.css_btn_class_back:hover {
	background-color: #CCCCCC;
	text-decoration: none;
}

.btn_text{
	color: #fff;
	text-decoration:none;
	font-size: 18px;
}

#submit a img:hover {
	opacity: .70; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=70); /* IE lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* IE 8 */
	-khtml-opacity: .70; /* Safari 1.x */
	-moz-opacity: .70; /* FF lt 1.5, Netscape */
}

#send {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-bottom: 0%;
}

/*===========================

============================*/

#form .sub {
	font-size: 22px;
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #3161A0;
	border-bottom-color: #3161A0;
	margin-bottom: 20px;
	padding-left: 10px;
}

#form .inner #formtop ul {
	padding: 0px;
	margin-top: 20px;
	margin-right: -45px;
	margin-bottom: 0px;
	margin-left: 0px;
	overflow: hidden;
	position: relative;
}

#form .inner #formtop ul li {
	padding: 10px;
	float: left;
	width: 346px;
	margin-top: 0px;
	margin-bottom: 40px;
	margin-left: 0%;
	border: 2px solid #FC8827;
	background-color: #FFF8E0;
	margin-right: 45px;
}

#form .inner #formtop ul li .num {
	background-color: #C00;
	text-align: center;
	width: 20%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	color: #FFF;
	margin-bottom: 5px;
}

#form .inner #formtop ul li .merit {
	font-size: 20px;
	line-height: 1.5em;
}

.inner #formtop ul li .merit span {
	color: #CA0813;
	font-weight: bold;
}

#form .inner #formtop ul li .merit .small {
	font-size: 12px;
	color: #000;
	line-height: 1.5em;
}
/*===========================

============================*/

#form .inner .yoyakutop .raiten {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

#form .inner .yoyakutop {
	margin-bottom: 30px;
}

/*===========================

============================*/

#thanks .inner {
	padding: 0px;
	width: 1200px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
	position: relative;
}

#thanks .inner h2 {
	font-size: 18px;
	margin-bottom: 40px;
	text-align: center;
}

#thanks .inner h1 {
	text-align: center;
	margin-bottom: 40px;
}

#thanks .inner p {
	text-align: center;
	margin-bottom: 40px;
}

#thanks .inner address {
	width: 60%;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	font-style: normal;
	padding-top: 20px;
	line-height: 1.8em;
}

#thanks h2 {
	font-size: 20px;
	line-height: 1.8em;
	padding-top: 30px;
	margin-bottom: 50px;
}

#thanks p a {
	display: block;
	width: 30%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 50px;
}

#form #mailform #formWrap table tr td #gkkarea1 {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
}

#form #mailform #formWrap table tr td  dl {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	overflow: hidden;
}

#form #mailform #formWrap table tr td dl dt {
	font-weight: bold;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

#form #mailform #formWrap table tr td dl dd {
	padding: 0px;
	float: left;
	width: 25%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
}

@media all and (max-width: 768px) {

#formWrap td .err_msg {
	text-align: left;
	 color: #f00;
}

#form {
	padding-top: 30px;
}

#form #top {
	overflow: hidden;
}

#form #top .flow {
	margin-bottom: 10px;
}

#form #top p {
	text-align: left;
	clear: both;
	font-size: 14px;
	line-height: 1.5em;
	color: #333;
	margin-bottom: 10px;
}

#form h1 {
	font-size: 18px;
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	float: left;
	line-height: 2.3em;
	background-image: url(/images/icon_h1_form.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 42px 42px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 50px;
	letter-spacing: -0.1em;
	height: 42px;
}

#form h1.private_title {
	font-size: 0.9rem;
	line-height: 3em;
}

#form .inner {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#form .caution {
	font-size: 16px;
	color: #C00;
	font-weight: bold;
}

#form .inner .strong {
	font-size: 16px;
	font-weight: 900;
}

#formtop {
	margin-top: 20px;
	margin-bottom: 50px;
	margin-right: auto;
	margin-left: auto;
}

#formtop h2 {
	font-size: 14px;
	margin-bottom: 20px;
	margin-right: auto;
	margin-left: auto;
	background-color: #2E5FA2;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	color: #FFF;
}

/* #formtop .formtop_list {
	line-height: 1.5em;
	margin: 0 auto 5%;
	width: 100%;
}

#formtop .formtop_list dl{
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #CCC;
	margin: 0 auto 20px;
	width: 100%;
}

#formtop .formtop_list dt,
#formtop .formtop_list dd{
	line-height: 1.8em;
	text-align: left;
	padding: 8px 16px;
}

#formtop .formtop_list dt{
	background-color: #f1f1f1;
	width: 30%;
}

#formtop .formtop_list dd {
	width: 70%;
} */

#formtop .formtop_list {
	padding: 0.5rem;
	margin: 0 auto clamp(2rem, 0.061rem + 8.25vw, 6.25rem);
	max-width: 1100px;
	border-collapse: collapse;
	width: 100%;
  }
  #formtop .formtop_list tr {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
  }
  #formtop .formtop_list th {
	flex: unset;
    width: 50%;
    padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(1rem, 0.738rem + 0.81vw, 1.125rem);
	border: 1px solid #ccc;
	background-color: #f1f1f1;
  }
  #formtop .formtop_list td {
	flex: unset;
    width: 50%;
    padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(0.875rem, 0.613rem + 0.81vw, 1rem); /*14~16px(520~768px)*/
	border: 1px solid #ccc;
  }

  #formtop .formtop_list td:nth-of-type(3){
	justify-content: flex-start;
  }
  #formtop .formtop_list th:nth-of-type(-n+2), #formtop .formtop_list td:nth-of-type(-n+2) {
    border-bottom: 1px dotted #ccc;
  }
  #formtop .formtop_list th:nth-of-type(n+3), #formtop .formtop_list td:nth-of-type(n+3) {
    border-top: unset;
  }
  #formtop .formtop_list tr:nth-of-type(odd):not(.th_area){
	background-color: #f3f3f3;
  }

#formWrap {
	margin-top: 20px;
}

#formWrap h2 {
	font-size: 16px;
	margin-bottom: 20px;
	margin-right: auto;
	margin-left: auto;
	background-color: #e66c73;
	padding-top: 8px;
	padding-right: 10px;
	padding-bottom: 8px;
	padding-left: 10px;
	color: #FFF;
	font-weight: bold;
}

#formWrap table {
	width: 100%;
	margin-bottom: 30px;
}

#formWrap th,
#formWrap td{
	display: block;
	font-size: 100%;
	line-height: 1.8em;
}

#formWrap th{
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	text-align: left;
	background-color: #f1f1f1;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	font-weight: bold;
}

#formWrap td {
	margin-bottom: 20px;
	text-align: left;
}

#form textarea {
	width:70%;
	font-size: 15px;
}

input[type="text"] {
	width:90%;
	font-size: 15px;
}

input[type="tel"] {
	width:60%;
	font-size: 15px;
}

#formWrap table tr td input {
	margin-bottom: 10px;
}

#formWrap table tr td input.mid {
	width: 80%;
}

#formWrap table tr td input.short {
	width: 20%;
}

#formWrap .must {
	width: 30px;
	margin-left: 20px;
	font-size: 12px;
	background-color: #CC0000;
	padding-right: 10px;
	padding-left: 10px;
	color: #FFF;
	padding-top: 4px;
	padding-bottom: 4px;
	margin-top: 2px;
	line-height: 100%;
	float: right;
}

.selectbt p {
	margin-bottom: 20px;
	color: #1D4D9E;
}

.security {
	border: 1px solid #CCC;
	padding: 20px;
	overflow: hidden;
	color: #666;
	margin-bottom: 30px;
	box-sizing: border-box;
}

.security .logo {
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	width: 80%;
}

.security p {
	text-align: left;
	font-size: 15px;
	margin: 0px;
	padding: 0px;
}

.security #veri {
	margin-right: auto;
	margin-left: auto;
	clear: both;
}

#form #top .wrap .bt {
	font-size: 17px;
	box-sizing: border-box;
	border: 2px solid #ddd;
	width: 100%;
	border-radius: 10px;
	text-align: center;
	bottom: 10px;
	right: 20px;
	background-color: #c03d3c;
	font-weight: bold;
	margin-bottom: 20px;
	clear: both;
}

#form #top .wrap .bt a {
	color: #fff;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
}

#form #top .wrap .bt a:after {
	content: '';
	display: inline-block;
	width: 21px;
	height: 20px;
	background-image: url(/commonImage/bt_next.png);
	background-size: contain;
	vertical-align: -4px;
	background-repeat: no-repeat;
	padding-left: 3px;
}

#form #top .wrap .bt a:hover {
	background-color: #FFCD01;
	display: block;
}

/*=======================

========================*/
.form-area textarea {
	width: 97%
}

input[type='text'].tel_box {
	width: 97%
}

input[type='text'].mail_box {
	width: 97%
}

input[type='text'].name_box {
	width: 97%
}

input[type='text'].text10 {
	width: 30%;
}

input[type='text'].text20 {
	width: 20%;
}

input[type='text'].text30 {
	width: 30%;
}

input[type='text'].text40 {
	width: 40%;
}

input[type='text'].text50 {
	width: 70%;
}

input[type='text'].text60 {
	width: 97%
}

input[type='text'].text70 {
	width: 70%;
}

input[type='text'].text80 {
	width: 80%;
}

input[type='text'].text90 {
	width: 90%;
}

input[type='text'].text100 {
	width: 100%;
}

input[type='tel'].text10 {
	width: 20%;
}

input[type='tel'].text20 {
	width: 30%;
}

input[type='tel'].text_postal {
	width: 25%;
}

input[type='button'].postal_bt {
	padding-top: 3px;
	padding-bottom: 3px;
	-webkit-appearance: none;
	background-color: #ccc;
	font-size:13px;
}

.form_box th,
.form_box td {
	line-height: 180%;
	vertical-align: middle; 
}

select.block {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*=======================

========================*/
.radio, .checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	border-radius: 8px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
	margin-bottom: 3%;
	margin-left: 0;
	margin-right: 0px;
	margin-top: 0;
	width: 100% ;
	padding-bottom: 3%;
	padding-left: 15%;
	padding-right: 0%;
	padding-top: 3%;
}

.radio:hover, .checkbox:hover {
	background-color: #FFD1D9;
}

.radio:hover:after, .checkbox:hover:after {
	border-color: #FF6600;
}

.radio:after, .checkbox:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}

.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 43%;
	left: 18px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #FF3808;
	content: '';
	opacity: 0;
}

input[type=radio]:checked + .radio:before {
	opacity: 1;
}

.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #FF3808;
	border-bottom: 3px solid #FF3808;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

input[type=checkbox]:checked + .checkbox:before,input[type=radio]:checked + .checkbox:before {
	opacity: 1;
}

/*=======================

========================*/
.form-area input[type="text"],
.form-area input[type="tel"],
.form-area textarea {
	font-size: 16px;
	line-height: 1.5em;
	padding-left: 5px;
	border: 1px solid #999999;
	border-radius: 4px;
	box-sizing:border-box;
}

.radio,
.checkbox {
	width: 100%;
}

.radio &gt; .radio {
	width: 50%;
}

/*=======================

========================*/
.radio_in {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	border-radius: 8px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
	margin-bottom: 3%;
	margin-left: 0;
	margin-right: 0px;
	margin-top: 0;
	width: 90%;
	padding-bottom: 3%;
	padding-left: 15%;
	padding-right: 3%;
	padding-top: 3%;
}

.checkbox_in {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	border-radius: 8px;
	background-color: #f6f7f8;
	vertical-align: middle;
	cursor: pointer;
	margin-bottom: 3%;
	margin-left: 0;
	margin-right: 0px;
	margin-top: 0;
	width: 85%;
	padding-bottom: 3%;
	padding-left: 20%;
	padding-right: 3%;
	padding-top: 3%;
}

.radio_in:hover, .checkbox_in:hover {
	background-color: #FFD1D9;
}

.radio_in:hover:after, .checkbox_in:hover:after {
	border-color: #FF6600;
}

.radio_in:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 17%;/*荳頑純縺�*/
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}

.checkbox_in:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	 top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 16px;
	height: 16px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}

.radio_in:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	 top: 17%;
	left: 20px;
	display: block;
	margin-top: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #FF3808;
	content: '';
	opacity: 0;
}

input[type=radio]:checked + .radio_in:before {
	opacity: 1;
}

.checkbox_in:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 3px solid #FF3808;
	border-bottom: 3px solid #FF3808;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

input[type=checkbox]:checked + .checkbox_in:before,input[type=radio]:checked + .checkbox_in:before {
	opacity: 1;
}

#submit {
	padding-top: 1%;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-bottom: 0%;
	margin-bottom: 50px;
	display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 0.5rem 1rem;
}
#submit .back-bn {
	line-height: 50px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-right: 40px;
    padding-left: 40px;
    font-size: 16px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
    background-color: #ccc;
    color: #ffffff;
    display: inline-block;
    border: none;
}

#submit .privacy {
	color: #0056B7;
}

#submit .bt {
	padding-top: 10px;
	padding-bottom: 0px;
}

#submit .css_btn_class {
	height: 60px;
	width: 80%;
	/* margin-right: auto;
	margin-left: auto; */
	line-height: 50px;
	text-align: center;
	margin-top: 0px;
	/* margin-bottom: 50px; */
	padding-right: 5%;
	padding-left: 5%;
	font-size: 16px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	background-color: #D90E00;
	color: #ffffff;
	display: inline-block;
	border: none;
	-webkit-appearance: none;
	font-weight: bold;
}

#submit .css_btn_class:hover {
	background-color: #FFCD01;
	text-decoration: none;
}

#submit .css_btn_class:active {
	position:relative;
	top:1px;
}

#submit .css_btn_class2 {
	height: 60px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	line-height: 50px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 20px;
	padding-right: 5%;
	padding-left: 5%;
	font-size: 16px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	background-color: #999999;
	color: #ffffff;
	display: inline-block;
	border: none;
	-webkit-appearance: none;
	font-weight: bold;
}

#submit .css_btn_class2:hover {
	background-color: #FFCD01;
	text-decoration: none;
}
#submit .css_btn_class2:active {
	position:relative;
	top:1px;
}

#submit .btn_text{
	color: #fff;
	text-decoration:none;
	font-size: 18px;
}

#submit a img:hover {
	opacity: .70; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=70); /* IE lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* IE 8 */
	-khtml-opacity: .70; /* Safari 1.x */
	-moz-opacity: .70; /* FF lt 1.5, Netscape */
}

#submit p {
	font-size: 14px;
}

#formWrap #submit span {
	line-height: 1.5em;
}

#send {
	padding-top: 1%;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	padding-bottom: 0%;
}

#send .css_btn_class {
	height: 50px;
	width: 50%;
	margin-right: auto;
	margin-left: auto;
	line-height: 50px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 16px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	background-color: #D90E00;
	color: #ffffff;
	display: inline-block;
	border: none;
	-webkit-appearance: none;/*繧ｹ繝槭�繝�ヵ繧ｩ繝�じ繧､繝ｳ隗｣髯､*/
	font-weight: bold;
	
}
#send .css_btn_class:hover {
	background-color: #FFCD01;
	text-decoration: none;
}
#send .css_btn_class:active {
	position:relative;
	top:1px;
}
#send .css_btn_class_back {
	height: 50px;
	/*width: 30%;*/
	width: 25%;
	margin-left: 20px;
	line-height: 50px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 18px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	text-decoration: none;
	background-color: #999999;
	color: #ffffff;
	display: inline-block;
	border: none;
}
.css_btn_class_back:hover {
	background-color: #CCCCCC;
	text-decoration: none;
}

/*===========================

============================*/

#form .inner .yoyakutop .raiten {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

#form .inner .yoyakutop {
	margin-bottom: 30px;
}

/*===========================

============================*/

#formWrap table tr td ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	line-height: 150%;
}

#formWrap table tr td ul li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}

#formWrap table tr td .wd5 {
	width: 12%;
}

#formWrap table tr td input.zip {
	padding-top: 4px;
	padding-bottom: 4px;
	margin-bottom: 10px;
}

#formWrap table tr td .notes {
	font-size: 13px;
	line-height: 1.5em;
	color: #666;
	display: block;
}

.submit {
	margin-bottom: 50px;
	text-align: center;
	line-height: 1.5em;
}

/*===========================

============================*/

#form .sub {
	font-size: 22px;
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #3161A0;
	border-bottom-color: #3161A0;
	margin-bottom: 20px;
	padding-left: 10px;
}
#form .inner #formtop ul {
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	overflow: hidden;
	position: relative;
}
#form .inner #formtop ul li {
	padding: 10px;
	float: left;
	width: 48%;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-left: 1%;
	border: 2px solid #FC8827;
	background-color: #FFF8E0;
	margin-right: 1%;
	height: 180px;
	box-sizing:border-box;
	line-height: 1.2em;
}
#formtop ul li .merit img {
	width: 40%;
}
#form .inner #formtop ul li .num {
	background-color: #C00;
	text-align: center;
	width: 40%;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	color: #FFF;
	margin-bottom: 5px;
}
#form .inner #formtop ul li .merit {
	font-size: 16px;
	line-height: 1.3em;
}
#form .inner #formtop ul li .merit span {
	color: #CA0813;
	font-weight: bold;
}
#form .inner #formtop ul li .merit .small {
	font-size: 11px;
	color: #000;
	line-height: 1.2em!important;
}

/*===========================

============================*/

#thanks {
	padding-top: 70px;
}

#thanks h1 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 20px;
}

#thanks h2 {
	font-size: 18px;
	margin-bottom: 40px;
	text-align: center;
	line-height: 1.5em;
}

#thanks p {
	text-align: left;
	margin-bottom: 20px;
}

#thanks .inner address {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	font-style: normal;
	padding-top: 20px;
	line-height: 1.8em;
}

#thanks h2 {
	font-size: 18px;
	line-height: 1.8em;
	padding-top: 30px;
	margin-bottom: 30px;
	text-align: center;
}

#thanks p a {
	display: block;
	width: 30%;
	margin-right: auto;
	margin-left: auto;
}

#veri table {
	width: 135px;
	margin-right: auto;
	margin-left: auto;
}

#form #mailform #formWrap table tr td #gkkarea1 {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
	padding: 0px;
}

#form #mailform #formWrap table tr td dl {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	overflow: hidden;
}

#form #mailform #formWrap table tr td dl dt {
	font-weight: bold;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

#form #mailform #formWrap table tr td dl dd {
	padding: 0px;
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
}

@media all and (min-width: 769px) {
#gkkarea1 .schoolopen,
#gkkarea2 .schoolopen {
	display: none;
}
}

@media all and (max-width: 768px) {
#gkkarea1 .schoolbox,
#gkkarea2 .schoolbox,
#gkkarea1 .schoolbox dt,
#gkkarea2 .schoolbox dt {
	display: none;
}

#gkkarea1 .schoolopen,
#gkkarea2 .schoolopen {
	text-align: left;
	margin-bottom: 20px;
	cursor: pointer;
	border: 1px solid #999;
	font-size: 13px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}

#gkkarea1 .schoolopen:after,
#gkkarea2 .schoolopen:after {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: relative;
	top: 2px;
	margin-right: 15px;
	float: right;
}
#form textarea {
	width:100%;
}

#formWrap th{
	position: relative;
}
#formWrap table tr th {
	width: 100%;
}

#formWrap .must {
	color: #FFF;
    display: block;
    font-size: 0.6em;
    background-color: #CC0000;
    padding: 3px 10px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0,-50%);
    width: fit-content;
    height: fit-content;
}
input[type='text'].text30,
input[type="tel"]{
	width: 100%;
}
}

@media all and (max-width: 520px) {
	#submit .back-bn {
		width: 35%;
		padding: 0;
		margin: 0;
	}
	#submit .css_btn_class{
		padding: 0;
		width: 65%;
	}
}</pre></body></html>