<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(//fonts.googleapis.com/earlyaccess/roundedmplus1c.css);

/* CSS Document */

* {
	margin: 0;
	padding: 0;
	font-size: 14px;
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
}
img {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	font-family: 'Rounded Mplus 1c';
	font-weight: 600;
	line-height: 1.75em;
	margin: 0 auto;
	position: relative;
	background: url(/common/images/bg.svg);
    background-size: 400px;
}
p {
	text-align: justify;
}

/*====================================

	loader

====================================*/ 

#loading-image {
    z-index: 999999;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: table;
}
#loading-image span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('/common/images/h3_star.svg');
    background-size: 50px;
    animation: r1 2s linear infinite;
} 
@keyframes r1 {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*====================================

	font

====================================*/  

h2 {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 30px 0;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 300%;
    font-weight: 600;
    line-height: 1em;
}
h2:before,
h2:after {
    content: '';
    height: 1px;
    width: 100%;
    background: #000;
    position: absolute;
    left: 0;
    display: block;
}
h2:before {
    top: 2px;
}
h2:after {
    bottom: 2px;
}
h2 span {
    display: block;
    font-size: 30%;
    font-weight: 600;
    margin-top: -.5em;
}
.h3 {
	width: 100%;
	text-align: center;
	position: relative;
	margin-bottom: 20px;
}
.h3:after {
	position: absolute;
	top: 20%;
	left: 0;
	height: 1px;
	width: 100%;
	background: #000;
	content: '';
	z-index: 1;
}
h3 {
	display: inline-block;
	position: relative;
	padding: 0 2em;
	font-size: 150%;
	font-weight: 600;
	background: #fff;
	z-index: 2;
}
h3:before,
h3:after {
	content: '';
	width: 20px;
	height: 20px;
	background: url(/common/images/h3_star.svg) no-repeat center center;
	display: block;
	position: absolute;
}
h3:before {
	top: 0px;
	left: 20px;
}
h3:after {
	top: 0px;
	right: 20px;
}
h3 span {
	display: block;
	font-size: 30%;
	font-weight: 400;
	margin-top: 0px;
}
.h4 {
    width: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}
.h4:after {
    position: absolute;
    top: 20%;
    left: 0;
    height: 1px;
    width: 100%;
    background: #f0b100;
    content: '';
    z-index: 1;
}
h4 {
    display: inline-block;
    position: relative;
    padding: 0 1em;
    font-size: 150%;
    font-weight: 600;
    background: #f7f7f7;
    z-index: 2;
    color: #f0b100;
}
h4 span {
    display: block;
    font-size: 40%;
    font-weight: 400;
    color: #f0b100;
}
.h5 {
    width: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    margin-top: 40px;
}
.h5:after {
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    background: #000;
    content: '';
    z-index: 1;
}
h5 {
    display: inline-block;
    position: relative;
    padding: 0 3em;
    font-size: 140%;
    font-weight: 600;
    background: #fff;
    z-index: 2;
}
h5:before,
h5:after {
    content: '';
    width: 20px;
    height: 20px;
    background: url(/common/images/h3_star.svg) no-repeat center center;
    display: block;
    position: absolute;
}
h5:before {
    top: 0px;
    left: 20px;
}
h5:after {
    top: 0px;
    right: 20px;
}
h5 span {
    display: block;
    font-size: 30%;
    font-weight: 400;
    margin-top: 10px;
}
h5 br {
    display: none;
}

/*====================================

	btn

====================================*/  

.btn,
.btn_twice {
    width: 100%;
    text-align: center;
}
.btn a,
.btn_twice a {
    background:transparent;
    border-width: 2px;
    border-style: solid;
    position: relative;
    margin: 1em;
    display: inline-block;
    padding: 0.6em 3em;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: bold;
    color: #f0b100;
    border-color: #f0b100;
    text-decoration: none;
}
.btn a:before, .btn a:after,
.btn_twice a:before, .btn_twice a:after {
    content:'';
    display: block;
    position: absolute;
    border-color: #f0b100;
    box-sizing: border-box;
    border-style: solid;
    width: 1em;
    height: 1em;
    transition:all 0.3s ease-in-out;
}
.btn a:before,
.btn_twice a:before {
    top:-6px;
    left:-6px;
    border-width:2px 0 0 2px;
    z-index:5;
}
.btn a:after,
.btn_twice a:after {
    bottom:-6px;
    right:-6px;
    border-width:0 2px 2px 0;
}

/*====================================

	header

====================================*/  

#header {
	width: 100%;
	background: #fff;
	margin-bottom: 40px;
	position: relative;
	z-index: 101;
}
#header .logo {
	width: 100px;
	float: left;
	position: fixed;
	z-index: 101;
	top: 24px;
	left: 20px;
}
#header .wrap_clock {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 90;
    display: none;
}
#header .wrap_clock p {
    letter-spacing: .1em;
    z-index: 1;
    position: static;
}

/*====================================

	menu

====================================*/	

#menu {
	display: none;
}
 
@media screen and (min-width : 737px) {
	#menu {
		display: block;
	}
	.slicknav_menu {
		display: none;
	}
}

/*====================================

	wrap_inner

====================================*/  

#wrap_inner {
	padding-top: 60px;
}

/*====================================

    outframe

====================================*/ 

.outframe {
    width: 100%;
    height: 100%;
    padding: 90px 20px 20px 20px;
}
.outframe .outframe_inner {
    background: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    padding: 0 20px 20px;
    position: relative;
}
.outframe .outframe_inner:before {
    content: '';
    width: 120px;
    height: 120px;
    position: absolute;
    top: -1px;
    left: 30px;
    background: url(/common/images/pc_logo.svg) no-repeat top left;
    z-index: 2;
}
.outframe .outframe_inner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    z-index: -1;
    background: url(/common/images/shadow.svg);
    background-size: 50px;
}
.outframe .outframe_inner .site_ttl {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 20px 0;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}
.outframe .outframe_inner .site_ttl:before,
.outframe .outframe_inner .site_ttl:after {
    content: '';
    height: 1px;
    width: 100%;
    background: #000;
    position: absolute;
    left: 0;
    display: block;
}
.outframe .outframe_inner .site_ttl:before {
    top: 2px;
}
.outframe .outframe_inner .site_ttl:after {
    bottom: 2px;
}
.outframe .outframe_inner .site_ttl dl {
    display: table;
    width: 100%;
}
.outframe .outframe_inner .site_ttl dl dt {
    display: table-cell;
    vertical-align: middle;
    padding-right: 3%;
}
.outframe .outframe_inner .site_ttl dl dd {
    display: table-cell;
    width: 60px;
    height: 60px;
    vertical-align: middle;
    background: url(/common/images/site_ttl_month.svg) center center;
    background-size: cover;
    text-align: center;
    font-size: 120%;
}
.outframe .outframe_inner .statement {
    width: 100%;
    text-align: center;
    border-bottom: 1px dotted #000;
    padding: 2em 0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    display: none;
}
.outframe .outframe_inner .statement p {
    font-size: 100%;
    line-height: 1.85em;
    z-index: 1;
}
.outframe .outframe_inner .statement .obj {
    position: absolute;
    top: -30px;
    left: 0;
    display: block;
    z-index: -1;
    width: 80px;
}

/*====================================

    wrap_form

====================================*/ 

.wrap_form {
    position: relative;
    margin-top: 40px;
    display: block;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding-top: 20px;
    padding-bottom: 40px;
}
.wrap_form:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    top: -6px;
    left: 0;
}
.wrap_form:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: -6px;
    left: 0;
}
.wrap_form .ex_date {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 110%;
    margin: 20px 0 -30px 0;
}
.wrap_form .ex {
    margin: 20px 0 40px 0;
}
.wrap_form .ex_fin {
    margin: 100px 0;
    text-align: center;
    font-size: 110%;
}
.wrap_form .inner .cell {
    width: 100%;
    border-bottom: 2px dotted #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.wrap_form .inner .cell .ttl {
    width: 100%;
    margin-bottom: 10px;
}
.wrap_form .inner .cell .required p:after {
    content: '必須';
    display: inline-block;
    font-size: 70%;
    margin-left: 1em;
    color: #f0b100;
    top: 0;
    right: 0;
}
.wrap_form .inner .cell .content {
    display: table-cell;
    vertical-align: top;
}
.wrap_form .inner .cell:last-child {
    margin-bottom: 60px;
    display: block;
    border: 10px solid #0f0;
}
.wrap_form .inner .cell ol {
    width: 100% !important;
}
.wrap_form .inner .cell ol li {
    float: left;
    width: 50% !important;
}
.wrap_form .inner .btn {
    margin-top: 40px;
}
.wrap_form .inner .cap {
    font-weight: 400;
    font-size: 80%;
    margin-top: 10px;
}

/*====================================

	jojo-ni

====================================*/

/*{
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}*/

/*====================================

	opacity

====================================*/	

/*.opacity a:hover {
	filter: alpha(opacity=80);
 	-moz-opacity:0.8;
 	opacity:0.8;
	-ms-filter: "alpha(opacity=80)";
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	zoom:1;
}*/

/*====================================

    footer_info

====================================*/ 

.footer_info {
    width: 100%;
    margin-top: 40px;
}
.footer_info p {
    width: 100%;
    text-align: center;
    font-size: 80%;
}
.footer_info a {
    width: 200px;
    margin: 0 auto;
    display: block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}
.footer_info a:hover {
    filter: alpha(opacity=60);
    -moz-opacity:0.6;
    opacity:0.6;
    -ms-filter: "alpha(opacity=60)";
    -moz-opacity:0.6;
    -khtml-opacity: 0.6;
    zoom:1;
}

/*====================================

	footer

====================================*/ 

#footer {
	width: 100%;
	padding: 20px 0 0 0;
}
#footer p {
	width: 100%;
	text-align: center;
	font-size: 80%;
}

/* =======================================

    page-top

======================================= */

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 20;
}
#page-top a {
    width: 30px;
    height: 30px;
    text-align: center;
    display: block;
    background: url(/common/images/totop.svg);
    background-size: 100%;
}

/* =======================================

	cf

======================================= */
.cf:before,
.cf:after {
    content:"";
    display:table;
}
 
.cf:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}</pre></body></html>