@charset "utf-8";


/* メインビジュアル全体 */
.oc-mainvisual {
	width: 100%;
	background-color: #fff;
	overflow: hidden;
}

.oc-main-container {
	display: flex;
	align-items: stretch;
	width: 100%;
}

/* タイトルエリア（左側） */
.oc-title-area {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px; /* PCでの高さ確保 */
}

.oc-bg-picture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.oc-bg-picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.oc-title-img {
	position: relative;
	z-index: 2;
	width: 80%; /* コンテナ内でのタイトルの大きさ */
	max-width: 500px;
}

.oc-title-img img {
	width: 100%;
	height: auto;
}

/* 人物エリア（右側） */
.oc-person-area {
	flex: 1;
}

.oc-person-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}






/* スライダー全体のコンテナ */
.oc-infinite-slider {
	width: 100%;
	overflow: hidden;
	padding: 80px 0;
}

/* 横に並ぶトラック */
.oc-slider-track {
	display: flex;
	/* 1枚 20vw × 20枚 = 400vw */
	width: max-content; 
	/* linear（等速）で 60秒かけてゆっくり流す */
	animation: infinite-scroll 60s linear infinite;
}

/* 各スライドアイテム */
.oc-slide-item {
	width: 20vw;
	flex-shrink: 0;
	padding: 0 10px;
	box-sizing: border-box;
}

.oc-slide-item img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

/* 上下にずらす処理 */
.offset-up { transform: translateY(-30px); }
.offset-down { transform: translateY(30px); }

/* アニメーション定義 */
@keyframes infinite-scroll {
		0% { transform: translateX(0); }
		/* 10枚分(20vw * 10 = 200vw)移動した瞬間に0に戻す */
		100% { transform: translateX(-200vw); }
}






.oc-features {
	padding: 100px 0;
	background-color: #fff;
}

.oc-features header {
	text-align: center;
	margin-bottom: 50px;
}

.oc-features header div {
	width: 100px;
	margin: 0 auto 15px;
}

.oc-features header h2 {
	font-size: var(--fz-28);
	font-weight: var(--fw-bold);
	line-height: 1.4;
}

.oc-features__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.oc-features__grid article {
	text-align: center;
}


.oc-features__grid article .num {
	width: 60px;
	margin: 0 auto 10px;
}

.oc-features__grid h3 {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	margin-bottom: 20px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.oc-features__grid article figure {
	width: 100%;
	margin: 0 0 25px 0;
}

.oc-features__grid figure img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.oc-features__grid p {
	font-size: var(--fz-16);
	line-height: 1.8;
	text-align: justify;
}

/* 下部アドバイスバナー */
.oc-features dl {
	display: flex;
	border: 2px solid var(--color-org);
	border-radius: 10px;
	overflow: hidden;
}

.oc-features dt {
	background: var(--color-org);
	color: var(--color-wh);
	width: 30%;
	padding: 20px 30px;
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.oc-features dd {
	width: 70%;
	padding: 20px 30px;
	font-size: var(--fz-16);
	line-height: 1.8;
	display: flex;
	align-items: center;
}







.oc-program {
	padding: 80px 0;
}
.oc-program ol {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.oc-program .oc-accordion {
	background: var(--color-org);
	color: var(--color-wh);
	padding: 15px 30px;
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}

.oc-program .oc-accordion span {
	background: var(--color-wh);
	color: var(--color-org);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
	font-size: var(--fz-28);
	font-weight: var(--fw-bold);
}

.oc-program .oc-accordion::after {
	content: "";
	width: 14px;
	height: 14px;
	border-right: 2px solid var(--color-wh);
	border-bottom: 2px solid var(--color-wh);
	transform: translateY(-50%) rotate(45deg);
	position: absolute;
	right: 40px;
	top: 50%;
	transition: all 0.3s;
	flex-shrink: 0;
}

.oc-program .oc-accordion.is-open::after {
	border-right-color: transparent;
	transform: translateY(-50%) rotate(0deg);
	margin-top: 0;
}
.oc-program .oc-accordion__content {
	background: var(--color-beg3);
	height: 0;
	overflow: hidden;
	transition: height 0.3s ease;
}
.oc-program .oc-accordion__content .inner {
	padding: 15px;
}

.oc-program .oc-accordion__content p {
	font-size: var(--fz-16);
	line-height: 1.8;
	padding-bottom: 0;
}






.oc-voice {
	padding: 80px 0;
}

/* カード全体のスタイル */
.voice-card {
	background: var(--color-beg3);
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
	mask-image: radial-gradient(white, black);
}

.voice-card header {
	background: var(--color-org);
	text-align: center;
	padding: 10px 0;
	letter-spacing: 0.1em;
	position: relative;
}
.voice-card header img {
	width: 55px;
}

.voice-card header::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--color-org);
}

.voice-card .vbody {
	padding: 20px;
	flex: 1;
}

.voice-card .vbody p {
	font-size: var(--fz-16);
	font-weight: var(--fw-medium);
	line-height: 1.6;
	padding-bottom: 0;
}

#voice-splide .splide__arrow svg {
	display: none;
}

/* 2. 矢印共通設定 */
#voice-splide .splide__arrow {
	position: absolute;
	top: 50%; /* 上から50%の位置 */
	transform: translateY(-50%);
	width: 45px !important;
	height: 45px !important;
	background-color: transparent;
	border: none;
	z-index: 10;
}

#voice-splide .splide__arrow--next {
	background-image: url('../../images/common/arrow_next2.svg');
	right: 15px;
}

#voice-splide .splide__arrow--prev {
	background-image: url('../../images/common/arrow_prev2.svg');
	left: 15px;
}










.oc-qa {
	margin: 80px 0 200px;
}







/* アクセスセクション */
.oc-access {
	width: 100%;
	line-height: 0; /* iframe下の謎の隙間を消す */
	margin-top: 80px;
}

.oc-access iframe {
	width: 100% !important; /* ブラウザ幅いっぱい */
	height: 400px;         /* 高さを400に固定 */
	display: block;        /* inlineブロックの隙間を排除 */
	filter: grayscale(20%); /* サイトの雰囲気に合わせて少し色味を抑える（不要なら削除） */
}







.stitle h2 {
	border-top: 1px solid var(--color-bk);
	padding-top: 40px;
	font-size: var(--fz-28);
	font-weight: var(--fw-bold);
	display: flex;
	align-items: center;
}
.stitle img {
	width: auto;
	height: 26px;
	margin-right: 10px;
}









.c-kobetsu {
	padding: 60px 20px 0;
	text-align: center;
}

.c-kobetsu .c-kobetsu__inner {
	position: relative;
	max-width: calc(var(--base-width) * 1px + (var(--fs20-val) * 2px));
	width: 100%;
	padding: 0 var(--sp-20);
	margin: 0 auto;
}

/* バッジの配置（PC） */
.c-kobetsu .c-kobetsu__badge {
	position: absolute;
	top: -20px;
	right: 50px;
	width: 120px;
}

.c-kobetsu h3 {
	font-size: var(--fz-28);
	font-weight: var(--fw-bold);
	line-height: 1.8;
	margin-bottom: 40px;
}

.c-kobetsu .c-kobetsu__lead {
	font-size: var(--fz-28);
	font-weight: var(--fw-bold);
	margin-bottom: 40px;
}
.c-kobetsu .c-kobetsu__lead span {
	color: var(--color-org);
}

.c-kobetsu__text {
	font-size: var(--fz-16);
	font-weight: var(--fw-bold);
}

.c-kobetsu__text strong {
	color: var(--color-org);
	font-size: var(--fz-28);
}


.c-kobetsu__contact {
	position: relative;
	margin-top: 40px;
	padding: 50px 0 55px;
	text-align: center;
	border-top: 1px solid var(--color-bk);
	border-bottom: 1px solid var(--color-bk);
}

.c-kobetsu__contact .badge {
	position: absolute;
	top: 50%;
	left: 15%;
	transform: translate(-50%, -50%); 
	width: min(140px, 15vw);
	z-index: 10;
}
.c-kobetsu__contact .badge img {
	width: 100%;
}
.c-kobetsu__contact-label {
	font-weight: var(--fw-bold);
	font-size: var(--fz-28);
	padding-bottom: 0;
}

.c-kobetsu__school-name {
	color: var(--color-org);
	font-weight: var(--fw-bold);
	font-size: var(--fz-28);
	margin-top: 5px;
	padding-bottom: 0;
}

.c-kobetsu__contact a {
	font-size: 8.8rem;
	color: var(--color-org);
	font-weight: var(--fw-bold);
	text-decoration: none;
	line-height: .8;
}

.c-kobetsu__time {
	display: inline-block;
	border: 1px solid var(--color-org);
	padding: 2px 20px;
	margin-top: 10px;
	font-weight: var(--fw-bold);
	font-size: var(--fz-28);
}

.c-kobetsu__online {
	position: relative;
	padding: 80px 0;
	text-align: center;
}
.c-kobetsu__online a {
	max-width: 500px;
	width: 100%;
	background: var(--color-org);
	color: var(--color-wh);
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	padding: 10px;
	border-radius: 10px;
	text-decoration: none;
	display: inline-block;
}
.c-kobetsu__online .badge {
	position: absolute;
	top: 50%;
	left: 15%;
	transform: translate(-50%, -50%); 
	width: min(140px, 15vw);
	z-index: 10;
}
.c-kobetsu__online .badge img {
	width: 100%;
}





/* 職場見学会セクション全体 */
#hospital {
	background: #ffef66 url('../../images/opencampus/wave.webp') no-repeat center;
	background-size: 100% 100%;
	padding: 100px 0 120px;
	position: relative;
}

#hospital header {
	text-align: center;
	margin-bottom: 60px;
}

#hospital header h2 {
	font-size: var(--fz-60);
	font-weight: var(--fw-bold);
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

#hospital header .badge-oc {
	width: 108px;
}

#hospital header p {
	font-size: var(--fz-28);
	font-weight: var(--fw-bold);
}

/* 2カラムグリッド */
.syokuba-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* カードのデザイン */
.syokuba-grid article {
	background: var(--color-wh);
	border-radius: 15px;
	padding: 40px;
	display: flex;
	flex-direction: column;
}


.syokuba-grid article h3 {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	border-bottom: 1px solid var(--color-bk);
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.syokuba-grid article figure {
	margin: 0 0 25px 0;
}

.syokuba-grid article figure img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	display: block;
	object-fit: cover;
}

.syokuba-grid article p {
	font-size: var(--fz-16);
	line-height: 1.8;
	margin-bottom: 35px;
	flex: 1;
}

/* 詳細を見るボタン（右側にオレンジの丸矢印） */
.syokuba-grid article a {
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	max-width: 460px;
	height: 57px;
	background-color: var(--color-wh);
	border: 1px solid var(--color-bk);
	border-radius: 50px;
	text-decoration: none;
	color: var(--color-bk);
	font-weight: var(--fw-bold);
	font-size: var(--fz-20);
	line-height: 1.3;
	padding: 0 50px 0 20px;
	transition: background-color 0.3s;
	margin-bottom: 20px;
}

.syokuba-grid article a::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 55px;
	background: var(--color-org);
	border-radius: 50%;
	background-image: url(../../images/common/icon_arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30%;
}
.syokuba-grid article a:hover {
	background-color: var(--color-beg5);
}



.syokubahead {
	text-align: center;
	margin-bottom: 40px;
}

.syokubahead h3 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-org);
	color: var(--color-wh);
	text-decoration: none;
	font-weight: var(--fw-bold);
	font-size: var(--fz-24);
	min-height: 70px;
	padding: 10px 0;
	border-radius: 10px;
	margin-bottom: 40px;
	line-height: 1.2;
}
.syokubahead h3::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-style: solid;
	border-width: 12px 10px 0 10px;
	border-color: var(--color-org) transparent transparent transparent;
}

.syokubahead h4 {
	font-weight: var(--fw-bold);
	font-size: var(--fz-28);
	line-height: 1.4;
	padding-bottom: 1em;
}
.syokubahead p {
	font-weight: var(--fw-bold);
	font-size: var(--fz-16);
}







/* --- 職場見学会 固定ページ専用 --- */
.syokuba {
	padding: 80px 0;
	line-height: 1.7;
	font-size: var(--fz-16);
}

.syokuba ul {
	border-bottom: 1px solid var(--color-bk);
}

.syokuba li {
	margin-bottom: 50px;
}
.syokuba li:last-child {
	margin-bottom: 0;
}

.syokuba li h3 {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	border-bottom: 1px solid var(--color-bk);
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.syokuba .syokuba__body {
	margin-bottom: 15px;
	font-size: var(--fz-16);
}

.syokuba .syokuba__facility {
	margin-bottom: 30px;
}
.syokuba .edate {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	color: #00b097;
	padding: 2em 0;
}
.syokuba .syokuba__facility .todo {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	padding-bottom: 0;
}
.syokuba .syokuba__facility .name {
	font-size: var(--fz-24);
	font-weight: var(--fw-bold);
	color: var(--color-org);
	padding-bottom: 0;
}
.syokuba .syokuba__facility .info {
	font-weight: var(--fw-medium);
	padding-bottom: 0;
}
.syokuba .syokuba__facility .place {
	font-weight: var(--fw-bold);
	color: var(--color-org);
	padding-bottom: 0;
}

.regbtn {
	margin-top: 40px;
}

.regbtn a {
	display: block;
	background: #00b097;
	font-size: var(--fz-20);
	font-weight: var(--fw-bold);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	color: var(--color-wh);
	text-decoration: none;
}

/* --- .syokuba配下限定 ユーティリティクラス --- */

/* カラー */
.syokuba__body .or { color: var(--color-org); }
.syokuba__body .tea   { color: #00b097; }

/* 太さ */
.syokuba__body .reg { font-weight: var(--fw-regular); }
.syokuba__body .med { font-weight: var(--fw-medium); }
.syokuba__body .bold { font-weight: var(--fw-bold); }

.syokuba__body .pd0 { padding-bottom: 0;}
.syokuba__body .pd1 { padding-bottom: 1em;}
.syokuba__body .pd2 { padding-bottom: 2em;}

/* サイズ（既存の変数を使用） */
.syokuba__body .f14 { font-size: var(--fz-14); }
.syokuba__body .f18 { font-size: var(--fz-18); }
.syokuba__body .f20 { font-size: var(--fz-20); }
.syokuba__body .f24 { font-size: var(--fz-24); }
.syokuba__body .f28 { font-size: var(--fz-28); }






.syokuba__body .map {
	display: flex;
	width: 100%;
	justify-content: space-between;
}
.syokuba__body .map .hospital_info {
	flex: 2;
}
.syokuba__body .map .gmap {
	flex: 1;
}
.syokuba__body .map .gmap iframe {
	width: 100%;
	aspect-ratio: 380 / 200;
}




/* /////////////////////////// */
/* /////////////////////////// */
/* /////////////////////////// */
/* スマホ用 */
@media (max-width:769px) {

	.oc-main-container {
		flex-direction: column; /* 上下並びに変更 */
	}
	
	.oc-title-area {
		width: 100%;
		min-height: auto;
		aspect-ratio: 750 / 400; /* SP版の背景に合わせた比率 */
	}
	
	.oc-title-img {
		width: 90%;
		padding: 40px 0;
	}
	
	.oc-person-area {
		width: 100%;
	}



	.oc-slider-track {
		animation: infinite-scroll-sp 80s linear infinite;
	}
	
	.oc-slide-item {
		width: 50vw;
	}
	.oc-slide-item img {
		width: 100%;
		height: auto;
		border-radius: 15px;
		display: block;
	}
	
	@keyframes infinite-scroll-sp {
			0% { transform: translateX(0); }
			100% { transform: translateX(-500vw); }
	}
	
	.offset-up { transform: translateY(-15px); }
	.offset-down { transform: translateY(15px); }




	.oc-features {
		padding: 60px 0;
	}
	
	.oc-features header {
		margin-bottom: 40px;
	}
	
	/* 3枚のカードを縦並びに */
	.oc-features__grid {
		grid-template-columns: 1fr;
		gap: 50px;
		margin-bottom: 20px;
	}
	.oc-features__grid article {
		text-align: left;
	}
	.oc-features__grid .oc-features__item-header {
		display: flex;
		align-items: center; /* 上下中央揃え */
		justify-content: center; /* 左右中央揃え */
		gap: 10px;
		margin-bottom: 20px;
	}
	.oc-features__grid article .num {
		display: inline-block;
		vertical-align: middle;
		width: 45px; /* スマホサイズ */
		margin: 0 10px 15px 0; /* 右に文字との間隔、下に余白 */
	}
	
	.oc-features__grid h3 {
		display: inline-block;
		vertical-align: middle;
		width: calc(100% - 60px);
		text-align: left;
		justify-content: flex-start;
		margin-bottom: 5px;
	}
	
	.oc-features__grid article figure {
		margin-bottom: 15px;
	}
	
	/* アドバイスバナー(dl)を縦並びに */
	.oc-features dl {
		flex-direction: column;
	}
	
	.oc-features dt {
		width: 100%;
		padding: 10px 20px;
	}
	
	.oc-features dd {
		width: 100%;
		padding: 10px 20px;
	}



	.oc-program .oc-accordion {
		padding: 15px 10px;
	}


	.oc-qa {
		margin: 60px 0 80px;
	}

	.oc-access {
		margin-top: 60px;
	}







	.c-kobetsu {
		padding: 0;
	}
	.c-kobetsu h3 {
		text-align: left;
		padding-right: 4em;
		line-height: 1.2
	}
	.c-kobetsu .c-kobetsu__inner {
		max-width: none;
	}
	.c-kobetsu .c-kobetsu__badge {
		width: 100px;
		top: 0;
		right: 20px;
	}

	.c-kobetsu__lead {
		text-align: left;
	}

	.c-kobetsu__text {
		text-align: left;
	}

	.c-kobetsu__contact-label,
	.c-kobetsu__school-name,
	.c-kobetsu__time {
		font-size: var(--fz-16);
	}
	.c-kobetsu__contact a {
		font-size: var(--fz-40);
	}
	.c-kobetsu__contact,
	.c-kobetsu__online {
		padding: 40px 0;
	}
	.c-kobetsu__contact .badge,
	.c-kobetsu__online .badge {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		margin: 0 auto 20px; 
		width: 20%;
		z-index: 10;
	}




	/* セクション全体の余白と背景の調整 */
	#hospital {
		padding: 60px 0 80px;
		/* 背景画像はPC/SP共通とのことですが、SPで見やすくするためにサイズを調整する場合はここで行います */
	}
	
	#hospital header {
		margin-bottom: 40px;
	}
	
	#hospital header h2 {
		font-size: var(--fz-32);
		display: flex;
		flex-direction: row; /* 横並びに戻す */
		flex-wrap: wrap;    /* 画面幅が狭すぎたら改行を許可する */
		justify-content: center; /* 中央寄せ */
		align-items: center;    /* 上下中央を合わせる */
		gap: 10px; /* 文字とバッジの間隔 */
	}
	
	#hospital header .badge-oc {
		width: 70px; /* 右横に置くならこのくらいのサイズがバランス良いです */
		flex-shrink: 0;
	}
	#hospital header .badge-oc img {
		width: 100%;
		display: block;
	}
	
	#hospital header p {
		font-size: var(--fz-20);
		margin-top: 10px;
	}
	
	/* グリッドを縦1列に変更 */
	.syokuba-grid {
		grid-template-columns: 1fr; /* 縦1列 */
		gap: 20px;
	}
	
	/* カードの調整 */
	.syokuba-grid article {
		padding: 20px; /* 内側余白を少し詰める */
	}
	
	.syokuba-grid article h3 {
		margin-bottom: 20px;
	}
	
	.syokuba-grid article figure {
		margin-bottom: 15px;
	}
	
	.syokuba-grid article p {
		margin-bottom: 10px;
	}
	
	/* ボタンのサイズ調整 */
	.syokuba-grid article a {
		max-width: none;
		width: 100%;
	}

	.syokuba__body .map {
		display: grid;
		width: 100%;
		gap: 20px;
	}

	.syokuba__body .map > div {
		width: 100%;
	}


}

