@media screen and (min-width: 768px){
.br-sp {display: none; }
}

/* Header */
@media screen and (max-width: 640px) {
header{
	position:sticky;
	}
}

/* Contact Form7 */
 
.contact7 {
    max-width: 100%;
    box-sizing: border-box;
	color:#333;
}
.contact7 .column{
	display:flex;
	width:100%;
/* 	align-items:center; */
	margin-bottom:14px;
	flex-direction:column;
}
.contact7 dd {
	align-self:center;
	margin-left:0;
	width:100%;
}
.contact7 .radio dd{
	align-self:flex-start;
}
.contact7 dt {
	font-weight: bold;
	margin-bottom:16px;
}
 
/* 必須マーク */
.contact7 .must {
	background: #EC1140;
}
 
/* 任意マーク */
.contact7 .optional {
	background: #999;
}
 
.contact7 .must,
.contact7 .optional {
	color: #FFF;
	border-radius: 3px;
	font-size: 12px;
	font-weight:bold;
	margin-left: 10px;
	padding: 6px 8px;
	letter-spacing: 2px;
}
.contact7 dt p{
	display:flex;
	justify-content:flex-start;
	font-weight:bold;
	align-items: center;
	margin: 0;
}
.contact7 input{
	border:none;
	background-color:#FAFAFA;
	padding:1em;
	border:1px solid #CCC;
	border-radius:5px;
}
.contact7 textarea{
	border:1px solid #CCC;
	background-color:#FAFAFA;
	padding:1em;
	border-radius:5px;
}
.contact7 select{
	border:none;
	background-color:#FAFAFA;
	padding:1em 1.4em;
	width:100%;
	border: 1px solid #ccc;
	border-radius: 5px;
}
.btn_contact7 {
	text-align: center;
}
.btn_contact7 input {
	width: 100%;
	background-color: #58B9EF;
	color: #FFF;
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #58B9EF;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
	border-radius:60px;
	padding:1em;
	margin-top:16px;
}
.btn_contact7 input:hover {
	background-color: #FFF;
	color: #005513; 
}
.sign{
	text-align:center;
	font-weight:bold;
	color:#333;
	font-size:14px;
}
/* .sign:first-of-type{
	border-top:1px #ccc solid;
} */
.sign:nth-of-type(n+2) {
    
}
.sign .caution{
	font-size:14px;
	margin: 24px 0 8px;
}
input[type="checkbox"]{
	display: block;
	width: 20px;
	height: 20px;
	accent-color: #3C9F56;
	border-radius: 5px;
}
.kaja-form span:nth-of-type(1){
	width: auto!important;
}
dd .caution{
	margin-top:8px;
	font-size: 14px;
	line-height: 1.6em;
}
input[type="radio"]{
	width:20px;
	height:20px;
	color:#000;
	accent-color: #3C9F56;
}
.contact7 label{
	display:flex;
	align-items: center;
	gap: 4px;
}
.radio .wpcf7-list-item:nth-of-type(1){
	margin:0;
}
.sign-inner{
	 display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.sign-inner p{
	font-size:16px;
	margin-block-end: 3px;
}
@media screen and (min-width: 768px) {
	.contact7 .column{
	display:flex;
	width:100%;
	margin-bottom:43px;
	flex-direction:row;
}
.contact7 dt {
	float: left;
	clear: left;
	width: 35%;
	padding: 14px 10px 5px 0;
	}
.contact7 dt p{
	justify-content:space-between;
}
.contact7 dd {
	width:65%;
	margin-left:0;
	}
 .contact7 .radio dd{
	align-self:center;
}
.btn_contact7 input {
	width: 400px;
	background-color: #58B9EF;
	color: #FFF;
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #58B9EF;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
}
.btn_contact7 input:hover {
	background-color: #FFF;
	color: #ED4545; 
}
.sign{
	font-size:18px;
}
.sign .caution{
	font-size:16px;
	margin: 24px 0 8px;
}
}
.wpcf7-spinner{
	display:none;
}

.sign checkbox{
	
}
.last-message{
	margin-top:30px;
}
.last-message p{
	text-align:center;
	font-weight:bold;
	font-size:14px;
	margin:0;
}
.google-policy{
	margin:48px 0 0;
	text-align:center;
	letter-spacing:.6px;
	font-size:13px;
}

.form .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 透過度60% */
    z-index: 9999; /* 他の要素より手前に表示 */
    display: none; /* 初期状態は非表示 */
}

.form .loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000; /* オーバーレイより手前に表示 */
    display: none; /* 初期状態は非表示 */
    text-align: center;
}
.form .loader img {
    width:60px;
    animation: spin 2s infinite linear; /* アニメーションを適用 */
}
.form .loader p{
    color:#fff;
    margin-top: 8px;
    font-weight: bold;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}



