html {
    background-color: #fafafa;
}
body {
    margin: 0;
    padding: 0;
}

/** header **/
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: #000 0 -4px 10px;
}
.header_wrap {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    z-index: 999;
}
header .btn {
    padding: 4px 12px;
    font-size: 16px;
    font-weight: bold;
}
header .logo {
    display: flex;
    align-items: center;
}
.logo > img {
    width: auto;
    height: 24px;
}

/** content **/
.header_wrap,
main {
    max-width: 1280px;
    margin: 0 auto;
}
.content {
    padding: 0 10px;
    margin-bottom: 20px;
}

main {
    max-width: 960px;
    width: 100%;
    margin: 70px auto 0;
}

.hero_image img {
    width: 100%;
}
.hero_image > .pc {
    display: none;
}
.content > .title {
    font-weight: bold;
    font-size: 24px;
}
article,
section {
    font-size: 16px;
}

.title {
    font-weight: bold;
    box-sizing: content-box;
    font-size: 20px;
    padding: 0 8px;
}

.l_line {
    border-left: #5cb531 4px solid;
}

.t_center {
    text-align: center;
}

.card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: #0000004a 0 4px 24px;
    padding: 32px;
}

.mr-4 {
    margin-right: 16px;
}
.mr-6 {
    margin-right: 24px;
}
.mb-4 {
    margin-bottom: 16px;
}

/** util **/
a {
    text-decoration: none;
    word-break: break-all;
}
.btn {
    display: block;
    background-color: #3597ec;
    color: #fff;
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 20px;
}
.center {
    display: flex;
    justify-content: center;
}
.bold {
    font-weight: bold;
}
.f-18 {
    font-size: 18px;
}
/** profile **/
.profile {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 20px;
}
.profile_img {
    width: 100%;
    height: auto;
    margin-right: 20px;
}

.profile_img > img {
    width: 100%;
    height: auto;
}

.profile_text {
    max-width: 600px;
    width: 100%;
    font-size: 14px;
}

/** footer **/
footer {
    background-color: #4c4c4c;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 32px;
    font-size: 10px;
}

.company_info {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}
.footer_logo > img {
    width: 130px;
    height: auto;
}
.iso_image {
    display: flex;
    justify-content: center;
}
.iso_image > img {
    width: 200px;
    height: auto;
}

.checkmark001{
	padding-left:24px;
	position:relative;
}
.checkmark001:before,
.checkmark001:after{
	content:"";
	display:block;
	position:absolute;
}
.checkmark001:before{
	width:16px;
	height:16px;
	background:#ffffff;
    border:1px solid #000000;
	left:0;top:2px;
}
.checkmark001:after{
	border-left:2px solid #5cb531;
	border-bottom:2px solid #5cb531;
	width:18px;
	height:5px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:5px;
	top:3px;
}

.red-bold {
    color: #ff0000;
    font-weight: bold;
}

@media (min-width: 700px) {
    .body {
        padding: 0 20px;
    }
    .hero_image > .sp {
        display: none;
    }
    .hero_image > .pc {
        display: block;
    }
    .profile {
        flex-direction: row;
    }
    .profile_img {
        width: 120px;
        height: auto;
        margin-right: 20px;
    }
    .profile_text {
        font-size: 16px;
    }

    footer {
        flex-direction: row;
    }

}
