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

/* ======================================================
 * contact.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Override
 * - Common
 * - Page Component
 * PC Media Queries
 * - Override
 * - Page Component
 * @media only screen and (max-width: 767px)
 * - Override
 * - Common
 * - Page Component
====================================================== */

/* ======================================================
 * PC
====================================================== */
@media print, screen and (min-width: 768px) {
	/* ------------------------------------------------------
	 * Override
	------------------------------------------------------ */
	
	/* ------------------------------------------------------
	 * Common
	------------------------------------------------------ */
	
	/* ------------------------------------------------------
	 * Page Component
	------------------------------------------------------ */
	.contact-hedding {
		display: block;
		font-weight: bold;
		margin-bottom: 1.5rem;
		box-sizing: border-box;
		padding-left: .5rem;
		border-left: 4px solid #0096b4;
	}
}

/* ======================================================
 * PC Media Queries
====================================================== */
@media screen and (min-width: 768px) and (max-width: 1280px) {
	/* ------------------------------------------------------
	 * Override
	------------------------------------------------------ */
	
	/* ------------------------------------------------------
	 * Common
	------------------------------------------------------ */
	
	/* ------------------------------------------------------
	 * Page Component
	------------------------------------------------------ */
}

/* ======================================================
 * SP
====================================================== */
@media only screen and (max-width: 767px) {
	/* ------------------------------------------------------
	 * Override
	------------------------------------------------------ */
	
	/* ------------------------------------------------------
	 * Common
	------------------------------------------------------ */
	
	/* ------------------------------------------------------
	 * Page Component
	------------------------------------------------------ */
	.contact-hedding {
		display: block;
		margin-bottom: .625rem;
		font-weight: bold;
		box-sizing: border-box;
		padding-left: .5rem;
		border-left: 4px solid #0096b4;
	}
}
</pre></body></html>