@charset "utf-8";
/* CSS Document */
/*=================================================================================

* Wrap

=================================================================================*/
#wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
	height: 100%;
	visibility: visible;
	border: 6px solid #F2F2F2;
	flex-direction: column;
}
#wrap > div {}
.scroll-hidden {
	height: 100%;
	min-height: 100%;
	overflow: hidden !important;
	touch-action: none;
}
/*=================================================================================

* Header

=================================================================================*/
.header-inner {
	width: 90%;
	margin: 0 auto;
	padding: 50px 0 10px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.header-inner .company-logo {
	flex: 1;
}
.header-inner .text01 {
	flex: 1;
	text-align: right;
	font-size: 24px;
	font-weight: 600;
	line-height: 54px;
}
/* 1334 under */
@media (max-width: 1334px) {}
/* 1024 under */
@media (max-width: 1024px) {}
/* 768px under */
@media (max-width: 768px) {
	.header-inner {
		padding-top: 30px;
		flex-direction: column;
	}
	.header-inner .company-logo {
		width: 180px;
	}
	.header-inner .text01 {
		font-size: 18px;
		text-align: left;
		line-height: 1.2;
	}
}
/*=================================================================================

* Container 

=================================================================================*/
#container {
	width: 100%;
	position: relative;
}
#container .inner {
	width: 90%;
	margin: 0 auto;
}
.menubox-wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-content: center;
	margin-bottom: 20px;
}
.menubox-wrap .box {
	position: relative;
	flex: 1;
	width: 1%;
	height: 560px;
	cursor: pointer;
	overflow: hidden;
	background: rgba(49, 56, 94, 1);
}
.menubox-wrap .box a:after {
	display: block;
	clear: both;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(49, 56, 94, .2);
	z-index: 0;
	transition: 0.1s ease-in 0.1s;
}
.menubox-wrap .menu01 {
	background: url("../img/bg_box03.png") center no-repeat;
	background-size: cover;
	transition: 0.1s ease-in 0.1s;
}
.menubox-wrap .menu02 {
	background: url("../img/bg_box02.png") center no-repeat;
	background-size: cover;
	transition: 0.1s ease-in 0.1s;
}
.menubox-wrap .menu03 {
	background: url("../img/bg_box01.png") center no-repeat;
	background-size: cover;
	transition: 0.1s ease-in 0.1s;
}
.menubox-wrap .menu04 {
	background: url("../img/bg_box04.png") center no-repeat;
	background-size: cover;
	transition: 0.1s ease-in 0.1s;
}
.menubox-wrap .box a:hover:after {
	background: rgba(49, 56, 94, 0);
}
.menubox-wrap .box a {
	display: block;
	width: 100%;
	height: 100%;
}
.menubox-wrap .box .text-area {
	position: absolute;
	top: 90px;
	left: 40px;
	z-index: 1;
}
.menubox-wrap .box .text-area h2 {
	font-size: 32px;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.menubox-wrap .box .text-area .btn-detail {
	display: block;
	color: #fff;
	font-size: 20px;
	text-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
.menubox-wrap .box .arrow {
	display: inline-block;
	position: relative;
}
.menubox-wrap .box .arrow:before {
	display: block;
	clear: both;
	content: '';
	width: 20px;
	height: 2px;
	background: #fff;
}
.menubox-wrap .box .arrow:after {
	display: block;
	clear: both;
	content: '';
	position: absolute;
	top: -4px;
	right: -1px;
	width: 12px;
	height: 2px;
	background: #fff;
	transform: rotate(45deg)
}
.linkbox-wrap {
	margin-bottom: 100px;
}
.linkbox-wrap ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.linkbox-wrap ul li {
	flex: 1;
	width: 1%;
	height: 80px;
	margin-right: 1px;
}
.linkbox-wrap ul li a {
	display: block;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, .5);
	line-height: 80px;
}
.linkbox-wrap ul li.link01 {
	background: url("../img/bg_link01.png") center no-repeat;
	background-size: cover;
}
.linkbox-wrap ul li.link02 {
	background: url("../img/bg_link02.png") center no-repeat;
	background-size: cover;
}
.linkbox-wrap ul li.link03 {
	margin-right: 0;
	background: url("../img/bg_link03.png") center no-repeat;
	background-size: cover;
}
.overimg {
	position: absolute;
	bottom: 0;
	left: -20px;
	z-index: -1;
}
.overtext {
	position: absolute;
	bottom: 60px;
	right: 0;
	font-size: 100px;
	color: #E8EBF1;
	text-transform: uppercase;
	line-height: 0;
	font-family: 'Noto Serif', serif;
	opacity: 0.4;
}
/* 1334 under */
@media (max-width: 1334px) {}
/* 1024 under */
@media (max-width: 1024px) {
	.menubox-wrap {
		display: block;
	}
	.menubox-wrap .box {
		width: 100%;
		height: 360px;
	}
	.menubox-wrap .box .text-area h2 {
		font-size: 42px;
	}
	.menubox-wrap .box .text-area .btn-detail {
		font-size: 26px;
	}
}
/* 768px under */
@media (max-width: 768px) {
	
}
/* 480px under */
@media (max-width: 480px) {
	.menubox-wrap .box {
		height: 240px;
	}
	.menubox-wrap .menu02 {
		background-position: 0 -90px;
	}
	.menubox-wrap .box .text-area {
		left: 20px;
		top: 40px;
	}
	.menubox-wrap .box .text-area h2 {
		font-size: 26px;
	}
	.menubox-wrap .box .text-area .btn-detail {
		font-size: 18px;
	}
	.linkbox-wrap ul {
		flex-direction: column;
	}
	.linkbox-wrap ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 1px;
	}
	.overimg {
		width: 28%;
	}
	.overtext {
		font-size: 48px;
		bottom: 50px;
	}
}
/*=================================================================================

* Footer 

=================================================================================*/
#footer {
	background: #f2f2f2;
}
.footer-inner {
	width: 90%;
	margin: 0 auto;
	padding: 40px 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.footer-inner > div {
	flex: 1;
}
.footer-inner .copy-wrap {}
.footer-inner .copy-wrap p {
	color: #888;
}
.footer-inner .copy-wrap .text01 {}
.footer-inner .copy-wrap .text01 .tip-gray {
	display: inline-block;
	background: #4B4B4B;
	color: #fff;
	padding: 2px 10px;
	border-radius: 30px;
}
.footer-inner .copy-wrap .text02 {}
.footer-inner .copy-wrap .text02 a {
	text-decoration: underline;
	font-weight: 600;
	color: #888;
}
.footer-inner .logo-wrap {
	text-align: right;
}
.footer-inner .logo-wrap a {
	margin-left: 10px;
}
.footer-inner .logo-wrap a.first {
	cursor: pointer;
	display: block;
}
.footer-inner .logo-wrap a img {}
/* 1440 under */
@media (max-width: 1440px) {}
/* 1024 under */
@media (max-width: 1024px) {
	.footer-inner .copy-wrap p {
		margin-bottom: 8px;
		font-size: 12px;
	}
}
/* 768px under */
@media (max-width: 768px) {
	.footer-inner {
		width: 90%;
		flex-direction: column;
		text-align: center;
	}
	.footer-inner .logo-wrap {
		margin-top: 20px;
		text-align: center;
	}
	.footer-inner .logo-wrap a {
		display: inline-block;
		padding: 8px;
	}
}
/*=================================================================================

* modal  

=================================================================================*/
.md-close {
	position: absolute;
	top: 50px;
	right: 50px;
	width: 50px;
	height: 50px;
	text-indent: -999em;
	opacity: 0.4;
}
.md-close:before, .md-close:after {
	position: absolute;
	top: 0;
	left: 25px;
	content: ' ';
	height: 50px;
	width: 4px;
	background-color: #232323;
}
.md-close:before {
	transform: rotate(45deg);
}
.md-close:after {
	transform: rotate(-45deg);
}
.md-close:hover {
	opacity: 1;
}
.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 1334px;
	z-index: 100;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.md-show {
	visibility: visible;
}
.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 99;
	opacity: 0;
	background: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}
.md-effect-13.md-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}
.md-effect-13 .md-content {
	background: #fff;
	box-shadow: 0 0 40px rgba(0, 0, 0, .7);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-3000px) rotateY(90deg);
	-moz-transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform: translateZ(-3000px) rotateY(90deg);
	transform: translateZ(-3000px) rotateY(90deg);
	opacity: 0;
}
.md-show.md-effect-13 .md-content {
	-webkit-animation: slit .7s forwards ease-out;
	-moz-animation: slit .7s forwards ease-out;
	animation: slit .7s forwards ease-out;
}
@-webkit-keyframes slit {
	50% {
		-webkit-transform: translateZ(-250px) rotateY(89deg);
		opacity: .5;
		-webkit-animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: translateZ(0) rotateY(0deg);
		opacity: 1;
	}
}
@-moz-keyframes slit {
	50% {
		-moz-transform: translateZ(-250px) rotateY(89deg);
		opacity: .5;
		-moz-animation-timing-function: ease-out;
	}
	100% {
		-moz-transform: translateZ(0) rotateY(0deg);
		opacity: 1;
	}
}
@keyframes slit {
	50% {
		transform: translateZ(-250px) rotateY(89deg);
		opacity: 1;
		animation-timing-function: ease-in;
	}
	100% {
		transform: translateZ(0) rotateY(0deg);
		opacity: 1;
	}
}
/* 1440px under */
@media (max-width: 1440px) {
	.md-modal {
		width: 80%;
	}
	.md-effect-13 .md-content {
		/*height: 690px;*/
	}
}
/* 1024px under */
@media (max-width: 1024px) {}
/* 768px under */
@media (max-width: 768px) {}
/* 480px under */
@media (max-width: 480px) {
	.md-close {
		top: 30px;
		right: 30px;
		width: 30px;
		height: 30px;
	}
	.md-close:before, .md-close:after {
		height: 30px;
	}
	.md-modal {
		width: 90%;
	}
}
/*=================================================================================

* modal content 

=================================================================================*/
.modal-item {
	width: 100%;
}
.modal-item .title-area {
	margin-bottom: 50px;
	padding: 50px 50px 0 50px;
}
.modal-item .title-area .text01 {
	font-size: 120px;
	color: #EBF4FF;
	font-weight: 600;
	line-height: 1;
}
.modal-item .title-area .text02 {
	font-size: 38px;
	font-weight: 600;
}
.modal-item .title-area .text02 span {
	font-size: 20px;
}
.modal-item .cont-area {
	padding: 0 50px 50px 50px;
}
.modal-item .cont-area .scroll {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.modal-item .cont-area .scroll > div {
	flex: 1;
}
.modal-item .cont-area .m-title {
	margin-bottom: 20px;
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(to top, #BFC6EC 50%, transparent 50%);	
}
.modal-item .cont-area .list-wrap {
	position: relative;
	border-left: 1px solid #e1e1e1;
	padding: 9px 0 16px 30px;
}
.modal-item .cont-area .list-wrap:before {
	position: absolute;
	top: 0;
	left: -3px;
	display: block;
	clear: both;
	content: '';
	width: 6px;
	height: 40px;
	background: #333;
}
.modal-item .cont-area .list-wrap li {
	position: relative;
	margin-bottom: 30px;
	padding: 0 10px;
	font-size: 17px;
	line-height: 1.2;
	font-weight: 500;
	font-family: 'Noto Sans SC';
}
.modal-item .cont-area .list-wrap li:before {
	position: absolute;
	top: 0px;
	left: -5px;
	display: block;
	clear: both;
	content: '-';
}
.modal-item .cont-area .list-wrap li.first {
	padding-left: 0;
	color: #4762E8;
	font-size: 20px;
}
.modal-item .cont-area .list-wrap li.first:before {
	display: none;
}
.modal-item.about01 {}
.modal-item.about01 .box02 {
	text-align: center;
}
.modal-item.about02 .box02 {
	padding-top: 60px;
}
.modal-item.about02 .box03 {
	text-align: right;
}
.modal-item.about03 .box01 .con-flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.modal-item.about03 .box02 {
	text-align: right;
}
/* 1440px under */
@media (max-width: 1440px) {
	.modal-item .title-area {
		margin-bottom: 30px;
	}
	.modal-item .title-area .text01 {
		font-size: 100px;
	}
	.modal-item .title-area .text02 {
		font-size: 32px;
	}
	.modal-item .title-area .text02 span {
		font-size: 18px;
	}
	.modal-item .cont-area .list-wrap li {
		margin-bottom: 15px;
		font-size: 16px;
	}
	.modal-item.about02 .box03 img {
		width: auto;
		max-width: auto;
		height: 100%;
	}
	.modal-item .cont-area .list-wrap {
		padding: 7px 0 16px 30px;
	}
	.modal-item .cont-area .list-wrap li.first {
		font-size: 18px;
	}
}
/* 1024px under */
@media (max-width: 1024px) {
	.modal-item .cont-area .scroll {
		flex-direction: column;
	}
	.modal-item .cont-area .scroll > div {
		flex: 1;
	}
	.modal-item.about03 .box02 {
		padding-top: 0;
		text-align: center;
	}
	.modal-item.about02 .box03 {
		text-align: left;
	}
	.modal-item.about01 .cont-area, .modal-item.about02 .cont-area, .modal-item.about03 .cont-area {
		height: 600px;
		overflow-x: hidden;
		overflow-y: scroll;
	}
	/*	.modal-item .cont-area .scroll {		
		overflow-x: hidden; 
		overflow-y: scroll; 
	}*/
}
/* 768px under */
@media (max-width: 768px) {
	.modal-item.about01 .cont-area, .modal-item.about02 .cont-area, .modal-item.about03 .cont-area {
		height: 350px;
	}
	.modal-item.about03 .box02 {
		padding-top: 30px;
	}
	/*	.modal-item .cont-area {
		overflow-y: auto;
	}*/
	.modal-item .cont-area .list-wrap li {
		font-size: 14px;
	}
}
/* 480px under */
@media (max-width: 480px) {
	/*	.modal-item .cont-area {
		height: 400px;
	} */
	.modal-item .title-area {
		padding: 20px 20px 0 20px;
	}
	.modal-item .title-area .text01 {
		font-size: 60px;
	}
	.modal-item .title-area .text02 {
		font-size: 20px;
	}
	.modal-item .title-area .text02 span {
		font-size: 14px;
		display: block;
	}
	.modal-item .cont-area {
		padding: 0 20px 20px 20px;
	}
	.modal-item .cont-area .m-title {
		font-size: 18px;
	}
	.modal-item .cont-area .list-wrap li.first {
		font-size: 16px;
	}
	.modal-item.about03 .box01 .con-flex {
		flex-direction: column;
	}
}
/*=================================================================================

* modal Tab style 

=================================================================================*/
.grid {
	list-style: none;
}
.grid-item {
	box-sizing: border-box;
	float: left;
}
.grid-item-01 {
	width: 25%;
}
.grid-item-02 {
	width: 75%;
	height: 460px;
	padding-left: 40px;
	overflow-y: auto;
	overflow-x: hidden;
}
.modal-tab {
	position: relative;
	width: 100%;
}
.modal-tab .menu div {
	padding: 20px 10px 20px 20px;
	margin-bottom: 0;
	color: #999;
	border-bottom: 1px solid #f1f1f1;
	background: #fff;
	cursor: pointer;
	position: relative;
	font-weight: 600;
	transition: 0.3s all ease-out;
	text-transform: uppercase;
	font-size: 20px;
	box-sizing: border-box;
}
.modal-tab .menu div:before {
	display: block;
	clear: both;
	content: '';
	width: 30px;
	height: 2px;
	background: #999;
	position: absolute;
	top: 36px;
	right: 20px;
}
.modal-tab .menu div:after {
	display: block;
	clear: both;
	content: '';
	position: absolute;
	top: 32px;
	right: 18px;
	width: 12px;
	height: 2px;
	background: #999;
	transform: rotate(45deg);
}
.modal-tab .menu div:hover {
	color: #4762E8;
	padding-left: 10px;
}
.modal-tab .menu div.active {
	color: #4762E8;
	padding-left: 10px;
	border: 2px solid #4762E8;
	box-sizing: border-box;
}
.modal-tab .menu div:hover::before, .modal-tab .menu div:hover::after, .modal-tab .menu div.active::before, .modal-tab .menu div.active::after {
	background: #4762E8;
}
.modal-tabcon {
	position: relative;
	height: 0px;
	list-style: none;
	margin: 0;
	padding: 0;
	transition: 0.5s all ease-out;
}
.modal-tabcon .tabcon-item {
	width: 100%;
	/*opacity: 0;*/
	display: none;
	position: absolute;
	list-style: none;
	transition: 1s all ease-out;
}
.modal-tabcon .tabcon-item > div {
	/*height: 460px;*/
	/*overflow-y: auto;*/
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 10px;
	background-clip: padding-box;
	border: 2px solid transparent;
}
::-webkit-scrollbar-track {
	background-color: #f1f1f1;
	border-radius: 10px;
	box-shadow: inset 0px 0px 5px #f9f9f9;
}
.modal-tabcon .tabcon-item.active {
	transition-delay: 0.5s;
	z-index: 2;
	display: block;
}
.modal-tabcon .tabcon-item p {
	margin: 0;
}
/* 1440px under */
@media (max-width: 1440px) {
	.modal-tab .menu div {
		padding: 20px 10px 20px 15px;
		font-size: 18px;
	}
}
/* 1024px under */
@media (max-width: 1024px) {
	.grid-item {
		float: none;
	}
	.grid-item-01 {
		width: 100%;
	}
	.grid-item-02 {
		width: 100%;
		padding-left: 0;
	}
	.modal-tab .menu {
		margin-bottom: 30px;
	}
	.modal-tab .menu div {
		display: table-cell;
		width: 1%;
		vertical-align: middle;
		font-size: 16px;
		text-align: center;
	}
	.modal-tab .menu div:before, .modal-tab .menu div:after {
		display: none;
	}
	.modal-tab .menu div:hover, .modal-tab .menu div.active {
		padding-left: 0;
	}
}
/* 768px under */
@media (max-width: 768px) {
	.modal-tab .menu div {
		font-size: 14px;
		padding: 10px;
	}
}
/* 480px under */
@media (max-width: 480px) {
	.modal-tab .menu div {
		display: block;
		width: 50%;
		height: 60px;
		line-height: 60px;
		float: left;
		font-size: 14px;
		padding: 0;
	}
	.modal-tab .menu div.active {
		padding: 0;
	}
	.modal-tab .menu div span {
		line-height: 1.2;
	}
	.grid-item-02 {
		height: 250px;
	}
}
/*=================================================================================

* 04 vision 

=================================================================================*/
.modal-tabcon .vision .desc01, .modal-tabcon .history .desc01 {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
}
.modal-tabcon .vision .vision-box {
	width: 100%;
}
.modal-tabcon .vision .vs-item {
	width: calc(98%/3);
	height: 200px;
	margin-bottom: 1%;
	padding: 20px;
	background: #F8F9FC;
	border-radius: 8px;
	float: left;
}
.modal-tabcon .vision .item02 {
	margin: 0 1%;
}
.modal-tabcon .vision .item04 {
	width: 100%;
}
.modal-tabcon .vision .vs-item h4 {
	position: relative;
	margin-bottom: 16px;
	font-size: 20px;
	font-weight: 600;
	padding-left: 70px;
	line-height: 60px;
}
.modal-tabcon .vision .vs-item h4:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	clear: both;
	content: '';
	width: 60px;
	height: 60px;
}
.modal-tabcon .vision .vs-item p {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
}
.modal-tabcon .vision .vs-item p b {
	display: block;
}
.modal-tabcon .vision .item01 h4:before {
	background: url("../img/icon_01.png") center no-repeat;
	background-size: contain;
}
.modal-tabcon .vision .item02 h4:before {
	background: url("../img/icon_02.png") center no-repeat;
	background-size: contain;
}
.modal-tabcon .vision .item03 h4:before {
	background: url("../img/icon_03.png") center no-repeat;
	background-size: contain;
}
.modal-tabcon .vision .item04 h4:before {
	background: url("../img/icon_04.png") center no-repeat;
	background-size: contain;
}
.modal-tabcon .vision .item04 {
	height: auto;
}
.modal-tabcon .vision .item04 h4 {
	float: left;
	width: 20%;
}
.modal-tabcon .vision .item04 .text-area {
	float: left;
	width: 80%;
	padding-left: 20px;
}
.modal-tabcon .vision .item04 .text-area p {
	margin-bottom: 12px;
}
/* 1440px under */
@media (max-width: 1440px) {
	.modal-tabcon .vision .vs-item {
		height: 180px;
	}
	.modal-tabcon .vision .vs-item h4 {
		margin-bottom: 12px;
		font-size: 18px;
		padding-left: 50px;
		line-height: 40px;
	}
	.modal-tabcon .vision .vs-item h4:before {
		width: 40px;
		height: 40px;
	}
	.modal-tabcon .vision .vs-item p {
		font-size: 15px;
	}
}
/* 1024px under */
@media (max-width: 1024px) {
	.modal-tabcon .vision .vs-item {
		width: 100%;
		height: auto;
		margin-bottom: 12px;
	}
	.modal-tabcon .vision .item04 h4 {
		width: 100%;
	}
	.modal-tabcon .vision .item04 .text-area {
		width: 100%;
		padding-left: 0;
	}
}
/* 768px under */
@media (max-width: 768px) {}
/*=================================================================================

* 04 history 

=================================================================================*/
.modal-tabcon .history dl {
	line-height: 1;
}
.modal-tabcon .history dl dt {
	position: relative;
	float: left;
	width: 20%;
	padding: 30px 0;
	font-size: 54px;
	font-weight: 700;
	color: #E1E1E1;
}
.modal-tabcon .history dl.first dt {
	color: #4762E8;
}
.modal-tabcon .history dl dd {
	float: left;
	width: 80%;
	margin-top: -1px;
	padding: 40px 0 40px 20px;
	border-left: 1px solid #4762E8;
}
.modal-tabcon .history dl.first dd {
	background: url("../img/img_president.png") 100% 100% no-repeat;
}
.modal-tabcon .history dl dd p {
	position: relative;
	font-size: 16px;
	font-weight: 500;
}
.modal-tabcon .history dl dd p.text01 {
	position: relative;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
	display: inline-block;
	background: -webkit-linear-gradient(bottom, #BFC6EC 50%, transparent 50%);
	background: -o-linear-gradient(bottom, #BFC6EC 50%, transparent 50%);
	background: linear-gradient(to top, #BFC6EC 50%, transparent 50%);
}
.modal-tabcon .history dl dd p.text01:after {
	display: block;
	clear: both;
	content: '';
	position: absolute;
	top: 10px;
	left: -27px;
	width: 9px;
	height: 9px;
	border: 2px solid #4762E8;
	background: #fff;
	border-radius: 10px;
}
.modal-tabcon .history dl dd p.text02:after {
	display: block;
	clear: both;
	content: '';
	position: absolute;
	top: 10px;
	left: -23px;
	width: 5px;
	height: 5px;
	background: #4762E8;
	border-radius: 10px;
}
/* 1440px under */
@media (max-width: 1440px) {
	.modal-tabcon .history dl dt {
		font-size: 48px;
	}
	.modal-tabcon .history dl.first dd {}
	.modal-tabcon .history dl dd p.text01 {
		font-size: 18px;
	}
}
/* 1024px under */
@media (max-width: 1024px) {
	.modal-tabcon .vision .desc01, .modal-tabcon .history .desc01 {
		font-size: 18px;
	}
	.modal-tabcon .history dl dt {
		font-size: 42px;
		width: 20%;
	}
	.modal-tabcon .history dl dd {
		width: 80%;
	}
	.modal-tabcon .history dl.first dd {
		height: 200px;
	}
	.modal-tabcon .history dl dd p.text01 {
		font-size: 18px;
	}
}
/* 768px under */
@media (max-width: 768px) {
	.modal-tabcon .history dl dt {
		width: 100%;
		float: none;
		border-right: 0;
	}
	.modal-tabcon .history dl dd {
		width: 90%;
		float: none;
		margin-left: 10px;
		padding: 0 0 0 20px;
		border-left: 1px solid #4762E8;
	}
	.modal-tabcon .history dl dd p {
		font-size: 14px;
	}
	.modal-tabcon .history dl dd p.text01 {
		font-size: 17px;
		background: -webkit-linear-gradient(bottom, #BFC6EC 100%, transparent 0);
		background: -o-linear-gradient(bottom, #BFC6EC 100%, transparent 0);
		background: linear-gradient(to top, #BFC6EC 100%, transparent 0);
	}
}
/* 480px under */
@media (max-width: 480px) {
	.modal-tabcon .history dl dt {
		font-size: 32px;
	}
}
/*=================================================================================

* 04 organization 

=================================================================================*/
.modal-tabcon .organization {
	background: url("../img/bg_oz.png") center 0 no-repeat;
	/*width: 100%;
	height: 100%;
	background-image:url(../img/bg_oz.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;*/
}
.modal-tabcon .organization .item-text {
	margin-bottom: 20px;
}
.modal-tabcon .organization .item-text .text01 span {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 600;
	display: inline-block;
	background: -webkit-linear-gradient(bottom, #BFC6EC 50%, transparent 50%);
	background: -o-linear-gradient(bottom, #BFC6EC 50%, transparent 50%);
	background: linear-gradient(to top, #BFC6EC 50%, transparent 50%);
}
.modal-tabcon .organization .item-text .text02 {
	width: 90%;
	font-size: 16px;
	font-weight: 400;
}
/* 1440px under */
@media (max-width: 1440px) {}
/* 1024px under */
@media (max-width: 1024px) {}
/* 768px under */
@media (max-width: 768px) {
	.modal-tabcon .organization {
		background-size: 100%;
	}
	.modal-tabcon .organization .item-text .text01 span {
		font-size: 17px;
		background: -webkit-linear-gradient(bottom, #BFC6EC 70%, transparent 30%);
		background: -o-linear-gradient(bottom, #BFC6EC 70%, transparent 30%);
		background: linear-gradient(to top, #BFC6EC 70%, transparent 30%);
	}
	.modal-tabcon .organization .item-text .text02 {
		line-height: 1.4;
		font-size: 14px;
	}
}
/*=================================================================================

* 04 contact 

=================================================================================*/
.modal-tabcon .contact {}
.modal-tabcon .contact img {
	width: 100%;
}
.modal-tabcon .contact .text-area {
	margin-top: 10px;
}
.modal-tabcon .contact p {
	margin-bottom: 4px;
	font-size: 16px;
}
.modal-tabcon .contact p span {
	display: inline-block;
	vertical-align: text-top;
}
.modal-tabcon .contact .tit {
	font-weight: 600;
	width: 10%;
}
.modal-tabcon .contact .desc {
	font-weight: 500;
	width: 90%;
}
/* 1440px under */
@media (max-width: 1440px) {}
/* 1024px under */
@media (max-width: 1024px) {}
/* 768px under */
@media (max-width: 768px) {
	.modal-tabcon .contact .tit {
		width: 100%;
	}
	.modal-tabcon .contact p {
		margin-bottom: 12px;
	}
	.modal-tabcon .contact p span {
		display: block;
	}
}