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

/*----------------------------
	common
------------------------------*/
* {
	box-sizing: border-box;
}
html {
	font-size: 10px;
	color: #333;
}
@media (max-width: 1280px) {
	html {
		font-size: 0.78125vw;
	}
}
@media (max-width: 768px) {
	html {
		font-size: 1.3vw;
	}
}
body {
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
a {
	color: #333;
	text-decoration: none;
	transition: opacity 0.3s ease-out;
}
a:hover {
	opacity: 0.7;
}
img {
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
	height: auto;
}

.wrapper {
	margin: 0 auto;
	max-height: 100%; /*for android*/
}
.inner {
	margin-right: auto;
	margin-left: auto;
	max-width: 115rem;
}
.sp {
	display: none;
}

@media (max-width: 768px) {
	body {
		font-size: 2.8rem;
	}
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
}

/* header
------------------------ */
.lp-header {
    width: 100%;
	border-bottom: 2px solid #ccc;
}
.lp-heade-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: auto;
    padding: 22px 20px;
}
.lp-heade-logo01 {
    display: block;
    width: 262px;
    height: auto;
    margin: 0;
    font-size: 0;
}
.lp-heade-logo02 {
    display: block;
    width: 255px;
    height: auto;
    margin: 0;
}
@media (max-width: 768px) {
	.lp-heade-inner {
		max-width: 960px;
		padding: calc(30vw / 750 * 100) calc(20vw / 750 * 100);
	}
	.lp-heade-logo01 {
		width: calc(262vw / 750 * 100);
	}
	.lp-heade-logo02 {
		width: calc(255vw / 750 * 100);
	}
}

/* footer
------------------------ */
.p-lpcmn-footer .p-lpcmn-footer__inner {
    width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
}
.p-lpcmn-footer .p-lpcmn-footer-logo {
    display: flex;
    justify-content: space-between;
}
.p-lpcmn-footer .p-lpcmn-footer-logo02 {
    width: 151px;
    height: 15px;
    vertical-align: bottom;
}
.p-lpcmn-footer-copyright {
    margin: 10px 0 0;
    padding: 10px 0 0;
    border-top: solid 1px #DF0000;
    text-align: center;
    font-size: 13px;
    color: #333;
}
@media (max-width: 768px) {
	.p-lpcmn-footer-copyright {
		margin: 10px 0 0;
		padding: 10px 0 0;
		border-top: solid 1px #DF0000;
		text-align: center;
		font-size: 10px;
		color: #333;
	}
	.p-lpcmn-footer .p-lpcmn-footer__inner {
		width: 100%;
	}
}
</pre></body></html>