@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
/*mainVisual*/
.mainVisual {
	margin-bottom: 70px;
	padding: 20px;
	height: 70vh;
	min-height: 450px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
}
.mainVisual::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(70,40,124,.5);
}
.mainVisual .inner {
	position: relative;
	color: #FFF;
	text-align: center;
}
.mainVisual h2 {
	font-size: 6rem;
	font-weight: normal;
	letter-spacing: 0.1em;
}
.mainVisual p {
	margin-top: 40px;
}
.pageTitle {
	height: 400px;
	min-height: 400px;
}
@media all and (max-width: 896px) {
	.mainVisual {
		margin-bottom: 50px;
		height: 50vh;
		min-height: 300px;
	}
	.mainVisual h2 {
		font-size: 2.7rem;
		letter-spacing: 0;
	}
}
.mainVisual.carrer {
	background: url('../../img/carrer/main_img.jpg') no-repeat center center / cover;
}

/* headLine01 */
.headLine01 {
	margin-bottom: 40px;
	color: #46287c;
	font-size: 4.5rem;
	line-height: 30px;
	text-align: center;
	font-weight: normal;
}
@media all and (max-width: 896px) {
	.headLine01 {
		font-size: 2.5rem;
		line-height: 1.3;
	}
}
@media all and (max-width: 374px) { 
	.headLine01 {
		font-size: 2.5rem;
	}
}
/* headLine02 */
.headLine02 {
	margin-bottom: 30px;
	font-size: 4rem;
	text-align: center;
	font-weight: normal;
}
@media all and (max-width: 896px) {
	.headLine02 {
		margin-bottom: 20px;
		font-size: 2.5rem;
	}
}

/* headLine03 */
.headLine03 {
	margin-bottom: 30px;
	color: #46287c;
	font-size: 1.8rem;
}
@media all and (max-width: 896px) {
	.headLine02 {
		margin-bottom: 20px;
		font-size: 2.1rem;
	}
}

/* content */
.content {
	padding: 0 20px;
	margin: 0 auto;
	max-width: 1340px;
}
.content.small {
	max-width: 1000px;
}
.content  p {
	margin-bottom: 20px;
}
.content p:last-child {
	margin-bottom: 0;
}
.content p a {
	color: #46287c;
}
@media all and (min-width: 897px) {
	.content p a:hover {
		opacity: 0.7;
	}
}
/* businessUl */
.businessUl {
	margin: 50px -10px;
	display: flex;
	flex-wrap: wrap;
}
.businessUl li {
	padding: 10px;
	width: calc((100% / 12) * 3);
	box-sizing: border-box;
}
.businessUl a {
	display: block;
	position: relative;
	overflow: hidden;
}
.businessUl span {
	padding: 10px;
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	color: #FFF;
	box-sizing: border-box;
	text-align: center;
	background: rgba(70,40,124,0.8);
}
.businessUl img {
	width: 100%;
	transition: .2s;
}
@media all and (min-width: 897px) {
	.businessUl a:hover img {
		transform: scale(1.1,1.1);
	}
}
@media all and (max-width: 896px) {
	.businessUl {
		margin: 50px -10px 0;
	}
	.businessUl li {
		width: 100%;
	}
}

/* photoList */
.photoList {
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.photoList li {
	margin-bottom: 20px;
	width: calc(50% - 10px);
}
@media all and (max-width: 896px) {
	.photoList {
		margin-bottom: 20px;
	}
	.photoList li {
		margin-bottom: 10px;
		width: 100%;
	}
}
/* comBtn */
.comBtn {
	margin-top: 50px;
	text-align: center;
}
.comBtn a {
	padding: 5px 35px;
	display: inline-block;
	text-align: center;
	color: #fefefe;
	font-size: 2rem;
	text-decoration: none;
	transition: all .35s;
	box-sizing: border-box;
	border: 2px solid #46287c;
	background: #46287c;
}
@media all and (min-width: 897px) {
	.comBtn a:hover {
		color: #46287c;
		background: #fff;
	}
}
@media all and (max-width: 896px) {
	.comBtn a {
		font-size: 1.5rem;
	}
}
/* downloads */
.downloads .mainVisual {
	background: url('../../img/downloads/main_img.jpg') no-repeat center center / cover;
}
.downloadsList {
	margin-bottom: 50px;
	border-top: 3px solid #46287c;
}
.downloadsList li {
	border-bottom: 3px solid #46287c;
}
.downloadsList a {
	padding: 20px 15% 20px 20px;
	display: flex;
	font-size: 2.5rem;
	position: relative;
	align-items: center;
}
.downloadsList i {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.downloadsList .name {
	width: 70%;
}
.downloadsList .size {
	width: 30%;
	font-size: 1.8rem;
	text-align: right;
}
@media all and (min-width: 897px) {
	.downloadsList a:hover {
		color: #46287c;
	}
}
@media all and (max-width: 896px) {
	.downloadsList {
		margin-bottom: 30px;
	}
	.downloadsList a {
		padding: 10px 35px 10px 5px;
		font-size: 1.8rem;
		line-height: 1.5;
	}
	.downloadsList i {
		right: 5px;
	}
	.downloadsList .size {
		font-size: 1.4rem;
	}
}

/* comTable */
.comTable {
    width: 100%;
    margin-bottom: 48px;
    border-collapse: collapse;
    border-bottom: 1px solid #D8D8D8;
}
.comTable th,
.comTable td {
    padding: 20px;
    text-align: left;
    vertical-align: middle;
    box-sizing: border-box;
    border-top: 1px solid #D8D8D8;
}
.comTable th {
    width: 19.3%;
    font-weight: normal;
}
.comTable a {
	color: #46287c;
}
@media all and (min-width: 897px) {
	.comTable a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
    .comTable {
        margin-bottom: 20px;
        font-size: 1.4rem;
    }
    .comTable th,
    .comTable td {
        padding: 15px 0;
        display: block;
        float: left;
        width: 100%;
    }
    .comTable td {
    	padding-top: 0;
    	border-top: none;
    }
}
/* infoList */
.infoList {
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.infoList li {
	margin-bottom: 20px;
	width: calc(50% - 40px);
}
.infoList .logo {
	margin-bottom: 30px;
}
.infoDl dt {
	margin-bottom: 5px;
	font-weight: bold;
}
.infoDl dd {
	margin-bottom: 10px;
}
@media all and (max-width: 896px) {
	.infoList {
		margin-bottom: 20px;
	}
	.infoList li {
		margin-bottom: 10px;
		width: 100%;
	}
}

.textList {
	margin: 0 0 20px 30px;
}
.textList > li {
	margin-bottom: 10px;
	list-style: decimal-leading-zero;
}
.textList ul {
	margin-left: 1em;
}
.textList ul li {
	margin: 10px;
	list-style: circle;
}
.comImgBox {
	display: flex;
}
.comImgBox .photoBox {
	width: 50%
}
.comImgBox .photoBox img {
	width: 100%
}
.comImgBox .textBox {
	width: 50%;
	padding: 50px 40px;
}
.comImgBox .title {
	margin-bottom: 20px;
	color: #46287c;
	font-size: 3.8rem;
}
.comImgBoxRight .photoBox {
	order: 1
}
@media all and (max-width: 896px) {
	.comImgBox {
		display: block;
	}
	.comImgBox .photoBox {
		margin-bottom: 10px;
		width: auto;
	}
	.comImgBox .textBox {
		width: auto;
		margin-top: 20px;
		padding: 0;
	}
	.comImgBox .title {
		margin-bottom: 10px;
		font-size: 2rem
	}
}
.comColor {
	color: #46287c;
	font-weight: 700
}
.comBtn01 {
	text-align: center;
}
.btn-trans {
	margin-top: 10px;
	padding: 10px 25px;
	display: inline-block;
	border: 2px solid #46287c;
	background: 0 0;
	color: #303030;
	text-decoration: none;
	font-size: 2.5rem;
	font-weight: 400;
	box-sizing: border-box;
	transition: all .35s
}
a.btn-trans01 {
	border: 2px solid #fff;
	background: 0 0;
	color: #fff;
}
@media all and (min-width: 897px) {
	.btn-trans:hover {
		color: #303030;
		opacity: 0.7
	}
	.btn-trans01:hover {
		opacity: 1;
		color: #fff;
		background-color: rgba(254,254,254,.3) !important;
	}
}
@media all and (max-width: 896px) {
	.btn-trans {
		padding: 8px 25px;
		font-size: 1.8rem;
	}
}.LOGO {
}
