@charset "utf-8";
/*--京course.css--*/
/* ##########PC########## */
/*人間ドックお弁当レシピ*/
.recipe_list_box{
    margin: 2rem auto 0 auto;
    width: 52rem;
}

.recipe_list_box p{
    text-align: center;
}

.recipe_list_box ul{
    margin: 0;
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.recipe_list_box ul li{
    width: calc((100% - 1.5rem) / 2);
    padding-left: 0;
    margin-bottom: 0;
}

.recipe_list_box ul li::before{
    display: none;
}

.recipe_list_box ul li a{
    display: block;
    text-decoration: none;
}

.recipe_list_box ul li a:hover{
    color: #1a1a1a;
}

.recipe_list_box ul li a .recipe_img{
    display: block;
    border: 1px solid #ccc;
    transition: .3s all ease;
}

.recipe_list_box ul li a:hover .recipe_img{
    border: 1px solid #04838c;
}

.recipe_list_box ul li a .recipe_caption{
    display: block;
    text-align: center;
    margin-top: 0.5rem;
}

/*人間ドックギフト券*/
.pdf_link{
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pdf_link br{
    display: none;
}

.pdf_link a{
    display: block;
    text-decoration: none;
    color: #222;
}

.pdf_link a .pdf_img{
    display: block;
    text-align: center;
    border: 1px solid #ccc;
    margin-bottom: 0.5rem;
    transition: .3s all ease;
}

.pdf_link a:hover .pdf_img{
    border: 1px solid #04838c;
}

.pdf_link a .pdf_text{
    display: block;
    text-align: center;
}


/*日帰り人間ドック*/
.page_body ul.course_anc_list{
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.page_body ul.course_anc_list li{
    margin: 0;
    padding: 0;
    width: calc((100% - 1rem) / 2);
}

.page_body ul.course_anc_list li::before{
    display: none;
}

.page_body ul.course_anc_list li a{
    display: block;
    padding: 1.3rem 1.3rem 1.3rem 5rem;
    border: 3px solid #e5e5e5;
    border-radius: 1rem;
    position: relative;
    font-size: 1.2rem;
    text-decoration: none;
    color: #000;
    transition: .3s all ease;
}

.page_body ul.course_anc_list li a::before{
    content:"";
    width: 2.75rem;
    height: auto;
    aspect-ratio: 1 / 1;
    background: url(../shared/course_icon/icon_kensin_05.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 1.375rem);
    left: 1.125rem;
}

.higaeri_dock .page_body ul.course_anc_list li a::before{
    background: url(../shared/course_icon/icon_kensin_01_blue.png) no-repeat;
    background-size: contain;
}

.shukuhaku_dock .page_body ul.course_anc_list li a::before{
    background: url(../shared/course_icon/icon_kensin_02_blue.png) no-repeat;
    background-size: contain;
}

.page_body ul.course_anc_list li a::after{
    content:"";
    width: 1rem;
    height: auto;
    aspect-ratio: 1 / 1;
    background: url(../shared/icon_arrow_under.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 1.5rem;
}

.page_body ul.course_anc_list li a:hover{
    border: 3px solid #bbb;
}

/*各コース紹介*/
.kenshin_detail_wrap{
    padding: 5rem 0;
    position: relative;
}

.kenshin_detail_wrap::before{
    content:"";
    width: 100vw;
    height: 100%;
    background: #edf9f9;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1;
}

.kenshin_detail_wrap .kenshin_detail_box{
    border-radius: 1rem;
    background: #fff;
    margin-bottom: 2rem;
}

.kenshin_detail_wrap .kenshin_detail_box:last-child{
    margin-bottom: 0;
}

.kenshin_detail_wrap .kenshin_detail_box .box_header{
    border-bottom: 4px solid #e5e5e5;
    padding: 1.5rem;
}

.kenshin_detail_wrap .kenshin_detail_box .box_header h3{
    font-size: 1.7em;
    margin: 0;
    padding: 0 0 0 4.375rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.6;
    position: relative;
}

.kenshin_detail_wrap .kenshin_detail_box .box_header h3::before{
    content: "";
    width: 2.75rem;
    height: auto;
    aspect-ratio: 1 / 1;
    background: url(../shared/course_icon/icon_kensin_05.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 1.375rem);
    left: 0.5rem;
    border-bottom: none;
    bottom: unset;
}

.higaeri_dock .kenshin_detail_wrap .kenshin_detail_box .box_header h3::before{
    background: url(../shared/course_icon/icon_kensin_01.png) no-repeat;
    background-size: contain;
}

.shukuhaku_dock .kenshin_detail_wrap .kenshin_detail_box .box_header h3::before{
    background: url(../shared/course_icon/icon_kensin_02.png) no-repeat;
    background-size: contain;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner{
    padding: 2.5rem;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner p{
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner p.fc_red{
    color: #be1c49;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner h4{
    margin: 2rem 0 1rem 0;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner h4:first-child{
    margin-top: 0;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box{}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table{
    border: 1px solid #d3d3d3;
}

.shukuhaku_dock .kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table{
    width: 100%;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr th{
    box-sizing: border-box;
    font-size: 1.1rem;
    width: 37.5rem;
    padding: 0.7rem 10rem 0.7rem 1.5rem;
    border: none !important;
    background: #f5f5f5;
    position: relative;
}

.shukuhaku_dock .kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr th{
    width: auto;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr th .kenshin_time{
    color: #125a60;
    font-size: 1rem;
    padding-left: 1.5rem;
    position: absolute;
    right: 1.5rem;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr th .kenshin_time::before{
    content:"";
    width: 1rem;
    height: 1rem;
    background: url(../shared/icon_clock.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 0;
}


.kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr td{
    box-sizing: border-box;
    width: 12.5rem;
    padding: 0.7rem 1rem 0.7rem 1.5rem;
    border: none !important;
    text-align: right;
}

.shukuhaku_dock .kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr td{
    width: auto;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr td .price{
    font-size: 1.5em;
    font-weight: 500;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .kensa_list_box{
    padding: 1rem 1.5rem;
    border: 1px solid #d9d9d9;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .kensa_list_box ul{
    margin: 0;
    width: calc((100% - 1rem) / 2);
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .kensa_list_box ul li{
    padding-left: 1.3rem;
}

.kenshin_detail_wrap .kenshin_detail_box .box_inner .kensa_list_box ul li::before{
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: block;
    background: #18bebe;
    position: absolute;
    top: 0.3rem;
    left: 0;
}

/*宿泊ドック*/
.dock_outline_ttl{
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.dock_rei_box{
    /*
    background: rgba(5, 6, 7, 0.08);
    padding: 1.5em;
    border-radius: 1rem;
    */
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.dock_rei_box .box_header h4{
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
    text-align: center;
    color: #000;
    font-weight: 500;
}

.dock_rei_box .box_inner{
    margin: 0 2rem;
}

.dock_rei_box .box_inner .dock_rei_text{
    font-size: 1.1rem;
    font-weight: 500;
}

.dock_rei_box .box_inner dl{
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: flex-start;
    padding: 1rem;
    background: #fff;
    border: 1px solid #ccc;
}

.dock_rei_box .box_inner dl dt{
    width: 4em;
    font-size: 1.1rem;
    font-weight: bold;
    color: #125a60;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.dock_rei_box .box_inner dl dd{
    display: flex;
    flex: 1;
    padding-left: 1em;
}

.dock_rei_box .box_inner dl dd .text{
    flex: 1;
    padding-right: 2em;
}

.dock_rei_box .box_inner dl dd .text ul.schedule{
    font-weight: 500;
    margin: 0;
}

.dock_rei_box .box_inner dl dd .text ul.schedule > li{
    margin-bottom: 0.5em;
    padding-left: 0.8em;
    position: relative;
}

.dock_rei_box .box_inner dl dd .text ul.notes,
.dock_rei_box .box_inner dl dd .text .notes{
    font-weight: normal;
    line-height: 1.6;
    padding: 0.5em 0 0 0;
    margin-bottom: 0;
    font-size: 0.9em;
}

.dock_rei_box .box_inner dl dd .text ul.notes > li{
    padding-left: 1.3em;
    position: relative;
    margin-bottom: 0;
}

.dock_rei_box .box_inner dl dd .text ul.notes > li::before{
    content: "※";
    width: auto;
    height: auto;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
}

.dock_rei_box .box_footer p{
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
}

.welcome_msg{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 2em;
}

	.welcome_msg .fig{
		margin-top: 1em;
	}

.iryosetsububi{
	margin-bottom: 2em;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 1em;
}

	.iryosetsububi dt{
		font-weight: bold;
		margin-bottom: 0.5em;
	}

.contact_info{
	margin-bottom: 3em;
	display: flex;
	justify-content: center;
}

	.contact_info dl{
		display: flex;
		flex-direction: column;
		align-items: center;
		background: rgba(247,69,119,0.1);
		padding: 1em;
		border-radius: 1rem;
		font-weight: bold;
		text-align: center;
	}

		.contact_info dl dt{
			color: rgba(247,69,119,1);
			font-size: 1.2em;
			margin-bottom: 0.5em;
		}

		.contact_info dl dd{
			font-size: 1.05em;
			line-height: 1.8;
			background: #fff;
			color: #222;
			padding: 1em 3em;
			border-radius: 0.5rem;
		}

.dock_course_box{}

	.dock_course_box > .box_header{
		display: flex;
		justify-content: center;
		margin-bottom: 1em;
	}

	.dock_course_box > .box_header h4{
		margin: 0;
		font-size: 1.2em !important;
		border-bottom: 2px solid #008bdc;
        color: #000;
	}

	.dock_course_box > .box_inner p{
		padding: 0;
		line-height: 1.6;
	}

	.dock_course_box > .box_inner .shukuhaku_course_list{
		counter-reset: course_no 0;
		margin-bottom: 3em;
	}

	.dock_course_box > .box_inner .shukuhaku_course_list > li{
		margin-bottom: 1.8em;
		padding-bottom: 1em;
		counter-increment: course_no 1;
		border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-left: 0;
	}

    .dock_course_box > .box_inner .shukuhaku_course_list > li::before{
        display: none;
    }

	.dock_course_box > .box_inner .shukuhaku_course_list > li:last-child{
		margin-bottom: 0;
	}

		.dock_course_box > .box_inner .shukuhaku_course_list > li h5{
			position: relative;
			padding-left: 1.8em;
			font-size: 1.15em;
			margin-bottom: 0.5em;
			font-weight: bold;
			color: #222;
		}

			.dock_course_box > .box_inner .shukuhaku_course_list > li h5::before{
				box-sizing: border-box;
				content: counter(course_no);
				display: inline-flex;
				justify-content: center;
				align-items: center;
				position: absolute;
				top: 0;
				left: 0;
				width: 1.375rem;
				height: 1.375rem;
				padding-top: 0.2em;
				line-height: 1;
				background: #05b4b4;
				border-radius: 50%;
				color: #fff;
				font-size: 0.9em;
			}

        .dock_course_box > .box_inner p.price_info{
			margin-bottom: 0.6em;
			font-weight: bold;
			background: rgba(251,238,217,0.5);
			padding: 0.2em 0.7em 0;
			color: #222;
		}

		.dock_course_box > .box_inner ul li p:last-child{
			margin-bottom: 0;
		}

		.shinrin_imgs_leaflet{
			display: flex;
            justify-content: center;
            gap: 3rem;
			margin: 1.5em 0 0.5em;
		}

			.shinrin_imgs{
                width: 34.375rem;
			}

				.shinrin_imgs img{
					max-width: 100%;
					height: auto;
					vertical-align: middle;
				}

				.page_body .shinrin_imgs ul{
					display: flex;
					flex-wrap: wrap;
					gap: 1rem 1.5rem;
					justify-content: center;
				}

                .page_body .shinrin_imgs ul li{
                    padding-left: 0;
                }

                .page_body .shinrin_imgs ul li::before{
                    display: none;
                }

			.leaflet_shinrin_shukuhaku_dock{}

				.leaflet_shinrin_shukuhaku_dock a{
					display: flex;
					flex-direction: column;
					align-items: center;
					font-weight: bold;
				}

					.leaflet_shinrin_shukuhaku_dock a .fig{
						border: 1px solid #ccc;
						margin-bottom: 0.5em;
						box-shadow: 3px 3px 0 0 rgba(0,0,0,0.1);
						transition: .3s all ease;
					}

					.leaflet_shinrin_shukuhaku_dock a:hover .fig{
						border-color: #3a4f7a;
						filter: brightness(1.1);
					}

        .shinrin_fig_list{
            width: 48rem;
            margin: 0 auto 2.5rem auto;
        }

        .page_body .shinrin_fig_list ul{
            margin: 0;
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .page_body .shinrin_fig_list ul li{
            width: 15rem;
            padding-left: 0;
            margin: 0;
        }

        .page_body .shinrin_fig_list ul li:before{
            display: none;
        }

		.taiken_menu{}

			.taiken_menu h6{
				position: relative;
				display: flex;
				justify-content: center;
				font-size: 1.1em;
				font-weight: bold;
				color: #222;
				margin-bottom: 1em;
			}

			.taiken_menu h6::before{
				content: "";
				display: block;
				width: 100%;
				border-bottom: 1px dotted #ccc;
				position: absolute;
				top: 0.5em;
				left: 0;
				z-index: 0;
			}

			.taiken_menu h6 .lbl{
				background: #fff;
				padding: 0 1em;
				position: relative;
				z-index: 1;
			}

		.taiken_menu ul{
			display: flex;
			gap: 1rem;
		}

		.page_body .taiken_menu ul li{
			width: calc((100% - 2rem) / 3);
            padding-left: 0;
		}

        .page_body .taiken_menu ul li::before{
            display: none;
        }

		.taiken_menu ul li .fig{
			text-align: center;
			margin-bottom: 0.7em;
		}

		.taiken_menu ul li dl dt{
			font-weight: bold;
			font-size: 1.02em;
			text-align: center;
			margin-bottom: 0.3em;
		}

		.taiken_menu ul li dl dd .price_notes{
			font-size: 0.86em;
			margin-bottom: 0 !important;
			line-height: 1.3 !important;
			padding: 0.5em 0.5em 0 0.5em !important;
			border-top: 1px dotted #ccc;
		}

	.taiken_notes li{
		position: relative;
		padding-left: 1.3em;
		margin-bottom: 0.3em;
	}

	.taiken_notes li::before{
		content: "※";
		position: absolute;
		top: 0;
		left: 0;
	}

	.end_msg{
		margin-top: 3em;
	}

.fig_list{
    margin-top: 2.5rem;
}

.page_body .fig_list ul{
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.page_body .fig_list ul li{
    width: 18.75rem;
    padding-left: 0;
    margin: 0;
}

/*平日午後脳ドック*/
.nou_dock_pm_time_price {
	color: #ac0000;
	font-weight: bold;
	display: flex;
	justify-content: center;
	margin: 1em 0;
}

.nou_dock_pm_time_price dl {
	display: flex;
	background: rgba(247, 69, 119, 0.08);
	padding: 1em 2em;
}

.nou_dock_pm_time_price dl dt::after {
	content: "…";
	margin-left: 0.3em;
}

.nou_dock_pm_time_price dl dd {
	padding-left: 1em;
}

.nou_dock_pm_time_price dl dd .strike {
	text-decoration: line-through;
}

.nou_dock_pm_leaflet {
	display: flex;
	justify-content: center;
}

.page_body .nou_dock_pm_leaflet a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #111;
}

.nou_dock_pm_leaflet a .lbl {
	margin-bottom: 0.5em;
}

.nou_dock_pm_leaflet a .fig {
	width: 220px;
	padding: 0.5em;
	border: 1px solid #ccc;
	transition: .3s all ease;
}

.nou_dock_pm_leaflet a:hover .fig {
	border-color: #008bdc;
}

.nou_dock_pm_leaflet a .fig img {
	max-width: 100%;
	height: auto;
}

/*協会けんぽ*/
.kyokaikenpo_list {
	overflow: hidden;
	margin: 0 0 3rem 0;
    display: flex;
    justify-content: flex-start;
}

.kyokaikenpo_box {
	margin: 0 1.25rem;
	width: 15rem;
	text-align: center;
}

.kyokaikenpo_box p{
    line-height: 1.5;
}

.kyokaikenpo_box p a{
    text-decoration: none;
    color: #000;
}

.kyokaikenpo_img a img {
    transition: .3s all ease;
	border: 1px solid #ccc;
}

.kyokaikenpo_img a:hover img{
    border-color: #008bdc;
}

.kenpo_flow{
    margin-top: 3rem;
}

/*共通*/
.w_max_table{
    width: 100%;
}

.w_max_table tr td.price{
    text-align: right;
}


@media screen and (min-width:1px) and (max-width:1400px) {
}

@media screen and (min-width:1px) and (max-width:1280px) {

}

@media screen and (min-width:1px) and (max-width:1200px) {

}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    .recipe_list_box{
        margin: 2rem auto 0 auto;
        width: 100%;
    }



}
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:575px) {
    .page_body ul.course_anc_list{
        gap: 0.7rem;
    }

    .page_body ul.course_anc_list li{
        width: 100%;
    }

    .page_body ul.course_anc_list li a{
        padding: 1rem 1rem 1rem 3rem;
        border: 2px solid #e5e5e5;
        line-height: 1.3;
        font-size: 1.1rem;
    }

    .page_body ul.course_anc_list li a:hover{
        border: 2px solid #bbb;
    }

    .page_body ul.course_anc_list li a::before{
        width: 2.2rem;
        top: calc(50% - 1.1rem);
        left: 0.5rem;
    }

    .page_body ul.course_anc_list li a::after{
        right: 0.5rem;
    }

    .kenshin_detail_wrap{
        padding: 10vw 0;
    }

    .kenshin_detail_wrap .kenshin_detail_box .box_header{
        padding: 1rem;
    }

    .kenshin_detail_wrap .kenshin_detail_box .box_header h3{
        font-size: 1.3em;
        padding: 0 0 0 3.375rem;
    }

    .kenshin_detail_wrap .kenshin_detail_box .box_header h3::before{
        width: 2.2rem;
        top: calc(50% - 1.1rem);
        left: 0.3rem;
    }

    .kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr th{
        width: 60%;
        padding: 0.7rem 1rem;
    }

    .kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr th .kenshin_ttl{
        display: block;
    }

    .kenshin_detail_wrap .kenshin_detail_box .box_inner .price_box table tr th .kenshin_time{
        display: block;
        position: relative;
        right: unset;
    }

    .kenshin_detail_wrap .kenshin_detail_box .box_inner{
        padding: 1.5rem;
    }

    .kenshin_detail_wrap .kenshin_detail_box .box_inner .kensa_list_box{
        flex-direction: column;
        gap: 0;
    }

    .kenshin_detail_wrap .kenshin_detail_box .box_inner .kensa_list_box ul{
        width: 100%;
    }

    /*宿泊ドック*/
    .dock_rei_box{
        padding: 1.5rem 0 ;
    }

    .dock_rei_box .box_inner{
        margin: 0 1rem;
    }

    .dock_rei_box .box_inner dl dd{
        flex-direction: column;
    }

    .dock_rei_box .box_inner dl dd .text{
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .shinrin_imgs_leaflet{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .shinrin_imgs{
        width: auto;
    }

    .taiken_menu ul{
        flex-direction: column;
        gap: 2rem;
    }

    .page_body .taiken_menu ul li{
        width: 100%;
    }

    .page_body .fig_list ul{
        margin: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .page_body .fig_list ul li{
        width: 18.75rem;
        padding-left: 0;
        margin: 0 auto;
    }

    .shinrin_fig_list{
        width: auto;
        margin-top: 2rem;
    }

    .page_body .shinrin_fig_list ul{
        gap: 1rem;
        flex-wrap: wrap;
    }

    .page_body .shinrin_fig_list ul li{
        width: calc((100% - 1rem) / 2);
    }

    /*協会けんぽ*/

    .kyokaikenpo_list {
        display: flex;
        justify-content: flex-start;
        gap: 1rem;
    }

    .kyokaikenpo_box {
        margin: 0;
        width: calc((100% - 1rem) / 2);
    }

    .kyokaikenpo_box p a{
        font-size: 0.9em;
        white-space: nowrap;
    }

    .kyokaikenpo_box .kyokaikenpo_img a{
        display: block;
        transition: .3s all ease;
        border: 1px solid #ccc;
    }

    .kyokaikenpo_box .kyokaikenpo_img a:hover{
        border-color: #008bdc;
    }

    .kyokaikenpo_box .kyokaikenpo_img a img{
        border:none;
    }

    .recipe_list_box ul{
        margin: 0;
        flex-direction: column;
        align-items: center;
    }

    .recipe_list_box ul li{
        width: 70vw;
    }

}


/* ##########印刷用########## */
@media print{
    .column_wrapper{
        width: calc(100% - 4vw);
    }
}