@charset "UTF-8";
/* CSS Document */

.wrap_main {
    margin-left: auto;
    margin-right: auto;
}

/*マージン設定*/
.top_70 {
    margin-top: 70px;
}
.top_60 {
    margin-top: 60px;
}
.top_50 {
    margin-top: 50px;
}
.top_25 {
    margin-top: 25px;
}
.top_20 {
    margin-top: 20px;
}
.top_14 {
    margin-top: 14px;
}
.top_10 {
    margin-top: 10px;
}
.top_5 {
    margin-top: 5px;
}
.bottom_10 {
    margin-bottom: 10px;
}
.bottom_04em {
    margin-bottom: 0.4em;
}
.width_2_8em {
    width: 2.8em;
}

.width_3em {
    display: inline-block;
    width: 2.3em;
}

.padding_6em {
    display: inline-block;
    padding-right: 5.7em;
}
.padding_4em {
    display: inline-block;
    padding-right: 4em;
}
.top_5 {
    margin-top: 5px;
}
.right_40 {
    margin-right: 40px;
}
.left_60 {
    margin-left: 60px;
}

/*footer コピーライト*/
.footer_copyright_con::before {
	content: "";
	border-bottom: 1px solid #333333;
	display: block;
}
.footer_copyright {
	color: #fff;
	display: block;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 60px;
}



/*flexbox指定*/
/*両サイド寄せ*/
.container_between{
    display: flex;
    justify-content: space-between;
}
/*センター*/
.container_center{
    display: flex;
    justify-content: center;
}
