@charset "UTF-8";

:root {
		--fsize-base: 16px;
}
@media only screen and (max-width: 768px) {
	:root {
			--fsize-base: 14px;
	}
}
html,
body {
	margin: 0;
	overflow-x: hidden;
	font-family: "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased;
	font-weight: 500;
	font-size: var(--fsize-base);
	padding: 0;
	margin: 0;
}

body {
	position: relative;
}

body > h1 {
	display: none;
}

.flex-container {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.contents-container {
	width: 1200px;
	max-width: 100%;
	margin: auto;
}

.btn {
	display: flex;
	color: #FFF;
	width: 300px;
	max-width: 90%;
	align-items: center;
	justify-content: center;
	font-size: 1.2em;
	font-weight: bold;
	position: relative;
	padding-right: 15px;
	height: 60px;
	overflow: hidden;
	margin: auto;
}

.btn a {
	color: #FFF;
	font-weight: bold;
}

.btn>span {
	position: relative;
	z-index: 2;
}

.btn::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFF;
	border-left: 2px solid #FFF;
	transform: rotate(135deg);
	position: absolute;
	right: 20px;
	top: calc(50% - 4px);
	z-index: 2;
}

.btn:hover {
	color: #fff;
}

.btn::before {
	position: absolute;
	display: block;
	content: '';
	z-index: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
	top: 0;
	left: 0;
}

.btn.btn-blue {
	background-color: #0070CC;
}

.btn.btn-red {
	background-color: #b80034;
}

.btn.btn-orange {
	background-color: #d86202;
}

.btn.btn-full {
	width: 100%;
}

.btn-container {
	text-align: center;
}

.contents-coontainer {
	width: 1200px;
	max-width: 100%;
	margin: auto;
	padding-bottom: 50px;
}

h2 {
	text-align: center;
	margin: 50px 0;
	font-size: 2em;
	color: #0062b5;
	position: relative;
}

h2::after {
	content: "";
	width: 500px;
	height: 5px;
	background-color: #0062b5;
	position: absolute;
	bottom: -5px;
	left: calc(50% - 250px);
}
#performance .conditions-tit-sub {
	border-top: 1px solid #006ac3;
	border-bottom: 1px solid #006ac3;
	padding: 5px 0;
	color: #006ac3;
	font-size: 1.3em;
	margin: 30px 0 20px 0;
	text-align: center;
}
#performance .conditions-tit-sub::after {
	display: none;
}

h3 {
	text-align: center;
	font-size: 2em;
	color: #0062b5;
	position: relative;
}

h3::after {
	content: "";
	width: 100px;
	height: 2px;
	background-color: #0062b5;
	position: absolute;
	bottom: -10px;
	left: calc(50% - 50px);
}

h3>span {
	color: #fccf00;
}

h3.white {
	color: #FFF;
}

h3.white::after {
	background-color: #FFF;
}


.balloon-list {
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	align-items: flex-end;
}

.balloon {
	display: inline-block;
	position: relative;
	margin: 0 0 30px 0;
	padding: 20px;
	background: #014880;
	border-radius: 30px;
	color: #fff;
	font-weight: bold;
	font-size: 1.2em;
}

.balloon::after {
	content: "";
	position: absolute;
	margin: 0;
	bottom: -26px;
	right: 70px;
	width: 0;
	height: 0;
	border-top: 40px solid #014880;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	transform: rotate(30deg);
}

.balloon>span {
	color: #ffcc05;
}

.balloon-blue {
	background-color: #014880;
}

.balloon-blue::after {
	border-top-color: #014880;
}

.balloon-aqua {
	background-color: #0062b5;
}

.balloon-aqua::after {
	border-top-color: #0062b5;
}

@media screen and (max-width:798px) {
	.balloon {
		width: 90%;
		box-sizing: border-box;
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width:798px) {
	.table-scroll {
		overflow-x: scroll;
		box-sizing: border-box;
		width: calc(100% - 20px);
		margin: auto;
	}

	.table-scroll table {
		width: 900px !important;
	}

	.table-scroll::-webkit-scrollbar {
		height: 10px;
	}

	.table-scroll::-webkit-scrollbar-track {
		margin: 0 2px;
		background: #ccc;
		border-radius: 5px;
	}

	.table-scroll::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background: #666;
	}
}

em.blue {
	color: #0062b5;
}

p {
	line-height: 1.6;
	font-size: 1.2em;
	text-align: center;
	padding: 30px 0;
	margin: 0;
}


body #page-top {
	position: fixed;
	bottom: 90px;
	right: 20px;
	transition: all .1s;
	visibility: hidden;
	opacity: 0;
	padding: 0;
	z-index: 20;
}
@media screen and (max-width:1024px){
	body #page-top {
		bottom: 110px;
	}
}
body.scrollin2 #page-top {
	visibility: visible;
	opacity: 1;
}


/** header **/
body>header {
	margin: auto;
	letter-spacing: -.40em;
	position: relative;
	height: 67px;
	background: #FFF;
	width: 100%;
	text-align: center;
	z-index: 9999;
	margin: 0;
	padding: 0;
	top: 0;
}

body.scrollin>header {
	box-shadow: 0 0px 10px 0 rgb(0, 0, 0);
}

body>header>.header-container {
	text-align: left;
	width: 100%;
	max-width: 100%;
	margin: auto;
	white-space: nowrap;
}

body>header.mini .logo-container {
	width: 100%;
	display: flex;
	flex-flow: row;
	align-items: stretch;
	height: 67px;
}

body>header.mini .logo-container .dcs-logo {
	display: flex;
	align-items: center;
	text-align: left;
}

body>header.mini .logo-container .btn {
	width: 200px;
	margin: 0 0 0 auto;
}

body>header .logo-container {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
}

body>header.mini .prosrv {
	width: 115px;
	display: inline-block;
}

body>header .prosrv {
	width: 100%;
	box-sizing: border-box;
	padding: 15px 0;
}

body>header.mini .prosrv figure {
	border-right: 1px dotted #EA5816;
}

body>header .prosrv figure {
	display: inline-block;
	margin: 0;
	padding-right: 10px;
	line-height: 0;
	box-sizing: border-box;
}

body>header .prosrv figure img {
	max-width: 100%;
}

img {
	border: 0;
}

body>header .prosrv figure {
	display: inline-block;
	margin: 0;
	padding-right: 10px;
	line-height: 0;
	box-sizing: border-box;
}

body>header.mini .site-logo {
	display: inline-block;
	width: 80%;
}

body>header .site-logo {
	margin: 0;
}

body>header .site-logo a {
	display: inline-block;
}

body>header.mini .comp-logo {
	height: auto;
}

body>header .comp-logo {
	display: inline-block;
	width: 110px;
	height: 108px;
	text-align: center;
	float: right;
}

body>header.mini .comp-logo a {
	padding: 10px 0;
}

body>header .comp-logo a {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 32px 0;
}

body>header .comp-logo a img {
	max-width: 100%;
}

.header-fix-container {
	position: fixed;
	z-index: 9999;
	width: 100%;
	margin: auto;
}

body>header.mini .orange-btn-in {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
}

body>header.mini .orange-btn-in a {
	background: url(../img/orange_btn.png) no-repeat;
	background-size: cover;
	width: 250px;
	height: 46px;
	display: inline-block;
	text-decoration: none;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	margin: 12px 0;
}

body>header.mini .orange-btn-in a:hover {
	opacity: .5;
}

body>header.mini .orange-btn-in a span {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 8px 0;
	font-size: 16px;
}







/*! CSS Used from: https://www.dcs.co.jp/css/common.css */

.c-tag {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
}

.c-tag>span {
	display: block;
	max-width: 100%;
	min-width: 60px;
	height: 24px;
	border: 1px solid #222;
	border-radius: 13px;
	background-color: transparent;
	padding: 0 16px;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 1.3rem;
	line-height: 22px;
}

.c-tag--business_type>span {
	border-color: #E8F9F9 !important;
	background-color: #E8F9F9 !important;
	color: #444 !important;
}

.c-tag-container {
	margin-top: -10px;
}

.c-tag-container>[class*=c-tag] {
	margin-right: 10px;
	margin-top: 10px;
}

.c-image-fit {
	height: 0;
	padding-bottom: 66.6666666667%;
	position: relative;
	overflow: hidden;
}

.c-image-fit>img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.c-image-fit--2t1 {
	padding-bottom: 50%;
}

.c-card-service-v2 {
	border: 1px solid #ddd;
}

.c-card-service-v2__inner {
	display: block;
	height: 100%;
	position: relative;
	background-color: #fff;
	/* cursor: pointer; */
	box-shadow: 0 4px 12px -5px rgba(0, 0, 0, 0.15);
}

.c-card-service-v2__title {
	margin-top: 0;
	margin-bottom: 16px;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.4;
	text-align: left;
}
.c-card-service-v2__title::after {
	display: none;
}
.c-card-service-v2__title > span {
	color: #000 !important;
}

.c-card-service-v2__text {
	margin-top: 10px;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #888;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	padding: 0;
}

.c-card-service-v2__tag .c-tag span {
	background-color: #E5EEFA !important;
	border-color: #E5EEFA !important;
	color: #444 !important;
	font-size: 13px;
}

@media (max-width: 767px) {
	.c-card-service-v2__inner {
		padding: 20px 20px 30px;
	}

	.c-card-service-v2__tag {
		margin-top: 4px;
	}

	.c-card-service-v2__tag>.c-tag>span {
		padding: 0 10px;
		font-size: 1.1rem;
	}
}

@media (min-width: 768px) {
	.c-card-service-v2__content {
		padding: 0 25px 35px;
	}

	.c-card-service-v2__text {
		margin-top: 16px;
		margin-bottom: 16px;
		font-weight: bold;
		font-size: 14px;
		text-align: left;
		line-height: 1.6;
		max-height: none;
	}
}

@media (max-width: 767px) {
	.c-grid__item+.c-grid__item {
		margin-top: 30px;
	}
}

@media (min-width: 768px) {
	.c-grid {
		display: grid;
		gap: 30px 40px;
	}

	.c-grid--2up {
		grid-template-columns: repeat(2, 1fr);
	}
	.c-grid--3up {
		grid-template-columns: repeat(3, 1fr);
	}
}

.l-section-pickup__inner {
	width: fit-content;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5.3333333333%;
	padding-right: 5.3333333333%;
}

.l-section-pickup__inner>*:first-child {
	margin-top: 0 !important;
}

.l-section-pickup__inner>*:last-child {
	margin-bottom: 0 !important;
}

@media (max-width: 768px) {
	.l-section-pickup__inner {
		width: 100%;
		max-width: fit-content;
		padding-left: 20px;
		padding-right: 20px;
		box-sizing: border-box;
	}
}

.l-section-pickup__title {
	height: auto;
	overflow: visible;
	font-weight: bold;
	line-height: 1;
}

.l-section-pickup__title+[class^=c-] {
	margin-top: 0 !important;
}

.l-layout-regular .l-section-pickup__inner>[class^=c-] {
	margin-top: 24px;
}

@media (min-width: 768px) {
	.l-layout-regular .l-section-pickup__inner>[class^=c-] {
		margin-top: 32px;
	}
}

/*! CSS Used fontfaces */
@font-face {
	font-family: "iconfont";
	src: url(https://www.dcs.co.jp/fonts/iconfont.ttf?nzur0u) format("truetype"), url(https://www.dcs.co.jp/fonts/iconfont.woff?nzur0u) format("woff"), url(https://www.dcs.co.jp/fonts/iconfont.svg?nzur0u#iconfont) format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}


.header-banner {
	-webkit-transition: all .3s;
	transition: all .3s;
}
.header-banner:hover {
	opacity: 0.8;
}