/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 02 2026 | 04:44:09 */
/* 共通：埋め込みiframeのサイズ調整 */
.entry-body iframe {
	width: 100%;
	height: auto !important;
	object-fit: cover;
	aspect-ratio: 16/9;
}

@media screen and (max-width: 767px) {
	.entry-body iframe {
		aspect-ratio: 4/3;
	}
}

/* お問い合わせ */
.post-113 .wpforms-container input,
.post-113 .wpforms-container .wpforms-field-row {
	max-width: 100%;
}

/* よくある質問 */
.wp-block-details {
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	margin-bottom: 18px;
	overflow: hidden;
	background: #fff;
}

@media (prefers-reduced-motion: no-preference) {
	.wp-block-details {
		transition-duration: 300ms;
		transition-property: box-shadow;
	}
}

.wp-block-details:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wp-block-details::details-content {
	content-visibility: unset;
	display: grid;
}

@media (prefers-reduced-motion: no-preference) {
	.wp-block-details::details-content {
		transition-duration: 300ms;
		transition-property: grid-template-rows, padding;
		transition-behavior: allow-discrete;
	}
}

.wp-block-details:not([open])::details-content {
	grid-template-rows: 0fr;
	overflow: hidden;
}

.wp-block-details[open]::details-content {
	grid-template-rows: 1fr;
	padding: 0 20px 20px;
}

.wp-block-details summary {
	position: relative;
	cursor: pointer;
	font-weight: 700;
	font-size: 1.1rem;
	list-style: none;
	padding: 20px 32px 20px 20px;
}

.wp-block-details summary::-webkit-details-marker {
	display: none;
}

.wp-block-details summary::marker {
	display: none;
}

.wp-block-details summary::after {
	content: "+";
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	font-weight: 400;
}

.wp-block-details[open] summary::after {
	content: "−";
}

.wp-block-details *:not(summary) {
	overflow: hidden;
}