@charset "utf-8";


 @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Roboto:wght@700&display=swap');
* {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
}
img {
	border: none;
	vertical-align: top;
}
.clear {
	clear: both;
}
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	-webkit-text-size-adjust: 100%;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,0.9);
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.15);
	box-sizing: border-box;
	z-index: 500;
}
header.desktop {
	height: 85px;
	padding-top: 20px;
}
header.desktop img {
	vertical-align: middle;
}
.desktop .header_inner {
	max-width: 1100px;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 0 15px;
}
.desktop .header_logo {
	width: 214px;
	margin-right: 30px;
}
.desktop ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.desktop li {
	list-style: none;
	margin: 0 30px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 14px;
}
.desktop li span, .drawer_inner li span {
	position: relative;
}
.desktop li span:after,
.drawer_inner li span:after {
	content: '';
	display: block;
	width: 50%;
	height: 3px;
	background: #E5700C;
	position: absolute;
	left: 25%;
	bottom: -13px;
	transform: scaleX(0);
	transform-origin: top left;
	transition: all 0.2s;
}
.drawer_inner li span:after {
	bottom: -10px;
}
.desktop li:hover span:after, .desktop li.current span:after, .drawer_inner li.current span:after {
	transform: scaleX(1);
}
.desktop li a, .drawer_inner li a {
	color: #333;
	text-decoration: none;
}
.header_logo img {
	width: 100%;
	height: auto;
}
.desktop nav {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
.desktop .header_contact_btn {
	width: 185px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	margin-left: 40px
}
.desktop .header_contact_btn a {
	display: block;
	height: 40px;
	line-height: 39px;
	text-align: center;
	border-radius: 40px;
	box-sizing: border-box;
	border: 2px solid #E5700C;
	background: #E5700C;
	color: #FFF;
	text-decoration: none;
}
.desktop .header_contact_btn span {
	padding-left: 34px;
	transform: translateX(-24px);
	background: url(../images/icon_mail.png) no-repeat left center;
	background-size: 24px;
}
.desktop .header_contact_btn a:hover {
	background: #FFF;
	color: #E5700C;
}
.desktop .header_contact_btn:hover span {
	background: url(../images/icon_mail_on.png) no-repeat left center;
	background-size: 24px;
}
.mobile_drawer {
	display: none;
}
 @media(min-width: 961px) {
header.mobile {
	display: none;
}
}
@media(max-width: 1100px) {

.desktop .header_logo {
	width: 200px;
	margin-right: 15px;
}
.desktop li {
	margin: 0 20px;
}
.desktop .header_contact_btn {
	margin-left: 5px;
	font-size: 14px;
	width: 140px;
}
.desktop .header_contact_btn span {
	padding-left: 25px;
	transform: translateX(-20px);
	background: url(../images/icon_mail.png) no-repeat left center;
	background-size: 20px;
}
.desktop .header_contact_btn:hover span {
	background: url(../images/icon_mail_on.png) no-repeat left center;
	background-size: 20px;
}
}
 @media(max-width: 960px) {
header.desktop {
	display: none;
}
header.mobile, .drawer_header {
	height: 50px;
}
.drawer_header {
	margin-bottom: 10px;
}
.drawer_footer img {
	width: 100%;
	height: auto;	
}
header.mobile .header_logo, .drawer_header .header_logo {
	width: 170px;
	position: absolute;
	top: 7px;
	left: 15px;
}
header.mobile .header_trigger, .drawer_header .header_trigger {
	position: absolute;
	width: 24px;
	height: 18px;
	top: 16px;
	right: 15px;
	cursor: pointer;
	transition: all 0.3s;
}
.header_trigger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #2C3F5F;
}
.header_trigger span:nth-child(2) {
	position: absolute;
	right: 0;
	width: 14px;
	top: 8px;
}
.header_trigger span:nth-child(3) {
	position: absolute;
	left: 0;
	top: 16px;
}
.header_trigger.open {
	transform: rotate(180deg);
}
.header_trigger.open span:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
}
.header_trigger.open span:nth-of-type(2) {
	transform: translateY(0) rotate(45deg);
	width: 24px;
}
.header_trigger.open span:nth-of-type(3) {
	opacity: 0;
}
.mobile_drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	height: 100%;
	background: #FFF;
	padding-bottom: 100px;
	overflow: auto;
}
.drawer_inner {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	min-height: 450px;
}
.drawer_inner nav {
	transform: translateY(-20px);
}
.drawer_inner nav li, .drawer_inner .header_contact_btn {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 16px;
	list-style: none;
}
.drawer_inner nav li a {
	display: block;
	color: #333;
	text-decoration: none;
	text-align: center;
	padding: 20px;
}

.drawer_contact_lead {
	margin: 50px 0 10px;
	font-size: 13px;
	text-align: center;
}
.drawer_inner .header_contact_btn {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.drawer_inner .header_contact_btn a {
	display: block;
	height: 48px;
	line-height: 44px;
	text-align: center;
	border-radius: 40px;
	box-sizing: border-box;
	border: 2px solid #E5700C;
	background: #E5700C;
	color: #FFF;
	text-decoration: none;
	min-width: 200px;
}
.drawer_inner .header_contact_btn span {
	padding-left: 34px;
	transform: translateX(-24px);
	background: url(../images/icon_mail.png) no-repeat left center;
	background-size: 24px;
}
}
section {
	clear: both;
	padding: 100px 0;
}
section h3 {
	font-size: 30px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	text-align: center;
	margin: 0 0 60px;
}
.title_balloon {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 0 30px;
}
.title_balloon div {
	background: #E5700C;
	color: #FFF;
	text-align: center;
	display: inline-block;
	min-width: 500px;
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	padding: 6px 40px;
	border-radius: 40px;
	position: relative;
	box-sizing: border-box;
}
.title_balloon div p {
	line-height: 1.3;
	margin: 0;
	padding: 0;	
}
.title_balloon div:after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 17px 15px 0 15px;
	border-color: #E5700C transparent transparent transparent;
	position: absolute;
	bottom: -16px;
	left: calc(50% - 20px);
}
.title_balloon div span {
	font-size: 120%;
	font-weight: 700;	
}


footer {
	background: #ECECEC;
	padding: 70px 0;
	position: relative;
	overflow: hidden;
}
.footer_inner {
	max-width: 960px;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	padding: 0 20px;
}
.footer_left, .footer_right {
	width: 50%;
}
.footer_left h5 {
	width: 340px;
	margin: 0 0 35px;
}
.footer_left img {
	width: 100%;
	height: auto;
}
.footer_right {
	padding-left: 50px;
	background: url(../images/footer_line.png) no-repeat left center;
	font-size: 14px;
}
.copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.footer_bnr {
	width: 375px;
	margin: 30px 0 0;
}
.footer_bnr img {
	width: 100%;
	height: auto;
}
footer .pagetop {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100px;

	height: 100px;
	cursor: pointer;
}
.pagetop img {
	width: 100%;
	height: auto;
}
.footer_right p.copyright {
	display: none;
}
.anchor {
	padding-top: 30px;
	margin-top: -30px;
	position: relative;
}

@media(min-width: 768px) {
.contact_btn_fixed {
	display: none!important;	
}
}

.contact_btn_fixed {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 20px;
    z-index: 500;
	box-sizing: border-box;
	padding: 0 20px;
	display: none;
}

.contact_btn_fixed a {
	box-shadow: 2px 3px 8px -2px rgba(0,0,0,0.5);	
}


 @media(max-width: 960px) {
.footer_left h5 {
	width: 90%;
	margin: 0 0 35px;
}
}
@media(max-width: 767px) {
body {
	font-size: 14px;
}
section {
	padding: 40px 0;
}
section h3 {
	font-size: 20px;
	margin: 0 0 40px;
}

.title_balloon div {
	min-width: inherit;
	width: 100%;
	font-size: 17px;
	padding: 6px 10px;
	box-sizing: border-box;
	min-height: 54px;
	border-radius: 12px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
 }
.title_balloon div span {
	font-size: 100%;
	font-weight: 500;	
}
footer {
	padding: 40px 0 100px;
}
.footer_inner {
	display: block;
	padding: 0 30px;
}
.footer_left, .footer_right {
	width: auto;
	padding: 0;
	margin: 0;
	background: none;
}
.footer_left h5 {
	width: 100%;
	margin: 0 auto 30px;
}
.footer_right p.address {
	width: 100%;
	margin: 0 auto 30px;
	font-size: 13px;
}
.footer_bnr {
	width: 100%;
	margin: 0 auto 30px;
}
.footer_left .copyright {
	display: none;
}
.footer_right p.copyright {
	display: block;
	text-align: center;
	font-size: 11px;
	margin-top: 30px;
}
footer .pagetop {
	width: 100px;
	height: 100px;
}
.drawer_inner nav li a {
	padding: 13px;	
}
.drawer_contact_lead {
	margin: 30px 0 10px;
	font-size: 12px;
}

}
@media(max-width: 320px) {
.drawer_inner {
	min-height: inherit;
}
.drawer_inner nav li, .drawer_inner .header_contact_btn {
	font-size: 15px;
}
.drawer_inner nav li a {
	padding: 15px 0;
}

.title_balloon div {
	font-size: 16px;
}
.section_flow .title_balloon div {
	font-size: 15px;
}
.footer_right p.copyright {
	font-size: 9px;
}
}
@media(min-width: 768px) {
br.spbr {
	display: none;
}
}
@media(min-width: 321px) {
br.extraspbr {
	display: none;
}
}



/* HERO */

.hero,
.hero_inner {
	height: 50vw;
	min-height: 700px;	
}

.hero {
	background: url(../images/hero_bg_pc.jpg) no-repeat center center;
	background-size: cover;
}
section.hero {
	padding: 0;	
}
.hero_inner {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.hero_caption {
	max-width: 1080px;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}
.hero_caption img {
	width: 100%;
	height: auto;	
}

.hero_caption_catch {
	margin: 0 0 50px;
}
.hero_caption_description {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 32px;
	color: #FFF;
	line-height: 1.8;
	margin-left: 30px;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.7);
}
.hero_caption_description span {
	color: #F5FF00; 
}

@media(max-width: 1600px) {
	
.hero_caption {
	width: 60%;
}
.hero_caption_description {
	font-size: 2vw;	
}
	
}

@media(max-width: 1200px) {
.hero_caption {
	width: 90%;
}
.hero_caption_description {
	font-size: 20px;	
}
}

@media(max-width: 1000px) {

.hero_caption_catch {
	margin-bottom: 4vw;
}

}


@media(max-width: 768px) {
.hero {
	background: url(../images/hero_bg_pc.jpg) no-repeat center bottom;
	background-size: cover;
	min-height: 140vw;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.hero_inner {
	padding: 0;
	height: auto;	
}

.hero_caption {
	width: 86%;
	padding: 0;
	padding-top: calc(50px + 12vw);
}
.hero_caption_catch {
	margin-bottom: 4vw;	
}
.hero_caption_description {
	margin: 0 0 4vw;
	text-align: center;
	font-size: 4vw;
}
.hero_inner .hero_illust {
	position: static;
	width: 57vw;
	margin: 0 auto;
	padding-bottom: 20px;
	
}

}






/* INTRODUCTION */
.section_introduction {
	background:#F8F8F8;
}
.introduction_arrow::after {
	display: block;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 45px 90px 0 90px;
	border-color: #F8F8F8 transparent transparent transparent;
	margin: 0 auto;
}


.introduction_inner {
	max-width: 950px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
.introduction_inner .title_balloon {
	margin-bottom: 90px;	
}
.introduction_flex {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: 0 0 15px;
}
.introduction_flex_col {
	width: 49%;
	background: #FFF;
	box-sizing: border-box;
	padding: 16px 10px 16px 75px;
	position: relative;
	border-radius: 10px;
}
.introduction_flex_col:before {
	content: '';
	display: block;
	width: 32px;
	height: 28px;
	background: url(../images/icon_check.png) no-repeat 0 0;
	background-size: 32px;
	position: absolute;
	top: 22px;
	left: 24px;
}

.introduction_flex_col p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 24px;
	font-weight: 600;
}
.introduction_flex_col p span {
	position: relative;	
}
.introduction_flex_col p span:after {
	content: '';
	display: block;
	width: 100%;
	height: 10px;
	background: rgba(255,248,163, 0.7);
	position: absolute;
	left: 0;
	bottom: 4px;
	z-index: 0;
	mix-blend-mode: multiply;
}

.introduction_etc {
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 60px;
	font-weight: 500;
	color: #FD9C00;
	margin-top: 40px;
}
.introduction_etc p {
	transform: translateX(0.5em);	
}
.introduction_inner .introduction_illust {
	width: 310px;
	position: absolute;
	right: -175px;
	bottom: -100px;
}
.introduction_illust img {
	width: 100%;
	height: auto;	
}

@media(max-width: 1200px) {
.introduction_inner .introduction_illust {
	width: 180px;
	right: -2vw;
}
	
}



@media(max-width: 900px) {
.introduction_flex_col p {
	font-size: 20px;
}	
	
}

@media(max-width: 768px) {
.section_introduction {
	padding-bottom: 110px;	
}
.introduction_inner .introduction_illust {
	bottom: -110px;	
}
}


@media(max-width: 767px) {

.introduction_inner .title_balloon {
	margin-bottom: 40px;	
}

.introduction_arrow::after {
	display: block;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 23px 46px 0 46px;
	border-color: #F8F8F8 transparent transparent transparent;
	margin: 0 auto;
}

.introduction_flex {
	display: block;
	margin: 0;
}
.introduction_flex_col {
	width: 100%;
	padding: 15px 10px 15px 65px;
	margin: 0 0 10px;
}
.introduction_flex_col p {
	font-size: 18px;
}	

.introduction_flex_col:before {
	width: 26px;
	height: 22px;
	background: url(../images/icon_check.png) no-repeat 0 0;
	background-size: 26px;
	top: 17px;
	left: 24px;
}

.section_introduction {
	padding-bottom: 0;	
}
.introduction_footer {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;	
}
.introduction_etc {
	width: 70%;
}
.introduction_etc p {
	font-size: 30px;
	text-align: center;
	transform: translateX(0) translateY(-30px);
}
.introduction_inner .introduction_illust {
	width: 35%;
	position: static;
	transform: translateY(-40px);
	margin-bottom: -40px;
}
.introduction_illust img {
	transform: translateX(20px);	
}


}

@media(max-width: 320px) {
.introduction_flex_col p {
	font-size: 16px;
}
.introduction_flex_col {
	padding: 15px 10px 15px 60px;
}
.introduction_flex_col:before {
	left: 20px;
}
}


/* POINT */
.point_ex {
	width: 13px;
	height: auto;
	vertical-align: -4px;
	margin-left: 8px;
}

.point_inner {
	padding: 0 20px;
	max-width: 990px;
	margin: 0 auto;	
}

.point_col {
	padding: 40px 0;
}
.point_col.point_01 {
	padding-top: 0;	
}
.point_col.point_02,
.point_col.point_04,
.point_col.point_06 {
	background: #FFFDE3;
}


.point_hdr {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	margin: 0 0 40px;
}
.point_hdr_no {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 130px;
	font-weight: 600;
	color: #E5700C;
	line-height: 1;
	margin-right: 20px;
}
.point_hdr_no  span {
	font-size: 80%;	
}
section .point_hdr_lead h3 {
	text-align: left;
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	color: #E5700C;
	margin: 0 0 5px;
}
.point_hdr_lead p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 30px;
	font-weight: 600;
}

.point_flex {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
.point_flex_figure {
	width: 445px;
	margin-right: 30px;
}
.point_flex_figure img {
	width: 100%;
	height: auto;	
}
.point_flex_caption {
	font-size: 17px;
	flex: 1;
}
.point_flex_caption p {
	line-height: 1.8;
}
.point_flex_caption p:nth-child(2) {
	margin-top: 1.5em;	
}

.point_flex_caption_list {
	display: -webkit-flex;
	display: flex;
}

.point_flex_caption_list ul {
	margin-left: 1em;
	margin-right: 1em;
	padding: 0;
}
.point_flex_caption_list li {
	list-style: none;
	position: relative;
	margin: 0 0 5px;
	line-height: 1.3;
}
.point_flex_caption_list li:nth-child(odd) {
	clear: both;	
}

.point_flex_caption_list li  span {
	position: absolute;
	left: -1.2em;
	color: #E5700C;
}


@media(max-width: 990px) {
	
.point_flex_figure {
	width: 40%;
	margin-right: 20px;
}
.point_flex_caption {
	font-size: 16px;	
}
.point_flex_caption p br {
	display: none;	
}
.point_flex_caption p br.extra {
	display: block;	
}
}


@media(max-width: 768px) {
.point_flex_caption {
	font-size: 15px;	
}	
	
}


@media(max-width: 767px) {
.point_col {
	padding: 20px 0;	
}
.point_flex {
	display: block;	
}
.point_hdr {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: start;
	align-items: start;
	margin: 0 0 20px;
}
.point_hdr_no {
	font-size: 40px;
	margin-right: 10px;
}
section .point_hdr_lead h3,
.point_hdr_lead p {
	font-size: 4.5vw;	
}
section .point_hdr_lead h3 {
	margin: 0;	
}
.point_hdr_lead p br.pcbr {
	display: none;	
}
.point_flex_figure {
	width: 100%;
	margin: 0 0 35px;	
}
.point_flex_caption_list {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between; 
}
.point_flex_caption,
.point_flex_caption p,
.point_flex_caption li {
	font-size: 15px;	
}
.point_ex {
	width: 10px;	
}
}


@media(max-width: 320px) {

.point_hdr_no {
	font-size: 36px;
	margin-right: 5px;
}


.point_flex_caption,
.point_flex_caption p,
.point_flex_caption li {
	font-size: 14px;	
}

.point_flex_caption_list {
	display: block;
}
}



/* MEMBER */
.members_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.member_nav {
	max-width: 640px;
	margin: 0 auto 80px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between; 
}
.member_nav div {
	width: 44%;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
}
.member_nav  a {
	display: block;
	text-align: center;
	height: 46px;
	line-height: 46px;
	color: #FFF;
	text-decoration: none;	
}
.member_nav_order a {
	 background: #2C3F5F;
}
.member_nav_nearshore a {
	 background: #4A7FD6;
}


.members_col {
	display: -webkit-flex;
	display: flex;
	padding-bottom: 35px;
	margin-bottom: 35px;
	border-bottom: 1px solid #ECECEC;
}
.members_col.first {
	border-top: 1px solid #ECECEC;
	padding-top: 35px;
}

.members_col:last-of-type {
	margin: 0;
	padding: 0;
	border: none;	
}

.members_figure {
	width: 39%;
	margin-right: 25px;
	position: relative;
}
.members_figure img {
	width: 100%;
	height: auto;	
}
.members_caption {
	flex: 1;	
}
.members_caption h4 {
	font-size: 22px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	margin: 0 0 1em;
	padding: 2px 0 2px 13px;
	border-left: 4px solid #E5700C;
	line-height: 1.0;
}
.members_caption p,
.members_caption li {
	line-height: 1.7;
	margin-bottom: 1em;	
}
.members_caption p.extra {
	margin: 0;	
}

.members_caption li {
	margin-bottom: 5px;
	line-height: 1.7;
	list-style: none;
	position: relative;	
}
.members_caption li span {
	position: absolute;
	top: 0;
	left: -15px;
}

.members_caption ul {
	margin-bottom: 1em;
	margin-left: 15px;
}

.members_caption p:last-child {
	margin: 0;	
}

.members_figure .member_type {
	position: absolute;
	top: 15px;
	left: 20px;
	width: 160px;
	height: 35px;
	line-height: 37px;
	text-align: center;
	background: #2C3F5F;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	color: #FFF;	
}
.members_figure .member_type.company {
	background: #4A7FD6;
}

@media(max-width: 768px) {
.members_col {
	display: block;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.members_figure {
	width: 100%;
	margin: 0 0 20px;	
}
.members_caption h4 {
	font-size: 18px;	
}
.members_figure .member_type {
	top: 10px;
	left: 10px;
	width: 150px;
	height: 33px;
	line-height: 35px;
	font-size: 12px;
}
}


@media(max-width: 767px) {
.members_figure .member_type {
	top: 10px;
	left: 10px;
	width: 120px;
	height: 30px;
	line-height: 32px;
	font-size: 11px;
}

.member_nav {
	display: block;
	margin: 0 30px 40px;
}
.member_nav div {
	width: 100%;
	margin: 0 0 10px;
}
.members_col.first {
	padding-top: 20px;
}
}

@media(max-width: 320px) {
.members_figure .member_type {
	width: 100px;
	height: 26px;
	line-height: 28px;
	font-size: 10px;
}
}


/* FLOW */
.section_flow {
	background: #ECECEC;
}
.flow_inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}
.flow_flex {
	max-width: 700px;
	margin: 0 auto;
}
.flow_col {
	margin: 0 0 40px;
}
.flow_flex .flow_col:nth-of-type(2) {
	margin: 0;	
}

.flow_col h4 {
	text-align: center;
	background: #24467E;
	color: #FFF;
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	padding: 8px 0;
}
.flow_col h4.order {
	background: #24467E;
}
.flow_col h4.nearshore {
	background: #4A7FD6;
}
.flow_col h4.supporter {
	background: #2790c1;
}

.flow_col h4.front {
	background: #73B96E;
}

.flow_col_caption {
	background: #FFF;
	border: 1px dotted #24467E;
	text-align: center;
	padding: 30px;
	box-sizing: border-box;
	/* min-height: 520px; */
}
.flow_col_caption h5 {
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	margin: 0 0 25px;
}
.flow_col_caption h5 span {
	color: #E5700C;
}
.flow_title1,
.flow_title2,
.flow_title3 {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	padding: 10px;
	border: 1px solid #000;
}

.flow_title1,
.flow_title2,
.flow_title3 {
	font-size: 16px;
}
.flow_title2 {
	margin: 0 0 15px;	
}

.ul_list_flex {
	padding: 20px 0;
	margin: 0 0 40px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
 }
.ul_list_flex.on {
	border-left: 1px dotted #24467E;
	border-bottom: 1px dotted #24467E;
	border-right: 1px dotted #24467E;
}

.flow_col_caption p.ul_list {
	text-align: left;
	line-height: 1.5;
}
.flow_arrow {
	margin: 0 0 15px;	
}
.flow_arrow img {
	width: 60px;
	height: auto;
}
.marker {
	position: relative;	
}
.marker:after {
	content: '';
	display: block;
	width: 100%;
	height: 6px;
	background: rgba(254,220,108, 0.7);
	position: absolute;
	left: 0;
	bottom: 4px;
	z-index: 0;
	mix-blend-mode: multiply;
}

ul.notes_numbering {
	margin-left: 2em;
}
ul.notes_numbering li {
	position: relative;
	list-style: none;
	line-height: 1.6;
	margin-bottom: 10px;
	text-align: left;
}
ul.notes_numbering span.number {
	position: absolute;
	top: 0;
	left: -2.5em;
}


.about_front {
	box-sizing: border-box;
	background: #FFF;
	padding: 40px 15px 15px;
	position: relative;
	margin: 0 auto 30px;
}

.about_front p {
	line-height: 1.7;	
}
.about_front p span {
	font-weight: bold;
	color: #24467E;
}

.front_balloon {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	transform: translateY(20px);
	position: relative;
	z-index: 10;
}
.front_balloon p {
	position: relative;
	z-index: 10;
}

.front_balloon div {
	background: #FFF;
	color: #24467E;
	border: 2px solid #24467E;
	text-align: center;
	display: inline-block;
	width: 100%;
	font-size: 18px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	padding: 6px 20px;
	border-radius: 40px;
	position: relative;
	box-sizing: border-box;
	margin: 0 20px;
}
.front_balloon div:after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background: #FFF;
	transform: rotate(45deg);
	position: absolute;
	bottom: -12px;
	left: calc(50% - 20px);
	border-right: 2px solid #24467E;
	border-bottom: 2px solid #24467E;
	z-index: 1;
}


@media(max-width: 767px) {

.flow_flex {
	display: block;
	margin-bottom: 0;
}
.flow_col {
	width: 100%;
	margin: 0 auto 40px; 	
}
.flow_col h4 {
	font-size: 16px;	
}
.flow_col_caption p.ul_list {
	font-size: 13px;
}
.flow_col_caption {
	background: #FFF;
	border-left: 1px dotted #24467E;
	border-bottom: 1px dotted #24467E;
	border-right: 1px dotted #24467E;
	text-align: center;
	padding: 20px;
	min-height: inherit;
}

.flow_title1,
.flow_title2,
.flow_title3 {
	padding: 5px 10px;
	font-size: 15px;
}
.flow_col_caption h5 {
	font-size: 16px;
	margin: 0 0 30px;	
}
.ul_list_flex {
	margin: 0 0 30px;
	padding: 15px 0;
}
.flow_arrow img {
	width: 50px;	
}
.flow_title2 {
	margin: 0 0 10px;	
}
.flow_arrow {
	margin: 0 0 10px;	
}

.front_balloon div {
	min-width: inherit;
	font-size: 18px;
	padding: 6px 40px;
}

.front_balloon {
	transform: translateY(10px);
}

.front_balloon div {
	min-width: inherit;
	width: 100%;
	font-size: 18px;
	padding: 6px 40px;
	border-radius: 40px;
}
.front_balloon div:after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	transform: rotate(45deg);
	position: absolute;
	bottom: -12px;
	left: calc(50% - 20px);
}
.about_front {
	padding: 30px 15px 15px;
}

}


@media(max-width: 320px) {
.flow_col_caption {
	padding: 15px;	
}
}


/* FAQ */
.contact_inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;	
}
.contact_inner p.lead {
	text-align: center;
	margin: 0 0 40px;	
}

.contact_btn {
	max-width: 620px;
	margin: 0 auto;
	font-size: 22px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
.contact_btn a {
	display: block;
	height: 80px;
	line-height: 80px;
	text-align: center;
	border-radius: 40px;
	box-sizing: border-box;
	border: 2px solid #E5700C;
	background: #E5700C;
	color: #FFF;
	text-decoration: none;
}

.contact_btn span {
	padding-left: 60px;
	transform: translateX(-60px);
	background: url(../images/icon_mail.png) no-repeat left center;
	background-size: 40px;
}
.contact_btn a:hover {
	background: #FFF;
	color: #E5700C;
}
.contact_btn:hover span {
	background: url(../images/icon_mail_on.png) no-repeat left center;
	background-size: 40px;
}


@media(max-width: 767px) {

.contact_inner p.lead {
	margin: 0 0 20px;	
}
.contact_btn {
	font-size: 18px;
}
.contact_btn a {
	height: 50px;
	line-height: inherit;
	border-radius: 40px;
	border: 2px solid #E5700C;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.contact_btn span {
	padding-left: 40px;
	transform: translateX(0px);
	background: url(../images/icon_mail.png) no-repeat left center;
	background-size: 30px;
	display: inline-block;
}

.contact_btn:hover span {
	background: url(../images/icon_mail_on.png) no-repeat left center;
	background-size: 30px;
}

}

@media(max-width: 320px) {
.contact_btn {
	font-size: 15px;
}	
}