@charset "utf-8";





/*==========================================================================

	                         title
	
============================================================================*/

#title {
	background-color: #E8E8DD;
}

/*==========================================================================

	                         main-img
	
============================================================================*/

#main-img {
    background: url(../img/common/main-img-bg-gray.png) center 0 repeat-x;
	background-size: contain;
	position: relative;
}
#main-img .sp {
	display: none;
}
@media screen and (max-width: 768px){
	#main-img {
		background: url(../img/common/main-img-bg-gray-sp.png) center 0 repeat-x;
		background-size: contain;
	}
	#main-img .pc {
		display: none;
	}
	#main-img .sp {
		display: block;
	}
}

#main-img h2 {
	position: relative;
	z-index: -1;
}

.main-txt-box {
    max-width: 26em;
	width: 40%;
    position: absolute;
	top: 30%;
	right: 10%;
}
.main-txt-box h3 {
    font-size: 28px;
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.8;
	letter-spacing: 0.05em;
	margin-bottom: 5%;
}
@media screen and (max-width: 1200px){
	.main-txt-box {
		top: 25%;
		right: 5%;
	}
}
@media screen and (max-width: 1024px){
	.main-txt-box {
		max-width: inherit;
		width: 84%;
		margin: 0 auto;
		padding: 10% 0 15%;
		position: inherit;
		top: inherit;
		right: inherit;
	}
}
@media screen and (max-width: 768px){
	.main-txt-box h3 {
		font-size: 18px;
	    font-size: 1.8rem;
	}
}


/*==========================================================================

	                       sec1
	
============================================================================*/

#sec1 {
    padding: 12% 5% 12%;
}

.sec1-box1 {
    max-width: 1000px;
	margin: 0 auto;
}
.sec1-box1 dl {
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.sec1-box1 dl dt {
	width: 53%;
	padding-top: 12%;
}
.sec1-box1 dl dd {
	width: 42%;
}
.sec1-box1 dl dd h3 {
    font-size: 25px;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 5%;
}

@media screen and (max-width: 1024px){
    #sec1 {
		padding: 0 0 15%;
	}
	.sec1-box1 dl dt {
		width: 100%;
		padding-top: 0;
		margin-bottom: 10%;
	}
	.sec1-box1 dl dd {
		width: 84%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 768px){
	.sec1-box1 dl dd h3 {
		font-size: 18px;
		font-size: 1.8rem;
	}
}


/*==========================================================================

	                       sec2
	
============================================================================*/

#sec2 {
    background: url(../img/about/sec2-bg.png) center 0 repeat-x;
	background-size: contain;
	background-color: #F7F6F3;
    padding: 15% 8% 15%;
}

.sec2-box1 {
    max-width: 700px;
	margin: 0 auto 10%;
}
.sec2-box1 h2 {
	max-width: 320px;
	width: 70%;
	margin: 0 auto 6%;
	text-align: center;
}
.sec2-box1 ul {
    max-width: 680px;
    margin: 7% auto 0;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sec2-box1 ul li {
    width: 33%;
	max-width: 218px;
	line-height: 0;
}


.sec2-box2 {
    max-width: 600px;
	margin: 0 auto;
	padding: 5%;
	background-color: #fff;
	box-sizing: border-box;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.03);
}
.sec2-box2 h3 {
    font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 2%;
}
.sec2-box2 table {
    width: 100%;
	border-collapse: collapse;
}
.sec2-box2 th {
	width: 12em;
	border-bottom: #C2C4AF 1px solid;
	padding: 3% 0 0;
	font-weight: bold;
	text-align: center;
}
.sec2-box2 td {
	border-bottom: #C2C4AF 1px solid;
	padding: 3% 0 0;
	text-align: center;
}

@media screen and (max-width: 768px){
	.sec2-box2 h3 {
		font-size: 17px;
		font-size: 1.7rem;
	}
	.sec2-box2 table {
		font-size: 12px;
		font-size: 1.2rem;
	}
	.sec2-box2 th {
		width: 10em;
	}
}


