@charset "utf-8";

.gbckl_followup_sec {
	margin-top: 60px;
	padding: 48px;
	background: #fff;
}

.followup_intro {
	display: grid;
	gap: 24px;
	align-items: stretch;
	margin-bottom: 32px;
	grid-template-columns: 1fr;
}

.followup_intro_text {
	padding: 8px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.followup_label {
	display: inline-block;
	margin-bottom: 14px;
	padding: 0;
	background: none;
	color: #ec671f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.followup_intro_text h2 {
	position: relative;
	margin: 0;
	padding-top: 18px;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: #222;
	text-align: center;
}

.followup_intro_text h2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 56px;
	height: 2px;
	background: #ec671f;
	transform: translateX(-50%);
}

.followup_intro_text h2 span {
	color: #ec671f;
	word-break: keep-all;
}

.followup_intro_text p {
	margin: 16px 0 0;
	font-size: 17px;
	line-height: 1.7;
	color: #666;
}

.followup_intro_meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}

.meta_box {
	padding: 22px;
	background: #fff;
	border: 1px solid #e8e8e8;
}

.meta_title {
	display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #666;
    background: #fdf0e8;
    padding: 5px 10px 2px;
    border-radius: 0 16px 0 0;
	position: relative;
}
.meta_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 42px;
    height: 2px;
    background: #ec671f;
}

.meta_box strong {
	display: block;
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: -0.03em;
	padding-left: 6px; 
	color: #222;
}

.meta_box p {
	margin: 8px 0 0 4px;
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

.followup_info_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	margin-bottom: 28px;
}

.info_box {
	padding: 28px;
	background: #fff;
	border: 1px solid #e8e8e8;
}
/* .info_box.point_box { border: 4px solid #ec671f; padding: 22px; } */
.info_box.point_box ul li { color: #222; }

.info_box h3 {
	position: relative;
	margin: 0 0 16px;
	padding: 8px 10px 3px;
    border-radius: 0 25px 0 0;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.4;
	color: #222;
	border-bottom: 1px solid #ececec;
	background: #fdf0e8;
}

.common_meta_title {
	position: relative;
	margin: 0 0 16px;
	padding: 8px 10px 3px;
    border-radius: 0 25px 0 0;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.4;
	color: #222;
	border-bottom: 1px solid #ececec;
	background: #fdf0e8;
}

.info_box h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 42px;
	height: 2px;
	background: #ec671f;
}

.info_box p {
	font-size: 19px;
	line-height: 1.7;
	color: #444;
}
.info_box li {
	font-size: 18px;
	line-height: 1.7;
	color: #444;
}

.info_box ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.info_box li {
	position: relative;
	padding-left: 25px;
	margin-top: 3px;
}

.info_box li::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 11px;
	width: 6px;
	height: 6px;
	background: #ec671f;
}

.followup_process {
    padding: 32px 0;
    margin-bottom: 45px;
    padding-bottom: 50px;
    border-bottom: 1.5px solid #ddd;
}

.process_title {
    position: relative;
    margin-bottom: 32px;
    padding: 13px 0 6px;
    font-size: 28px;
    text-align: center;
    font-weight: 800;
    color: #fff;
    background: #ff983c;
    border-radius: 0 30px 0 0;
    border-bottom: 1px solid #ececec;
}

.process_title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 42px;
	height: 2px;
	background: #ec671f;
	display: none;
}

.process_steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.p_step {
	padding: 18px 14px;
	background: #fff;
	/* border: 1px solid #e3e3e3; */
	text-align: center;
	transition: border-color 0.2s ease, transform 0.2s ease;
	display: flex; 
	flex-direction: column;
    align-items: center;
	border-radius: 20px; 
	background: #f7ece4;
    border: 3px solid #ec671f;
}

.p_step:hover {
	border-color: #ec671f;
	transform: translateY(-2px);
}

.p_step span {
	border-bottom: 1px solid #ddd;
	display: inline-block;
	margin-bottom: 5px;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: #999;
}

.p_step p {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
	color: #222;
	word-break: keep-all;
}
.p_step .icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    /* border: 1px solid #ead7ac; */
    /* box-shadow: 0 8px 18px rgba(31, 47, 74, 0.06); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.p_step .icon img {
	height: 70px;
}

.followup_schedule {
    padding: 35px 38px 40px;
    background: #f6f6f6;
	border-radius: 20px;
	position: relative;
    z-index: 1;
}

.schedule_title {
    position: relative;
    margin-bottom: 18px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #222;
    border-bottom: 1px solid #ddd;
    flex-basis: auto;
	text-align: center;
}

.schedule_title::after {
	display: none;
	content: "";
	position: absolute;
	left: 50%;
    transform: translateX(-50%);
	bottom: -1px;
	width: 42px;
	height: 2px;
	background: #ec671f;
}

.schedule_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.schedule_item {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
	border-left: 2px solid #777;
}

.schedule_item b {
	display: block;
	margin-bottom: 6px;
	font-size: 18px;
	font-weight: 800;
	color: #ec671f;

/* 	display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 800;
    color: #ec671f;
    background: #fbf6f4;
    padding: 6px 0 2px; */
}

.schedule_item p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
	color: #444;
}

.highlight {
	color: #ec671f;
	font-weight: 700;
}

@media screen and (max-width: 1024px) {
	.schedule_list,
	.process_steps {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 768px) {
	
	.process_title { font-size: 24px; padding: 11px 0 5px; }
	.p_step { padding: 14px 14px 12px; }
	.followup_process { }
	.p_step .icon img { height: 60px; }
	.gbckl_followup_sec {
		padding: 0;
	}

	.followup_intro,
	.followup_info_grid,
	.schedule_list,
	.process_steps,
	.followup_intro_meta {
		grid-template-columns: 1fr;
	}

	.followup_intro_text h2 {
		font-size: 30px;
		padding-top: 14px;
	}

	.followup_intro_text h2::before {
		width: 42px;
	}
	.meta_title { text-align: center; }
	.meta_box strong {
		font-size: 22px;
		text-align: center;
		padding-left: 0; 
	}
	.meta_box p { margin: 3px 0 0 0; text-align: center; }
	.info_box h3 { text-align: center; margin: 0 0 10px; }
	.info_box p { text-align: center; }
	.info_box h3::after { left: 50%; transform: translateX(-50%); }
	.info_box li { text-align: center; padding-left: 0; }
	/* .info_box.point_box { border: 3px solid #ec671f } */
	.common_meta_title { text-align: center; margin: 0 0 10px; }
	.meta_title::after {
        left: 50%;
        transform: translateX(-50%);
    }
	.process_title::after { display: none; }
}
@media screen and (max-width: 578px) {
	 .followup_schedule { padding: 35px 18px 40px; }
	 .info_box h3 { font-size: 18px; }
	 .info_box li { font-size: 16px; }
	 .info_box p { font-size: 16px; }
	 .info_box li::before { left: -10px; }
	 .process_title { font-size: 22px; }
	 .info_box { padding: 18px; }
	 .meta_box strong { font-size: 20px; }
	 .followup_intro_text h2 { font-size: 26px; }
	 .followup_intro_text p { font-size: 15px; }
	 .common_meta_title { font-size: 18px; }
}