/* フォント */
@font-face {
	font-family: 'Noto Sans JP';
	src: url('/fonts/NotoSansJP-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans JP';
	src: url('/fonts/NotoSansJP-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Unbounded';
	src: url('/fonts/Unbounded-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Unbounded';
	src: url('/fonts/Unbounded-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

.unbounded {
	font-family: "Unbounded", sans-serif;
}

/* カラー */
.bg-light-blue {
	background: #E8EFFC;
}

.text-blue {
	color: #4578BE;
}

.text-navy {
	color: #08388A;
}

/* レイヤー */
.z-1 {
	z-index: 1;
}

/* --- 背景 --- */
/* イントロ */
.bg-intro {
	background-image: url(/service/sky-shot/img/bg_intro.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
/* 貸切対応 */
.bg-service {
	background-image: url(/service/sky-shot/img/bg_service.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
@media (max-width: 767px) {
	.bg-intro {
		background-image: url(/service/sky-shot/img/bg_intro_sp.jpg);
		background-position: center 80%;
	}
	.bg-service {
		background-image: url(/service/sky-shot/img/bg_service_sp.jpg);
	}
}

/* イントロ */
.intro-title {
	font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
}

.intro-sub {
	font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
}

.intro-quotes {
	font-size: 2.75em;
}

.intro-strong {
	font-size: 1.5em;
}

/* 貸切対応 */
.service-card {
	background-image: url(/service/sky-shot/img/bg_detail_service.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 30px;
	height: stretch;
}

.service-title {
	font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
}

/* プロの映像 */
.pro-title {
	font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
}

.pro-sub {
	font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
}

/* 利用方法 */
.howto-card {
	width: 315px;
	height: 230px;
}
	
/* 申込導線 */
.application-btn {
	border-radius: 50px;
	background: rgba(8, 56, 138, 1);
	position: relative;
	z-index: 1;
}

.application-btn:hover {
	text-decoration: none;
	opacity: 0.8;
}

.application-btn:before {
	position: absolute;
	content:"";
	border: 2px solid rgba(16, 55, 150, 1);
	border-radius: 50px;
	bottom: -5px;
	right: -5px;
	width: 100%;
	height: 100%;
}