@charset "UTF-8";
/*--------------------------------------------------
  プロフィール（概要）
--------------------------------------------------*/
.overview {
	position: relative;
	max-width: 890px;
	width: 100%;
}

.overview::after {
	content: '';
	position: absolute;
	right: -300px;
	bottom: 0;
	display: block;
	width: 245px;
	height: 830px;
	background: url(../imgs/profile/overview.png) no-repeat left top / 100%;
}
@media screen and (max-width: 767px) {
	.overview::after {
		display: none;
	}
}


/*--------------------------------------------------
  経歴
--------------------------------------------------*/
.history {
	margin-top: 70px;
}
@media screen and (max-width: 767px) {
	.history {
		margin-top: 30px;
	}
}

.history > li {
	display: flex;
	gap: 30px;
}
@media screen and (max-width: 767px) {
	.history > li {
		flex-direction: column;
		gap: 5px;
	}
}

.history > li:not(:first-child) {
	margin-top: 15px;
}
@media screen and (max-width: 767px) {
	.history > li:not(:first-child) {
		margin-top: 20px;
	}
}

.history > li > p:nth-of-type(1) {
	width: 260px;
}

.history > li > p:nth-of-type(1)::before {
	content: '●';
	font-size: 1.5rem;
	line-height: 0;
	color: #00b9ff;
}
@media screen and (max-width: 767px) {
	.history > li > p:nth-of-type(1)::before {
		font-size: 1rem;
	}
}

@media screen and (max-width: 767px) {
	.history > li > p:nth-of-type(2) {
		padding-left: 1em;
	}
}


/*--------------------------------------------------
  プロフィール
--------------------------------------------------*/
.prof {
	margin-top: 50px;
}

.prof > li {
	display: flex;
	gap: 10px;
}
@media screen and (max-width: 767px) {
	.prof > li {
		flex-direction: column;
	}
}

.prof > li:not(:first-child) {
	margin-top: 15px;
}

.prof > li > p:nth-of-type(1) {
	min-width: 190px;
}

.prof > li > p:nth-of-type(1)::before {
	content: '■';
	font-size: 1rem;
	line-height: 0;
	color: #00b9ff;
}

.prof > li .caution {
	font-size: 0.85rem;
}


/*--------------------------------------------------
  ページ内ジャンプ
--------------------------------------------------*/
.link_btn_box {
	display: flex;
	gap: 25px;
	margin-top: 40px;
}
@media screen and (max-width: 767px) {
	.link_btn_box {
		flex-direction: column;
	}
}

.link_btn_box a {
	width: 280px;
}
@media screen and (max-width: 767px) {
	.link_btn_box a {
		width: 100%;
	}
}


/*--------------------------------------------------
  ○○時代
--------------------------------------------------*/
.era_box {
	margin-top: 70px;
}
@media screen and (max-width: 767px) {
	.era_box {
		margin-top: 50px;
		padding-top: 400px;
		background: url(../imgs/profile/overview_sp.png) no-repeat center top / auto 400px;
	}
}

.era_box > li {
	scroll-margin-top: 120px;
	padding: 45px;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 4px 4px 10px 0px rgba(0, 185, 255, 0.5);
}
@media screen and (max-width: 767px) {
	.era_box > li {
		scroll-margin-top: 100px;
		padding: 40px 30px;
	}
}

.era_box > li:not(:first-child) {
	margin-top: 80px;
}
@media screen and (max-width: 767px) {
	.era_box > li:not(:first-child) {
		margin-top: 40px;
	}
}

.era_box > li h2 {
	font-size: 2rem;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	.era_box > li h2 {
		font-size: 1.75rem;
		font-weight: 700;
	}
}

.era_box > li .sub_heading {
	margin-top: 15px;
	font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
	.era_box > li .sub_heading {
		margin-top: 10px;
		font-size: 1.25rem;
		font-weight: 700;
	}
}

.era_box > li .layout_flex {
	display: flex;
	gap: 40px;
	margin-top: 35px;
}
@media screen and (max-width: 767px) {
	.era_box > li .layout_flex {
		flex-direction: column;
		gap: 20px;
	}
}

.era_box > li .layout_flex > p:nth-of-type(1),
.era_box > li .layout_flex > .thumb {
	width: 540px;
}
@media screen and (max-width: 767px) {
	.era_box > li .layout_flex > p:nth-of-type(1),
	.era_box > li .layout_flex > .thumb {
		width: 100%;
	}
}

.era_box > li .pictures {
	display: flex;
	flex-wrap: wrap;
	gap: 36px;
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.era_box > li .pictures {
		gap: 15px;
		margin-top: 30px;
	}
}

.era_box > li .pictures li {
	width: 345px;
}
@media screen and (max-width: 767px) {
	.era_box > li .pictures li {
		width: 47%;
	}
}

.era_box > li .link_btn_box {
	justify-content: center;
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.era_box > li .link_btn_box {
		margin-top: 30px;
	}
}

