@charset "UTF-8";

/* -----------------------------------------------------------
	flow_wrap
----------------------------------------------------------- */
.flow_wrap {
	max-width: 1450px;
	margin: 0 auto 60px;
	padding: 50px 0;
	position: relative;
}
.flow_wrap .inner {
	max-width: 1250px;
	min-height: 400px;
	margin-right: 0;
	margin-left: auto;
	padding: 40px 0 90px;
	background: #f0f0f0;
	border-radius: 18px 0 0 18px;
	position: relative;
}
.flow_wrap .inner::before {
	display: block;
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    left: auto;
    width: 50px;
    height: 100%;
	background: #f0f0f0;
	border-radius: 0 18px 18px 0;
}
.flow_wrap .text_box {
	display: flex;
	gap: 30px;
}
.flow_wrap .text_box .ttl {
	display: flex;
	justify-content: center;
    align-items: center;
	font-weight: 700;
	color: #004f97;
	white-space: nowrap;
	padding: 0 30px;
	height: 60px;
	background: #fff;
	border-radius: 0 10px 10px 0;
}
.flow_wrap .text_box .ttl .primary {
	font-size: 27px;
	line-height: 1;
	letter-spacing: 0.03em;
	padding: 0 4px;
	position: relative;
	z-index: 1;
}
.flow_wrap .text_box .ttl .primary::before {
	display: block;
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 12px;
	background: #fff000;
	z-index: -1;
}
.flow_wrap .text_box .text {
	font-size: 16px;
	line-height: 2;
	padding-right: 20px;
}

.flow_wrap .flow_wrap_list {
	max-width: 900px;
	width: 90%;
	margin: 55px auto 0;
	border-radius: 18px;
	padding: 70px 0 100px;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px 0px;
	background-color: #fff;
	background-image: url("../../img/bg_diagonal.svg");
	background-position: left top;
	background-repeat: repeat;
	background-size: 100%;
}
.flow_wrap .flow_wrap_list .list {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	max-width: 340px;
	margin: 0 auto;
	gap: 74px;
	z-index: 1;
	position: relative;
}
.flow_wrap .flow_wrap_list .flow_wrap_list_inner {
	position: relative;
}
.flow_wrap .flow_wrap_list .list li {
	width: 100%;
	display: flex;
	align-items: center;
    justify-content: center;
	position: relative;
	height: 60px;
	background: #0d76b5;
	border-radius: 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}
.flow_wrap .flow_wrap_list .list li::after {
	content: '';
    display: inline-block;
    position: absolute;
    bottom: -67px;
    left: 50%;
	width: 38px;
	height: 58px;
	background-image: url("../img/flow_arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translateX(-50%);
}
.flow_wrap .flow_wrap_list .list li .inbox {
	width: 100%;
	display: flex;
	align-items: center;
    justify-content: center;
	position: relative;
}
.flow_wrap .flow_wrap_list .list li .flow_icon {
	width: 48px;
	position: absolute;
    top: 50%;
    left: 10px;
	transform: translateY(-50%);
}
.flow_wrap .flow_wrap_list .list li:last-child {
	background: #fff000;
	color: #0d76b5;
	border: 1px solid #0d76b5;
}
.flow_wrap .flow_wrap_list .list li:last-child::after {
	display: none;
}
.flow_wrap .flow_wrap_list .list li:last-child::before {
	display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -3px;
    right: -3px;
    background: #0d76b5;
    border-radius: 10px;
    z-index: -1;
}
.flow_wrap .flow_wrap_list .list li .trag_btn {
	position: absolute;
	bottom: -36px;
    right: -64px;
	width: 123px;
    height: 43px;
}
.flow_wrap .flow_wrap_list .list li .trag_btn._exc {
	bottom: -82px;
}
.flow_wrap .flow_wrap_list .list li .trag_btn a {
	display: flex;
	width: 100%;
	height: 100%;
    justify-content: center;
    align-items: center;
    color: #004f97;
    font-size: 16px;
    font-weight: 700;
    background: #fff000;
    border-radius: 0 100px 100px 100px;
}
.flow_wrap .flow_wrap_list .list li .trag_btn a:hover {
	opacity: .7;
}
.flow_wrap .flow_wrap_list .note {
	position: absolute;
	top: 28px;
    left: 60px;
	width: 14em;
	padding: 23px 0;
}
.flow_wrap .flow_wrap_list .note::before {
	display: block;
    content: '';
    position: absolute;
    width: 119px;
    height: 14px;
    top: 0;
	right: 10px;
    background-image: url("../img/flow_line.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.flow_wrap .flow_wrap_list .note::after {
	display: block;
    content: '';
    position: absolute;
    width: 119px;
    height: 14px;
    bottom: 0;
	right: 10px;
    background-image: url("../img/flow_line.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: scale(1, -1);
}
.flow_wrap .flow_wrap_list .note .text {
	line-height: 2;
	letter-spacing: 0;
}

.flow_wrap_list .tab_traget_item {
	display: none;
}
.flow_wrap_list .tab_traget_item.active {
	display: block;
	animation: appear 1.5s ease;
}
@keyframes appear {
  0%{
	opacity: 0;
  }
  100%{
	opacity: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 1400px) {
.flow_wrap {
	margin-left: 8%;
}
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
.flow_wrap .flow_wrap_list ._newgraduates  .list li:nth-child(1)::after {
	bottom: -84px;
}
.flow_wrap .flow_wrap_list ._newgraduates .list li:nth-child(1) {
	margin-bottom: 40px;
}
.flow_wrap .flow_wrap_list .note {
	padding: 43px 0;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
.flow_wrap .text_box {
	gap:20px;
	flex-wrap: wrap;
}
.flow_wrap .text_box .ttl .primary {
	font-size: 23px;
}
.flow_wrap .text_box .text {
	margin-left: 35px;
}
.flow_wrap .flow_wrap_list .note {
	left: 20px;
}
}
}
@media screen and (max-width: 767px) {
.flow_wrap {
	padding: 40px 0 0;
	margin-bottom: 70px;
}
.flow_wrap .inner {
	margin-left: 8%;
	padding: 40px 0 40px;
}
.flow_wrap .text_box {
	gap:20px;
	flex-wrap: wrap;
}
.flow_wrap .text_box .ttl {
	height: 45px;
	padding: 0 20px;
}
.flow_wrap .text_box .ttl .primary {
	font-size: 17px;
}
.flow_wrap .text_box .text {
	margin-left: 35px;
	font-size: 14px;
	line-height: 1.8;
	padding: 0 20px;
	margin: 0;
}
.flow_wrap .flow_wrap_list {
	padding: 30px 0 80px;
	margin: 30px auto 0;
}
.flow_wrap .flow_wrap_list .list {
	gap: 40px;
}
.flow_wrap .flow_wrap_list .list li {
	font-size: 14px;
	height: 45px;
	max-width: 210px;
}
.flow_wrap .flow_wrap_list ._newgraduates .list li:nth-child(1) {
	margin-bottom: 40px;
}
.flow_wrap .flow_wrap_list .list li::after {
	bottom: -35px;
    width: 20px;
    height: 30px;
}
.flow_wrap .flow_wrap_list ._newgraduates .list li:nth-child(1)::after {
	bottom: -52px;
}
.flow_wrap .flow_wrap_list .list li .flow_icon {
	width: 32px;
}
.flow_wrap .flow_wrap_list .note {
	width: 8.5em;
	top: 22px;
	left: auto;
	right: calc(50% + 25px);
	padding: 30px 0;
}
.flow_wrap .flow_wrap_list .note::before,
.flow_wrap .flow_wrap_list .note::after {
	width: 100px;
}
.flow_wrap .flow_wrap_list .note br {
	display: none;
}
.flow_wrap .flow_wrap_list .note .text {
	font-size: 12px;
	line-height: 1.3;
}
.flow_wrap .flow_wrap_list .list li .trag_btn {
	bottom: -36px;
    right: -44px;
    width: 100px;
    height: 32px;
}
.flow_wrap .flow_wrap_list .list li .trag_btn._exc {
	bottom: -60px;
}
.flow_wrap .flow_wrap_list .list li .trag_btn a {
	font-size: 14px;
}
}



/* -----------------------------------------------------------
	modal_wrap
----------------------------------------------------------- */
.modal_wrap  {
	display: none;
}
.flow_modal {
	width: 90%;
	max-width: 600px;
	padding: 25px 25px;
	overflow: initial;
	border-radius: 12px;
}
.flow_modal .pic {
	border-radius: 8px;
	overflow: hidden;
	margin: 0 auto 20px;
	position: relative;
}
#modal_01 .pic {
	max-width: 525px;
}
#modal_03 .pic {
	max-width: 450px;
}
.flow_modal .pic .note {
	color: #fff;
	font-weight: 500;
	position: absolute;
	top: 10px;
	left: 15px;
}
.flow_modal .text_box {
	
}
.flow_modal .text_box .ttl {
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
}
.flow_modal .text_box .text {
	line-height: 2;
}
.flow_modal .fancybox-close-small {
	width: 46px;
	height: 46px;
	padding: 0;
	background: #fff;
	border-radius: 100%;
	right: -20px;
	top: -20px;
	opacity: 1;
}
.flow_modal .fancybox-button svg path {
	fill: #0d76b5;
}
.ty_2 {
	max-width: 450px;
	margin: 0 auto 20px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {

}
@media screen and (max-width: 767px) {
.field_wrap .fancybox-close-small {
	width: 32px;
	height: 32px;
	right: -10px;
	top: -10px;
}
.flow_modal {
	padding: 15px;
}
.fancybox-slide--html {
	padding: 20px;
}
.flow_modal .text_box .ttl {
	font-size: 15px;
}
}
