@charset "utf-8";

:root {
	--navy: #11406A;
	--steel: #8EA9BE;
	--steel-dark: #6f8ca3;
	--bg-gray: #ECF1F4;
	--bg-mint: #EDF6F5;
	--red: #e81628;
	--ttl-gray: #666464;
	--text: #333;
	--text-light: #666;
	--input-fill: #F5F7F6;
}

/* font
-------------------------------------------------------*/
body,
input,
select,
textarea {
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 80px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* section title
-------------------------------------------------------*/
.sec-ttl {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--ttl-gray);
	margin: 0 0 36px;
	letter-spacing: 0.12em;
	line-height: 1.4;
}
/* 経歴・資格 用：白帯ラベル */
.sec-ttl--bar {
	background: #6986A1;
	color: #fff;
	font-size: 2.4rem;
	padding: 14px 24px;
	margin: 0 0 28px;
	box-shadow: 0 1px 4px rgba(17, 64, 106, 0.06);
}

@media screen and (max-width:768px) {
	.pc { display: none; }
	.sp { display: block; }
	.area { padding: 50px 20px; }
	.inner { max-width: 100%; }
	.sec-ttl { font-size: 1.9rem; margin: 0 0 24px; }
	.sec-ttl--bar { font-size: 1.7rem; padding: 10px 16px; }
}


/* visual / FV
-------------------------------------------------------*/
#visual {
	position: relative;
	width: 100%;
	background: #eef2f6;
}
.fv-media {
	position: relative;
	width: 100%;
}
.fv-image,
.fv-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	pointer-events: none;
}
/* 先頭要素（画像）で高さを確保し、動画はその枠内に収める */
.fv-image:first-child {
	position: relative;
}
.fv-video {
	height: 100%;
}
.fv-image.active,
.fv-video.active {
	opacity: 1;
	pointer-events: auto;
}
.fv-image img {
	width: 100%;
	display: block;
}
.fv-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* profile（経歴・資格）
-------------------------------------------------------*/
#profile {
	background: #F3F6F8;
background: linear-gradient(90deg, rgba(243, 246, 248, 1) 0%, rgba(194, 210, 215, 1) 100%);
	padding: 80px 20px;
	box-sizing: border-box;
}
#profile .inner {
	max-width: 1000px;
}
.profile-block + .profile-block {
	margin-top: 64px;
}
.dot-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 6px 6px 0;
}
.dot-list li {
	position: relative;
	padding-left: 24px;
	line-height: 1.7;
	font-size: 2.0rem;
	color: var(--text);
}
.dot-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #11406A;
}

@media screen and (max-width:768px) {
	#profile { padding: 50px 20px; }
	#profile .inner { max-width: 100%; }
	.profile-block + .profile-block { margin-top: 44px; }
	.dot-list { gap: 14px; }
	.dot-list li { font-size: 1.6rem; padding-left: 18px; }
	.dot-list li::before { width: 7px; height: 7px; }
}


/* media-movie（動画埋め込み）
-------------------------------------------------------*/
#media-movie {
	background: #fff;
	padding: 70px 20px;
	box-sizing: border-box;
}
.movie-wrap_out {
	max-width: 760px;
	margin: 0 auto;
	margin-top: 100px;
}
.movie-wrap {
	position: relative;
	padding-top: 56.25%;
	width: 100%;
	box-shadow: 0 6px 24px rgba(17, 64, 106, 0.12);
}
.movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:768px) {
	#media-movie { padding: 45px 20px; }

	.movie-wrap_out {
		margin-top: 50px;
	}
}


/* message
-------------------------------------------------------*/
#message {
	position: relative;
	padding: 90px 20px;
	background: url(../img/bg01@2x.png) no-repeat center center / cover;
	box-sizing: border-box;
}
#message .inner {
	position: relative;
	display: flex;
	justify-content: center;
}
.message-box {
	max-width: 660px;
	width: 100%;
	background: var(--navy);
	color: #fff;
	padding: 100px 100px;
	box-sizing: border-box;
	position: relative;
	margin-bottom: -200px;
}
.message-box p {
	line-height: 2.1;
	font-size: 1.8rem;
	margin: 0 0 1.6em;
}
.message-box p:last-child {
	margin: 0;
}

@media screen and (max-width:768px) {
	#message { padding: 50px 20px; }
	.message-box { padding: 32px 24px; }
	.message-box p { font-size: 1.5rem; line-height: 1.95; }
}


/* news
-------------------------------------------------------*/
#news {
	background: #fff;
}

#news.area {
	padding-top: 200px;
}

#news .inner {
	max-width: 1000px;
}

.news-list {
	display: flex;
	flex-direction: column;
}
.news-list li {
	display: flex;
	align-items: baseline;
	gap: 30px;
	padding: 15px 0;
	
}
.news-date {
	flex-shrink: 0;
	color: var(--red);
	font-weight: 700;
	font-size: 2rem;
	letter-spacing: 0.04em;
}
.news-txt {
	color: var(--text-light);
	font-size: 2rem;
	line-height: 1.7;
}

@media screen and (max-width:768px) {
	.news-list li { gap: 16px; }
	.news-date { font-size: 1.6rem; }
	.news-txt { font-size: 1.5rem; }
}


/* media-results
-------------------------------------------------------*/
#media-results {
	background: var(--bg-mint);
	padding: 80px 0;
	box-sizing: border-box;
}
/* 見出しは中央1000pxコンテンツの左端に揃える */
#media-results .inner {
	max-width: 1000px;
	padding: 0 20px;
	box-sizing: border-box;
}
/* テーブルは画面フル幅 */
.media-table {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.media-row {
	display: grid;
	grid-template-columns: 34% 66%;
	align-items: start;
	margin-bottom: 60px;
}
.media-cat {
	padding-bottom: 18px;
	margin-right: 10px;
}
.media-cat span {
	display: block;
	background: var(--steel);
	color: #fff;
	font-weight: 700;
	font-size: 2.5rem;
	letter-spacing: 0.06em;
	text-align: right;
	padding: 11px 26px;
	box-sizing: border-box;
}
.media-entries {
	background: #fff;
	box-sizing: border-box;
}
.media-entry {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 18px 40px 18px 28px;
	border-bottom: 5px solid #eef2f4;
}
.media-entry:last-child {
	border-bottom: none;
}
.media-date {
	flex-shrink: 0;
	width: 200px;
	font-size: 2rem;
	color: var(--steel-dark);
	font-weight: 700;
	line-height: 1.5;
	padding-top: 3px;
}
.media-content {
	flex: 1;
	line-height: 1.6;
	color: var(--text-light);
	font-size: 2rem;
}
.media-content b {
	display: block;
	color: var(--navy);
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 4px;
}

@media screen and (max-width:768px) {
	#media-results { padding: 50px 0; }
	.media-row {
		grid-template-columns: 1fr;
		margin-bottom: 20px;
	}
	.media-cat {
		padding-bottom: 0;
		margin-right: 0;
	}
	.media-cat span {
		text-align: left;
		font-size: 1.5rem;
		padding: 9px 20px;
		
	}
	.media-entry {
		flex-direction: column;
		gap: 4px;
		padding: 14px 20px;
	}
	.media-date { width: auto; font-size: 1.35rem; }
	.media-content { font-size: 1.5rem; }
	.media-content b { font-size: 1.6rem; }
}


/* contact
-------------------------------------------------------*/
#contact {
	background: #fff;
}
#contact .inner {
	max-width: 1000px;
}
.contact-lead {
	margin: 0 0 40px;
	font-size: 1.7rem;
	line-height: 1.9;
	color: var(--text-light);
}
.form-field {
	margin-bottom: 28px;
}
.form-label {
	display: block;
	color: var(--navy);
	font-weight: 700;
	font-size: 1.6rem;
	margin-bottom: 10px;
	letter-spacing: 0.04em;
}
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {
	width: 100%;
	background: var(--input-fill);
	border: 1px solid transparent;
	border-radius: 2px;
	box-sizing: border-box;
	font-size: 1.7rem;
	transition: border-color .2s, background .2s;
}
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"] {
	height: 54px;
	padding: 3px 14px;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
	padding: 14px;
}
#contact input:focus,
#contact textarea:focus {
	border-color: var(--steel);
	outline: none;
}
::placeholder {
	color: #b6bec4;
}
.form_btn {
	display: flex;
	justify-content: flex-start;
	margin: 38px 0 0;
}


.form_btn_center {
	justify-content:center;
}
.form_btn01 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	height: 58px;
	border: none;
	border-radius: 40px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	background: var(--navy);
	letter-spacing: 0.2em;
	cursor: pointer;
	transition: opacity .2s, transform .2s;
	margin-right: 30px;
}
.form_btn01:hover {
	opacity: 0.85;
}

.form_btn02 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	height: 58px;
	border: none;
	border-radius: 40px;
	padding: 10px;
	box-sizing: border-box;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	background: #666;
	letter-spacing: 0.2em;
	cursor: pointer;
	transition: opacity .2s, transform .2s;
}
.form_btn02:hover {
	opacity: 0.85;
}

@media screen and (max-width:768px) {
	.contact-lead { font-size: 1.5rem; margin: 0 0 28px; }
	.form_btn01 { width: 100%; max-width: 280px; }

	.form_btn {
		justify-content: center;
	}
}


/* footer
-------------------------------------------------------*/
#footer {
	background: var(--steel);
	padding: 22px 20px;
	text-align: center;
}
#footer .copy {
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
	#footer { padding: 18px 20px; }
	#footer .copy { font-size: 1.1rem; }
}


/* page_top
-------------------------------------------------------*/
#page_top {
	background: var(--navy);
}


.txt_form {
	text-align: center;
}

.txt_form .red {
	display: block;
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom: 20px;
}



.table_temp {
	width: 100%;
	margin-top: 50px;
	margin-bottom: 50px;

}

.table_temp tr {
	border-bottom: 1px solid #d6d6d6;
}

.table_temp th {
	font-weight: 700;
	padding: 15px;
	box-sizing: border-box;
	text-align: left;
	width: 25%;
	font-size: 2rem;
}

.table_temp td {
	padding: 15px;
	box-sizing: border-box;
	width: 75%;
	font-size: 2rem;
}


@media screen and (max-width:768px) {
	.table_temp {
	margin-top: 30px;
	margin-bottom: 30px;

}

	.table_temp th {
		display: block;
		width: 100%;
		font-size: 1.5rem;
		padding-bottom: 0;
}

.table_temp td {
	display: block;
		width: 100%;
		font-size: 1.5rem;
		padding-top: 5px;
}

.form_btn01,.form_btn02 {
	border-radius: 100px !important;
	font-size: 1.4rem !important;

}
}