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

/*-----------------------------------------------------------------------------------
  ページビジュアル
-----------------------------------------------------------------------------------*/

.visual {
	background-image: url("../../images/design/visual.jpg");
}
.visual h1 {
	line-height: 1.2;
}

.attention01 {
	display: inline-block;
	font-size: 2rem;
	border-bottom: 1px solid #ffc400;
	margin-bottom: 1em;
}
@media screen and (max-width:720px) {
	.attention01 {
		font-size: 1.5rem;
	}
}
@media screen and (max-width:550px) {
	.attention01 {
		font-size: 1.25rem;
	}
}


/*-----------------------------------------------------------------------------------
  共通部分
-----------------------------------------------------------------------------------*/

#design .inner {
    line-height: 2;
    letter-spacing: 0.1em;
}

#design .inner p {
	margin-bottom: 1em;
}

.interval {
	margin-bottom: 80px !important;
}

.mg-none {
	margin-bottom: 0 !important;
}

.txt-blk {
	display: inline-block;
}


/*-----------------------------------------------------------------------------------
  カラム
-----------------------------------------------------------------------------------*/

/* column */
.column {
	display: flex;
	justify-content: space-between;
	align-items:center;
}

/* column2 */
.column2box {
	width: calc(50% - 20px);
}


/*-----------------------------------------------------------------------------------
  各ボックス
-----------------------------------------------------------------------------------*/

/* box01 */
.box01 .logodesign b {
	display: inline-block;
	font-size: 1.5rem;
	border-bottom: 1px solid #ffc400;
	margin-bottom: 42px;
}

.box01 .logodesign .column {
	margin-bottom: 42px;
} 

.box01 .number {
	text-align: left;
	list-style: none;
	counter-reset: circle 0; /* カウンターの初期値を０にセット */
	padding:0 0 0 3em;
}
.box01 .number &gt; li {
	position:relative;
	line-height:1.6;
	margin:0 0 1em;
}
.box01 .number &gt; li:before {
	position: absolute;
	top: -3px;
	left:-3em;
	width:2em;
	height:2em;
	background:#f6510f;
	content:"";
	display:block;
	border-radius:50%;
	line-height:1;
}
.box01 .number &gt; li:after {
	content: counter(circle); /* 表示形式を指定 */
	counter-increment: circle 1; /* カウンターの値を増加させる */
	display: block;
	color: #fff;
	position: absolute;
	top: 5px;
	left:-2.25em;
	line-height:1;
}

@media screen and (max-width:800px) {
	.box01 .column {
		display: block;
	}
	.box01 .column2box {
		width: 100%;
	}
}


/* box02 */
.box02 {	
	background-color: #fffbee;
}
.box02 h2 {
	font-size:2rem;
	margin-bottom: 42px;
}
.box02 .plan {
	background-color: #fff;
	border: 1px solid #ffc400;
	text-align: left;
}
.box02 .plan h3 {
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 24px;
	background-color: #ffc400;
	color: #fff;
	padding: 24px;	
}
.box02 .plan h3 span {
	display: inline-block;
	font-size:1rem;
}
.box02 .plan .desc {
	padding: 0 24px;
}
.box02 .plan .desc dl {
	line-height: 1.8;
	overflow: hidden;
}
.box02 .plan .desc dl dt {
	font-size: 1.5rem;
	color: #ffc400;
	font-weight: bold;
}
.box02 .plan .desc dl dd {
	margin-left: 1em;
	margin-bottom: 1em;
}
.box02 .plan .desc dl dd .price {
	font-size: 2rem;
}

.box02 .plan .desc .servicelist dl {
	float: left;
	width: 50%;
}

.box02 .plan .desc .fantool h4 {
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 24px;
	background-color: #ffc400;
	color: #fff;
	padding: 12px 24px;
	margin-top: 42px;
}

.box02 .attention {
	font-size: 0.8rem;
}

@media screen and (max-width:640px) {
	.box02 .plan .desc .servicelist dl {
		float: none;
		width: 100%;
	}
}


</pre></body></html>