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

/* ------------------------------
common
------------------------------ */
:root {
	--color-main: #10BBE8;
	--color-sub: #FFF337;
}


html,
body {
	overflow-x: hidden;
}

#contents {
	font-family: 'Noto Sans JP', sans-serif;
	padding-top: 0 !important;
	background-color: #F7F8FA;
}

.img img {
	max-width: 100%;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.section_ttl {
	padding: 30px 0;
	margin-bottom: 55px;
	background-color: var(--color-main);
	color: #fff;
	font-size: 40px;
	text-align: center;
}


h3 {
	text-align: center;
}

.flex_box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: nowrap;
}

#footer .flex_box {
	flex-wrap: wrap;
}

.reverse {
	flex-direction: row-reverse;
}

.btn {
	text-align: center;
}

.btn a {
	display: inline-block;
	background: #FB577F;
	color: #fff;
	padding: 10px 80px;
	border-radius: 4px;
	text-decoration: none;
}

.btn .midblue_bg {
  background: #00559D;
}

.btn a:hover {
	opacity: .8;
}

.btn .short {
	padding: 10px 40px;
}

.note {
	line-height: 1.3;
}

.bold {
  font-weight: 600;
}

a.link_text{
	text-decoration: underline;
}

@media screen and (min-width: 970px) {
	#contents .img img{
		width: auto;
	}
}

@media screen and (max-width: 970px) {
	#contents .img img{
		width: 95%;
	}
  .btn a {
    padding: 10px 50px;
  }
  .btn .short {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 490px) {
	
	.section_ttl {
		font-size: 28px;
	}

	.pc {
		display: none;
	}
}

/* ------------------------------
mv
------------------------------ */

.mv {
	text-align: center;
	background-color: #fff;
	background: linear-gradient(180deg, #efe901 0%, #efe901 63.6%, #00ceff 63.6%, #00ceff 100%); 
}

@media screen and (max-width: 970px) {
	
	h1 img {
    width: 100%;
}
	.mv {
		background-color: #fff;
		background: linear-gradient(180deg, #efe901 0%, #efe901 61%, #00ceff 61%, #00ceff 100%);
	}

}

@media screen and (max-width: 768px) {
	h1 {
    margin-left: 0;
}

}

.lead {
	margin: 50px 50px -20px;
	align-items: center;
	border: 2px dotted var(--color-main);
	justify-content: space-around;
}

.lead h2{
	color: var(--color-main);
}

p.news{
	margin: 30px 50px 10px;
	padding: 0 20px;
}

@media screen and (max-width: 490px) {
	.lead {
		margin: 40px 20px -10px;
		padding: 10px!important;
	  flex-direction: column;
	}
	p.news{
		margin: 10px 0;
		padding: 10px 0;
    font-size: 12px;
	}
}

/* ------------------------------
pixelamobile
------------------------------ */

#contents .sub_ttl::after{
	content: none;
}

.simplan_ttl {
	text-align: center;
	font-size: 26px;
	color: #444444;
}

.simplan_detail {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 70px;
}

.hot {
	position: relative;
	background: #fff;
}

.hot::before {
	content: "人気";
	position: absolute;
	top: -20px;
	left: calc(50% - 60px);
	padding: 4px 40px;
	background: var(--color-sub);
	border-radius: 20px;
	font-size: 16px;
	font-weight: 600;
}

.simplan_box {
	width: 22%;
	padding: 1%;
	text-align: center;
	background: #fff;
	border-radius: 4px;
}

.simplan_box h3 {
	margin: 10px 0 0;
	padding-bottom: 5px;
	border-bottom: 1px solid var(--color-main);
	font-size: 40px;
}

.simplan_box h3 span{
	font-size: 70%;
}

.simplan_box img {
	width: 96%;
	margin: 0 auto;
}

.simplan_box .price_number {
	font-size: 30px;
}

.simplan_box_subwrap{
	width: 46%;
	justify-content: space-around;
}

.simplan_sub{
	margin: 50px 0;
	justify-content: space-around;
}

.simplan_sub_text{
	width: 44%;
  padding: 0 3%;
}

.simplan_box_sub{
	text-align: center;
}

.simplan .note{
	margin-top: 70px;
}

@media screen and (max-width: 970px) {
	
	.simplan_ttl {
		margin-bottom: 50px;
	}

	.simplan_detail {
		width: 100%;
		margin: 0px auto;
	}

	.simplan_box {
		width: 47%;
		background: #fff;
	}

	.simplan_box:nth-of-type(n+3) {
		margin-top: 40px;
	}

	.simplan_box .price_number {
		font-size: 20px;
	}

}

@media screen and (max-width: 490px) {
	.simplan_ttl {
		font-size: 20px;
	}

	.simplan_sub{
		flex-direction: column;
	}
	.simplan_box h3{
		font-size: 30px;
	}
	.simplan_box .price,
	.simplan_box .plan{
		font-size: 13px;
	}
	
	.simplan_box_subwrap{
		width: 100%;
	}

	.simplan_sub_text{
		width: 100%;
		margin-bottom: 20px;
	}

	.simplan_box_sub{
		width: 50%;
	}

	.simplan_box_sub h3{
		font-size: 14px;
	}

}


/* ------------------------------
feature
------------------------------ */

.feature .flex_box{
	flex-wrap: wrap;
	justify-content: space-between;
}

.feature_box{
	position: relative;
	background: #fff;
	margin: 50px 0;
	box-sizing: border-box;
	border-radius: 25px;
}

.feature_box .badge{
	position: absolute;
	line-height: 1;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	left: calc(50% - 45px);
	top: -50px;
	font-size: 15px;
	font-weight: 600;
	background-color: var(--color-sub);
	}

	.feature_box .badge span{
		font-size: 38px;
	}

	.feature_box:nth-of-type(1){
		padding: 70px 90px 20px;
	}
	
	.feature_box:nth-of-type(n+2){
		width: 48%;
		padding: 70px 50px 20px;
	}

	.feature_box h3{
		text-align: center;
    font-size: 35px;
    color: #444444;
    font-weight: bold;
	}
	.feature_box h3 span{
		border-bottom:1px solid;
	}

	.feature_image{
    margin: 50px 0;
		text-align: center;
	}

@media screen and (max-width: 490px) {
	
	.feature_box h3{
		font-size: 24px;
	}
	.feature_box:nth-of-type(1){
		padding: 60px 20px 20px;
	}
	.feature_box:nth-of-type(n+2){
		width: 100%;
		padding: 60px 20px 20px;
	}

}

.feature_box2{	
	width: 30%;
	position: relative;
	background: #fff;
	margin: 50px 0;
	box-sizing: border-box;
	border-radius: 25px;
}

.feature_box2 h3{
	margin-top: 30px;
}

.feature_box2 .feature_image{
	margin: 20px 0 30px;
}


@media screen and (max-width: 490px) {

	.feature_box2{
		width: 100%;
		margin: 20px 0;
		display: flex;
		align-items: center;
		justify-content: center;	
	}
	.feature_box2 h3{
		margin-top: 0;
	}

	.feature_box2 .feature_image{
		margin:0;
	}

}

/*-----------------
setplan
-----------------*/
.setplan .section_ttl span{
	display: block;
	font-size:16px;
	font-weight: normal;
}

.setplan h3{
	margin-top: 100px;
	font-size: 30px;
	color: #444444;
	font-weight: normal;
	line-height: 1.4;
}

.setplan h3 span{
	border-bottom: 1px solid;
}

.setplan h3+p{
	text-align: center;
}

.setplan_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
	margin: 20px 0;
}

.setplan_box,
.setplan_image{
  position: relative;
}

.setplan_detail:nth-of-type(1){
	margin:80px 0;
}

.setplan_detail:nth-of-type(1) .setplan_image {
	width: 46%;
}

.setplan_detail:nth-of-type(1) .setplan_image:hover {
	opacity: .9;
}

.setplan_image::before{
	position: absolute;
	bottom: -5%;
	left: calc(50% - 16px);
	margin: auto;
	content: "";
	vertical-align: middle;
	border: 16px solid transparent;
	border-top: 15px solid #10bbe8;
}

.setplan_detail p{
	text-align: center;
	font-size: 20px;
}

.setplan .pulldown_link{
	width: 330px;
	margin: 0 auto;
}

.setplan .pulldown_link+p{
	text-align: center;
}	

.setplan_point{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin:50px 100px;
	background: #fff;
	border-radius: 10px;
}

.setplan_point .img{
	width: 230px;
	margin-right: 50px;
}

.setplan_point .text{
	margin-top: 30px;
}

.setplan_point .text h4{
	margin-left: -0.5em;
	font-size: 18px;
	font-weight: bold;
}

.setplan_point .text ol{
  counter-reset:list;
  list-style-type:none;
  padding:0;
}
.setplan_point .text li{
  position:relative;
  padding: 0 0 0 30px;
  margin: 7px 0 7px 0px;
  font-weight: bold;
  font-size:14px;
  line-height: 29px;
  border: dashed 1px transparent;
  transition: 0.3s;
}
.setplan_point .text li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -10px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height:30px;
  background: #10bbe8;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 970px) {
  .setplan_box:nth-of-type(1)::before{
    position: absolute;
    top: 40%;
    right: calc(-25% - 8px);
    margin: auto;
    content: "";
    vertical-align: middle;
    border: 16px solid transparent;
    border-left: 16px solid #cfdce5;
  }
}

@media screen and (max-width: 970px) {
  .setplan_box img {
    width: 70%;
  }
}
@media screen and (max-width: 490px) {

	.setplan h3 {
    font-size: 26px;
	}

  .setplan_box:nth-of-type(1)::before{
    position: absolute;
    left: calc(50% - 16px);
    bottom: -35px;
    margin: auto;
    content: "";
    vertical-align: middle;
    border: 16px solid transparent;
    border-top: 16px solid #cfdce5;
  }
  .setplan_box:nth-of-type(2){
    margin-top: 50px;
  }

	.setplan_box{
		text-align: center;
	}
	
	.setplan_detail:nth-of-type(1) .setplan_image {
		width: 49%;
	}
		
	.setplan_image::before{
		bottom: -16%;
	}
	.setplan_image p{
		text-align: left;
		font-size: 15px;
	}
	.setplan_point{
    margin: 50px 0;
    padding: 10px 36px;
	}
	
	.setplan_point .img{
		margin-right: 0;
	}
	
	.setplan_point .text{
		margin-top: 0;
	}
}


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

.faqbox {
	margin-top: 50px;
	text-align: left;
	border-top: 1px solid #ebecf0;
}

.faqbox dl {
	padding-bottom: 20px;
	border-bottom: 1px solid #ebecf0;
  font-size: 16px;
}

.faqbox dt {
	position: relative;
	padding-top: 20px;
	padding-left: 50px;
	padding-right: 2em;
	cursor: pointer;
}

.faqbox dt:hover {
	transition: .3s;
}

.faqbox dt:before {
	position: absolute;
	left: 0;
	width: 30px;
	height: 30px;
	margin-top: -4px;
	content: url(/biz/signage/img/icon_q.svg);
}

.faqbox dt:after {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	content: "";
}

.faqbox dd {
	line-height: 1.5;
	margin-top: 20px;
	padding-left: 1em;
	padding-right: 2em;
}

.faqbox ul {
	list-style-type: disc;
	margin: 0 30px;
  padding: 0;
}

.faqbox p {
  margin: 0;
}


@media screen and (max-width: 760px) {
.faqbox dt {
	padding-right: 3em;
}
}

@media screen and (max-width: 490px) {
	#contents .faq img,
	#contents .bottom_basket img{
		width: 75%;
	}
}


/*-----------------
bottom_basket
-----------------*/

.basket_text{
	text-align: center;
	font-size: 20px;
}
.bottom_basket_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
	margin: 40px 0 80px;
}

.bottom_basket_box {
  width: 32%;
  text-align: center;
}

.bottom_basket_image {
  margin-bottom: 25px;
  background: #fff;
}

.bottom_basket_image img {
  display: block;
  width: 50%;
  padding: 20px 0;
  margin: 0 auto;
}

.bottom_basket_box:nth-of-type(3) p {
  padding-top: 1.5em;
}

.pulldown_link {
  position: relative;
  border-radius: 4px;
  margin: 0 40px;
  font-size: 16px;
  text-align: center;
  background: #fb577f;
}

.pulldown_link option {
  font-size: 18px;
	color: #000;
}

.pulldown_link:hover {
  opacity: .8;
}

.pulldown_link select {
  width: 100%;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  padding: 10px 0;
  margin-left: -1em;
  color: #ffffff;
  text-align: center;
}

.pulldown_link select::-ms-expand {
  display: none;
}

.pulldown_link::before {
  position: absolute;
  top: 1.1em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  pointer-events: none;
}

@media screen and (max-width: 970px) {
  .bottom_basket_box {
    width: 49%;
  }
  .pulldown_link {
    margin: 0 10px;
    font-size: 15px;
  }
  .pulldown_link option {
    font-size: 14px;
  }
  .pulldown_link::before {
    top: 1em;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
  }
}</pre></body></html>