<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&amp;display=swap');

/*----------------------------------------------------*/
body {
	width:100%;
	min-width: 320px;
	color: #333;
	*font-size:small;
	*font:x-small;
	font-family: 'Noto Sans JP', SourceHanSans-Regular, SourceHanSansJP-Regular, '源ノ角ゴシック Regular','源ノ角ゴシック', NotoSansJP-Regular, 'Noto Sans Japanese Regular', 'YuGothic', 'Yu Gothic', '游ゴシック', '游ゴシック体', 'メイリオ', sans-serif;
	font-feature-settings: "palt";
	background-color: #000;
}
a {
	color: #c30d23;
	text-decoration: none;
    transition: all .2s ease;
	word-break: break-all;
}
a:hover {
	color: #dd6c7f;
}
a img {
	transition: all .2s ease;
}
a:hover img {
	opacity: 0.6;
}
ul {
	list-style: none;
}

/*
Page Loader
*/
#loader_base {
	width: 100vw;
	height: 100vh;
	background-color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 10000;
}
#loader img{
	width: 50px;
	height: auto;
}
#loader p {
	font-family: 'Roboto', sans-serif;
	color: #999;
	font-size: 12px;
	text-align: center;
	margin-top: 20px;
}

#container {
}

/*
header
*/
header {
	width:100%;
	height: 80px;
	background: rgba(0,0,0,.8);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	position: fixed;
	z-index: 10000;
	opacity: 0;
}
#headerArea {
	width:100%;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.5s ease;
}

#headerArea .titleArea {
	flex-grow: 1;
	z-index: 1001;
}
#headerArea .titleArea img {
	height: 100%;
	max-height: 100px;
	margin: 0 0 0 10px;
}
#headerArea .navArea {
}

#navBtn {
	width: 80px;
	height: 80px;
	position: relative;
	overflow: hidden;
	flex-grow: 0;
	z-index: 10006;
}

.btnBody {
	width: 80px;
	height: 80px;
	display: block;
	cursor: pointer;
	text-align: center;
}
.btnBody:hover {
}

.btnBody span {
	width: 40px;
	height: 1px;
	display: block;
	border-radius: 1px;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -20px;
	transition: all 0.3s;
	transform: rotate(0deg);
}
#navBtn .btnBody span {
}
header.head_active .btnBody span {
	background: #333;
}

.btnBody .top {
	transform: translateY(-10px);
}

.btnBody .bottom {
	transform: translateY(10px);
}

.btnBody .middle {
}

.nav_open .middle {
	background: rgba(255, 255, 255, 0);
}
.nav_open .top {
	transform: rotate(-45deg) translateY(0px);
	background: rgba(255, 255, 255, 1);
}
.nav_open .bottom {
	transform: rotate(45deg) translateY(0px);
	background: rgba(255, 255, 255, 1);
}

#sns_btn {
	flex-grow: 0;
}
#sns_btn #sns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style-type: none;
	margin-right: 10px;
	z-index:10006;
}
#sns_btn #sns li {
	text-align:center;
	font-size:24px;
	line-height:100%;
	list-style: none;
	margin: 5px;
}
#sns_btn #sns li a {
	color: #333;
}
#sns_btn p {
	border-left: 1px solid #999;
}

.a_instagram:hover {
	color:#405de6 !important;
}
.a_twitter:hover {
	color:#1da1f2 !important;
}
.a_facebook:hover {
	color:#3b5998 !important;
}
.a_line:hover {
	color:#00c300 !important;	
}

#overlay {
	width: 100%;
	height:100vh;
	background: rgba(0,0,0,0.9);
	position: absolute;
	top:0px;
	z-index:10003;
}

#menu {
	padding: 8px 0px;
	list-style-type: none;
	width: 100%;
	display: flex;
	justify-content: center;
	position: absolute;
	z-index:10004;
}
#menu_title {
	text-align: center;
	width: 40%;
}
#menu_title img {
	width: 60%;
}
#navigation1 {
	font-family: "Roboto Condensed",sans-serif;
	width: 40%;
	padding: 0 0 0 3vh;
}
#navigation1 p.site_title {
	color: #999;
	text-align: left;
	font-size: 18px;
	line-height: 1.5;
	padding: .2em 0;
	margin: 1vh 0 3vh 0;
	display: block;
}
#navigation1 ul {
	width: 80%;
	margin: 0px;
}
#navigation1 ul li a {
	font-family: "Roboto Condensed";
	color: #fff;
	text-align: left;
	font-size: 20px;
	line-height: 1.5;
	padding: .2em 0;
	margin: 0 auto 2vh auto;
	display: block;
	position: relative;
}
#navigation1 ul li a::after {
	content: '';
	width: 20px;
	height: 1px;
	background: #ccc;
	position: absolute;
	left: 0px;
	top: 0px;
	transition: all 0.5s ease;
}
#navigation1 ul li a:hover::after {
	background: #c30d23;
	width: 100%;
	left: 0em;
	top: 0px;
	transition: all 0.2s ease;
}
#navigation1 ul li a .jp {
	font-size: 90%;
}

img {
	vertical-align:top;
	max-width: 100%;
	height: auto;
}

.container {
	width: 100%;
	min-width: 1080px;
}
.bld{
	font-weight: bold;
}
.note {
	font-size: 80%!important;
}
.tax {
	font-size: 80%!important;
	margin-left: .5em;
}
.s80 {
	font-size: 80%!important;
}
.s50 {
	font-size: 50%!important;
}
p.ast {
	font-size: 12px;
	line-height: 1.5;
	text-indent: -1em;
	margin: 0 0 .2em 1em;
	list-style: none;
}
p.ast:before {
	content: '※';
	display: inline-block;
	width: 1em;
	text-indent: 0;
}
.ast li {
	font-size: 12px;
	line-height: 1.2;
	text-indent: -1em;
	margin: 0 0 .2em 1em;
	list-style: none;
}
.ast li:before {
    content: '※';
    display: inline-block;
    width: 1em;
    text-indent: 0;
}
span.ast {
	font-size: 80%;
    text-indent: -1em;
    margin: 5px 0 5px .2em;
	list-style: none;
}
span.ast:before {
    content: '※';
    display: inline-block;
    width: 1em;
    text-indent: 0;
}

.btn1 {
	font-family: "Roboto Condensed",sans-serif;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	border-radius: 2px;
	padding: 0em 1em;
	margin-right: .5em;
	background: #000;
	border: 1px solid #000;
	transition: all 0.5s ease;
}
.btn1:hover {
	color: #fff;
	border-radius: 10px;
	background: #c30d23;
	border: 1px solid #c30d23;
}

#totop {
	font-family: 'Roboto', sans-serif;
	text-align: center;
	position: fixed;
	bottom: 0px;
	right: 0px;
	z-index: 100;
}
#totop a {
	font-size: 14px;
	line-height: 60px;
	font-weight: 400;
	color: #fff;
	display: block;
	background: #333;
	border: none;
	width: 60px;
	height: 60px;
	border-radius: 0;
	box-shadow: 0 0px 10px -2px rgba(0,0,0,.55);
}
#totop a:hover {
	transition: all .2s ease;
	color:#fff;
	background: #f34559;
}
#totop a span {
	display: block;
	width: 20px;
	height: 20px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: translate(21px,25px) rotate(-45deg);
}

footer {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: #fff;
	text-align: center;
	width: 100%;
	padding: 2vh 0px 10vh 0px;
	background: #000;
}
footer p {
	color:#fff;
	line-height:150%;
	text-align: center;
}
footer a {
	color:#fff !important;
	border-bottom: 1px solid #666; 
}
footer a:hover {
	color:#f34559 !important;
	border-bottom: 1px solid #f34559; 
}

.sp {
	display: none;
}
.sp2 {
	display: none;
}
.pc {
	display: inline-block;
}


@media screen and (max-width: 960px) {
section {
	text-align: center;
	width: 100%;
	padding: 0 5vw;
	margin: auto;
}
article {
	width: 100%;
	max-width: 1080px;
	margin: auto;
	padding: 5vw 0 2vw;
}
	
#menu_title {
	text-align: center;
	width: 40%;
	display: none;
}
#menu_title img {
	width: 80%;
}
#navigation1 {
	font-family: urw-din-semi-condensed, sans-serif;
	width: 60%;
	padding: 0 0 0 3vh;
}

.sp {
	display: none;
}
.sp2 {
	display: inline-block;
}
.pc {
	display: inline-block;
}

}

@media screen and (max-width: 480px) {
header {
	width: 100%;
	height: 80px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	position: fixed;
	z-index: 10000;
}
#headerArea {
	width:100%;
	height: 80px;
    transition: all 0.5s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 5px;
}

#headerArea .titleArea {
	width: 50%;
	height: 40px;
	flex-wrap: nowrap;
}
#headerArea .titleArea h1 {
	line-height: 1;
}
#headerArea .titleArea img#bt_logo {
	height: 40px;
}
#headerArea .titleArea img#restart {
	height: 30px;
}
#headerArea .navArea {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#navBtn {
	width: 50px;
	height: 80px;
}

.btnBody {
	width: 50px;
	height: 80px;
	display: block;
	cursor: pointer;
	text-align: center;
}
.btnBody:hover {
}

.btnBody span {
	width: 30px;
	margin-left: -15px;
}
#sns_btn #sns {
	margin-right: 5px;
	z-index:10006;
}
#sns_btn #sns li {
	text-align: center;
	font-size: 20px;
	margin: 2px;
}

#menu {
	padding: 0px 0px;
	list-style-type: none;
	width: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	position: absolute;
	z-index:10004;
}
#menu_title {
	text-align: left;
	width: 80%;
	margin: 0 auto 2vh 40px;
}
#menu_title img {
	width: 50%;
	margin: 5px;
}
#navigation1 {
	width: 80%;
	padding: 0 auto 0  40px;
}
#navigation1 p.site_title {
	font-size: 16px;
	padding: .2em 0;
	width: 80%;
	margin: 4vh auto 4vh auto;
	display: block;
}
#navigation1 ul {
	width: 80%;
	margin: 0px auto;
}
#navigation1 ul li a {
	font-size: 18px;
	margin: 0 auto 2vh auto;
}


.flex {
	display: block;
	justify-content: space-between;
}

#totop a {
	font-size: 14px;
	line-height: 40px;
	width: 40px;
	height: 40px;
	border-radius: 0;
}
#totop a span {
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: translate(17px,17px) rotate(-45deg);
}

footer {
	font-size: 11px;
	width: 100%;
	align-items: flex-start;
}
footer p {
	line-height: 1.2;
}


.sp {
	display: inline-block;
}
.sp2 {
	display: none;
}
.pc {
	display: none;
}

}


/*
*/
header:after, section:after, .contentsBody:after, footer:after, #navigation ul:after, .clearfix:after {
	content: "";
	clear: both;
	display: block;
}
</pre></body></html>