/* -----------------------------------------------------------
	20260518
	ドローンスクール：キャンペーンモーダル表示
-------------------------------------------------------------- */
.modal-2__wrap {
	position: absolute;
	top: 400px;
	right: 100px;

	transition: 0.3s;
}

.modal-2__wrap input {
    display: none;
}

.modal-2__open-label,
.modal-2__close-label {
    cursor: pointer;
}

.modal-2__open-label {
    width: 200px;
	transition: 0.3s;
}

.modal-2__open-label img {
	width: 100%;
	object-fit: cover;
	object-position: center;
	padding: 0 0;
	margin: 0 0;
}

.modal-2__open-label:hover {
	opacity: 0.8;
}
.modal-2__wrap:hover {
    top: 390px;
}

.modal-2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-2__open-input:checked + label + input + .modal-2 {
    display: block;
    animation: modal-2-animation .6s;
}

/* モーダル内 */
.modal-2__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 650px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 5px;
}

.modal-2__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    font-size: 1.3em;
}

/* モーダル内テキスト */
.modal-2__content {
    max-height: 50vh;
    overflow-y: auto;
    padding: 50px 40px;
}

.modal-2__content p.modal-ttl {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
}
.modal-2__content p.txt.orange {
	font-size: 2rem;
	font-weight: bold;
	color: #FF722A;
}
.modal-2__content p.txt {
	font-size: 1.8rem;
	line-height: 1.8;
	text-align: center;
}

.modal-2__content ul {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 10px 0 20px;
}
.modal-2__content ul li {
	width: calc( (100% - 20px ) / 2 );
	padding: 20px 20px;
	background-color: #ECF5FC;
	border-radius: 10px;
}
.modal-2__content ul li p {
	font-size: 1.8rem;
	text-align: center;
}
.modal-2__content ul li p.access {
	font-size: 1.6rem;
	position: relative;
	padding-left: 5px;
}
.modal-2__content ul li p.access::before {
    content: "\f041";
    position: absolute;
    font-size: 1.8rem;
    font-family: "FontAwesome";
    font-style: normal;
    font-weight: 900;
    left: 0;
    top: -1px;
    color: #1458A6;
}

.modal-2__content .modal-link {
	margin-top: 20px;
}
.modal-2__content .modal-link .link-box {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.modal-2__content .modal-link a {
	display: inline-block;
    padding: 20px 30px;

	font-size: 1.6rem;
	font-weight: bold;

	background: #0CB6E4;
	color: #fff;
	border-radius: 50px;
}
.modal-2__content .modal-link a.schedule {
	background: #FFE600;
	color: #333;
}

.modal-2__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@keyframes modal-2-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
	.modal-2__wrap {
		position: static;
		padding: 20px 0;
		background-color: #fff
	}

    .modal-2__open-label {
        max-width: 90%;
        padding: 10px 10px;
    }

    .modal-2__close-label {
        top: -17px;
        right: -4%;
    }

	/* モーダル内 */
    .modal-2__content-wrap {
        width: 90vw;
    }

	/* モーダル内テキスト */
    .modal-2__content {
        padding: 30px 20px 35px;
        max-width: 100%;
		max-height: 60vh;
    }
	.modal-2__open-label img {
		width: calc( 100% - 60px );
        margin: 0 auto;
	}

	.modal-2__content p.modal-ttl {
		font-size: 2rem;
	}
	.modal-2__content p.txt.orange {
		font-size: 1.8rem;
	}
	.modal-2__content p.txt {
		font-size: 1.6rem;
		line-height: 1.5;
		text-align: left;
	}

	.modal-2__content ul {
		flex-direction: column;
		gap: 10px;
		margin: 10px 0 20px;
	}
	.modal-2__content ul li {
		width: 100%;
		padding: 15px 15px;
	}
	.modal-2__content ul li p {
		font-size: 1.6rem;
	}
	.modal-2__content ul li p.access {
		display: flex;
		justify-content: center;
		
		font-size: 1.6rem;
		position: relative;
		padding-left: 5px;
	}
	.modal-2__content ul li p.access::before {
		display: none;
	}

	.modal-2__content .modal-link .link-box {
		flex-direction: column;
		gap: 15px;
	}
	.modal-2__content .modal-link a {
		padding: 20px 30px;
		text-align: center;
	}

}


/* -----------------------------------------------------------
	20260518
	コース・料金紹介
-------------------------------------------------------------- */
#drone .price-box01:first-child .price-flex li.price-rec.campaign::before {
    content: "特別\A料金";
    background: #ff722a;
	color: #fff;
}
#drone .price-box01 .price-flex .open-area tr td span.through {
	text-decoration: line-through;
}
#drone .price-box01 .price-flex .open-area tr td span.campaign {
	color: #ff722a;
	font-size: 2rem;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	#drone .price-box01 .price-flex .open-area tr td span.campaign {
		font-size: 1.8rem;
	}
}