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

body {
	font-family: 'Noto Sans JP','Poppins';
	font-size: 62.5%;
	height: -webkit-fill-available;
}
html {
	background: #FFFFFF;
}
html * {
	transition: all 0.5s;
}
@media only screen and (max-width: 720px) {
	html {
		font-size: 3.8vmin;
	}
}
.wrapper {
	position: relative;
	overflow: hidden;
}

header {
	font-family: 'Poppins';
    letter-spacing: 2px;
	font-size: 1rem;
	padding: 2rem;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	color: #FFFFFF;
	z-index: 10;
    
/*
    position: -webkit-sticky;
    position: sticky;
    top: 0;
*/
}

#header{
    position: fixed;/*fixedﾃ｣窶壺凖ｨﾂｨﾂｭﾃ･ﾂｮﾅ｡ﾃ｣ﾂ≫氾｣ﾂ�ｦﾃ･窶ｺﾂｺﾃ･ﾂｮﾅ｡*/
    letter-spacing: 2px;
	height: 70px;/*ﾃｩﾂｫﾋ愿｣ﾂ≫｢ﾃｦﾅ停｡ﾃ･ﾂｮﾅ｡*/
	width:100%;/*ﾃｦﾂｨﾂｪﾃ･ﾂｹ窶ｦﾃｦﾅ停｡ﾃ･ﾂｮﾅ｡*/
    z-index: 999;/*ﾃｦﾅ凪ぎﾃ･窶ｰﾂ催ｩﾂ敖｢ﾃ｣ﾂ�ｸ*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: transparent;
	color:#fff;
	text-align: center;
	padding: 20px;
}

#header.fixed{
    position: fixed;/*fixedﾃ｣窶壺凖ｨﾂｨﾂｭﾃ･ﾂｮﾅ｡ﾃ｣ﾂ≫氾｣ﾂ�ｦﾃ･窶ｺﾂｺﾃ･ﾂｮﾅ｡*/
    z-index: 999;/*ﾃｦﾅ凪ぎﾃ･窶ｰﾂ催ｩﾂ敖｢ﾃ｣ﾂ�ｸ*/
    top:0;/*ﾃ､ﾂｽﾂ催ｧﾂｽﾂｮﾃｦﾅ停｡ﾃ･ﾂｮﾅ｡*/
    left:0;/*ﾃ､ﾂｽﾂ催ｧﾂｽﾂｮﾃｦﾅ停｡ﾃ･ﾂｮﾅ｡*/
}

.header-open{
    color: #222!important;
    background-color:#fff!important;
}

.color-01{
    color:#fff;
}

/*ﾃ｣竄ｬ竄ｬﾃ､ﾂｸﾅ�ﾃ｣ﾂ�ｫﾃ､ﾂｸﾅ�ﾃ｣ﾂ�津｣窶壺ｹﾃ･窶ｹ窶｢ﾃ｣ﾂ�催｣竄ｬ竄ｬ*/

#header.UpMove{
	position: fixed;
	width:100%;
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

#header.DownMove{
	position: fixed;
	width:100%;
	animation: DownAnime 0.5s forwards;
}
#header.Downheader *{
	transition: all 0.1s;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

@media only screen and (max-width: 1024px) {
	.content .content-inner .right {
		width: 100%;
	}
}

#header.Downheader {
    background-color: #fff;
    color: #222;
}


header h1 img {
	width: 2.4rem;
	vertical-align: middle;
	margin-right: 0.5rem;
}
header ul {
	display: flex;
	align-items: center;
}
header ul li {
	margin-left: 3vw;
	display: flex;
	align-items: center;
}
header ul li a {
	display: block;
	padding: 0.5rem 0;
}

header ul .current {
	position: relative;
}
header ul .current:after {
	content: '';
	display: block;
	width: 90%;
	height: 1px;
	background: #B11556;
	position: absolute;
	bottom: 0;
	right: 5%;
}
header .menu-trigger {
	display: none;
}
@media only screen and (max-width: 1024px) {
	header {
		padding: 2rem 1rem;
	}
	header ul li {
		margin-left: 2vw;
	}
}
@media only screen and (max-width: 768px) {
	header {
		padding: 1.5rem 1rem;
		font-size: 1.4rem;
	}
	header h1 img {
		width: 2.8rem;
	}
	header .menu-trigger {
		display: inline-block;
		position: absolute;
		top: 0.8rem;
		right: 0;
		width: 3rem;
		height: 3rem;
		z-index: 500;
		color: #FFFFFF;
	}
	.menu-trigger span {
		position: absolute;
		left: 0;
		width: 70%;
		height: 3px;
		background-color: #FFFFFF;
		border-radius: 2px;
	}
    .Downheader .menu-trigger span {
		background-color: #222;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 1rem;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 1.7rem;
	}
	.menu-trigger span:nth-of-type(3) {
		top: 2.4rem;
	}
	.menu-open .menu-trigger span {
		background-color: #000000;
	}
	.menu-open .menu-trigger span:nth-of-type(1) {
		/*-webkit-transform: translateY(100%) rotate(-45deg);*/
		transform: translateY(0.7rem) rotate(-45deg);
	}
	.menu-open .menu-trigger span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-open .menu-trigger span:nth-of-type(3) {
		/*-webkit-transform: translateY(100%) rotate(45deg);*/
		transform: translateY(-0.7rem) rotate(45deg);
	}
	header ul {
		display: block;
		position: absolute;
		right: 0;
		top: 6rem;
		width: 100%;
		z-index: 5000;
		transition: all 0.5s;
		transform: translate(100%);
		/*background:rgba(168,184,204,0.95);*/
		padding: 2rem;
		text-align: center;
	}
	header ul li a {
		padding: 1rem 0;
		text-align: left;
	}
	.menu-open header ul {
		transform: translate(0);
	}
	.menu-open header {
		background: #FFFFFF;
	}
	.menu-open header h1 {
		color: #000000;
	}
}
.btn01 a {
	border: #FFFFFF 1px solid;
	padding: 1rem;
	display: inline-block;
	width: 24rem;
	text-align: center;
	position: relative;
	font-size: 1rem;
	font-weight: 500;
    z-index: 1;
    transition: .3s;
}
.btn01 a:after {
	content: '';
	display: block;
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	width: 2rem;
	height: 0.5rem;
	border-bottom: 1px solid #FFFFFF;
	border-right: 2px solid #FFFFFF;
	transform: skew(45deg);
}
.btn01 a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: #222;
    background: #fff;
    z-index: -1;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}

.btn01 a:hover{
    color: #222;
}
.btn01 a:hover::after {
    border-bottom: 1px solid #222;
    border-right: 2px solid #222;
}
.btn01 a:hover::before {
    color: #222;
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.btn02 a,
.btn02 span.nolink {
	border: #000000 1px solid;
	padding: 1rem;
	display: inline-block;
	width: min(100%,20rem);
	text-align: center;
	position: relative;
	font-size: 1rem;
	font-weight: 500;
    z-index: 1;
    transition: .3s;
}
.btn02 a:after {
	content: '';
	display: block;
	position: absolute;
	right: 1.5rem;
	top: 1.5rem;
	width: 2rem;
	height: 0.5rem;
	border-bottom: 1px solid #000000;
	border-right: 2px solid #000000;
	transform: skew(45deg);
}
.btn02 a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #333;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}

.btn02 a:hover {
    color: #fff;
}
.btn02 a:hover::after {
    border-bottom: 1px solid #fff;
    border-right: 2px solid #fff;
}
.btn02 a:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}


div.submit-btn .btn03 {
	position: relative;
    display: inline-block; 
}

.btn03:after {
	content: '';
	display: block;
	position: absolute;
    top: 2rem;
	right: 2rem;
	width: 2rem;
	height: 0.5rem;
	border-bottom: 1px solid #000000;
	border-right: 2px solid #000000;
	transform: skew(45deg);
}

.btn03:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #333;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.btn03 input {
    transition: all 0s!important;
}
.btn03:hover {
    color: #fff;
}
.btn03:hover::after {
    border-bottom: 1px solid #fff;
    border-right: 2px solid #fff;
}
.btn03:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
@media only screen and (max-width: 720px) {
	.btn01 a {
		width: 100%;
	}
}
.content .content-inner {
	width: 80vw;
	margin: auto;
	padding: 4rem 0;
	line-height: 1.8;
	display: flex;
}
.content .content-inner h2 {
	font-size: 3rem;
	font-family: 'Poppins';
	font-weight: 600;
	width: 28%;
	margin-right: 2%;
	white-space: nowrap;
	margin-top: -0.5rem;
	line-height: 1.5;
}
.content .content-inner h2 span {
	font-size: 1.3rem;
	font-weight: 500;
	display: block;
	font-family: 'Noto Sans JP';
	position: relative;
}
.content.contact {
	min-height: auto;
	padding: 2rem 0;
	background: #333333;
}
@media only screen and (max-width: 1024px) {
	.content .content-inner {
		width: 90vw;
		display: block;
	}
	.content .content-inner h2 {
		margin: 0 0 2rem 0;
		width: 100%;
	}
}

.banner-list {
    width: 100%;
}
.banner-list dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ddd;
}
.banner-list dt {
    color: #222;
    font-size: 1.3rem;
    font-family: 'Noto Sans JP';
    font-weight: 500;
    width: 25%;
    padding: 1rem 0;
    
}
.banner-list dd a {
    display: inline-block;
}
.banner-list dd .banner-item {
    display: inline-block;
    margin: 2% 0% 2% 4%;
    text-align: center;
    vertical-align: top;
}
.banner-list dd .footlogo{
    width: 16rem;
}
.banner-list dd {
    width: 70%;
}
@media only screen and (max-width: 1024px) {
	
    .banner-list dl{
        display: block;
    }
    .banner-list dt,
    .banner-list dd{
        width: 100%;
    }
    .banner-list dd a{
        /* padding-bottom: 1.5rem; */
    }
    
    .content08 .content-inner .right{
        width: 100%!important;
    }
    
}
footer {
	padding: 2rem 0;
	position: relative;
}
footer .page-top {
	position: absolute;
	right: 2vw;
	bottom: 4rem;
	line-height: 1;
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 0.8rem;
	transform:rotate(90deg);
}
footer .page-top:after {
	content: '';
	display: block;
	position: absolute;
	left: -4.5rem;
	top: 0rem;
	width: 4rem;
	height: 0.5rem;
	border-bottom: 1px solid #000000;
	border-left: 2px solid #000000;
	transform: skew(-45deg);
}
footer .inner {
	width: 80vw;
	margin: auto;
	line-height: 1;
	font-family: 'Poppins';
	font-weight: 600;
}
footer .inner .top {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
}
footer .inner ul {
	display: flex;
	align-items: center;
	font-size: 1rem;
	flex-wrap: wrap;
}
footer .inner .top ul {
	flex: 1;
}
footer .inner li {
	margin: 0 3% 2rem 0;
	white-space: nowrap;
}
footer .inner .foot-logo {
	display: block;
	width: 16rem;
	margin-right: 4%;
	margin-bottom: 2rem;
}
footer .inner .group {
	border-top: #E0E0E0 1px solid;
	padding: 2rem 0 1rem;
}
footer .inner .group strong {
	display: block;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 2rem;
}
footer .inner .group .foot-banner {
	flex-wrap: wrap;
}
footer .inner .group .foot-banner li {
	margin: 0 2% 1rem 0;
}
.group-svg {
    max-height: 40px;
    width: 100%;
}
footer .inner .copy {
	text-align: right;
	font-size: 0.8rem;
}

@media only screen and (max-width: 1024px) {
	footer .inner .top {
		display: block;
	}
}
@media only screen and (max-width: 768px) {
	footer .inner .group .foot-banner li {
		margin: 0 5% 1rem 0;
	}
	footer .inner .copy {
		text-align: center;
		font-size: 0.6rem;
	}
}

.sp-only {
	display: none;
}
@media only screen and (max-width: 1024px) {
	.pc-only {
		display: none;
	}
}
@media only screen and (max-width: 720px) {	
	.sp-only {
		display: block;
		margin: 4em 0;
	}
	.pc-only {
		display: none;
	}
}
.overlay {
	position: fixed;
	top:0;
	z-index: 10;
	width: 100vw;
	height: 100vh;
	visibility: hidden;
	opacity: 0;
	background: rgba(0,0,0,0.8);
	transition: all 0.5s ease-out;
}
.overlay.open {
	visibility: visible;
	opacity: 1;
}




/* sub page */
.sub-mv {
	height: 34rem;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-size:cover;
	background-position:50%;
}
.sub-mv h2 {
	padding: 0 7vw;
	width: 100%;
	font-size: 1.25rem;
}
.sub-mv h2 span {
	display: block;
	font-size: 3.2rem;
	font-family: 'Poppins';
	font-weight: 600;
}
.sub-mv p {
	padding: 0 7vw;
	width: 100%;
	font-size: 1rem;
}
.pan-navi {
	padding: 2rem 7vw;
}
.pan-navi ul {
	display: flex;
	font-size: 0.85rem;
}
.pan-navi li::after {
  content: '&gt;';
  padding: 0 0.5rem;
}
.pan-navi li:last-child::after {
  content: '';
}
@media only screen and (max-width: 1024px) {
	.sub-mv h2 {
		padding: 0 5vw;
	}
	.pan-navi {
		padding: 2rem 5vw;
	}
}
@media only screen and (max-width: 768px) {
	.sub-mv {
		height: 14rem;
	}
	.sub-mv h2 {
		font-size: 1rem;
		margin-top: 6rem;
	}
	.sub-mv h2 span {
		font-size: 2.4rem;
	}
}


.sub-content01 ,
.sub-content02 {
	padding: 4rem 15vw;
	font-size: 1rem;
}
.sub-content01.btn-list {
	padding: 2rem 15vw;
}
.sub-content02 {
	background: #EEEEEE;
}
.sub-ttl01 {
	font-size: 1.25rem;
	position: relative;
	margin-bottom: 2rem;
}
.sub-ttl01 span {
	display: block;
	font-size: 3rem;
	font-family: 'Poppins';
	font-weight: 600;
}
.sub-ttl01::before {
	content: '';
	display: block;
	width: 5vw;
	height: 1px;
	background: #B11556;
	position: absolute;
	left: -8vw;
	top: 1.5rem;
}
@media only screen and (max-width: 1024px) {
	.sub-content01 ,
	.sub-content02 {
		padding: 4rem 10vw;
	}
	.sub-ttl01::before {
		width: 3vw;
		left: -4vw;
	}
	.sub-content01.btn-list {
		padding: 2rem 10vw;
	}
}
@media only screen and (max-width: 768px) {
	.sub-content01 ,
	.sub-content02 {
		padding: 2rem 10vw;
		font-size: 1rem;
	}
	.sub-ttl01 span {
		font-size: 2.4rem;
	}
}


.btn-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.btn-list ul li {
	width: 30%;
	margin-bottom: 1rem;
}
.btn-list ul li a {
	display: block;
	border: #000000 1px solid;
	text-align: center;
	padding: 1rem;
	position: relative;
}
.btn-list ul li a:after {
	content: '';
	display: block;
	position: absolute;
	right: 1rem;
	top: 1.3rem;
	width: 1.5rem;
	height: 0.3rem;
	border-bottom: 1px solid #000000;
	border-right: 2px solid #000000;
	transform: rotate(90deg) skew(45deg);
}
@media only screen and (max-width: 768px) {
	.btn-list ul li {
		width: 48%;
	}
	.btn-list ul li a:after {
		right: .3rem;
	}
}


.txt-gray {
	color: #bdbdbd;
}
.mt2 {
	margin-top: 2em;
}

.test {
	font-family: 'Poppins', sans-serif;
	font-style: italic; /* italic */
	font-weight: 100; /* Thin 100 */
	font-weight: 200; /* Extra-light 200 */
	font-weight: 300; /* Light 300 */
	font-weight: 400; /* Regular 400 */
	font-weight: 500; /* Medium 500 */
	font-weight: 600; /* Semi-bold 600 */
	font-weight: 700; /* Bold 700 */
	font-weight: 800; /* Extra-bold 800 */
	font-weight: 900; /* Black 900 */
}

/* 240617 */
.snslogo {
	width: 30px;
	margin-left: 4%;
	margin-top: 0.5rem;
}

header .snslogo {
	width: 2vw;
	margin-left: .5em;
}
@media only screen and (max-width: 768px) {
	header .snslogo {
		width: 30px;
	}
}</pre></body></html>