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

/*------------------------------------------------------------------------------------
                                    共通事項
------------------------------------------------------------------------------------*/

* { box-sizing: border-box; }
html { font-size: 62.5%; /*10px*/ }

body {
	width: 100%;
	height: auto;
	font-size: 1.3rem;
	margin: 0;
	padding: 0;
	color: #1a1a1a;
	background: #fff;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

body.hidden { overflow: hidden; }

h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,blockquote,form,input,fieldset,legend { margin: 0; padding: 0; }

a, a:focus, a:active { color: inherit; text-decoration: none;}
li { list-style: none; }
p { line-height: 2; }

img { display: block; width: 100%; -webkit-backface-visibility: hidden; }
figure img { display: block; }
picture { display: block; line-height: 0; }

#container { width: 100%; }
#main { display: block; position: relative; z-index: 1;}
.wrap { padding-left: 10%; padding-right: 10%;}

/* micro clearfix http://nicolasgallagher.com/micro-clearfix-hack/ = */
.cf::before,.cf::after{content: "";display: table}
.cf::after{clear: both}
.cf{zoom:1}

.sp-none { display: none;}

/*FONT*/
.en { font-family: 'Jost', sans-serif; font-weight: 700; letter-spacing: .025em; }
.bold { font-weight: 700; }
.nowrap { white-space: nowrap; }
.hide-txt { text-indent: 100%; white-space: nowrap; overflow: hidden; display: block; }



/*--------------------------------------------------------------------- SYTLE */


header {
	background: #fff;
    padding: 8px 0 10px;
}

header a {
	display: block;
    width: 120px;
    height: 15px;
    margin: 0 auto;
}

.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url(../images/dots.gif), url(../images/main-background-sp.jpg);
	background-size: 3px 3px ,cover;
	background-position: center center;
	background-repeat: repeat, no-repeat;
}

.contents {
	width: 100%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.tl.contents {
	padding-top: 10px;
	margin-top: -10px;
}

.contents-inner {
	width: 100%;
	background: #f9f9f9;
	border-radius: 20px;
	padding: 40px 20px;
}

.contents-title {
	position: sticky;
	position:-webkit-sticky;
	top: 10px;
	width: 100%;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	line-height: 42px;
	color:  #fff;
	background: linear-gradient(90deg,#0046ea,#00aaea);
	border-radius: 21px;
	z-index: 10;
}

.contents-title + p {
	font-size: 1.4rem;
    line-height: 1.34;
    font-weight: 700;
	text-align: center;
	color: #777;
	margin: 8px auto 24px;
}

.co .contents-title + p {
	font-size: 1rem;
}


/*--------------------------------------------------------------------- VISUAL */

.visual {
	width: 100%;
	padding: 30px 10px;
	position: relative;
	z-index: 5;
}

.visual h1 {
	position: relative;
	z-index: 1;
}

.visual .visual-txt {
	font-size: 4vw;
    text-align: center;
    font-weight: 800;
    line-height: 1.48;
    color: #0046ea;
    margin: 4vw auto 0;
	text-shadow: white 0 2px;
}

.visual .date {
	text-align: center;
    font-size: 14vw;
    line-height: 1;
    color: #0046ea;
    margin-top: 20px;
	text-shadow: 0 0 5px white, 0 0 10px white, 0 0 20px white, 0 0 20px white;
}

.visual .date span {
	display: block;
	font-size: 50%;
}

.anchor {
	width: 100%;
	padding: 0;
	margin-bottom: 40px;
}

.anchor-inner {
}

.anchor ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 10px;
}

.anchor li {
	width: calc(100% / 3 - 6.6666px);
	margin-right: 10px;
	margin-bottom: 10px;
}

.anchor li:last-child {
	width: 50%;
	margin-right: 0;
}

.anchor li:nth-child(3n) {
	margin-right: 0;
}

.anchor a {
	display: block;
	font-size: 1.4rem;
	line-height: 40px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background: #0046ea;
	border-radius: 20px;
	transition: all 300ms ease;
}

.anchor a.hover {
	background: #00aaea;
}

.anchor a span {
	display: inline-block;
	vertical-align: middle;
    padding-right: 5px;
}

.anchor a img {
	display: inline-block;
	vertical-align: middle;
	width: 5px;
	height: 9px;
	transform: rotate(90deg);
}


/*--------------------------------------------------------------------- COMPANY */

.co-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -12px;
}

.co-list li {
	display: flex;
	width: calc(50% - 6px);
	margin-top: 12px;
}

.co-list li a {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
	text-align: center;
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 10px;
	padding: 18px 12px;
	transition: all 300ms ease;
}

.co-list li a.hover {
	border: 1px solid #0046ea;
	box-shadow: 0 3px 0 rgba(0,0,0,.2);
	transform: translate(0,-3px);
}

.co-list li a &gt; div {
}

.co-logo {
	display: inline-block;
	width: 65%;
}

.co-logo img {
	transition: all 300ms ease;
}

a.hover .co-logo img {
	transform: scale(1.1);
}

.co-area {
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 5px;
}

.co-category {
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 400;
	margin-top: 5px;
}

.co-name {
	font-size: 1.6rem;
	line-height: 1.24;
	font-weight: 700;
	transition: all 300ms ease;
}

a.hover .co-name {
	color: #0046ea;
}

.co-btn {
	display: inline-block;
	vertical-align: middle;
	line-height: 22px;
	padding: 0 10px;
	border-radius: 22px;
	background: #00aaea;
	position: relative;
	margin-top: 6px;
}

.co-btn span {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	padding-right: 4px
}

.co-btn::after {
	content: "";
	display: inline-block;
	width: 5px;
	height: 9px;
	background: url("../images/arrow.png") center center / 5px 9px no-repeat;
}


/*--------------------------------------------------------------------- BTN-AREA */

.btn-area {
	padding: 50px 0 60px;
	background: #0046ea;
}

.btn-area-inner {
	padding: 0 30px;
}

.btn-area-inner:not(:last-child) {
	margin-bottom: 30px;
}

.btn-area-inner h4 {
	font-size: 1.4rem;
    line-height: 1.32;
    text-align: center;
    color: #fff;
}

.btn-area-inner a {
	display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 10px;
    margin-top: 10px;
	background: rgba(255,255,255,0);
	transition: all 300ms ease;
}

.btn-area-inner a.hover {
	background: rgba(255,255,255,.2);
	box-shadow: 0 3px 0 rgba(255,255,255,.2);
	transform: translate(0,-3px);
}

.btn-area-inner a span {
	display: inline-block;
	vertical-align: middle;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.btn-area-inner a img {
	display: inline-block;
	vertical-align: middle;
    width: 20px;
    height: 20px;
}

.questionnaire {
	margin-top: 40px;
}

.questionnaire h4 {
	font-size: 1.7rem;
	color: #ffff00;
}

.questionnaire h4 span {
	display: block;
    font-size: 1.2rem;
    margin: 10px auto;
	color: #fff;
}

.questionnaire a span {
	text-align: left;
}

.questionnaire a img {
    width: 30px;
    height: 30px;
    margin-left: 8px;
}


/*--------------------------------------------------------------------- FAQ */

.faq .faq-list {
	width: 100%;
	overflow: hidden;
}

.faq .faq-list li:not(:first-child) {
    border-top: 1px solid #ccc;
}

.faq .question {
    padding: 24px 30px;
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1.54;
    transition: all 300ms cubic-bezier(0.77, 0, 0.175, 1);
}

.faq .question.hover {
	color: #0046ea;
	text-decoration: underline;
}

.faq .question:before,
.faq .question:after {
	content: "";
	display: block;
	width: 15px;
	height: 1px;
	background: #0046AF;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.faq .question.passive:after {
	transform: rotate(-90deg);
}

.faq .question:after {
	transform: rotate(0);
}

.faq .question .initials {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	color: #0046ea;
}

.faq .question.passive + .answer {
	max-height: 0 !important;
	margin-bottom: 0 !important;
}

.faq .question + .answer {
	max-height: 0;
	overflow: hidden;
	transition: all 300ms ease;
	margin-bottom: 32px !important;
}

.faq .question + .answer .answerInner {
	display: flex;
}

.faq .question + .answer .answerInner .initials {
	width: 30px;
    color: #0046ea;
}

.faq .question + .answer .answerInner .answer-txt {
	width: calc(100% - 30px);
	text-align: justify;
}

.faq .question + .answer .answerInner .initials,
.faq .question + .answer .answerInner .answer-txt {
	opacity: 0;
	transition: all 300ms ease;
}

.faq .question.active + .answer .answerInner .initials,
.faq .question.active + .answer .answerInner .answer-txt {
	opacity: 1;
}


/*--------------------------------------------------------------------- FOOTER */

footer {
	background: #1a1a1a;
	padding: 30px 10px;
	position: relative;
	z-index: 50;
}

footer .copyrights {
	font-size: 10px;
	line-height: 1;
	color:  #fff;
	text-align: center;
}


/*------------------------------------------------------------------------------------
                                    以下 PC 用
------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 481px) {
	
body { font-size: 1.3rem; min-width: 1080px; }
br.pc-none { display: none; }


/*--------------------------------------------------------------------- SYTLE */

.header-inner {
	width: 1000px;
	margin: 0 auto;
}
	
header a {
    width: 200px;
    height: 26px;
    margin: 0;
}
	
.background {
	width: 100vw;
	height: 100vh;
	background: url(../images/dots.png), url(../images/main-background-pc.jpg);
	background-size: 3px 3px ,cover;
	background-position: center center;
	background-repeat: repeat, no-repeat;
}
	
.contents {
	width: calc(100% - 40px);
	background: #f9f9f9;
    border-radius: 40px;
    padding: 80px 0;
	margin: 0 auto 20px;
}
	
.tl.contents {
	padding: 80px 0;
	margin: 0 auto 20px;
}
	
.contents-inner {
    width: 1000px;
    background: none;
    border-radius: 0;
    padding: 0;
	margin: 0 auto;
}
	
.contents-title {
	font-size: 2.4rem;
    line-height: 50px;
    border-radius: 25px;
}
	
.contents-title + p {
    font-size: 1.6rem;
    margin: 12px auto 20px;
}
	
	
/*--------------------------------------------------------------------- VISUAL */	
	
.visual {
	padding: 40px 0 0;
    margin-bottom: 30px;
}
	
.visual h1 {
	width: 650px;
	margin: 0 auto;
}
	
.visual .date {
    font-size: 80px;
}

.visual .date span {
    display: inline-block;
	padding-left: 10px;
}

.anchor-inner {
    overflow: visible;
    margin: 0 auto;
}

.anchor ul {
	width: 1000px;
    justify-content: space-between;
	padding: 0;
	margin: 0 auto;
}
	
.anchor li,
.anchor li:nth-child(3n),
.anchor li:last-child {
	width: calc(100% / 7 - 8px);
	margin-right: 0;
    margin-bottom: 0;
}
	
		
/*--------------------------------------------------------------------- COMPANY */		
	
.co-list {
	justify-content: flex-start;
    margin-top: -20px;
}	

.co-list li {
    width: calc(33.3333% - 15px);
    margin-top: 20px;
	margin-right: 20px;
}
	
.co-list li:nth-child(3n) {
	margin-right: 0;
}	
	
.co-list li a {
	padding: 20px;
}
	
.co-category {
    font-size: 1.4rem;
}
	
	.co-area {
		font-size: 1.2rem;
	}
	
.co-name {
    font-size: 2rem;
}
	

/*--------------------------------------------------------------------- BTN-AREA */		
	
.btn-area {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
    background: #0046ea;
	border-radius: 0;
	padding: 70px 0 80px;
}
	
.btn-area-inner {
    padding: 0;
    width: 390px;
}

.btn-area-inner:first-child {
    margin-right: 20px;
}
	
.btn-area-inner h4 {
    font-size: 2rem;
}
	
.btn-area-inner a span {
    font-size: 2.4rem;
}
	
.questionnaire {
	width: 100%;
	margin-top: 20px;
}
	
.questionnaire h4 {
	font-size: 2.4rem;
}
	
.questionnaire a {
	width: 800px;
	margin: 0 auto;
}
	
.questionnaire a span br {
	display: none;
}

	
/*--------------------------------------------------------------------- FAQ */
	
.faq .question {
    padding: 32px;
}
	
.faq .question {
    font-size: 1.8rem;
}
	
.faq .question + .answer .answerInner {
    font-size: 1.5rem;
}
	
.faq .question + .answer .answerInner .initials {
	width: 32px;
	font-size: 1.8rem;
}
	
.faq .question + .answer .answerInner .answer-txt {
    width: calc(100% - 32px);
}
	
	
	
	
	
	
	
	
	
	
	
	
	</pre></body></html>