@charset "utf-8";
/* ================================================================================================================== */
/* 【Customize】Header                                                                                                */
/* ===================================================================================================================*/
#header {
	transition: transform 1s ease;
	transform: translateY(-100%);
}
@media screen and (max-width: 750px) {
	#header {
	}
}
/* ================================================================================================================== */
/* 【Home Common】                                                                                                    */
/* ===================================================================================================================*/
#main h2.home_cmd_title {
	display: block;
	padding-bottom: 15px;
	text-align: center;
	color: #198bcb;
	font-size: 0.36rem;
	line-height: 1;
	background-image: linear-gradient(90deg, #198bcb 0%, #198bcb 100%);
	background-size: 60px 2px;
	background-repeat: no-repeat;
	background-position: center 100%;

	font-family: poynter-oldstyle-display,serif;
	font-weight: 600;
	font-style: normal;
}
@media screen and (max-width: 750px) {
	#main h2.home_cmd_title {
		padding-bottom: 25px;
		font-size: 0.54rem;
		background-size: 90px 3px;
	}
}
/* ================================================================================================================== */
/* FirstView                                                                                                          */
/* ===================================================================================================================*/
#main #first_view {
	position: relative;
}
#main #first_view .slider_cover {
	content: "";
	width: 100%;
	height: 100%;
	background: #198bcb;
	position: absolute;
	top: 0;
	z-index: 10;
}
@media screen and (max-width: 750px) {
	#main #first_view {
	}
	#main #first_view .slider_cover {
	}
}
/* ================================================================================================================== */
/* FirstView:SliderContent                                                                                            */
/* ===================================================================================================================*/
#main #first_view ul.slider_content {
	height: 630px;
	overflow: hidden;
	position: relative;
}
#main #first_view ul.slider_content li {
	width: 100%;
	transition: opacity 0.5s ease;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
#main #first_view ul.slider_content li.initial_item {
	transition: opacity 0s ease;
	opacity: 1;
}
#main #first_view ul.slider_content li.show {
	opacity: 1;
}
@media screen and (max-width: 750px) {
	#main #first_view ul.slider_content {
		height: 500px;
	}
	#main #first_view ul.slider_content li {
	}
}
/* =============================================================== */
/* FirstView:SliderContent:Image                                   */
/* =============================================================== */
#main #first_view ul.slider_content li .image {
	height: 630px;
}
#main #first_view ul.slider_content li .image img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;'; /*IE対策*/
}
@media screen and (max-width: 750px) {
	#main #first_view ul.slider_content li .image {
		height: 500px;
	}
	#main #first_view ul.slider_content li .image img {
	}
}
/* =============================================================== */
/* FirstView:SliderContent:Text                                    */
/* =============================================================== */
#main #first_view ul.slider_content li .text {
	transform: translate(-50%, -50%);
	overflow: hidden;
	position: absolute;
	top:  50%;
	left: 50%;
}
#main #first_view ul.slider_content li.initial_item .text {
	opacity: 1;
	transition: 0s;
}
#main #first_view ul.slider_content li.show .text {
	opacity: 1;
}
#main #first_view ul.slider_content li .text .bar {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(25,139,203,0.8);
	transform-origin: left center;
	transform: scaleX(0);
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
}
#main #first_view ul.slider_content li .text.active .bar {
	transition: all 0.6s ease 0.5s;
	transform: scaleX(1);
}
#main #first_view ul.slider_content li.initial_item .text.active .bar {
	transition-delay: 0s;
}
#main #first_view ul.slider_content li .text .data {
	padding: 0 20px;
	position: relative;
	z-index: 1;
}
#main #first_view ul.slider_content li .text .data .sub {
	color: #ffffff;
	font-size: 0.3452rem;
	line-height: 62px;
	white-space: nowrap;
	overflow: hidden;

	font-family: source-han-sans-japanese,sans-serif;
	font-weight: 700;
	font-style: italic;
}
#main #first_view ul.slider_content li .text .data .sub.ready {
	width: 0;
}
#main #first_view ul.slider_content li .text.active .data .sub.ready {
	width: 100%;
	transition: 0.3s 0.6s;
}
@media screen and (max-width: 750px) {
	#main #first_view ul.slider_content li .text {
	}
	#main #first_view ul.slider_content li .text .bar {
	}
	#main #first_view ul.slider_content li .text.active .bar {
	}
	#main #first_view ul.slider_content li .text .data {
		padding: 0 20px;
	}
	#main #first_view ul.slider_content li .text .data .sub {
		font-size: 0.31rem;
		line-height: 62px;
	}
	#main #first_view ul.slider_content li .text .data .sub.ready {
	}
	#main #first_view ul.slider_content li .text.active .data .sub.ready {
	}
}
/* ================================================================================================================== */
/* FirstView:SliderDots                                                                                               */
/* ===================================================================================================================*/
#main #first_view ul.slider_dots {
	letter-spacing: -.40em;
	position: absolute;
	right:  20px;
	bottom: 20px;
	z-index: 2;
}
#main #first_view ul.slider_dots li {
	display: inline-block;
	width:  38px;
	height:  2px;
	background: #d8d8d8;
	cursor: pointer;
	letter-spacing: normal;
	overflow: hidden;
	position: relative;
}
#main #first_view ul.slider_dots li:nth-child(n + 2) {
	margin-left: 9px;
}
#main #first_view ul.slider_dots li::before {
	content: "";
	display: block;
	width:  0;
	height: 100%;
	background: #198bcb;
	position: absolute;
	top:  0;
	left: 0;
}
#main #first_view ul.slider_dots li.active {
	cursor: default;
}
#main #first_view ul.slider_dots li.active::before {
	width:  100%;
	transition: 5s linear;
}
@media screen and (max-width: 750px) {
	#main #first_view ul.slider_dots {
		display: none;
	}
}
/* ================================================================================================================== */
/* FirstView:Scroll                                                                                                   */
/* ===================================================================================================================*/
#main #first_view .scroll {
	width:1px;
	height:92px;
	-webkit-transition:.5s all 1s ease;
	transition:.5s all 1s ease;
	position: absolute;
	bottom: -46px;
	left:50%;
	z-index:10;
}
#main #first_view .scroll::after {
	content:"";
	display:block;
	width:100%;
	height:100%;
	position: absolute;
	top:0;
	background:#198bcb;
	-webkit-animation:scroll 1.2s linear 0s infinite;
	animation:scroll 1.2s linear 0s infinite;
}
@-webkit-keyframes scroll {
	0% {
		transform: scale(1,0);
		transform-origin: center top;
	}
	46% {
		transform: scale(1,1);
		transform-origin: center top;
	}
	50%,
	54% {
		transform: scale(1,1);
		transform-origin: center bottom;
	}
	100% {
		transform: scale(1,0);
		transform-origin: center bottom;
	}
}
@keyframes scroll {
	0% {
		transform: scale(1,0);
		transform-origin: center top;
	}
	46% {
		transform: scale(1,1);
		transform-origin: center top;
	}
	50%,
	54% {
		transform: scale(1,1);
		transform-origin: center bottom;
	}
	100% {
		transform: scale(1,0);
		transform-origin: center bottom;
	}
}
/* ================================================================================================================== */
/* ABOUT                                                                                                              */
/* ===================================================================================================================*/
#main #about {
	padding: 85px 0 73px;
}
#main #about h2 {
	display: block;
	text-align: center;
	color: #198bcb;
	line-height: 1;
}
#main #about h2 div:nth-child(1) {
	font-size: 0.20rem;
}
#main #about h2 div:nth-child(2) {
	margin-top: 10px;
	font-size: 0.4319rem;
	
	font-family: poynter-oldstyle-display,serif;
	font-weight: 600;
	font-style: normal;
}
#main #about .inner {
	width: 980px;
	margin: 30px auto 0;
}
#main #about .inner .text {
	text-align: center;
	font-size: 0.20rem;
	line-height: 2;
}
#main #about .inner .link {
	margin-top: 40px;
	text-align: center;
}
#main #about .inner .link a {
	width: 350px;
	font-size: 0.18rem;
}
#main #about .inner .link a span {
	line-height: 60px;

	font-family: source-han-sans-japanese,sans-serif;
	font-weight: 700;
	font-style: normal;
}
#main #about .inner .link a .icon {
	margin-left: 12px;
}
#main #about .inner .link a .icon svg {
	width: 20px;
	height: 4.348px;
}
@media screen and (max-width: 750px) {
	#main #about {
		padding: 105px 0 90px;
	}
	#main #about h2 {
	}
	#main #about h2 div:nth-child(1) {
		font-size: 0.30rem;
	}
	#main #about h2 div:nth-child(2) {
		margin-top: 15px;
		font-size: 0.60rem;
	}
	#main #about .inner {
		width: 690px;
		margin: 40px auto 0;
	}
	#main #about .inner .text {
		font-size: 0.30rem;
	}
	#main #about .inner .link {
		margin-top: 40px;
	}
	#main #about .inner .link a {
		width: 525px;
		font-size: 0.27rem;
	}
	#main #about .inner .link a span {
		line-height: 87px;
	}
	#main #about .inner .link a .icon {
		margin-left: 20px;
	}
	#main #about .inner .link a .icon svg {
		width: 30px;
		height: 6.53px;
	}
}
/* ================================================================================================================== */
/* SERVICE                                                                                                            */
/* ===================================================================================================================*/
#main #service {
	padding: 80px 0;
	background: #e9f4fa;
}
#main #service .inner {
	width: 980px;
	margin: 50px auto 0;
}
@media screen and (max-width: 750px) {
	#main #service {
		padding: 90px 0 110px;
	}
	#main #service .inner {
		width: 690px;
		margin: 70px auto 0;
	}
}
/* ================================================================================================================== */
/* SERVICE:LIST                                                                                                       */
/* ===================================================================================================================*/
#main #service .inner .list {
}
#main #service .inner .list dl {
	padding-top: 20px;
	position: relative;
}
#main #service .inner .list dl:nth-child(n + 2) {
	margin-top: 50px;
}
@media screen and (max-width: 750px) {
	#main #service .inner .list {
	}
	#main #service .inner .list dl {
		padding-top: 100px;
	}
	#main #service .inner .list dl:nth-child(n + 2) {
		margin-top: 80px;
	}
}
/* =============================================================== */
/* SERVICE:LIST:DL:DT                                              */
/* =============================================================== */
#main #service .inner .list dl dt {
	width:  355px;
	height: 355px;
	position: absolute;
	top: 0;
	z-index: 1;
}
#main #service .inner .list dl dt ul {
	width: 100%;
	heght: 100%;
}
#main #service .inner .list dl dt ul li.type_illust {
	width: 100%;
	heght: 100%;
	background-image: url('../../images/home/texture_blue.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
#main #service .inner .list dl dt ul li.type_illust a {
	display: inline;
}
#main #service .inner .list dl dt ul li.type_illust img {
	width: 100%;
	height: 100%;
}
#main #service .inner .list dl dt ul li.type_num {
	color: #ffffff;
	font-size: 0.7523rem;
	line-height: 1;
	position: absolute;
	top:  30px;
	left: 30px;
	z-index: 1;

	font-family: poynter-oldstyle-display,serif;
	font-weight: 600;
	font-style: normal;
}
#main #service .inner .list dl dt ul li.type_title {
	width: 100%;
	text-align: center;
	color: #ffffff;
	font-size: 0.26rem;
	line-height: 1;
	position: absolute;
	top:  280px;
	left: 0;
	z-index: 1;

	font-family: poynter-oldstyle-display,serif;
	font-weight: 600;
	font-style: normal;
}
@media screen and (max-width: 750px) {
	#main #service .inner .list dl dt {
		width:  450px;
		height: 450px;
	}
	#main #service .inner .list dl dt ul {
	}
	#main #service .inner .list dl dt ul li.type_illust {
	}
	#main #service .inner .list dl dt ul li.type_illust img {
	}
	#main #service .inner .list dl dt ul li.type_num {
		color: #ffffff;
		font-size: 0.9537rem;
		top:  30px;
		left: 30px;
	}
	#main #service .inner .list dl dt ul li.type_title {
		font-size: 0.3296rem;
		top:  355px;
	}
}
/* =============================================================== */
/* SERVICE:LIST:DL:DT(個別調整)                                    */
/* =============================================================== */
#main #service .inner .list dl:nth-child(2n - 1) dt {
	left: 0;
}
#main #service .inner .list dl:nth-child(2n) dt {
	right: 0;
}
@media screen and (max-width: 750px) {
	#main #service .inner .list dl:nth-child(2n - 1) dt {
		left: 120px;
	}
	#main #service .inner .list dl:nth-child(2n) dt {
		right: 120px;
	}
}
/* =============================================================== */
/* SERVICE:LIST:DL:DD                                              */
/* =============================================================== */
#main #service .inner .list dl dd {
	padding: 37px 0;
	background: #ffffff;
}
#main #service .inner .list dl dd ul {
}
#main #service .inner .list dl dd ul li.type_title {
	color: #198bcb;
	font-size: 0.24rem;
	line-height: 1;
	font-feature-settings: "palt";

	font-family: source-han-sans-japanese,sans-serif;
	font-weight: 700;
	font-style: normal;
}
#main #service .inner .list dl dd ul li.type_title a {
	letter-spacing: -0.40em;
}
#main #service .inner .list dl dd ul li.type_title a span {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: middle;
}
#main #service .inner .list dl dd ul li.type_title a span:nth-child(2) {
	margin-left: 10px;
}
#main #service .inner .list dl dd ul li.type_title a span:nth-child(2) img {
	width: 23px;
	height: 5px;
	vertical-align: middle;
	position: relative;
	top: -3px;
}
#main #service .inner .list dl dd ul li.type_explain {
	margin-top: 15px;
	font-size: 0.155rem;
	line-height: 2;
}
#main #service .inner .list dl dd ul li.type_link {
	margin-top: 23px;
}
#main #service .inner .list dl dd ul li.type_link a {
	width: 250px;
	font-size: 0.16rem;
}
#main #service .inner .list dl dd ul li.type_link a span {
	line-height: 40px;
	font-family: source-han-sans-japanese,sans-serif;
	font-weight: 700;
	font-style: normal;
}
#main #service .inner .list dl dd ul li.type_link a .icon {
	margin-left: 15px;
}
#main #service .inner .list dl dd ul li.type_link a .icon svg {
	width: 22.4px;
	height: 4.87px;
}
@media screen and (max-width: 750px) {
	#main #service .inner .list dl dd {
		padding: 400px 0 30px;
	}
	#main #service .inner .list dl dd ul {
	}
	#main #service .inner .list dl dd ul li.type_title {
		text-align: center;
		font-size: 0.38rem;
	}
	#main #service .inner .list dl dd ul li.type_title a {
	}
	#main #service .inner .list dl dd ul li.type_title a span {
	}
	#main #service .inner .list dl dd ul li.type_title a span:nth-child(2) {
		margin-left: 10px;
	}
	#main #service .inner .list dl dd ul li.type_title a span:nth-child(2) img {
		width: 32.2px;
		height: 7px;
		top: -3px;
	}
	#main #service .inner .list dl dd ul li.type_explain {
		margin-top: 30px;
		font-size: 0.28rem;
	}
	#main #service .inner .list dl dd ul li.type_link {
		margin-top: 25px;
		text-align: center;
	}
	#main #service .inner .list dl dd ul li.type_link a {
		width: 400px;
		font-size: 0.23rem;
	}
	#main #service .inner .list dl dd ul li.type_link a span {
		line-height: 70px;
	}
	#main #service .inner .list dl dd ul li.type_link a .icon {
		margin-left: 20px;
	}
	#main #service .inner .list dl dd ul li.type_link a .icon svg {
		width: 30px;
		height: 6.53px;
	}
}
/* =============================================================== */
/* SERVICE:LIST:DL:DD(個別調整)                                    */
/* =============================================================== */
#main #service .inner .list dl:nth-child(2n - 1) dd {
	margin-left: 40px;
	padding-right: 30px;
	padding-left: 360px;
}
#main #service .inner .list dl:nth-child(2n) dd {
	margin-right: 40px;
	padding-right: 346px;
	padding-left: 45px;
}
#main #service .inner .list dl:nth-child(1) dd {
	padding-bottom: 117px;
}
#main #service .inner .list dl:nth-child(2) dd {
	padding-bottom: 117px;
}
#main #service .inner .list dl:nth-child(3) dd {
	padding-top:    60px;
	padding-bottom: 45px;
}
@media screen and (max-width: 750px) {
	#main #service .inner .list dl:nth-child(2n - 1) dd {
		margin-left: 0;
		padding-right: 30px;
		padding-left:  30px;
	}
	#main #service .inner .list dl:nth-child(2n) dd {
		margin-right:  0;
		padding-right: 30px;
		padding-left:  30px;
	}
  #main #service .inner .list dl:nth-child(1) dd {
  	padding-bottom: 30px;
  }
  #main #service .inner .list dl:nth-child(2) dd {
  	padding-bottom: 30px;
  }
	#main #service .inner .list dl:nth-child(3) dd {
		padding-top:    400px;
		padding-bottom: 30px;
	}
}
/* ================================================================================================================== */
/* SERVICE:LINKS                                                                                                      */
/* ===================================================================================================================*/
#main #service .inner .links {
	width: 736px;
	margin: 60px auto 0;

	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
#main #service .inner .links .separator {
	width: 1px;
	height: 190px;
	background: #198bcb;
}
#main #service .inner .links ul {
	flex: 1;
	text-align: center;
	line-height: 1;
}
#main #service .inner .links ul li:nth-child(1) {
	height: 60px;
	line-height: 60px;
}
#main #service .inner .links ul li:nth-child(1) img {
	vertical-align: bottom;
}
#main #service .inner .links ul li:nth-child(2) a div:nth-child(1) {
	margin-top: 25px;
	font-size: 0.20rem;

	font-family: source-han-sans-japanese,sans-serif;
	font-weight: 700;
	font-style: normal;
}
#main #service .inner .links ul li:nth-child(2) a div:nth-child(2) {
	margin-top: 10px;
}
#main #service .inner .links ul li:nth-child(2) a div:nth-child(2) img {
	width: 23px;
	height: 5px;
}
@media screen and (max-width: 750px) {
	#main #service .inner .links {
		width: auto;
		margin: 70px auto 0;

		display: block;
	}
	#main #service .inner .links .separator {
		width: auto;
		height: 2px;
	}
	#main #service .inner .links ul {
		flex: initial;
		padding-left: 30px;
		text-align: left;
		letter-spacing: -.40em;
		line-height: 140px;
	}
	#main #service .inner .links ul li {
		display: inline-block;
		letter-spacing: normal;
		vertical-align: middle;
	}
	#main #service .inner .links ul li:nth-child(1) {
		width: 120px;
		height: auto;
		line-height: 140px;
	}
	#main #service .inner .links ul li:nth-child(1) img {
		vertical-align: middle;
	}
	#main #service .inner .links ul:nth-child(2) li:nth-child(1) img {
		width: 80px !important;
	}
	#main #service .inner .links ul:nth-child(4) li:nth-child(1) img {
		width: 80px !important;
	}
	#main #service .inner .links ul:nth-child(6) li:nth-child(1) img {
		width: 75px !important;
	}
	#main #service .inner .links ul:nth-child(8) li:nth-child(1) img {
		width: 73px !important;
	}
	#main #service .inner .links ul li:nth-child(2) a {
		letter-spacing: -.40em;
	}
	#main #service .inner .links ul li:nth-child(2) a div {
		display: inline-block;
		letter-spacing: normal;
		vertical-align: middle;
	}
	#main #service .inner .links ul li:nth-child(2) a div:nth-child(1) {
		margin-top: 0;
		font-size: 0.38rem;
	}
	#main #service .inner .links ul li:nth-child(2) a div:nth-child(2) {
		margin-top: 0;
		margin-left: 15px;
	}
	#main #service .inner .links ul li:nth-child(2) a div:nth-child(2) img {
		width: 32.2px;
		height: 7px;
		vertical-align: middle;
	}
}
/* ================================================================================================================== */
/* REPORT                                                                                                             */
/* ===================================================================================================================*/
#main #report {
	width: 940px;
    margin-left: 40px;
	padding: 15px 0 40px;
	background: #ffffff;
}
#main #report .inner {
	width: 860px;
	margin: 35px auto 0;
	position: relative;
}
#main #report .inner .list {
	letter-spacing: -.40em;
}
#main #report .inner .list a {
	display: inline-block;
	width: 260px;
	margin-left: 40px;
	vertical-align: top;
	letter-spacing: normal;
}
#main #report .inner .list a:nth-child(3n - 2) {
	margin-left: 0;
}
#main #report .inner .list a:nth-child(n + 4) {
    margin-top: 30px;
}
#main #report .inner .list a .sub_inner {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
#main #report .inner .list a .sub_inner ul:nth-child(1) li {
	width:  125px;
	height: 125px;
}
#main #report .inner .list a .sub_inner ul:nth-child(1) li img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;'; /*IE対策*/
}
#main #report .inner .list a .sub_inner ul:nth-child(2) {
	width: 120px;
}
#main #report .inner .list a .sub_inner ul:nth-child(2) li.type_date {
	color: #198bcb;
	font-size: 0.10rem;
	line-height: 1.4;

	font-family: brother-1816,sans-serif;
	font-weight: 400;
	font-style: normal;
}
#main #report .inner .list a .sub_inner ul:nth-child(2) li.type_title {
	margin-top: 5px;
	font-size: 0.16rem;
	line-height: 1.4;
}
#main #report .more_pc {
	line-height: 1;
	letter-spacing: -.40em;
	position: absolute;
	top:   -80px;
	right:   0;
}
#main #report .more_pc span {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: middle;
}
#main #report .more_pc span:nth-child(1) {
	color: #198bcb;
	font-size: 0.14rem;

	font-family: brother-1816,sans-serif;
	font-weight: 400;
	font-style: normal;
}
#main #report .more_pc span:nth-child(2) {
	margin-left: 4px;
}
#main #report .more_pc span:nth-child(2) img {
	width: 20px;
	height: 4.348px;
	vertical-align: middle;
}
#main #report .more_sp {
	display: none;
}
@media screen and (max-width: 750px) {
	#main #report {
		width: 690px;
		margin: -2px auto 0;
		padding: 45px 0 60px;
	}
	#main #report .inner {
		width: 630px;
		margin: 40px auto 0;
	}
	#main #report .inner .list a {
		display: block;
		width: auto;
		margin-left: 0;
	}
	#main #report .inner .list a:nth-child(3n - 2) {
		margin-left: 0;
	}
	#main #report .inner .list a:nth-child(n + 4) {
	    margin-top: 0;
	}
	#main #report .inner .list a:nth-child(n + 2) {
		margin-top: 40px;
		margin-left: 0;
	}
	#main #report .inner .list a .sub_inner {
	}
	#main #report .inner .list a .sub_inner ul:nth-child(1) li {
		width:  287px;
		height: 287px;
	}
	#main #report .inner .list a .sub_inner ul:nth-child(1) li img {
	}
	#main #report .inner .list a .sub_inner ul:nth-child(2) {
		width: 320px;
	}
	#main #report .inner .list a .sub_inner ul:nth-child(2) li.type_date {
		font-size: 0.24rem;
	}
	#main #report .inner .list a .sub_inner ul:nth-child(2) li.type_title {
		margin-top: 2px;
		font-size: 0.34rem;
		line-height: 1.4;
	}
	#main #report .more_pc {
		display: none;
	}
	#main #report .more_sp {
		display: block;
		margin-top: 50px;
		text-align: center;
	}
	#main #report .more_sp a {
		width: 400px;
		border-radius: 10px;
		font-size: 0.32rem;

		font-family: brother-1816,sans-serif;
		font-weight: 400;
		font-style: normal;
	}
	#main #report .more_sp a span {
		line-height: 70px;
	}
	#main #report .more_sp a .icon {
		margin-left: 12px;
	}
	#main #report .more_sp a .icon svg {
		width: 30px;
		height: 6.53px;
	}
}
/* ================================================================================================================== */
/* MOVIE                                                                                                              */
/* ===================================================================================================================*/
#movie {
  padding: 53px 0 43px;
  background: #e8f3f9;
}
#movie h2.home_cmd_title {
  padding-bottom: 50px;
  position: relative;
}
#movie h2::after {
  content: "";
  width: 42px;
  height: 29px;
  background-image: url('../../images/home/movie_title_icon.svg');
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 18px;
}
#movie .explain {
  padding: 35px 0 25px;
}
#movie .explain p {
  text-align: center;
  font-family: source-han-sans-japanese,sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.05em;
}
#movie .list {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}
#movie_category_slider .item {
  width: 740px;
  text-align: center;
}
#movie_category_slider .item img {
  display: inline;
}
#movie_category_slider {
  margin-bottom: 0;
  padding-bottom: 25px;
}
#movie_category_slider .slick-dots {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  bottom: 0;
  gap: 0 9px;
}
#movie_category_slider .slick-dots li {
  width: 38px;
  height: 2px;
  margin: 0;
  background: #d7d7d7;
}
#movie_category_slider .slick-dots li.slick-active {
  background: #198aca;
}
#movie_category_slider .slick-dots li button {
  display: none;
}
#movie_category_slider .slick-prev,
#movie_category_slider .slick-next {
  width: 50px;
  height: 50px;
  transition: opacity 0.4s ease;
  transform: none;
  top: 85px;
  z-index: 100;
}
#movie_category_slider .slick-prev:hover,
#movie_category_slider .slick-next:hover {
  opacity: 0.7;
}
#movie_category_slider .slick-prev::before,
#movie_category_slider .slick-next::before {
  display: none;
}
#movie_category_slider .slick-prev {
  background-image: url('../../images/home/movie_slider_icon_prev.svg');
  right: calc(50% + 330px);
  left: auto;
}
#movie_category_slider .slick-next {
  background-image: url('../../images/home/movie_slider_icon_next.svg');
  left: calc(50% + 330px);
  right: auto;
}
@media screen and (max-width: 750px) {
  #movie {
    padding: 85px 0 76px;
  }
  #movie h2.home_cmd_title {
    padding-bottom: 78px;
  }
  #movie h2::after {
    width: 63px;
    height: 43px;
    background-image: url('../../images/home/movie_title_icon.svg');
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 28px;
  }
  #movie .explain {
    padding: 40px 0 30px;
  }
  #movie .explain p {
    font-size: 24px;
    line-height: 42px;
  }
  #movie .list {
    max-width: auto;
    margin: 0 auto;
    overflow: hidden;
  }
  #movie_category_slider .item {
    width: 700px;
    text-align: center;
  }
  #movie_category_slider .item img {
    display: inline;
    width: 680px !important;
  }
  #movie_category_slider {
    padding-bottom: 64px;
  }
  #movie_category_slider .slick-dots {
    gap: 0 13px;
  }
  #movie_category_slider .slick-dots li {
    width: 57px;
    height: 3px;
  }
  #movie_category_slider .slick-dots li.slick-active {
  }
  #movie_category_slider .slick-dots li button {
  }
  #movie_category_slider .slick-prev,
  #movie_category_slider .slick-next {
    width: 50px;
    height: 50px;
    transition: opacity 0.4s ease;
    transform: none;
    top: 85px;
    z-index: 100;
  }
  #movie_category_slider .slick-prev:hover,
  #movie_category_slider .slick-next:hover {
    opacity: 0.7;
  }
  #movie_category_slider .slick-prev::before,
  #movie_category_slider .slick-next::before {
    display: none;
  }
  #movie_category_slider .slick-prev {
    background-image: url('../../images/home/movie_slider_icon_prev.svg');
    right: calc(50% + 320px);
    left: auto;
  }
  #movie_category_slider .slick-next {
    background-image: url('../../images/home/movie_slider_icon_next.svg');
    left: calc(50% + 320px);
    right: auto;
  }
}
/* ================================================================================================================== */
/* NEWS_AND_COLUMN                                                                                                    */
/* ===================================================================================================================*/
#main #news_and_column {
	margin-top: 30px;
	padding: 40px 0 30px;
	background: #f3f3f3;
}
#main #news_and_column .inner {
	width: 980px;
	margin: 40px auto 0;
	position: relative;
}
#main #news_and_column .inner .list {
	letter-spacing: -.40em;
}
#main #news_and_column .inner .list a {
	display: inline-block;
	width: 300px;
	margin-left: 40px;
	vertical-align: top;
	letter-spacing: normal;
}
#main #news_and_column .inner .list a:nth-child(3n - 2) {
	margin-left: 0;
}
#main #news_and_column .inner .list a:nth-child(n + 4) {
    margin-top: 30px;
}
#main #news_and_column .inner .list a .sub_inner {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
#main #news_and_column .inner .list a .sub_inner ul:nth-child(1) li {
	width:  125px;
	height: 125px;
}
#main #news_and_column .inner .list a .sub_inner ul:nth-child(1) li img {
	width: 100% !important;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	font-family: 'object-fit: cover; object-position: center center;'; /*IE対策*/
}
#main #news_and_column .inner .list a .sub_inner ul:nth-child(2) {
	width: 165px;
}
#main #news_and_column .inner .list a .sub_inner ul:nth-child(2) li.type_date {
	color: #198bcb;
	font-size: 0.10rem;
	line-height: 1.4;

	font-family: brother-1816,sans-serif;
	font-weight: 400;
	font-style: normal;
}
#main #news_and_column .inner .list a .sub_inner ul:nth-child(2) li.type_title {
	margin-top: 5px;
	font-size: 0.16rem;
	line-height: 1.4;
}
#main #news_and_column .more_pc {
	line-height: 1;
	letter-spacing: -.40em;
	position: absolute;
	top:   -80px;
	right:   0;
}
#main #news_and_column .more_pc span {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: middle;
}
#main #news_and_column .more_pc span:nth-child(1) {
	color: #198bcb;
	font-size: 0.14rem;

	font-family: brother-1816,sans-serif;
	font-weight: 400;
	font-style: normal;
}
#main #news_and_column .more_pc span:nth-child(2) {
	margin-left: 4px;
}
#main #news_and_column .more_pc span:nth-child(2) img {
	width: 20px;
	height: 4.348px;
	vertical-align: middle;
}
#main #news_and_column .more_sp {
	display: none;
}
@media screen and (max-width: 750px) {
	#main #news_and_column {
		margin-top: 40px;
		margin-bottom: 40px;
		padding: 70px 0 60px;
	}
	#main #news_and_column .inner {
		width: 690px;
		margin: 70px auto 0;
	}
	#main #news_and_column .inner .list {
	}
	#main #news_and_column .inner .list a {
		display: block;
		width: auto;
    	margin-left: 0;
	}
    #main #news_and_column .inner .list a:nth-child(3n - 2) {
    	margin-left: 0;
    }
    #main #news_and_column .inner .list a:nth-child(n + 4) {
        margin-top: 0;
    }
	#main #news_and_column .inner .list a:nth-child(n + 2) {
		margin-top: 40px;
		margin-left: 0;
	}
	#main #news_and_column .inner .list a .sub_inner {
	}
	#main #news_and_column .inner .list a .sub_inner ul:nth-child(1) li {
		width:  287px;
		height: 287px;
	}
	#main #news_and_column .inner .list a .sub_inner ul:nth-child(1) li img {
	}
	#main #news_and_column .inner .list a .sub_inner ul:nth-child(2) {
		width: 380px;
	}
	#main #news_and_column .inner .list a .sub_inner ul:nth-child(2) li.type_date {
		font-size: 0.24rem;
	}
	#main #news_and_column .inner .list a .sub_inner ul:nth-child(2) li.type_title {
		margin-top: 2px;
		font-size: 0.34rem;
		line-height: 1.4;
	}
	#main #news_and_column .more_pc {
		display: none;
	}
	#main #news_and_column .more_sp {
		display: block;
		margin-top: 50px;
		text-align: center;
	}
	#main #news_and_column .more_sp a {
		width: 400px;
		border-radius: 10px;
		font-size: 0.32rem;

		font-family: brother-1816,sans-serif;
		font-weight: 400;
		font-style: normal;
	}
	#main #news_and_column .more_sp a span {
		line-height: 70px;
	}
	#main #news_and_column .more_sp a .icon {
		margin-left: 12px;
	}
	#main #news_and_column .more_sp a .icon svg {
		width: 30px;
		height: 6.53px;
	}
}
/* ================================================================================================================== */
/* CUSTOM SOLUTIONS                                                                                                   */
/* ===================================================================================================================*/
#main #custom_solutions {
	padding: 75px 0 70px;
	background: #d4e8f4;
}
#main #custom_solutions .inner {
	width: 980px;
	margin: 145px auto 0;
}
#main #custom_solutions .inner ul.list {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#main #custom_solutions .inner ul.list > li {
	width: 470px;
	position: relative;
}
#main #custom_solutions .inner ul.list > li:nth-child(n + 3) {
	margin-top: 140px;
}
#main #custom_solutions .inner ul.list > li:last-child {
	margin-left: auto;
	margin-right: auto;
}
#main #custom_solutions .inner ul.list > li .label {
	box-sizing: border-box;
	width: 200px;
	height: 200px;
	padding-top: 155px;
	background-image: url('../../images/home/custom_solutions_label_bg.jpg');
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateX(-50%);
	text-align: center;
	position: absolute;
	top: -100px;
	left: 50%;
}
#main #custom_solutions .inner ul.list > li .label img {
	width: 200px;
	transform: translate(-50%, -50%);
	position: absolute;
	left: 50%;
	top: 50%;
}
#main #custom_solutions .inner ul.list > li .label p {
	color: #ffffff;
	font-size: 0.18rem;
	line-height: 1;
	font-family: poynter-oldstyle-display,serif;
	font-weight: 600;
	font-style: normal;
}
#main #custom_solutions .inner ul.list > li .content {
	box-sizing: border-box;
	padding: 120px 0 40px;
	background: #ffffff;
}
#main #custom_solutions .inner ul.list > li .content .sub_inner {
	width: 390px;
	margin: 0 auto;
}
#main #custom_solutions .inner ul.list > li .content .sub_inner h3 {
	color: #198aca;
	font-size: 0.24rem;
	line-height: 0.34rem;
	font-family: source-han-sans-japanese,sans-serif;
	font-weight: 700;
	font-style: normal;
	font-feature-settings: "palt";
}
#main #custom_solutions .inner ul.list > li .content .sub_inner p {
	margin-top: 15px;
	font-size: 0.16rem;
	line-height: 0.30rem;
	font-feature-settings: "palt";
}
#main #custom_solutions .inner ul.list > li .content .sub_inner .more {
	margin-top: 20px;
	text-align: center;
}
#main #custom_solutions .inner ul.list > li .content .sub_inner .more a {
	width: 250px;
	font-size: 0.16rem;
}
#main #custom_solutions .inner ul.list > li .content .sub_inner .more a span {
	line-height: 40px;
	font-family: source-han-sans-japanese,sans-serif;
	font-weight: 700;
	font-style: normal;
}
#main #custom_solutions .inner ul.list > li .content .sub_inner .more a .icon {
	margin-left: 15px;
}
#main #custom_solutions .inner ul.list > li .content .sub_inner .more a .icon svg {
	width: 22.4px;
	height: 4.87px;
}
#main #custom_solutions .inner .link {
	margin-top: 40px;
	text-align: center;
}
#main #custom_solutions .inner .link a {
	width: 350px;
	font-size: 0.18rem;
}
#main #custom_solutions .inner .link a span {
	line-height: 60px;

	font-family: source-han-sans-japanese,sans-serif;
	font-weight: 700;
	font-style: normal;
}
#main #custom_solutions .inner .link a .icon {
	margin-left: 15px;
}
#main #custom_solutions .inner .link a .icon svg {
	width: 22.4px;
	height: 4.87px;
}
@media screen and (max-width: 750px) {
	#main #custom_solutions {
		padding: 60px 0 60px;
	}
	#main #custom_solutions .inner {
		width: 690px;
		margin: 170px auto 0;
	}
	#main #custom_solutions .inner ul.list {
	}
	#main #custom_solutions .inner ul.list > li {
		width: 690px;
	}
	#main #custom_solutions .inner ul.list > li:nth-child(n + 2),
	#main #custom_solutions .inner ul.list > li:nth-child(n + 3) {
		margin-top: 140px;
	}
	#main #custom_solutions .inner ul.list > li:last-child {
	}
	#main #custom_solutions .inner ul.list > li .label {
		width: 450px;
		height: 450px;
		padding-top: 357px;
		top: -100px;
	}
	#main #custom_solutions .inner ul.list > li .label img {
		width: 300px;
	}
	#main #custom_solutions .inner ul.list > li .label p {
		font-size: 0.32rem;
	}
	#main #custom_solutions .inner ul.list > li .content {
		padding: 390px 0 40px;
	}
	#main #custom_solutions .inner ul.list > li .content .sub_inner {
		width: 633px;
	}
	#main #custom_solutions .inner ul.list > li .content .sub_inner h3 {
		font-size: 0.38rem;
		line-height: 0.50rem;
	}
	#main #custom_solutions .inner ul.list > li .content .sub_inner p {
		margin-top: 20px;
		font-size: 0.28rem;
		line-height: 0.46rem;
	}
	#main #custom_solutions .inner ul.list > li .content .sub_inner .more {
		margin-top: 30px;
	}
	#main #custom_solutions .inner ul.list > li .content .sub_inner .more a {
		width: 400px;
		font-size: 0.23rem;
	}
	#main #custom_solutions .inner ul.list > li .content .sub_inner .more a span {
		line-height: 70px;
	}
	#main #custom_solutions .inner ul.list > li .content .sub_inner .more a .icon {
		margin-left: 20px;
	}
	#main #custom_solutions .inner ul.list > li .content .sub_inner .more a .icon svg {
		width: 30px;
		height: 6.53px;
	}
	#main #custom_solutions .inner .link {
		margin-top: 40px;
	}
	#main #custom_solutions .inner .link a {
		width: 525px;
		font-size: 0.27rem;
	}
	#main #custom_solutions .inner .link a span {
		line-height: 87px;
	}
	#main #custom_solutions .inner .link a .icon {
		margin-left: 20px;
	}
	#main #custom_solutions .inner .link a .icon svg {
		width: 30px;
		height: 6.53px;
	}
}
/* ================================================================================================================== */
/* PERSON                                                                                                             */
/* ===================================================================================================================*/
#main #person {
	padding: 70px 0 68px;
	background: #f3f3f3;
}
#main #person .inner {
	width: 980px;
	margin: 50px auto 0;
	position: relative;
}
#main #person .inner dl {
	position: relative;
}
#main #person .inner dl dt {
	width: 300px;
	height: 300px;
	background-image: url('../../images/home/texture_blue.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top:   -20px;
	right: 0;
}
#main #person .inner dl dt a {
	display: inline;
}
#main #person .inner dl dt a .back {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#main #person .inner dl dt a .back img {
	width: 100%;
	height: 100%;
}
#main #person .inner dl dt a .front {
	padding-top: 140px;
	position: relative;
	z-index: 1;
}
#main #person .inner dl dt a .front h3 {
	display: block;
	text-align: center;
	color: #198bcb;
	font-size: 0.24rem;
	line-height: 1;
	letter-spacing: -.40em;

	font-family: source-han-sans-japanese,sans-serif;
	font-weight: 700;
	font-style: normal;
}
#main #person .inner dl dt a .front h3 span {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: bottom;
}
#main #person .inner dl dt a .front h3 span.icon {
	padding-left: 8px;
	line-height: 1;
	position: relative;
	top: -7px;
}
#main #person .inner dl dt a .front h3 span.icon img {
	width: 23px;
	height: 5px;
}
#main #person .inner dl dt a .front p {
	width: 211px;
	margin: 10px auto 0;
	font-size: 0.16rem;
	line-height: 1.7;
}
#main #person .inner dl dd {
}
@media screen and (max-width: 750px) {
	#main #person {
		padding: 80px 0 510px;
	}
	#main #person .inner {
		width: auto;
		margin: 58px auto 0;
	}
	#main #person .inner dl {
		position: relative;
	}
	#main #person .inner dl dt {
		width:  450px;
		height: 450px;
		top:   280px;
		right: calc(50% - 225px);
	}
	#main #person .inner dl dt a {
	}
	#main #person .inner dl dt a .back {
	}
	#main #person .inner dl dt a .back img {
	}
	#main #person .inner dl dt a .front {
		padding-top: 210px;
	}
	#main #person .inner dl dt a .front h3 {
		font-size: 0.36rem;
	}
	#main #person .inner dl dt a .front h3 span {
	}
	#main #person .inner dl dt a .front h3 span.icon {
		padding-left: 12px;
		top: -10.5px;
	}
	#main #person .inner dl dt a .front h3 span.icon img {
		width: 34.5px;
		height: 7.5px;
	}
	#main #person .inner dl dt a .front p {
		width: 317px;
		margin: 15px auto 0;
		font-size: 0.24rem;
	}
	#main #person .inner dl dd {
	}
	#main #person .inner dl dd img {
		width: 100% !important;
	}
}
/* ================================================================================================================== */
/* CLIENT                                                                                                             */
/* ===================================================================================================================*/
#main #client {
	padding: 80px 0 90px;
}
#main #client .inner {
	width: 980px;
	margin: 10px auto 0;
	text-align: center;
}
@media screen and (max-width: 750px) {
	#main #client {
		padding: 120px 0 100px;
	}
	#main #client .inner {
		width: 690px;
		margin: 45px auto 0;
		text-align: center;
	}
	#main #client .inner img {
		width: 100%;
	}
}
/* ================================================================================================================== */
/* CLIENT                                                                                                             */
/* ===================================================================================================================*/
#main #company {
	padding: 80px 0 55px;
}
#main #company .inner {
	width: 980px;
	margin: 60px auto 0;
}
@media screen and (max-width: 750px) {
	#main #company {
		padding: 115px 0 55px;
	}
	#main #company .inner {
		width: auto;
		margin: 60px auto 0;
	}
}


