@charset "UTF-8";

header {
    background: none;
}

.header_logo {
    color: #000!important;
}

ul.header_menu li a {
    color: #000!important;
}

ul.header_menu li a span {
	background: #000;
}

a.headercontact {
    border: 1px solid #242422;
}

.flow_inner {
    max-width: 93%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
}

.flow_contents {
    width: 33%;
    border: 0.5px solid;
    padding: 3%;
}

h2.flow_contents_title {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 28px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

h2.flow_contents_title span {
    display: block;
    font-size: 2rem;
    margin-right: 16px;
    color: #fff;
    background: #000;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
    font-family: "aileron", sans-serif;
    padding: 10px 18px;
}

p.flow_contents_cap {
    font-size: 1.3rem;
    line-height: 24px;
}

a.flow_contents_link {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    position: relative;
    width: max-content;
    line-height: 22px;
    color: #000;
    margin-top: 20px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

a.flow_contents_link:before {
    width: 0;
    height: 1px;
    background: #000;
    content: "";
    display: block;
    left: 0;
    bottom: -4px;
    position: absolute;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

a.flow_contents_link:hover:before {
    width: 100%;
}

a.flow_contents_link img {
    width: 20px;
    margin-right: 5px;
}

p.flow_contents_cap a {
    font-size: 1.3rem;
    color: #000;
    text-decoration: underline;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

p.flow_contents_cap a:hover {
	opacity: 0.5;
}

.flow_icon {
    width: 45px;
    margin: 0 auto 10%;
}

section.contents_wrapper {
    padding: 100px 0;
    box-shadow: 0 -60px 160px rgba(0,0,0,0.045);
    border-bottom: 0.5px solid #AAA;
}


/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

section.contents_wrapper {
    padding: 50px 0;
}

.flow_inner {
    width: 90%;
    display: block;
}
	
.flow_contents {
    width: 100%;
    padding: 30px 8%;
    margin-bottom: 20px;
}

p.flow_contents_cap {
    font-size: 1.2rem;
    line-height: 22px;
}

h2.flow_contents_title {
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 20px;
}

h2.flow_contents_title span {
    font-size: 1.8rem;
    padding: 10px 18px;
}

a.flow_contents_link {
    font-size: 1.2rem;
    font-weight: 500;
}

a.flow_contents_link img {
    width: 18px;
}

p.flow_contents_cap a {
    font-size: 1.2rem;
}

.flow_icon {
    margin: 0 auto 25px;
    width: 40px;
}

}