/* CSS変数定義 */
:root {
	/* 色 */
	--color-main: #5b506d;
	--color-base: #EBEBF0;
	--color-accent: #D6DAE9;
	/* フォント */
	--font-main: "Zen Old Mincho", serif; /* 400, 500 */
	--font-sub: "Noto Sans JP", sans-serif;
	--font-color-main: #222;
	--font-color-sub: #37323A;
	--font-size-pc: 18px;
	--font-size-sp: 14px;
	--font-google: "Material Symbols Outlined";
	--font-google-weight: 100;
	--font-line-height: 2;
	--font-letter-spacing: .05em;
	/* コンテンツ幅 */
	--width-pc: 1400px;
	--width-sp: 90%;
}
@media screen and (max-width: 1400px) {
	/* コンテンツ幅 */
	:root {
		--width-pc: 90%;
	}
}

/* サイト全体の基準 */
* {
	text-decoration: none;
	font-size: var(--font-size-pc);
	/* スムーススクロール */
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
body {
	color: var(--font-color);
	font-family: var(--font-main);
	line-height: 1;
	letter-spacing: var(--font-letter-spacing);
	margin: 0;
	padding: 0;
	background-color: #fff;
	/*background-color: #fdfdff;
	background-image: url("https://www.transparenttextures.com/patterns/45-degree-fabric-light.png");*/
	/* フォントサイズ自動調節機能防止 */
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	text-size-adjust: none;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--font-color-sub);
	font-weight: 500;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
}
video {
	display: block;
	max-width: 100%;
	aspect-ratio: 16/ 9;
}
header, footer, address, div, a, p, img, ul, ol, li, table, span, details, summary, iframe, video, picture, article, section {
	box-sizing: border-box;
}
/* Google icons の余白削除 */
.material-symbols-outlined {
	vertical-align: middle;
}
@media screen and (max-width: 750px) {
	* {
		font-size: var(--font-size-sp);
		/* スムーススクロール */
		scroll-padding-top: 56px;
	}
}

/* 共通 */
main {
	display: block;
	width: 100%;
	padding-top: 100px;
	box-sizing: border-box;
}
.button {
	position: relative;
	display: grid;
	place-content: center;
	width: 400px;
	height: 80px;
	color: #fff;
	font-size: 20px;
	background-color: var(--color-main);
	transition: .3s;
}
.button:hover {
	opacity: .7;
}
/* 共通_タブ一覧 */
.tab-area {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	width: 100%;
}
.tab-area .tab {
	display: grid;
	align-items: center;
	cursor: pointer;
	white-space: nowrap;
	width: 100%;
	min-height: 80px;
	color: #939393;
	font-size: 18px;
	border-bottom: 1px solid #ccc;
	transition: .3s;
}
.tab-area .tab:hover {
	color: var(--font-color);
	border-bottom: 1px solid #555;
}
.tab-area .tab.active {
	color: var(--font-color);
	border-bottom: 2px solid #555;
}
.tab-area .tab.active:hover {
	cursor: default;
}
/* 共通_タブ中身 */
.content-area {
	display: block;
	width: 100%;
}
.content-area .content {
	display: none;
}
.content-area .content.show {
	display: block;
}
/* フェードインアニメーション */
.scroll {
    transform: translateY(50px);
    opacity: 0;
    transition: 1s !important;
}
.active {
    transform: translateY(0);
    opacity: 1;
}
/* ローディングアニメーション */
.loading {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color: #FFF;
	top: 0;
	left: 0;
	z-index: 20000;
	opacity: 1;
	visibility: visible;
	transition: all 1s;
}
.loading.is-active {
	opacity: 0;
	visibility: hidden;
}
.loading-animation {
	display: grid;
	place-content: center;
	width: 100vw;
	height: 100vh;
	background-color: var(--color-accent);
	z-index: 20000;
	opacity: 0;
	visibility: hidden;
	transition: all 1s;
}
.loading-animation.is-active {
	opacity: 1;
	visibility: visible;
}
.loading-logo {
	display: block;
	width: fit-content;
	color: var(--color-main);
	font-size: 26px;
	line-height: 1.4;
}
/* マウスストーカー */
#stkr{
	position: fixed;
	mix-blend-mode: multiply;
	top: 0px;
	left: 0px;
	width: 30px;
	height: 30px;
	background: rgba(145, 156, 196, .7);
	border-radius: 50%;
	transition: .3s;
	transition-timing-function: ease-out;
	pointer-events: none;
	z-index: 10000;
}
@media screen and (max-width: 1400px) {
	/* マウスストーカー */
	#stkr{
		display: none;
	}
}
@media screen and (max-width: 750px) {
	/* 共通 */
	main {
		padding-top: 56px;
	}
	.button {
		max-width: 100%;
		width: 200px;
		height: 46px;
		margin: 0 auto;
		font-size: 14px;
	}
	/* フェードインアニメーション */
	.scroll {
		transform: translateY(30px);
	}
	.active {
		transform: translateY(0);
		opacity: 1;
	}
	/* ローディングアニメーション */
	.loading-logo {
		font-size: 18px;
	}
}

/* ヘッダー */
header {
	position: fixed;
	display: block;
	width: 100%;
	height: 100px;
	background-color: #fff;
	z-index: 9997;
	transition: .5s;
}
/* ヘッダー_ロゴ */
.header-logo {
	position: absolute;
	display: block;
	width: fit-content;
	top: 15px;
	left: 50px;
	color: var(--font-color-main);
	font-size: 24px;
	line-height: 1.4;
}
/* ヘッダー_メニュー */
#header-nav {
	position: absolute;
	display: block;
	width: fit-content;
	height: 70px;
	top: 15px;
	right: calc(530px + 50px);
}
#header-nav > ul {
	display: flex;
	flex-wrap: nowrap;
	gap: 50px;
	width: fit-content;
	height: 100%;
}
#header-nav > ul > li {
	display: grid;
	place-content: center;
	width: fit-content;
	height: 100%;
}
#header-nav > ul > li > a {
	display: block;
	text-align: center;
	width: fit-content;
	height: 100%;
	color: var(--font-color-main);
	font-size: 16px;
}
/* ヘッダー_採用・見学エントリーリンク */
.header-entry-link {
	position: absolute;
	display: grid;
	place-content: center;
	top: 15px;
	right: 250px;
	width: 280px;
	height: 70px;
	border-left: 1px solid #ccc;
}
.header-entry-link > a {
	display: block;
	text-align: center;
	white-space: nowrap;
	width: fit-content;
	color: var(--font-color-main);
	font-size: 20px;
}
.header-entry-link > a br {
	display: none;
}
/* ヘッダー_その他リンク */
.header-other-link {
	position: absolute;
	display: grid;
	align-items: center;
	text-align: center;
	top: 15px;
	right: 50px;
	width: 200px;
	height: 70px;
	border-left: 1px solid #ccc;
	padding-left: 35px;
}
.header-other-link > a {
	position: relative;
	display: block;
	text-align: left;
	width: fit-content;
	color: var(--font-color-main);
	font-size: 14px;
	line-height: 1;
	padding-left: calc(.5em + 30px);
}
.header-other-link > a::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 0;
	transform: translateY(calc(-50% + 1px));
	font-family: var(--font-google);
	font-weight: 100;
	font-size: 30px;
}
.header-other-link > a:nth-of-type(1)::before {
	content: "\f6ea";
}
.header-other-link > a:nth-of-type(2)::before {
	content: "\e65b";
	transform: translateY(calc(-50% + 2px));
}
/* ヘッダー_ハンバーガーボタン */
.hamburger-button {
	display: none;
	z-index: 9999;
}
@media screen and (max-width: 1600px){
	/* ヘッダー_メニュー */
	#header-nav {
		display: none;
	}
	/* ヘッダー_採用・見学エントリーリンク */
	.header-entry-link {
		right: 320px;
	}
	/* ヘッダー_その他リンク */
	.header-other-link {
		width: fit-content;
		right: 100px;
		padding-left: 30px;
		padding-right: 30px;
	}
	/* ヘッダー_ハンバーガーボタン */
	.hamburger-button {
		position: fixed;
		display: block;
		top: 0;
		right: 0;
		width: 100px;
		height: 100px;
		background-color: var(--color-main);
	}
	.hamburger-button-icon {
		position: absolute;
		top: 32px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		width: 40px;
		height: 15px;
	}
	.hamburger-button-icon::after {
		position: absolute;
		text-align: center;
		content: 'MENU';
		left: 50%;
		bottom: -30px;
		transform: translateX(-50%);
		color: #fff;
		font-weight: 400;
		font-size: 16px;
		letter-spacing: 0.1em;
		box-sizing: border-box;
	}
	.hamburger-button-icon span {
		position: absolute;
		display: block;
		width: 100%;
		height: 1px;
		background-color: #fff;
		box-sizing: border-box;
		transition: all .5s;
	}
	.hamburger-button-icon span:nth-of-type(1) {
		top: 0;
	}
	.hamburger-button-icon span:nth-of-type(2) {
		bottom: 0;
	}
	/* ハンバーガーボタンがクリックされた時の挙動 */
	.header-nav.open {
		right: 0;
	}
	.hamburger-button-icon.open:after {
		content: 'CLOSE';
	}
	.hamburger-button-icon.open span:nth-of-type(1) {
		-webkit-transform: translateY(7px) rotate(-45deg);
		transform: translateY(7px) rotate(-45deg);
	}
	.hamburger-button-icon.open span:nth-of-type(2) {
		-webkit-transform: translateY(-7px) rotate(45deg);
		transform: translateY(-7px) rotate(45deg);
	}
	/* ヘッダー_メニュー */
	#header-nav {
		position: fixed;
		display: block;
		max-width: 80vw;
		width: 400px;
		height: 100vh;
		top: 0;
		right: 0;
		background-color: var(--color-main);
		z-index: 9998;
		transform: translateX(400px);
		transition: all .5s;
		overflow-y: scroll;
		overflow-y: auto;
	}
	#header-nav.open {
		transform: translateX(0);
	}
	#header-nav > ul {
		display: grid;
		gap: 50px;
		width: calc(100% - 80px);
		margin: 0 auto;
		height: auto;
		margin-top: 140px;
		margin-bottom: 200px;
	}
	#header-nav > ul > li {
		display: block;
		width: 100%;
		height: auto;
	}
	#header-nav > ul > li > a {
		display: block;
		text-align: left;
		width: 100%;
		height: auto;
		color: #fff;
		font-size: 20px;
	}
}

/* トップページ_共通 */
.top-title {
	display: block;
	max-width: 100%;
	color: var(--font-color-sub);
	font-weight: 400;
	font-size: 48px;
	letter-spacing: var(--font-letter-spacing);
}
.top-text {
	display: block;
	width: 100%;
	color: var(--font-color-main);
	font-family: var(--font-sub);
	font-weight: 400;
	line-height: var(--font-line-height);
}

/* ファーストビュー */
#top_fv {
	position: relative;
	display: block;
	width: 100%;
	height: calc(100vh - 100px);
	overflow: hidden;
}
/* ファーストビュー_スライダー */
#fv-slider {
	display: block;
	width: 100%;
	height: 100%;
}
#fv-slider .swiper-slide {
	display: block;
	width: 100%;
	height: 100%;
}
#fv-slider .swiper-slide img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
@keyframes zoomOut {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
#fv-slider .swiper-slide-active img,
#fv-slider .swiper-slide-duplicate-active img,
#fv-slider .swiper-slide-prev img {
	animation: zoomOut 7s linear 0s normal both;
}

/* トップページ_SNSリンク */
#top_sns {
	display: block;
	width: 100%;
	padding-top: 16px;
}
.top-sns-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 0;
	width: 100%;
}
.top-sns-list > a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	width: 100%;
	padding: 16px 24px;
	border-left: 1px solid var(--color-main);
	overflow: hidden;
}
.top-sns-list > a:first-child {
	border-left: none;
}
.top-sns-list > a > img {
	display: block;
	width: 48px;
}
.top-sns-list > a > p {
	color: var(--font-color-main);
	font-size: 20px;
}
@media screen and (max-width: 1200px) {
	.top-sns-list > a > img {
		width: 40px;
	}
	.top-sns-list > a > p {
		font-size: 18px;
	}
}
@media screen and (max-width: 750px) {
	#top_sns {
		padding-top: 8px;
	}
	.top-sns-list {
		gap: 8px 0;
	}
	.top-sns-list > a {
		display: grid;
		place-content: center;
		gap: 0.4rem;
		padding: 0.4rem;
	}
	.top-sns-list > a > img {
		width: 24px;
		margin: 0 auto;
	}
	.top-sns-list > a > p {
		font-size: 13px;
	}
	.top-sns-list > a > p > span {
		display: none;
	}
}

/* トップページ_お知らせ */
#top_news {
	display: block;
	width: 100%;
	padding: 60px 0 100px 0;
}
.top-news-inner {
	display: grid;
	grid-template-columns: 250px 1fr;
	width: var(--width-pc);
	margin: 0 auto;
}
.top_news-title {
	display: grid;
	align-items: center;
	width: 100%;
}
.top_news-title > p {
	display: block;
	width: 100%;
	color: var(--font-color-sub);
	font-size: 32px;
}
.top_news-list {
	display: grid;
	list-style: none;
	width: 100%;
}
.top_news-list > li {
	border-top: 1px solid #ccc;
}
.top_news-list > li:first-child {
	border-top: none;
}
.top_news-list > li > a {
	position: relative;
	display: grid;
	align-items: center;
	grid-template-columns: auto auto 1fr;
	gap: 50px;
	color: var(--font-color-main);
	padding: 25px 200px 25px 0;
}
.top_news-list > li > a::before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 100px;
	height: 1px;
	background-color: #555;
	box-sizing: border-box;
}
.top_news-list > li > a::after {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 5px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #555;
	box-sizing: border-box;
	transition: .5s ease-in-out;
}
.top_news-list > li > a:hover::after {
	right: 100px;
}
.top_news-list > li > a > div {
	display: grid;
	place-content: center;
	width: 150px;
	height: 30px;
	color: #fff;
	font-size: 15px;
	background-color: var(--color-main);
}
.top_news-list > li > a > p {
	display: block;
	width: 100%;
	font-weight: 500;
	line-height: 1.3;
}

/* トップページ_初期研修(医科) */
#top_junior-medical {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
}
#top_junior-medical::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: -100px;
	width: 80%;
	height: 100%;
	background-color: var(--color-base);
	box-sizing: border-box;
	z-index: -1;
}
.top_junior-medical-text {
	display: grid;
	place-content: center;
	width: 100%;
}
.top_junior-medical-text .top-title {
	margin-bottom: 40px;
}
.top_junior-medical-text .top-text {
	margin-bottom: 40px;
}
.top_junior-medical-text > div {
	display: block;
	width: 500px;
}
.top_junior-medical-img > img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 800px;
}

/* トップページ_専攻医 */
#top_senior {
	display: block;
	width: 100%;
	padding: 240px 0 140px 0;
}
.top_senior-text-inner {
	position: relative;
	display: block;
	width: var(--width-pc);
	margin: 0 auto;
	margin-bottom: 80px;
}
.top_senior-text-inner .top-title {
	width: 700px;
	margin-bottom: 40px;
}
.top_senior-text-inner .top-text {
	width: 700px;
	margin-bottom: 40px;
}
.top_senior-text-inner .button {
	position: absolute;
	right: 0;
	bottom: 0;
}
.top_senior-img img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 600px;
}
/* トップページ_専攻医_基幹プログラム */
.top_senior-program {
	display: block;
	width: var(--width-pc);
	margin: 0 auto;
	margin-bottom: 100px;
}
.top_senior-program-title {
	display: block;
	width: 100%;
	color: var(--font-color-sub);
	font-size: 28px;
	margin-bottom: 80px;
}
.top_senior-program-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	justify-items: start;
	gap: 64px 32px;
	width: 100%;
}
.top_senior-program-box {
	position: relative;
	display: block;
	width: 100%;
	border: 1px solid var(--color-accent);
	padding: 0 32px 112px 32px;
}
.top_senior-program-icon {
	display: grid;
	place-content: center;
	width: 80px;
	margin: 0 auto;
	aspect-ratio: 1 / 1;
	border: 1px solid #555;
	border-radius: 50%;
	background-color: #fff;
	margin-top: -40px;
}
.top_senior-program-icon > img {
	display: block;
	width: 100%;
	margin: 0 auto;
}
.top_senior-program-list-title {
	display: block;
	text-align: center;
	width: 100%;
	font-size: 22px;
	line-height: 1.2;
	margin-top: 24px;
}
.top_senior-program-box > ul {
	display: flex;
	list-style: none;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 24px;
	width: 100%;
	margin-top: 32px;
}
.top_senior-program-box > ul > li > a {
	color: var(--font-color-sub);
	font-size: 18px;
}
.top_senior-program-box > ul > li > a:hover {
	text-decoration: underline;
}
.top_senior-program-box > ul > li > a::before {
	content: "\eaaa";
	display: inline-block;
	font-family: var(--font-google);
	font-weight: var(--font-google-weight);
	font-size: 22px;
	margin-right: 0.2rem;
	transform: translateY(4px);
}
.top_senior-program-list-button {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	max-width: 100%;
	width: 240px;
	height: 48px;
	margin: 0 auto;
	color: #fff;
	font-size: 15px;
	background-color: var(--color-main);
	margin-top: 32px;
	transition: 0.3s;
}
.top_senior-program-list-button:hover {
	opacity: .7;
}
@media screen and (max-width: 1400px) {
	.top_senior-program-list {
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	}
}
@media screen and (max-width: 750px) {
	.top_senior-program {
		margin-bottom: 40px;
	}
	.top_senior-program-title {
		font-size: 20px;
		margin-bottom: 48px;
	}
	.top_senior-program-list {
		grid-template-columns: 1fr;
		gap: 40px 16px;
	}
	.top_senior-program-box {
		padding: 0 24px 96px 24px;
	}
	.top_senior-program-icon {
		width: 64px;
		margin-top: -32px;
	}
	.top_senior-program-list-title {
		font-size: 18px;
		margin-top: 16px;
	}
	.top_senior-program-box > ul {
		margin-top: 24px;
	}
	.top_senior-program-box > ul > li > a {
		font-size: 16px;
	}
	.top_senior-program-box > ul > li > a::before {
		font-size: 20px;
	}
	.top_senior-program-list-button {
		bottom: 24px;
		width: 200px;
		height: 40px;
		font-size: 13px;
		margin-top: 24px;
	}
}

/* トップページ_初期研修(歯科) */
#top_junior-dental {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
}
#top_junior-dental::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -100px;
	width: 75%;
	height: 100%;
	background-color: var(--color-base);
	box-sizing: border-box;
	z-index: -1;
}
.top_junior-dental-img > img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 800px;
}
.top_junior-dental-text {
	display: grid;
	place-content: center;
	width: 100%;
}
.top_junior-dental-text .top-title {
	margin-bottom: 40px;
}
.top_junior-dental-text .top-text {
	margin-bottom: 40px;
}
.top_junior-dental-text > div {
	display: block;
	width: 500px;
}

/* トップページ_先輩からのメッセージ */
#top_message {
	display: block;
	width: 100%;
	padding: 240px 0 140px 0;
}
#top_message .top-title {
	display: block;
	text-align: center;
	width: var(--width-pc);
	margin: 0 auto;
}
#message-slider {
	display: block;
	margin-top: 80px;
	margin-bottom: 80px;
}
#message-slider .swiper-wrapper {
	transition-timing-function: linear;
}
#message-slider .swiper-slide img {
	display: block;
	object-fit: cover;
	width: 100%;
	aspect-ratio: 1 / 1;
}
#top_message .button {
	margin: 0 auto;
}

/* トップページ_病院について */
#top_about {
	position: relative;
	display: block;
	width: 100%;
	padding: 0 0 60px 0;
	margin-bottom: 200px;
}
#top_about::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: -30px;
	width: 80%;
	height: 100%;
	background-color: var(--color-base);
	box-sizing: border-box;
	z-index: -1;
}
#top_about .top-title {
	display: block;
	text-align: center;
	width: var(--width-pc);
	margin: 0 auto;
}
.top-about-box-wrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px 60px;
	width: var(--width-pc);
	margin: 0 auto;
	margin-top: 80px;
}
.top-about-box {
	display: block;
	width: 100%;
}
.top-about-box > img {
	display: block;
	object-fit: cover;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 40px;
}
.top-about-box > h3 {
	display: block;
	width: 100%;
	height: fit-content;
	color: var(--color-main);
	font-size: 36px;
	line-height: 1.3em;
	margin: 0;
	padding: 0;
	margin-bottom: 40px;
}
.top-about-box > p {
	display: block;
	font-family: var(--font-sub);
	font-weight: 400;
	line-height: var(--font-line-height);
	margin-bottom: 30px;
}

/* エントリー */
#entry {
	display: block;
	width: 100%;
	background-color: #ccc;
	background: linear-gradient(rgba(103, 114, 156, 0.3), rgba(103, 114, 156, .3)) ,url(../img/top-entry-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 150px 0;
}
.entry-inner {
	position: relative;
	display: block;
	width: var(--width-pc);
	margin: 0 auto;
	background-color: #fff;
	padding: 110px 0 100px 0;
}
.entry-title {
	position: absolute;
	display: block;
	text-align: center;
	white-space: nowrap;
	top: -0.5em;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	color: var(--color-main);
	font-size: 70px;
	letter-spacing: .1em;
}
.entry-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	width: 1000px;
	margin: 0 auto;
}
.entry-box > a {
	display: grid;
	place-content: center;
	text-align: center;
	width: 100%;
	min-height: 120px;
	color: #fff;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.3;
	background-color: var(--color-main);
	padding: 1em;
	transition: .3s;
}
.entry-box > a:hover {
	opacity: .7;
}
.entry-box > a > br {
	display: none;
}

/* フッター */
footer {
	display: block;
	color: #fff;
	background-color: var(--color-main);
	padding: 80px 0;
}
.footer-inner {
	position: relative;
	display: block;
	width: var(--width-pc);
	margin: 0 auto;
}
/* フッター_住所・電話番号 */
.footer-address {
	display: block;
	width: 100%;
}
.footer-address > p {
	line-height: 1.3;
}
.footer-address > p:nth-of-type(1) {
	font-weight: 500;
	font-size: 20px;
}
.footer-address > p:nth-of-type(2) {
	font-size: 16px;
	margin-top: 2em;
}
.footer-address > p:nth-of-type(3) {
	font-size: 16px;
	margin-top: 1em;
}
.footer-address > p:nth-of-type(3) br {
	display: none;
}
/* フッター_SNS */
.footer-sns {
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	top: 0;
	right: 0;
	width: fit-content;
	max-width: 100%;
}
.footer-sns > a {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: nowrap;
	width: fit-content;
}
.footer-sns > a > img {
	display: block;
	width: 48px;
}
.footer-sns > a > p {
	color: #fff;
	font-weight: 500;
}
/* フッター_Googlemap */
.footer-map {
	display: block;
	width: 100%;
	margin-top: 60px;
}
.footer-map iframe {
	display: block;
	width: 100%;
	height: 400px;
}
/* フッター_サイトマップ */
.footer-sitemap {
	display: block;
	width: 100%;
	border-top: 1px solid #fff;
	padding-top: 60px;
	margin-top: 60px;
}
.footer-sitemap > ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	width: 100%;
}
.footer-sitemap > ul > li {
	display: block;
	width: 100%;
}
.footer-sitemap > ul > li > a {
	display: block;
	width: 100%;
	color: #fff;
	font-size: 18px;
}
.footer-sitemap > ul > li > ul {
	display: grid;
	gap: 1em;
	margin-top: 1.5em;
}
.footer-sitemap > ul > li > ul > li {
	display: block;
	width: 100%;
}
.footer-sitemap > ul > li > ul > li > a {
	display: block;
	width: 100%;
	color: #fff;
	font-size: 15px;
}
/* フッター_著作権表記 */
.footer-copyright {
	display: block;
	max-width: 100%;
	width: fit-content;
	font-style: normal;
	font-size: 14px;
	margin-top: 100px;
}
@media screen and (max-width: 1400px) {
	/* フッター */
	.footer-inner {
		width: var(--width-sp);
	}
	/* フッター_SNS */
	.footer-sns {
		position: static;
		top: auto;
		right: auto;
		margin-top: 40px;
	}
	/* フッター_サイトマップ */
	.footer-sitemap > ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 60px;
	}
}
@media screen and (max-width: 750px) {
	/* フッター */
	footer {
		padding: 40px 0;
	}
	/* フッター_住所・電話番号 */
	.footer-address > p:nth-of-type(1) {
		font-size: 16px;
	}
	.footer-address > p:nth-of-type(2) {
		font-size: 14px;
	}
	.footer-address > p:nth-of-type(3) {
		font-size: 14px;
		line-height: 1.7;
	}
	.footer-address > p:nth-of-type(3) br {
		display: block;
	}
	.footer-address > p:nth-of-type(3) span {
		display: none;
	}
	/* フッター_SNS */
	.footer-sns {
		gap: 16px;
		margin-top: 24px;
	}
	.footer-sns > a {
		gap: 12px;
	}
	.footer-sns > a > img {
		width: 32px;
	}
	.footer-sns > a > p {
		font-size: 14px;
	}
	/* フッター_Googlemap */
	.footer-map {
		margin-top: 40px;
	}
	.footer-map iframe {
		height: 300px;
	}
	/* フッター_サイトマップ */
	.footer-sitemap {
		padding-top: 40px;
		margin-top: 40px;
	}
	.footer-sitemap > ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 30px;
	}
	.footer-sitemap > ul > li > a {
		font-size: 14px;
	}
	.footer-sitemap > ul > li > ul {
		gap: .7em;
		margin-top: 1em;
	}
	.footer-sitemap > ul > li > ul > li > a {
		font-size: 12px;
		line-height: 1.3;
	}
	/* フッター_著作権表記 */
	.footer-copyright {
		font-size: 10px;
		margin-top: 60px;
	}
}

/* 下層ページ_ページタイトル */
.page-title {
	position: relative;
	display: block;
	width: 100%;
	height: 600px;
	overflow: hidden;
}
.page-title > img {
	position: absolute;
	display: block;
	object-fit: cover;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.page-title-filter {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, .3));
	z-index: 2;
}
.page-title > h1 {
	position: absolute;
	display: block;
	left: 50%;
	bottom: 80px;
	transform: translateX(-50%);
	width: var(--width-pc);
	color: #fff;
	font-size: 56px;
	z-index: 3;
}
.page-title-sns {
	position: absolute;
	display: flex;
	right: calc((100% - var(--width-pc)) / 2);
	bottom: 56px;
	gap: 16px;
	z-index: 4;
}
.page-title-sns > a {
	display: grid;
	place-content: center;
	width: 80px;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
}
.page-title-sns > a > img {
	display: block;
	width: 48px;
}
/* 下層ページ_お知らせ一覧 */
.page-news {
	display: block;
	width: 100%;
	padding: 40px 0 0 0;
}
.page-news > ul {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1rem;
	width: var(--width-pc);
	margin: 0 auto;
	background-color: #ffe1e1;
	padding: 40px 40px 40px 64px;
}
.page-news > ul > li {
	width: fit-content;
}
.page-news > ul > li > a {
	display: block;
	width: fit-content;
	color: #ff0000;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.4;
	text-decoration: underline;
}
/* 下層ページ_アンカーリンク */
.anchor {
	display: block;
	width: 100%;
	padding: 60px 0 0 0;
}
.anchor-inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 60px;
	width: var(--width-pc);
	margin: 0 auto;
}
.anchor-inner > a {
	position: relative;
	display: grid;
	align-items: center;
	width: 100%;
	min-height: 70px;
	color: var(--font-color-main);
	font-size: 20px;
	line-height: 1.2em;
	border-bottom: 1px solid #555;
	padding: 1em 40px 1em 0;
}
.anchor-inner > a::after {
	content: "\e313";
	position: absolute;
	display: block;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-family: var(--font-google);
	font-weight: 100;
	font-size: 24px;
	box-sizing: border-box;
	transition: .3s;
}
.anchor-inner > a:hover::after {
	transform: translateY(calc(-50% + 10px));
}
/* 下層ページ_本文 */
article {
	display: block;
	width: 100%;
	padding: 100px 0 140px 0;
}
article section {
	display: block;
	width: var(--width-pc);
	margin: 0 auto;
	margin-top: 80px;
}
article section:first-child {
	margin-top: 0;
}
article section h2 {
	display: block;
	width: 100%;
	color: var(--color-main);
	font-size: 36px;
	line-height: 1.3em;
	border-left: 5px solid var(--color-main);
	border-bottom: 1px solid var(--color-main);
	padding: .2em 0 .4em .6em;
	margin-bottom: 1em;
}
article section h3 {
	display: block;
	width: 100%;
	color: var(--color-main);
	font-size: 30px;
	line-height: 1.3em;
	margin-bottom: 1em;
}
article section h3::before {
	content: "-";
	margin-right: .5em;
}
article section h4 {
	display: block;
	width: 100%;
	color: var(--color-main);
	font-size: 28px;
	line-height: 1.3em;
	margin-bottom: 1em;
}
article section p {
	display: block;
	color: var(--font-color-main);
	font-family: var(--font-sub);
	font-weight: 400;
	line-height: var(--font-line-height);
}
.page-link {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 30px;
	width: 100%;
}
.page-link a {
	position: relative;
	display: block;
	width: 100%;
	color: #fff;
	font-size: 18px;
	line-height: 1.3;
	background-color: var(--color-main);
	padding: 1.2em 60px 1.2em 1.5em;
	transition: .3s;
}
.page-link a:hover {
	opacity: .7;
}
.page-link a::after {
	content: "\e941";
	position: absolute;
	display: block;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	color: #fff;
	font-family: var(--font-google);
	font-weight: 100;
	font-size: 36px;
	box-sizing: border-box;
}
article section table {
	display: table;
	width: 100%;
	margin: 0 auto;
	font-family: var(--font-sub);
	border-collapse: collapse;
	border: 2px solid var(--color-main);
}
article section table th,
article section table td {
	border: 1px solid var(--color-main);
	line-height: 1.7;
	padding: 1em 1.5em;
	background-color: #fff;
}
article section table th {
	text-align: center;
	color: #fff;
	font-weight: 500;
	border: 1px solid #fff;
	background-color: var(--color-main);
	padding: 1.2em 1.5em;
}
article section table td {
	font-weight: 400;
}
article section table a {
	text-decoration: underline;
}
article section ul,
article section ol {
	display: grid;
	gap: 1.5em;
	width: 100%;
	padding: 2em 2em 2em 3.5em;
	border: 1px solid var(--color-main);
}
article section ul li,
article section ol li {
	font-family: var(--font-sub);
	font-weight: 400;
	line-height: 1.7;
}
article section ul li::marker,
article section ol li::marker {
	color: var(--color-main);
}
article section iframe,
article section video {
	display: block;
	max-width: 100%;
	width: 1000px;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
}
/* 下層ページ_レイアウト用 */
.half-box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	width: 100%;
}
@media screen and (max-width: 1400px) {
	/* 下層ページ_ページタイトル */
	.page-title > h1 {
		width: var(--width-sp);
	}
	.page-title-sns {
		top: 40px;
		right: calc((100% - var(--width-sp)) / 2);
		bottom: auto;
	}
	/* 下層ページ_お知らせ一覧 */
	.page-news > ul {
		width: var(--width-sp);
	}
	/* 下層ページ_アンカーリンク */
	.anchor-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 30px;
		width: var(--width-sp);
	}
	/* 下層ページ_本文 */
	article section {
		width: var(--width-sp);
	}
	.table-scroll {
		display: block;
		overflow-x: auto;
	}
	.table-scroll table th,
	.table-scroll table td {
		white-space: nowrap;
	}
	.page-link {
		gap: 20px 30px;
	}
	/* 下層ページ_レイアウト用 */
	.half-box {
		grid-template-columns: repeat(1, 1fr);
		gap: 40px;
	}
}
@media screen and (max-width: 750px) {
	/* 下層ページ_ページタイトル */
	.page-title {
		height: 200px;
	}
	.page-title-filter {
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, .3));
	}
	.page-title > h1 {
		bottom: 25px;
		font-size: 24px;
	}
	.page-title-sns {
		gap: 8px;
		top: 16px;
	}
	.page-title-sns > a {
		width: 40px;
		border-radius: 8px;
	}
	.page-title-sns > a > img {
		width: 24px;
	}
	/* 下層ページ_お知らせ一覧 */
	.page-news {
		padding: 24px 0 0 0;
	}
	.page-news > ul {
		padding: 24px 24px 24px 40px;
	}
	.page-news > ul > li > a {
		font-size: 18px;
	}
	/* 下層ページ_アンカーリンク */
	.anchor {
		padding: 20px 0 0 0;
	}
	.anchor-inner {
		gap: 10px 10px;
	}
	.anchor-inner > a {
		min-height: 40px;
		font-size: 13px;
		padding: 1em 20px 1em 0;
	}
	.anchor-inner > a::after {
		font-size: 16px;
	}
	/* 下層ページ_本文 */
	article {
		padding: 40px 0 60px 0;
	}
	article section {
		margin-top: 30px;
	}
	article section h2 {
		font-size: 20px;
		margin-bottom: .7em;
	}
	article section h3 {
		font-size: 18px;
		margin-bottom: .7em;
	}
	article section h4 {
		font-size: 16px;
		margin-bottom: .7em;
	}
	.page-link {
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}
	.page-link a {
		font-size: 14px;
		padding: 1.2em 40px 1.2em 1em;
	}
	.page-link a::after {
		right: 5px;
		font-size: 24px;
	}
	article section table th,
	article section table td {
		padding: .7em 1em;
	}
	article section table th {
		padding: .9em 1em;
	}
	article section ul,
	article section ol {
		gap: 1em;
		padding: 1.5em 1.5em 1.5em 3em;
	}
	/* 下層ページ_レイアウト用 */
	.half-box {
		gap: 24px;
	}
}

/* 下層ページ_先輩からのメッセージ_タブ */
#main_message-all .tab-area {
	width: var(--width-pc);
	margin: 0 auto;
	padding: 60px 0 100px 0;
}
/* 共通_タブ中身 */
#main_message-all .content-area {
	width: var(--width-pc);
	margin: 0 auto;
	margin-bottom: 140px;
}
/* 下層ページ_先輩からのメッセージ一覧 */
.message-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px 60px;
	width: 100%;
	margin: 0 auto;
}
.message-list-box {
	position: relative;
	display: block;
	width: 100%;
	transition: .3s;
}
.message-list-box:hover {
	opacity: .7;
}
.message-list-box-img {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
}
.message-list-box-img > img {
	position: absolute;
	display: block;
	object-fit: cover;
	top: 0;
	left: 0;
	width: 100%;
	aspect-ratio: 3 / 4;
	z-index: 1;
	transition: .3s;
}
.message-list-box-filter {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, .3));
	z-index: 2;
}
.message-list-box-group {
	position: absolute;
	display: grid;
	top: 0;
	left: 0;
	width: fit-content;
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	background-color: var(--color-main);
	padding: 1em 1.5em;
	z-index: 3;
}
.message-list-box-text {
	position: absolute;
	display: block;
	left: 0;
	bottom: 0;
	width: 100%;
	color: #fff;
	padding: 30px;
	z-index: 4;
}
.message-list-box-text > p:nth-of-type(1) {
	display: block;
	font-weight: 500;
	font-size: 40px;
	margin-bottom: 20px;
}
.message-list-box-text > p:nth-of-type(2) {
	font-size: 20px;
	line-height: 1.7;
}

/* 下層ページ_先輩からのメッセージ個人ページ */
.message-title {
	position: relative;
	display: block;
	width: 100%;
	height: calc(100vh - 100px);
	overflow: hidden;
}
.message-title > img {
	position: absolute;
	display: block;
	object-fit: cover;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.message-title-filter {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, .3));
	z-index: 2;
}
.message-title-text {
	position: absolute;
	display: block;
	width: 90%;
	left: 50%;
	bottom: 80px;
	transform: translateX(-50%);
	color: #fff;
	z-index: 3;
}
.message-title-text > p:nth-of-type(1) {
	font-size: 24px;
}
.message-title-text > p:nth-of-type(2) {
	font-weight: 500;
	font-size: 70px;
	margin-top: 40px;
}
.message-excerpt {
	color: var(--font-color-sub);
	font-family: var(--font-color-main);
	font-size: 48px;
	line-height: 1.5;
}
.message-img-left {
	display: block;
	width: 100%;
	padding-right: calc((100% - var(--width-pc)) / 2);
	margin-top: 100px;
	margin-bottom: 100px;
}
.message-img-right {
	display: block;
	width: 100%;
	padding-left: calc((100% - var(--width-pc)) / 2);
	margin-top: 100px;
	margin-bottom: 100px;
}
.message-img-center {
	display: block;
	width: 100%;
	padding-left: calc((100% - var(--width-pc)) / 2);
	padding-right: calc((100% - var(--width-pc)) / 2);
	margin-top: 100px;
	margin-bottom: 100px;
}
.message-img-left > img,
.message-img-right > img,
.message-img-center > img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: auto;
}
.message-link {
	margin: 0 auto;
}

/* 下層ページ_病院についてページ */
.about-img-box-half {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
	width: 100%;
}
.about-img-box-half > div {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	grid-row-gap: 16px;
	width: 100%;
}
.about-img-box-half > div > img {
	display: block;
	object-fit: cover;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.about-img-box-half > div > p {
	display: block;
	text-align: center;
	width: 100%;
	font-family: var(--font-main);
	font-size: 20px;
}
.about-teate-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	width: 100%;
}
.about-teate-box > div {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	grid-row-gap: 8px;
	width: 100%;
	background-color: #fff;
	border: 1px solid var(--color-accent);
	padding: 32px 40px;
}
.about-teate-box > div > img {
	display: block;
	width: 80px;
	max-width: 100%;
	margin: 0 auto;
}
.about-teate-box-title {
	display: block;
	text-align: center;
	width: 100%;
	color: var(--color-main);
	font-family: var(--font-main);
	font-weight: 500;
	font-size: 24px;
}

@media screen and (max-width: 1400px){
	/* トップページ_お知らせ */
	.top-news-inner {
		display: block;
		width: var(--width-sp);
	}
	.top_news-title {
		display: block;
		text-align: center;
		width: 100%;
		padding-bottom: 40px;
	}
	.top_news-title > p {
		font-size: 36px;
	}

	/* トップページ_初期研修(医科) */
	#top_junior-medical {
		display: block;
	}
	#top_junior-medical::before {
		bottom: -80px;
		width: 80%;
	}
	.top_junior-medical-text {
		display: block;
		width: var(--width-sp);
		margin: 0 auto;
		margin-bottom: 80px;
	}
	.top_junior-medical-text > div {
		width: 100%;
	}
	.top_junior-medical-img {
		display: block;
		width: 100%;
		padding-left: 5%;
	}
	.top_junior-medical-img > img {
		aspect-ratio:  1 / 1;
		height: auto;
	}

	/* トップページ_専攻医 */
	#top_senior {
		padding: 200px 0 140px 0;
	}
	.top_senior-text-inner {
		width: var(--width-sp);
	}
	.top_senior-text-inner .top-title {
		width: 100%;
	}
	.top_senior-text-inner .top-text {
		width: 100%;
	}
	.top_senior-text-inner .button {
		position: static;
	}

	/* トップページ_初期研修(歯科) */
	#top_junior-dental {
		display: grid;
		grid-template-columns: auto;
	}
	#top_junior-dental::before {
		bottom: -80px;
		width: 80%;
	}
	.top_junior-dental-img {
		display: block;
		width: 100%;
		padding-right: 5%;
		order: 2;
	}
	.top_junior-dental-img > img {
		aspect-ratio:  1 / 1;
		height: auto;
	}
	.top_junior-dental-text {
		display: block;
		width: var(--width-sp);
		margin: 0 auto;
		order: 1;
		margin-bottom: 80px;
	}
	.top_junior-dental-text > div {
		width: 100%;
	}

	/* トップページ_先輩からのメッセージ */
	#top_message .top-title {
		width: var(--width-sp);
	}

	/* トップページ_病院について */
	#top_about .top-title {
		width: var(--width-sp);
	}
	.top-about-box-wrap {
		width: var(--width-sp);
	}

	/* エントリー */
	.entry-inner {
		width: var(--width-sp);
		padding: 110px 100px 100px 100px;
	}
	.entry-box {
		width: 100%;
	}
	.entry-box > a {
		min-height: 120px;
		font-size: 22px;
	}

	/* 下層ページ_先輩からのメッセージ_タブ */
	#main_message-all .tab-area {
		width: var(--width-sp);
	}
	/* 共通_タブ中身 */
	#main_message-all .content-area {
		width: var(--width-sp);
	}
	/* 下層ページ_先輩からのメッセージ一覧 */
	.message-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 60px 30px;
	}

	/* 下層ページ_先輩からのメッセージ個人ページ */
	.message-img-left {
		padding-right: calc((100% - var(--width-sp)) / 2);
	}
	.message-img-right {
		padding-left: calc((100% - var(--width-sp)) / 2);
	}
	.message-img-center {
		padding-left: calc((100% - var(--width-sp)) / 2);
		padding-right: calc((100% - var(--width-sp)) / 2);
	}

	/* 下層ページ_病院についてページ */
	.about-img-box-half {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 32px;
		width: 100%;
	}
	.about-teate-box {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 1000px){
	/* ヘッダー_採用・見学エントリーリンク */
	.header-entry-link {
		right: 100px;
	}
	/* ヘッダー_その他リンク */
	.header-other-link {
		display: none;
	}

	/* トップページ_病院について */
	.top-about-box-wrap {
		grid-template-columns: repeat(1, 1fr);
	}

	/* エントリー */
	#entry {
		padding: 100px 0;
	}
	.entry-box {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media screen and (max-width: 750px){
	/* ヘッダー */
	header {
		height: 56px;
	}
	/* ヘッダー_ロゴ */
	.header-logo {
		top: 12px;
		left: 15px;
		font-size: 12px;
	}
	/* ヘッダー_採用・見学エントリーリンク */
	.header-entry-link {
		top: 8px;
		right: 56px;
		width: 100px;
		height: 40px;
	}
	.header-entry-link > a {
		white-space: wrap;
		font-size: 12px;
		line-height: 1.2;
	}
	.header-entry-link > a br {
		display: block;
	}
	/* ヘッダー_その他リンク */
	.header-other-link {
		display: none;
	}
	/* ヘッダー_ハンバーガーボタン */
	.hamburger-button {
		width: 56px;
		height: 56px;
	}
	.hamburger-button::after {
		top: 8px;
		height: 40px;
	}
	.hamburger-button-icon {
		top: 19px;
		width: 20px;
		height: 7px;
	}
	.hamburger-button-icon:after {
		font-size: 10px;
		bottom: -18px;
	}
	/* ハンバーガーボタンがクリックされた時の挙動 */
	.hamburger-button-icon.open span:nth-of-type(1) {
		-webkit-transform: translateY(3px) rotate(-45deg);
		transform: translateY(3px) rotate(-45deg);
	}
	.hamburger-button-icon.open span:nth-of-type(2) {
		-webkit-transform: translateY(-3px) rotate(45deg);
		transform: translateY(-3px) rotate(45deg);
	}
	/* ヘッダー_メニュー */
	#header-nav {
		width: 80vw;
		transform: translateX(80vw);
	}
	#header-nav > ul {
		gap: 2em;
		width: 80%;
		margin-top: 80px;
	}
	#header-nav > ul > li > a {
		font-size: 16px;
	}

	/* トップページ_共通 */
	.top-title {
		font-size: 24px;
	}

	/* ファーストビュー */
	#top_fv {
		height: auto;
		aspect-ratio: 1 / 1;
	}
	#top_fv img {
		position: absolute;
		display: block;
		object-fit: cover;
		width: 100%;
		height: 100%;
		z-index: 1;
	}
	.fv-filter {
		position: absolute;
		display: block;
		mix-blend-mode: screen;
		width: 100%;
		height: 100%;
		background-color: rgba(189, 157, 255, .2);
		box-sizing: border-box;
		z-index: 2;
	}

	/* トップページ_お知らせ */
	#top_news {
		padding: 40px 0 50px 0;
	}
	.top_news-title {
		padding-bottom: 15px;
	}
	.top_news-title > p {
		font-size: 20px;
	}
	.top_news-list > li > a {
		display: block;
		padding: 15px 0;
	}
	.top_news-list > li > a::before {
		display: none;
	}
	.top_news-list > li > a::after {
		display: none;
	}
	.top_news-list > li > a > div {
		position: absolute;
		top: 14px;
		left: 100px;
		width: 70px;
		height: 18px;
		font-size: 10px;
	}
	.top_news-list > li > a > p {
		margin-top: 1em;
	}

	/* トップページ_初期研修(医科) */
	#top_junior-medical::before {
		bottom: -40px;
	}
	.top_junior-medical-text {
		margin-bottom: 40px;
	}
	.top_junior-medical-text .top-title {
		margin-bottom: 20px;
	}
	.top_junior-medical-text .top-text {
		margin-bottom: 20px;
	}

	/* トップページ_専攻医 */
	#top_senior {
		padding: 80px 0 70px 0;
	}
	.top_senior-text-inner {
		margin-bottom: 40px;
	}
	.top_senior-text-inner .top-title {
		margin-bottom: 20px;
	}
	.top_senior-text-inner .top-text {
		margin-bottom: 20px;
	}
	.top_senior-img img {
		aspect-ratio: 16 / 9;
		height: auto;
	}

	/* トップページ_初期研修(歯科) */
	#top_junior-dental::before {
		bottom: -40px;
	}
	.top_junior-dental-text {
		margin-bottom: 40px;
	}
	.top_junior-dental-text .top-title {
		margin-bottom: 20px;
	}
	.top_junior-dental-text .top-text {
		margin-bottom: 20px;
	}

	/* トップページ_先輩からのメッセージ */
	#top_message {
		padding: 100px 0 60px 0;
	}
	#message-slider {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	/* トップページ_病院について */
	#top_about {
		padding: 0 0 20px 0;
		margin-bottom: 60px;
	}
	#top_about::before {
		bottom: -15px;
	}
	.top-about-box-wrap {
		gap: 40px;
		margin-top: 40px;
	}
	.top-about-box > img {
		margin-bottom: 20px;
	}
	.top-about-box > h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.top-about-box > p {
		margin-bottom: 20px;
	}

	/* エントリー */
	#entry {
		padding: 60px 0;
	}
	.entry-inner {
		padding: 50px 20px 40px 20px;
	}
	.entry-title {
		font-size: 32px;
	}
	.entry-box {
		gap: 15px;
	}
	.entry-box > a {
		margin: 0 auto;
		min-height: 60px;
		font-size: 15px;
	}
	.entry-box > a > br {
		display: block;
	}

	/* 下層ページ_先輩からのメッセージ_タブ */
	#main_message-all .tab-area {
		grid-template-columns: repeat(2, 1fr);
		gap: 5px 10px;
		padding: 20px 0 40px 0;
	}
	#main_message-all .tab-area .tab {
		min-height: 40px;
		font-size: 13px;
	}
	/* 共通_タブ中身 */
	#main_message-all .content-area {
		margin-bottom: 40px;
	}
	/* 下層ページ_先輩からのメッセージ一覧 */
	.message-list {
		gap: 30px 10px;
	}
	.message-list-box-group {
		font-size: 12px;
		padding: .7em 1em;
	}
	.message-list-box-text {
		position: static;
		color: var(--font-color-main);
		padding: 15px 0 0 0;
	}
	.message-list-box-text > p:nth-of-type(1) {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.message-list-box-text > p:nth-of-type(2) {
		font-size: 14px;
		line-height: 1.5;
	}

	/* 下層ページ_先輩からのメッセージ個人ページ */
	.message-title {
		height: auto;
		aspect-ratio: 16 / 9;
	}
	.message-title-filter {
		background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, .3));
	}
	.message-title-text {
		bottom: 20px;
	}
	.message-title-text > p:nth-of-type(1) {
		font-size: 14px;
	}
	.message-title-text > p:nth-of-type(2) {
		font-size: 28px;
		margin-top: 15px;
	}
	.message-excerpt {
		font-size: 22px;
	}
	.message-img-left {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.message-img-right {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.message-img-center {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	.message-img-left > img,
	.message-img-right > img,
	.message-img-center > img {
		height: auto;
		aspect-ratio: 16 / 9;
	}

	/* 下層ページ_病院についてページ */
	.about-img-box-half {
		grid-template-columns: repeat(1, 1fr);
		gap: 24px;
	}
	.about-img-box-half > div {
		grid-row-gap: 8px;
	}
	.about-img-box-half > div > p {
		font-size: 16px;
	}
	.about-teate-box {
		grid-template-columns: repeat(1, 1fr);
		gap: 16px;
		margin-top: 24px;
	}
	.about-teate-box > div {
		grid-row-gap: 8px;
		padding: 16px 24px;
	}
	.about-teate-box > div > img {
		width: 56px;
	}
	.about-teate-box-title {
		font-size: 20px;
	}
}

/* 下層ページ_サブスペシャリティ */
.sub-specialty-message {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 64px;
	width: 100%;
}
.sub-specialty-message img {
	display: block;
	width: 100%;
}
@media screen and (max-width: 750px) {
	.sub-specialty-message {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}