/* ----------------------------------------
* fonts
---------------------------------------- */
@font-face {
	font-family: ibm-r;
	src: url(../fonts/IBM-Plex-Sans-JP/hinted/IBMPlexSansJP-Regular.ttf);
}

@font-face {
	font-family: ibm-text;
	src: url(../fonts/IBM-Plex-Sans-JP/hinted/IBMPlexSansJP-Text.ttf);
}

@font-face {
	font-family: ibm-b;
	src: url(../fonts/IBM-Plex-Sans-JP/hinted/IBMPlexSansJP-Bold.ttf);
}

@font-face {
	font-family: ibm-sb;
	src: url(../fonts/IBM-Plex-Sans-JP/hinted/IBMPlexSansJP-SemiBold.ttf);
}

@font-face {
	font-family: ibm-m;
	src: url(../fonts/IBM-Plex-Sans-JP/hinted/IBMPlexSansJP-Medium.ttf);
}

@font-face {
	font-family: ibm-l;
	src: url(../fonts/IBM-Plex-Sans-JP/hinted/IBMPlexSansJP-Light.ttf);
}

.ibm-r {
	font-family: ibm-r;
}

.ibm-text {
	font-family: ibm-text;
}

.ibm-b {
	font-family: ibm-b;
}

.ibm-sb {
	font-family: ibm-sb;
}

.ibm-m {
	font-family: ibm-m;
}

.ibm-l {
	font-family: ibm-l;
}


/* ----------------------------------------
* header
---------------------------------------- */
.pc-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1% 2% 1% 6%;
	height: 150px;
	z-index: 999;
	background-color: #fff;
	align-items: center;
}

.pc-header .logo {
	position: relative;
	display: block;
	width: 20%;
	margin: 0 20% 0 0;
}

.pc-header .logo img {
	display: block;
	width: 100%;
}

.pc-header .header-nav {
	width: 58%;
}

.pc-header .header-nav ul {
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: space-between;
}

.pc-header .header-nav ul li {
	font-size: 80%;
	font-weight: 600;
	position: relative;
}

.pc-header .header-nav ul li:hover :before {
	background-color: #e88a1b;
	transform: scale(1, 1);
	width: 120%;
	height: 2px;
	background-position: center;
	background-size: contain;
	position: absolute;
	content: "";
	bottom: -5px;
	left: -10%;
}

.header-icon-list {
	width: 8%;
	padding: 0 0 0 1%;
	margin: 0;
	justify-content: space-around;
}

.header-icon-list li a img {
	width: calc(32/1920*100vw);
}

@media only screen and (min-width: 1700px) {
	.pc-header .logo {
		width: 18%;
		margin: 0 15% 0 0;
	}
}

@media only screen and (max-width: 768px) {
	.sp-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 75px;
		padding: 0 8%;
		background: rgba(255, 255, 255, 1);
		z-index: 9999;
		align-items: center;
		transition: .3s;
	}

	.sp-header>a {
		width: 230px;
	}
}

.main-slider-wrap {
	position: relative;
	margin: 150px 0 0;
}

.main-slider {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.main-slider .slick-dots {
	bottom: 5%;
}

@media only screen and (max-width: 768px) {
	.main-slider-wrap {
		margin: 75px 0 0 0;
	}
}


/* ----------------------------------------
* front
---------------------------------------- */
#page-top h2 {
	position: relative;
	font-size: 160%;
	text-align: center;
	margin: 0 0 1.5em 0;
	display: flex;
	flex-direction: column;
	padding-bottom: 1.5em;
}

#page-top #concept div:nth-child(1) h2 {
	padding-bottom: 1.65em;
	margin-bottom: 1.3em;
}

#page-top #concept div:nth-child(2) h2 {
	padding-bottom: 1.2em;
	margin-bottom: 1.1em;
}

#page-top #method h2 {
	margin: 0 0 1em 0;
}

#page-top #about h2 {
	padding-bottom: 2em;
	margin-bottom: 2.5em;
}

#page-top #works h2,
#page-top #news h2 {
	padding-bottom: 2em;
	margin-bottom: 2.5em;
}

#page-top h2 span.gray {
	font-size: 66%;
	margin-top: 0.5em;
	font-weight: 600;
}

#page-top h2:before {
	content: "";
	height: calc(9/1920*100vw);
	width: calc(420/1920*100vw);
	position: absolute;
	background-image: url(../images/main/underline.png);
	background-size: cover;
	background-position: center;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

#page-top #about h2:before,
#page-top #works h2:before,
#page-top #contact h2:before {
	background-image: url(../images/main/underline-wh.png);
}

@media only screen and (max-width: 768px) {
	#page-top h2 {
		font-size: 185%;
		padding-bottom: 1em;
		margin-bottom: 0.8em;
	}

	#page-top h2:before {
		content: "";
		height: calc(7/480*100vw);
		width: calc(315/480*100vw);
		position: absolute;
		background-image: url(../images/main/underline-sp.png);
		background-size: cover;
		background-position: center;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0);
	}

	#page-top #about h2 {
		padding-bottom: 1em;
		margin-bottom: 1.5em;
	}

	#page-top #works h2,
	#page-top #news h2 {
		padding-bottom: 1.8em;
		margin-bottom: 1.5em;
	}

	#page-top #about h2:before,
	#page-top #works h2:before,
	#page-top #contact h2:before {
		background-image: url(../images/main/underline-wh.png);
	}

}

@media only screen and (max-width: 479px) {
	#page-top h2 {
		font-size: 6.25vw;
	}

}


/* concept */
#concept {
	padding: 6% 0 3%;
	background-image: url(../images/main/concept-bg.png);
	text-align: center;
}

#concept>div:nth-child(1) {
	margin-bottom: 4%;
}

#concept div p {
	font-size: 85%;
	line-height: 1.65;
}

@media only screen and (max-width: 768px) {
	#concept {
		padding: 9% 10% 5%;
		background-image: url(../images/main/concept-bg-sp.png);
		text-align: justify;
	}

	#concept>div:nth-child(1) {
		margin-bottom: 12%;
	}

	#concept div p {
		font-size: 115%;
		line-height: 1.55;
		margin: 0 0 1em;
	}
}

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


	#concept div p {
		font-size: 3.95vw;
	}
}

/* method */
#method {
	padding: 7.5% 10% 1%;
}

#method .intro>div {
	padding: 0 6%;
	font-size: 85%;
	text-align: justify;
	letter-spacing: 0.1em;
	margin: 3% 0 0;
}

.method-list {
	padding: 0;
	margin: 0;
}

.method-list li {
	align-items: flex-start;
	margin: 12% 0;
}

.method-list li:nth-child(even) {
	flex-direction: row-reverse;
}

.method-list li .text-box {
	background-color: rgba(255, 255, 255, 0.95);
	flex: 1;
	margin-right: -20%;
	z-index: 3;
	padding: 3% 6% 2% 7%;
	position: relative;
}

.method-list li:nth-child(2) .text-box {
	padding: 5% 6% 3% 7%;
}

.method-list li:nth-child(3) .text-box {
	padding: 7% 6% 6% 7%;
}

.method-list li:nth-child(4) .text-box {
	padding: 9% 6% 10% 7%;
}

.method-list li:nth-child(even) .text-box {
	margin-right: 0%;
	margin-left: -20%;
}

.method-list li .text-box h3 {
	font-size: 135%;
	padding-left: 0.8em;
	border-bottom: 1px dashed;
	padding-bottom: 1em;
	position: relative;
	margin-bottom: 1.2em;
}

.method-list li .text-box h3:before {
	content: "";
	position: absolute;
	background-color: #e88a1b;
	width: 5px;
	height: 1em;
	top: 30%;
	left: 0;
	transform: translate(0, -50%);
}

.method-list li .text-box div {
	font-size: 85%;
	line-height: 1.45;
	text-align: justify;
}

.method-list li .img-box {}

.method-list li .img-box>div {
	position: relative;
}

.method-list li .img-box img {
	width: calc(959/1920*100vw);
	z-index: 2;
	position: relative;
}

.method-list li .img-box .bg-orange {
	position: absolute;
	background: #fceedd;
	width: 100%;
	height: 100%;
	content: "";
	top: 7%;
	right: -4%;
	z-index: 1;
}

.method-list li:nth-child(even) .img-box .bg-orange {
	right: 0%;
	left: -4%;
}

@media only screen and (max-width: 768px) {
	#method {
		padding: 13% 4% 27%;
		;
	}

	#method .intro>div {
		padding: 0;
		font-size: 110%;
		margin: 3% 5% 0;
	}

	.method-list {
		padding: 0;
		margin: 0;
	}

	.method-list li {
		align-items: center;
		margin: 8% 0 10%;
		flex-direction: column;
	}

	.method-list li:nth-child(even) {
		flex-direction: column;
	}

	.method-list li .text-box {
		margin-right: 0;
		padding: 3% 6% 3%;
	}

	.method-list li:nth-child(3) .text-box {
		padding: 7% 6% 6% 7%;
	}

	.method-list li:nth-child(4) .text-box {
		padding: 9% 6% 10% 7%;
	}

	.method-list li:nth-child(even) .text-box {
		margin-left: 0%;
	}

	.method-list li .text-box h3 {
		font-size: 185%;
		padding-left: 0.8em;
		border-bottom: 1px dashed;
		padding-bottom: 1em;
		margin: 1.2em 0 1.5em;
		line-height: 1.3;
	}

	.method-list li .text-box h3:before {
		content: "";
		position: absolute;
		background-color: #e88a1b;
		width: 5px;
		height: 1em;
		top: 30%;
		left: 0;
		transform: translate(0, -50%);
	}

	.method-list li:nth-child(1) .text-box h3:before,
	.method-list li:nth-child(3) .text-box h3:before {
		width: 5px;
		height: 2.6em;
		top: 36%;
		left: 0;
		transform: translate(0, -50%);
	}

	.method-list li .text-box div {
		font-size: 115%;
		line-height: 1.6;
	}

	.method-list li .img-box {
		min-width: 100vw;
		margin-top: -86%;
	}

	.method-list li:nth-child(2) .img-box {
		margin-top: -101%;
	}

	.method-list li:nth-child(3) .img-box {
		margin-top: -94%;
	}

	.method-list li:nth-child(4) .img-box {
		margin-top: -74%;
	}

	.method-list li .img-box img {
		width: 100vw;
		box-shadow: unset;
	}

	.method-list li:nth-child(even) .img-box img {
		box-shadow: unset;
	}

}

@media only screen and (max-width: 479px) {
	#method .intro>div {
		font-size: 3.75vw;
	}

	.method-list li .text-box h3 {
		font-size: 6.25vw;
	}

	.method-list li .text-box div {
		font-size: 3.95vw;
	}

}

/* about */
#about {
	padding: 5% 10%;
	background-image: url(../images/main/about-slider-bg.png);
}

.about-slider {}

.about-slider .slick-slide {
	background-color: #fff;
	border-radius: 10px;
	padding: calc(70 / 1920 * 100vw) calc(100 / 1920 * 100vw);
	margin: 0 5px;
}

.about-slider .slick-slide h3 {
	text-align: center;
	font-size: 135%;
	padding: 0 1em 1.5em;
	border-bottom: 1px dashed;
	width: fit-content;
	margin: 0 auto 2.5em;
}

.about-slider .slick-slide div.flex {
	align-items: flex-start;
}

.about-slider .slick-slide div.flex .text-area {
	flex: 1;
	margin-right: 6%;
	text-align: justify;
	line-height: 1.5;
}

.about-slider .slick-slide div.flex .text-area p {
	font-size: 82%;
}

.about-slider .slick-slide div.flex .text-area p:last-child {
	margin: 0;
}

.about-slider .slick-slide div.flex .text-area a {
	font-size: 82%;
	background-color: #e88a1b;
	padding: 4% 6%;
	margin: 1em 0 0;
	display: block;
	width: fit-content;
	font-weight: 500;
}

.about-slider .slick-slide div.flex .text-area p.bold {
	font-size: 115%;
	margin: 0 0 0.5em;
}

.about-slider .slick-slide div.flex .img-box {}

.about-slider .slick-slide div.flex .img-box img {
	width: calc(613/1920*100vw);
}

.about-slider .slick-dots {
	position: relative;
	margin-top: 3%;
}

#about>a {
	background-color: #fff;
	align-items: center;
	font-size: 85%;
	width: calc(520/1920*100vw);
	justify-content: center;
	margin: 3.5% auto;
	padding: 2.5% 0;
	border-radius: 5px;
	line-height: 1;
	font-weight: 500;
}

#about>a img {
	margin-right: 0.7em;
	width: calc(26/1920*100vw);
}

@media only screen and (max-width: 768px) {
	#about {
		padding: 14% 3%;
		background: #e88a1b;
	}


	.about-slider {}

	.about-slider .slick-slide {
		padding: calc(55 / 480* 100vw) calc(25 / 480 * 100vw) calc(35 / 480 * 100vw);
	}

	.about-slider .slick-slide h3 {
		font-size: 155%;
		padding: 0 1em 1em;
		margin: 0 auto 1em;
		width: 100%;
	}

	.about-slider .slick-slide div.flex {
		align-items: center;
		flex-direction: column;
	}

	.about-slider .slick-slide div.flex .text-area {
		margin-right: 0%;
		margin-bottom: 1.5em;
	}

	.about-slider .slick-slide div.flex .text-area p {
		font-size: 115%;
	}

	.about-slider .slick-slide div.flex .img-box {}

	.about-slider .slick-slide div.flex .img-box img {
		width: calc(380/480*100vw);
	}

	.about-slider .slick-dots {
		position: relative;
	}

	#about>a {
		font-size: 115%;
		width: calc(380/480*100vw);
		margin: 10% auto;
		padding: 7% 0;
	}

	#about>a img {
		width: calc(26/480*100vw);
	}

	.about-slider .slick-slide div.flex .text-area a {
		margin: 1em auto;
	}
}

@media only screen and (max-width: 479px) {
	.about-slider .slick-slide h3 {
		font-size: 5.2vw;
	}

	.about-slider .slick-slide div.flex .text-area p {
		font-size: 3.95vw;
	}

	#about>a {
		font-size: 3.95vw;
	}

}

/* newks */
#news {
	padding: 4% 14% 5%;
}

#news>a {
	background-color: #e88a1b;
	color: #fff;
	width: calc(520/1920*100vw);
	font-size: 85%;
	display: block;
	margin: auto;
	text-align: center;
	padding: 3% 0 2.8%;
	border-radius: 5px;
	font-weight: 500;
	line-height: 1;
}

@media only screen and (max-width: 768px) {
	#news {
		padding: 16% 5% 20%;
	}

	#news>a {
		width: calc(380/480*100vw);
		font-size: 115%;
		margin: auto;
		text-align: center;
		padding: 7% 0 6%;
		letter-spacing: 0.1em;
	}
}

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


	#news>a {
		font-size: 3.95vw;
	}
}

/* works */
#works {
	padding: 4% 14% 5%;
	background-color: #e88a1b;
}

.post-slider {
	margin: 0;
	padding: 0 0 5% 0;
}

#works>a {
	background-color: #fff;
	width: calc(520/1920*100vw);
	font-size: 85%;
	display: block;
	margin: auto;
	text-align: center;
	padding: 3% 0 2.8%;
	border-radius: 5px;
	font-weight: 500;
	line-height: 1;
}

@media only screen and (max-width: 768px) {
	#works {
		padding: 12% 5% 20%;
	}

	#works>a {
		width: calc(380/480*100vw);
		font-size: 115%;
		margin: auto;
		text-align: center;
		padding: 7% 0 6%;
		letter-spacing: 0.1em;
	}
}

@media only screen and (max-width: 479px) {
	#works>a {
		font-size: 3.95vw;
	}
}

/* service */
#service {
	padding: 0;
}

.service-list {
	padding: 0;
	margin: 0;
}

.service-list>li {
	min-width: 100vw;
	min-height: calc(900/1920*100vw);
	position: relative;
}

.service-list>li:nth-child(1) {
	background-image: url(../images/main/service-item01-bg01.png);
}

.service-list>li:nth-child(2) {
	background-image: url(../images/main/service-item02-bg01.png);
}

.service-list>li:nth-child(3) {
	background-image: url(../images/main/service-item03-bg01.png);
}

.service-list>li.active {
	background-size: auto;
	background-position: top 0 left 0;
	padding: 8% 10%;
}

.service-list>li:nth-child(1).active {
	background-image: url(../images/main/service-item01-bg02.png);
}

.service-list>li:nth-child(2).active {
	background-image: url(../images/main/service-item02-bg02.png);
}

.service-list>li:nth-child(3).active {
	background-image: url(../images/main/service-item03-bg02.png);
}

.service-list>li .title-box {
	background-color: #fff;
	width: calc(540/1920*100vw);
	position: absolute;
	top: 18%;
	left: 8%;
	text-align: center;
	padding: 2.5% 2%;
}

.service-list>li:nth-child(3) .title-box {

	top: 18%;
	left: unset;
	right: 12%;

}

.service-list>li.active .title-box {
	opacity: 0;
	height: 0;
	padding: 0;
	z-index: -1;
}

.service-list>li .title-box h3 {
	font-size: 160%;
	padding-bottom: 1.2em;
	letter-spacing: 0.2em;
	position: relative;
	margin-bottom: 1.75em;
}

.service-list>li .title-box h3:before {
	content: "";
	height: calc(9/1920*100vw);
	width: calc(420/1920*100vw);
	position: absolute;
	background-image: url(../images/main/underline.png);
	background-size: cover;
	background-position: center;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.service-list>li .title-box a {
	font-size: 85%;
	background-color: #e88a1b;
	border-radius: 5px;
	width: calc(400/1920*100vw);
	display: block;
	margin: auto;
	padding: 9% 0 8%;
	font-weight: 500;
	line-height: 1;
}

.service-detail-item {
	background-color: rgba(255, 255, 255, 0.95);
}

.service-detail-item h4 {
	font-size: 160%;
	text-align: center;
	padding-bottom: 1.5em;
	margin-bottom: 3em;
	position: relative;
}

.service-detail-item h4:before {
	content: "";
	height: calc(9/1920*100vw);
	width: calc(420/1920*100vw);
	position: absolute;
	background-image: url(../images/main/underline.png);
	background-size: cover;
	background-position: center;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

.service-detail-list {
	padding: 0;
}

.service-detail-list li {
	margin-bottom: 12%;
}

.service-detail-list li h5 {
	font-size: 115%;
	padding-left: 0.75em;
	padding-bottom: 1.25em;
	border-bottom: 1px solid;
	margin-bottom: 1.5em;
	position: relative;
}

.service-detail-list li h5:before {
	content: "";
	position: absolute;
	background-color: #e88a1b;
	width: 5px;
	height: 1.5em;
	top: 30%;
	left: 0;
	transform: translate(0, -50%);
}

.service-detail-list li .text-box h5 {
	align-items: baseline;
	border-bottom: 1px dashed;
}

#service-item02 .service-detail-list li .text-box>h5,
#service-item03 .service-detail-list li .text-box>h5 {
	flex-wrap: wrap;
}

#service-item01 .service-detail-list li:nth-child(4) .text-box>h5 span,
#service-item02 .service-detail-list li:nth-child(1) .text-box>h5 span,
#service-item02 .service-detail-list li:nth-child(3) .text-box>h5 span,
#service-item03 .service-detail-list li:nth-child(1) .text-box>h5 span,
#service-item03 .service-detail-list li:nth-child(2) .text-box>h5 span {
	margin-left: 0;
	margin-top: 0.5em;
	letter-spacing: 0.075em;
}

#service-item02 .service-detail-list li:nth-child(3) .text-box>h5 span,
#service-item03 .service-detail-list li:nth-child(1) .text-box>h5 span {
	letter-spacing: 0.075em;
	width: 100%;
}

#service-item01 .service-detail-list li:nth-child(4) h5:before,
#service-item02 .service-detail-list li:nth-child(1) h5:before,
#service-item02 .service-detail-list li:nth-child(3) h5:before,
#service-item03 .service-detail-list li:nth-child(1) h5:before,
#service-item03 .service-detail-list li:nth-child(2) h5:before {
	top: 19%;
}

#service-item02 .service-detail-list li:nth-child(even),
#service-item03 .service-detail-list li:nth-child(even) {
	flex-direction: row-reverse;
}

#service-item02 .service-detail-list li:nth-child(even) .text-box,
#service-item03 .service-detail-list li:nth-child(even) .text-box {
	margin-left: 5%;
	margin-right: 0;
}

.service-detail-list li h5 span {
	font-size: 73%;
	margin-left: 1em;
	letter-spacing: 0.03em;
}

.service-detail-list li div.gray {
	font-size: 84%;
	text-align: justify;
	letter-spacing: -0.035em;
}

.service-detail-list li div.gray p.flex {
	margin: 0 0 1.8em;
}

.service-detail-list li div.gray p.flex {
	margin: 0;
}

.service-detail-list li .text-box {
	flex: 1;
	margin-right: 5%;
}

.service-detail-list li .img-box {
	width: calc(596/1920*100vw);
}

#item01 .service-detail-list li:nth-child(4) {
	flex-direction: row-reverse;
}

#item01 .service-detail-list li:nth-child(4) .text-box {
	margin-left: 5%;
	margin-right: 0;
}

#item01 .service-detail-list li:nth-child(4) .text-box h5 {
	flex-wrap: wrap;
}


#item01 .service-detail-list li:nth-child(4) .text-box h5:before {
	top: 20%;
}

.service-detail-item h4:nth-child(4) {
	font-size: 135%;
	padding-bottom: 0.8em;
	margin: 5.5em 0 2.5em;
	border-bottom: 2px dashed;
}

.service-detail-item h4:nth-child(4):before {
	content: none;
}

.service-point {
	padding: 0;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service-point li {
	flex-direction: column;
	width: 48%;
	margin: 0 0 3%;
}

.service-point li h5 {
	text-align: center;
	background-color: #fff;
	font-size: 110%;
	margin: -6% 7% 1.5%;
	padding: 2%;
	line-height: 1.45;
}

.service-point li h5 span {
	font-size: 125%;
	font-family: quicksand, sans-serif;
}

.service-point li div.gray {
	font-size: 85%;
	text-align: justify;
	letter-spacing: 0.05em;
}

.service-detail-item>a.detail2 {
	position: absolute;
	top: 1.1%;
	right: 3%;
	font-size: 85%;
}

.service-detail-item>a.wh.ls100 {
	background-color: #e88a1b;
	justify-content: center;
	width: calc(520/1920*100vw);
	margin: 6% auto 0;
	padding: 3% 0 2.5%;
	align-items: center;
	border-radius: 5px;
	font-size: 90%;
	line-height: 1;
}

.service-detail-item>a.wh.ls100 img {
	margin-right: 0.75em;
	width: calc(24/1920*100vw);
}

@media only screen and (max-width: 768px) {
	#service {
		padding: 0;
	}

	.service-list {
		padding: 0;
		margin: 0;
	}

	.service-list>li {
		min-width: 100vw;
		min-height: calc(621/480*100vw);
		position: relative;
	}

	.service-list>li:nth-child(1) {
		background-image: url(../images/main/service-item01-bg01-sp.png);
	}

	.service-list>li:nth-child(2) {
		background-image: url(../images/main/service-item02-bg01-sp.png);
	}

	.service-list>li:nth-child(3) {
		background-image: url(../images/main/service-item03-bg01-sp.png);
	}

	.service-list>li.active {
		padding: 19% 5%;
	}

	.service-list>li:nth-child(1).active {
		background-image: url(../images/main/service-item01-bg02-sp.png);
	}

	.service-list>li:nth-child(2).active {
		background-image: url(../images/main/service-item02-bg02-sp.png);
	}

	.service-list>li:nth-child(3).active {
		background-image: url(../images/main/service-item03-bg02-sp.png);
	}

	.service-list>li .title-box {
		width: 90%;
		top: 18%;
		left: 5%;
		text-align: center;
		padding: 9% 2%;
	}

	.service-list>li:nth-child(3) .title-box {
		width: 90%;
		top: 18%;
		left: 5%;
	}

	.service-list>li.active .title-box {
		opacity: 0;
		height: 0;
		padding: 0;
		z-index: -1;
	}

	.service-list>li .title-box h3 {
		font-size: 160%;
		padding-bottom: 1.35em;
		margin: 0 0 1.8em;
	}

	.service-list>li .title-box h3:before {
		height: calc(7/480*100vw);
		width: calc(315/480*100vw);
		background-image: url(../images/main/underline-sp.png);
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0);
	}

	.service-list>li .title-box a {
		font-size: 110%;
		width: calc(300/480*100vw);
		margin: auto;
		padding: 6% 0 5%;
	}

	.service-detail-item {
		background-color: rgba(255, 255, 255, 0.95);
	}

	.service-detail-item h4 {
		font-size: 185%;
		padding-bottom: 1.5em;
		margin: 0 0 1.5em;
	}

	.service-detail-item h4:before {
		height: calc(7/480*100vw);
		width: calc(315/480*100vw);
		background-image: url(../images/main/underline-sp.png);
		bottom: 0;
		left: 50%;
		transform: translate(-50%, 0);
	}

	.service-detail-list {
		padding: 0;
	}

	.service-detail-list li {
		margin-bottom: 15%;
		flex-direction: column;
	}

	.service-detail-list li h5 {
		font-size: 145%;
		padding-left: 0.75em;
		padding-bottom: 1em;
		margin: 0 0 1em;
	}

	.service-detail-list li h5:before {
		content: "";
		position: absolute;
		background-color: #e88a1b;
		width: 5px;
		height: 1.5em;
		top: 28%;
		left: 0;
		transform: translate(0, -50%);
	}

	#item03 li:nth-child(2) h5:before {
		width: 5px;
		height: 3.2em;
		top: 28%;
		left: 0;
		transform: translate(0, -50%);
	}

	.service-detail-list li .text-box h5 {
		align-items: baseline;
		border-bottom: 1px dashed;
	}

	#service-item02 .service-detail-list li .text-box>h5,
	#service-item03 .service-detail-list li .text-box>h5 {
		flex-wrap: wrap;
	}

	#service-item02 .service-detail-list li:nth-child(1) .text-box>h5 span,
	#service-item02 .service-detail-list li:nth-child(3) .text-box>h5 span,
	#service-item02 .service-detail-list li:nth-child(4) .text-box>h5 span,
	#service-item03 .service-detail-list li:nth-child(1) .text-box>h5 span,
	#service-item03 .service-detail-list li:nth-child(2) .text-box>h5 span {
		margin-left: 0;
		margin-top: 0.5em;
		letter-spacing: 0.12em;
	}

	#service-item02 .service-detail-list li:nth-child(1) h5:before,
	#service-item02 .service-detail-list li:nth-child(3) h5:before,
	#service-item02 .service-detail-list li:nth-child(4) h5:before,
	#service-item03 .service-detail-list li:nth-child(1) h5:before,
	#service-item03 .service-detail-list li:nth-child(2) h5:before {
		top: 20%;
	}

	#service-item03 .service-detail-list li:nth-child(2) h5:before {
		top: 28%;
	}

	#service-item02 .service-detail-list li:nth-child(even),
	#service-item03 .service-detail-list li:nth-child(even) {
		flex-direction: column;
	}

	#service-item02 .service-detail-list li:nth-child(even) .text-box,
	#service-item03 .service-detail-list li:nth-child(even) .text-box {
		margin-left: 0;
		margin-right: 0;
	}

	.service-detail-list li h5 span {
		font-size: 72%;
		margin-left: 1em;
		letter-spacing: 0.05em;
	}

	.service-detail-list li div.gray {
		font-size: 115%;
		letter-spacing: -0.035em;
	}

	.service-detail-list li div.gray p.flex {
		margin: 0 0 1.8em;
	}

	.service-detail-list li div.gray p.flex {
		margin: 0;
	}

	.service-detail-list li .text-box {
		margin-right: 0%;
	}

	.service-detail-list li .img-box {
		width: 100vw;
		margin: auto -12%;
	}

	#item01 .service-detail-list li:nth-child(4) {
		flex-direction: column;
	}

	#item01 .service-detail-list li:nth-child(4) .text-box {
		margin-left: 0;
		margin-right: 0;
	}

	#item01 .service-detail-list li:nth-child(4) .text-box h5,
	#item01 .service-detail-list li:nth-child(3) .text-box h5 {
		flex-wrap: wrap;
	}

	#item01 .service-detail-list li:nth-child(4) .text-box h5 span,
	#item01 .service-detail-list li:nth-child(3) .text-box h5 span {
		margin-left: 0;
	}

	#item01 .service-detail-list li:nth-child(4) .text-box h5:before,
	#item01 .service-detail-list li:nth-child(3) .text-box h5:before {
		top: 20%;
	}

	#service-item02 .service-detail-list li:nth-child(1) h5:before,
	#item01 .service-detail-list li:nth-child(4) .text-box h5:before {
		top: 17%;
	}

	.service-detail-item h4:nth-child(4) {
		font-size: 145%;
		padding-bottom: 1.25em;
		margin: 1.5em 0 2em;
		letter-spacing: 0.1em;
	}

	.service-detail-item h4:nth-child(4):before {
		content: none;
	}

	.service-point {
		padding: 0;
		flex-direction: column;
		align-items: center;
		width: 100vw;
		margin: 0 -12% 0;
	}

	.service-point li {
		flex-direction: column;
		width: 100%;
		margin: 0 0 12%;
	}

	.service-point li .img-box {
		max-width: 100vw;
		margin: 0;
	}

	.service-point li h5 {
		font-size: 125%;
		margin: -9% auto 1.5%;
		padding: 4% 2% 3%;
		line-height: 1.45;
		width: 90%;
	}

	.service-point li h5 span {
		font-size: 125%;
	}

	.service-point li div.gray {
		font-size: 105%;
		letter-spacing: 0;
		padding: 0 10%;
	}

	.service-detail-item>a.detail2 {
		top: 0.25%;
		right: 6.5%;
		font-size: 110%;
	}

	.service-detail-item>a.wh.ls100 {
		width: 100%;
		margin: 6% auto 0;
		padding: 7% 0 6%;
		align-items: center;
		font-size: 115%;
	}

	.service-detail-item>a.wh.ls100 img {
		width: calc(23/480*100vw);
	}
}

@media only screen and (max-width: 479px) {
	.service-list>li .title-box h3 {
		font-size: 5.4vw;
	}

	.service-list>li .title-box a {
		font-size: 3.75vw;
	}

	.service-detail-item h4 {
		font-size: 6.25vw;
	}

	.service-detail-list li h5 {
		font-size: 4.8vw;
	}

	.service-detail-list li h5 span {
		font-size: 72%;
	}

	.service-detail-list li div.gray {
		font-size: 3.95vw;
	}

	.service-detail-item h4:nth-child(4) {
		font-size: 4.8vw;
	}

	.service-point li h5 {
		font-size: 4.15vw;
	}

	.service-point li h5 span {
		font-size: 4.15vw;
	}

	.service-point li div.gray {
		font-size: 3.5vw;
	}

	.service-detail-item>a.detail2 {
		font-size: 3.75vw;
	}

	.service-detail-item>a.wh.ls100 {
		font-size: 3.95vw;
	}

}

/* life */
#life {
	padding: 4% 0% 0;
}

.life-list {
	padding: 0;
	margin: 6% 0;
}

.life-list li {
	align-items: center;
}

.life-list li:nth-child(even) {
	flex-direction: row-reverse;
}

.life-list li .img-box {
	width: 50%;
}

.life-list li .text-box {
	width: 50%;
}

.life-list li:nth-child(odd) .text-box {
	padding: 0 15% 1% 3%;
}

.life-list li:nth-child(even) .text-box {
	padding: 0 3% 1% 15%;
}

.life-list li .text-box h3 {
	font-size: 115%;
	padding-bottom: 0.7em;
	border-bottom: 1px solid #e88a1b;
	margin-bottom: 1em;
}

.life-list li .text-box div {
	font-size: 85%;
	letter-spacing: 0.18em;
	text-align: justify;
}

.life-list2 {
	padding: 0;
	margin: 0;
}

.life-list2 li {
	align-items: flex-start;
	padding: 4% 0 3.5%;
}

.life-list2 li:nth-child(1) {
	background-image: url(../images/main/comfort-bg-01.png);
}

.life-list2 li:nth-child(2) {
	background-image: url(../images/main/comfort-bg-02.png);
}

.life-list2 li:nth-child(3) {
	background-image: url(../images/main/comfort-bg-03.png);
}

.life-list2 li .title-box {
	font-size: 180%;
	width: calc(575/1920*100vw);
	background-color: #fff;
	text-align: right;
	padding: 1% 2% 1% 0;
	margin-right: 4%;
}

.life-list2 li .text-box {
	flex: 1;
	margin-right: 9%;
}

.life-list2 li .text-box h3 {
	font-size: 135%;
	padding-bottom: 0.75em;
	border-bottom: 1px dashed;
	margin-bottom: 1em;
}

.life-list2 li:nth-child(2) .text-box h3 {
	border-bottom: 1px dashed #e88a1b;
}

.life-list2 li .text-box div {
	font-size: 90%;
	line-height: 1.95;
}

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

	/* life */
	#life {
		padding: 4% 0% 0;
	}

	.life-list {
		margin: 5% 0;
	}

	.life-list li {
		align-items: center;
		flex-direction: column;
	}

	.life-list li:nth-child(even) {
		flex-direction: column;
	}

	.life-list li .img-box {
		width: 100%;
	}

	.life-list li .text-box {
		width: 100%;
	}

	.life-list li:nth-child(odd) .text-box {
		padding: 6% 8% 12%;
	}

	.life-list li:nth-child(even) .text-box {
		padding: 6% 8% 12%;
	}

	.life-list li .text-box h3 {
		font-size: 155%;
		padding-bottom: 0.7em;
		margin: 0 0 1em;
	}

	.life-list li .text-box div {
		font-size: 113%;
		letter-spacing: 0.035em;
	}

	.life-list2 {
		padding: 0;
		margin: 0;
	}

	.life-list2 li {
		align-items: center;
		padding: 15% 0 18%;
		flex-direction: column;
	}

	.life-list2 li:nth-child(1) {
		background-image: url(../images/main/comfort-bg-01-sp.png);
	}

	.life-list2 li:nth-child(2) {
		background-image: url(../images/main/comfort-bg-02-sp.png);
	}

	.life-list2 li:nth-child(3) {
		background-image: url(../images/main/comfort-bg-03-sp.png);
	}

	.life-list2 li .title-box {
		font-size: 185%;
		width: 90%;
		text-align: center;
		padding: 4% 0;
    	line-height: 1;
		margin: auto;

	}

	.life-list2 li .text-box {
		width: 80%;
		margin: auto;
	}

	.life-list2 li .text-box h3 {
		font-size: 155%;
		padding-bottom: 1.5em;
		margin: 2em 0 1.5em;
		text-align: center;
	}


	.life-list2 li .text-box div {
		font-size: 125%;
	}
}

@media only screen and (max-width: 479px) {
	.life-list li .text-box h3 {
		font-size: 5.2vw;
	}

	.life-list li .text-box div {
		font-size: 3.95vw;
	}

	.life-list2 li .title-box {
		font-size: 6.25vw;
	}

	.life-list2 li .text-box h3 {
		font-size: 5.2vw;
	}

	.life-list2 li .text-box div {
		font-size: 4.15vw;
	}
}

/* company */
#company {
	padding: 4% 16% 6%;
}

.company-inner {
	justify-content: space-between;
	margin-top: 9%;
}

@media only screen and (max-width: 768px) {
	#company {
		padding: 16% 6%;
	}

	#company h2 img {
		width: 20%;
	}

	.company-inner {
		padding: 0;
		flex-flow: row wrap;
		margin-top: 16%;
	}

	.info-table {
		width: 92%;
		margin: auto;
	}

	.company-inner .info-table:last-of-type {
		border-top: none;
	}
}


/* contact */
#contact {
	position: relative;
	padding: 5% 8% 8%;
	background-image: url(../images/main/contact-bg.png);
}

#contact h2 {
	position: relative;
	text-align: center;
	margin: 0 0 2em 0;
	z-index: 3;
}

#contact .intro {
	text-align: center;
	font-size: 85%;
	margin: 5% 0 0;
}

#contact .tel-box {
	text-align: center;
	background-color: #fff;
	margin: 6% 20% 0;
	padding: 2.5% 0 2%;
}

#contact .tel-box h3 {
	font-size: 135%;
	padding-bottom: 0.8em;
	border-bottom: 2px solid #e88a1b;
	margin: 0 auto 1.2em;
	width: fit-content;
}

#contact .tel-box a {
	width: fit-content;
	display: block;
	margin: auto;
}

#contact .tel-box a img {
	width: calc(533/1920*100vw);
}

#contact .tel-box p {
	font-size: 80%;
	line-height: 1.65;
	margin: 1em 0 0;
}

#contact .mail-box {
	text-align: center;
	background-color: #fff;
	margin: 4% 8% 0;
	padding: 3.5% 0 7%;
}

#contact .mail-box h3 {
	font-size: 135%;
	padding-bottom: 0.8em;
	border-bottom: 2px solid #e88a1b;
	margin: 0 auto 1em;
	width: fit-content;
}

#contact .mail-box>div.ls120 {
	font-size: 80%;
	font-weight: 500;
}

.scroll-box {
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 500;
	color: #3d3d3d;
	font-size: 95%;
}

.scroll-box p {
	margin: 0 0 1em;
}

.scroll-box::-webkit-scrollbar {
	width: 10px;
	position: absolute;
	right: 15px;
}

.scroll-box::-webkit-scrollbar-thumb {
	background: #e88a1b;
	border-radius: 5px;
	height: 145px;
}

.wpcf7-list-item-label {
	color: #e88a1b;
	font-weight: 500;
}

@media only screen and (max-width: 768px) {
	#contact {
		padding: 10% 5% 12%;
		background-image: url(../images/main/contact-bg-sp.png);
	}

	#contact h2 {
		margin: 0 0 1em 0;
		padding-bottom: 1.5em;
	}

	#contact .intro {
		text-align: justify;
		font-size: 115%;
		margin: 9% 6% 0;
		letter-spacing: 0.12em;
	}

	#contact .tel-box {
		margin: 12% 0% 0;
		padding: 8% 0 10%;
	}

	#contact .tel-box h3 {
		font-size: 155%;
		padding-bottom: 0.6em;
		margin: 0 auto 1em;
		letter-spacing: 0;
	}

	#contact .tel-box a {
		width: fit-content;
		display: block;
		margin: auto;
	}

	#contact .tel-box a img {
		width: calc(381/480*100vw);
	}

	#contact .tel-box p {
		font-size: 110%;
	}

	#contact .mail-box {
		margin: 8% 0 0;
		padding: 7% 4% 7%;
	}

	#contact .mail-box h3 {
		font-size: 155%;
		padding-bottom: 0.8em;
		margin: 0 auto 1em;
		width: 100%;
	}

	#contact .mail-box>div.ls120 {
		font-size: 102%;
		text-align: justify;
		letter-spacing: -0.05em;
		line-height: 1.8;
	}

	.scroll-box {
		position: relative;
		font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
		font-weight: 700;
		color: #3d3d3d;
		font-size: 95%;
	}

	.scroll-box p {
		margin: 0 0 1em;
	}

	.scroll-box::-webkit-scrollbar {
		width: 10px;
		position: absolute;
		right: 15px;
	}

	.scroll-box::-webkit-scrollbar-thumb {
		background: #e88a1b;
		border-radius: 5px;
		height: 145px;
	}

	.wpcf7-list-item-label {
		font-size: 120%;
	}

}

@media only screen and (max-width: 479px) {
	#contact .intro {
		font-size: 3.95vw;
	}

	#contact .tel-box h3 {
		font-size: 5.2vw;
	}

	#contact .tel-box p {
		font-size: 3.75vw;
	}

	#contact .mail-box h3 {
		font-size: 5.2vw;
	}

	#contact .mail-box>div.ls120 {
		font-size: 3.33vw;
	}

	.scroll-box {
		font-size: 3.15vw;
	}

	.wpcf7-list-item-label {
		font-size: 4vw;
	}
}

article {
	position: relative;
}

.to-top {
	position: fixed;
	right: 5%;
	bottom: 8%;
	z-index: 100;
}

.to-top img {
	width: calc(88/1920*100vw);
}

@media only screen and (max-width: 768px) {
	.to-top {
		right: 5%;
		bottom: 10%;
	}

	.to-top img {
		width: calc(88/480*100vw);
	}
}

/* ----------------------------------------
* post archives
---------------------------------------- */
#post-archives {
	position: relative;
	padding: 5% 0 0 0;
}