/* ============================
	single post
============================ */
.entry-inner {
	margin-top: 150px;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .entry-inner {
		margin-top: 0;
    padding: 60px 0;
  }
}

#entry-article {
  box-sizing: border-box;
  width: 100%;
}

#entry-article .post-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

#entry-article .post-ttl-box {
	margin-top: 15px;
}

#entry-article .post-ttl {
	font-size: 3.2rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.5;
	margin: 0;
	position: relative;
}

#entry-article .post-ttl::before {
	background-image: url("../images/common/title_line01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -30px;
	content: "";
	display: block;
	height: 8px;
	left: 0;
	position: absolute;
	width: 68px;
}

@media screen and (max-width: 767px) {
	#entry-article .post-ttl {
		font-size: 2.2rem;
	}
}

@media screen and (max-width: 767px) {
  #entry-article {
    border-right: none;
    width: 100%;
    padding: 0;
  }
}

/* sidebar */
#entry-sidebar {
  box-sizing: border-box;
  width: 32%;
  padding: 0 0 0 24px;
}

#entry-sidebar .sidebar-head {
  margin: 0;
}

#entry-sidebar .sidebar-cont {
  margin-top: 20px;
}

#sidebar-news-box {
  margin: 50px 0 0;
}

.sidebar-news-item + .sidebar-news-item {
  margin: 20px 0 0;
}

.sidebar-news-item .left a {
  width: 100px;
}

.sidebar-news-item .right {
  width: 190px;
}

.sidebar-news-item .right .post-ttl {
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
}

@media screen and (max-width: 767px) {
  #entry-sidebar {
    width: 100%;
    padding: 0;
    margin: 50px 0 0;
  }
  .sidebar-news-item .right {
    width: 220px;
  }
}

/* page nav */
#nav-below {
	align-items: center;
	display: flex;
	column-gap: 45px;
	justify-content: center;
  margin-bottom: 60px;
  margin-top: 80px;
	row-gap: 40px;
}

#nav-below .nav-box {
  box-sizing: border-box;
}

#nav-below .nav-box.news-list {
	text-align: center;
	width: 300px;
}

#nav-below .nav-box.news-list .c-link {
	flex-direction: row-reverse;
	padding: 19px 36px 19px 20px;
}

#nav-below .nav-box.news-list .c-link .text {
	font-size: 2rem;
}

#nav-below .nav-box.news-list .c-link .arrow {
	transform: rotate(180deg);
}

#nav-below .prev-news a,
#nav-below .next-news a {
	background-color: var(--button-color);
	border-radius: 50%;
	display: flex;
  height: 63px;
  position: relative;
  text-indent: -999999px;
  vertical-align: middle;
  width: 63px;
}

#nav-below .prev-news a::before,
#nav-below .next-news a::before {
	background-color: var(--main-color);
	mask-image: url("../images/common/arrow_pagenation.svg");
	mask-repeat: no-repeat;
	mask-size: contain;
	content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 20px;
  height: 20px;
}

#nav-below .prev-news a::before {
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
	#nav-below {
		column-gap: 20px;
	}
	
	#nav-below .nav-box.news-list {
		max-width: 300px;
		width: fit-content;
	}
	
	#nav-below .nav-box.news-list .c-link {
			padding: 10px 36px 10px 20px;
	}

	#nav-below .nav-box.news-list .c-link .text {
		font-size: 1.6rem;
	}
	
	#nav-below .prev-news a,
	#nav-below .next-news a {
		height: 40px;
		width: 40px;
	}
	
	#nav-below .prev-news .first,
	#nav-below .next-news .last {
		font-size: 1.2;
		max-width: 70px;
	}
}

/* ============================
	single interview
============================ */
body.single-interview {
	overflow-x: hidden;
}

body.single-interview .section-profile .sec-inner {
	padding-top: 200px;
}

body.single-interview .profile-container {
	
	min-height: 480px;
	position: relative;
}

body.single-interview .profile-container .entry-thumb {
	margin: 0;
	max-width: 670px;
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	width: 100%;
}

body.single-interview .profile-container .image-box {
	position: relative;
}

body.single-interview .profile-container .image-box::before {
	background-image: url("../images/common/wave01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-size: contain;
	content: "";
	display: block;
	height: 79px;
	left: -70px;
	position: absolute;
	top: -75px;
	width: 144px;
}

body.single-interview .profile-container .image-box::after {
	background-image: url("../images/common/wave02.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-size: contain;
	content: "";
	display: block;
	height: 79px;
	right: -80px;
	position: absolute;
	bottom: -40px;
	width: 144px;
}

body.single-interview .profile-container .image-box img {
	aspect-ratio: 67 / 48;
	border-radius: 40px;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

body.single-interview .profile-container .entry-box {
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	z-index: 1;
}

body.single-interview .profile-container .entry-box .title {
	background-color: var(--white);
	color: var(--black);
	font-size: max(5rem, 2.4rem);
	font-weight: 700;
	display: inline;
	letter-spacing: .05em;
	line-height: 1.4;
	margin-top: 8px;
	width: fit-content;
}

body.single-interview .profile-container .entry-box .joined-year {
	color: #222;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 40px;
}

body.single-interview .profile-container .entry-box .interview-cat-box {
	margin-top: 30px;
}

body.single-interview .profile-container .entry-box .tag {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

body.single-interview .profile-container .entry-box .tag span {
	background-color: var(--main-color);
	border-radius: 25px;
	color: var(--white);
	font-size: 2.4rem;
	font-weight: 700;
	padding:  5px 20px;
	width: fit-content;
}

@media screen and (max-width: 767px) {
	body.single-interview .profile-container {
		min-height: unset;
	}

	body.single-interview .section-profile .sec-inner {
		padding-top: 80px;
	}

	
	body.single-interview .profile-container .entry-box {
		position: static;
		translate: 0 0;
	}
	
	body.single-interview .profile-container .entry-box .title {
		font-size: 2.4rem;
	}
	
	body.single-interview .profile-container .entry-box .joined-year {
		font-size: 2rem;
		margin-top: 10px;
	}
	
	body.single-interview .profile-container .entry-box .interview-cat-box {
		margin-top: 10px;
	}
	
	body.single-interview .profile-container .entry-box .tag span {
		font-size: 1.4rem;
		padding:  5px 16px;
	}
	
	body.single-interview .profile-container .entry-thumb {
		margin-inline: auto;
		margin-top: 40px;
		max-width: unset;
		position: static;
		translate: 0 0;
		width: 90%;
	}
	
	body.single-interview .profile-container .image-box::before {
		height: 35px;
		left: -10px;
		top: -10px;
		width: 64px;
	}

	body.single-interview .profile-container .image-box::after {
		height: 35px;
		right: -10px;
		bottom: -10px;
		width: 64px;
	}
	
	body.single-interview .profile-container .image-box img {
		border-radius: 20px;
	}
}

body.single-interview .section-interview .explanation-box {
	column-gap: 58px;
	display: flex;
}

body.single-interview .section-interview .explanation-box:nth-child(even) {
	flex-direction: row-reverse;
}

body.single-interview .section-interview .explanation-box + .explanation-box {
	margin-top: 70px;
}

body.single-interview .section-interview .explanation-box .image-box {
	max-width: 420px;
	width: 100%;
}

body.single-interview .section-interview .explanation-box .image-box img {
	border-radius: 40px;
}

body.single-interview .section-interview .explanation-box .info-area {
	max-width: 546px;
	width: 100%;
}

body.single-interview .section-interview .explanation-box .info-area .title {
	font-size: 3rem;
	font-weight: 700;
	position: relative;
}

body.single-interview .section-interview .explanation-box .info-area .title::before {
	background-image: url("../images/common/title_line04.svg");
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -15px;
	content: "";
	display: block;
	height: 8px;
	left: 0;
	overflow-x: hidden;
	position: absolute;
	width: 68px;
}

body.single-interview .section-interview .explanation-box .info-area .text {
	margin-top: 60px;
	text-align: justify;
}

@media screen and (max-width: 767px) {
	body.single-interview .section-interview .sec-inner {
		padding-top: 0;
	}
	
	body.single-interview .section-interview .explanation-box {
		flex-wrap: wrap-reverse;
		row-gap: 30px;
	}
	
	body.single-interview .section-interview .explanation-box .info-area .title {
		font-size: 1.8rem;
	}
	
	body.single-interview .section-interview .explanation-box .image-box {
		max-width: unset;
	}
	
	body.single-interview .section-interview .explanation-box .image-box img {
		border-radius: 20px;
	}

	body.single-interview .section-interview .explanation-box .info-area {
		max-width: unset;
	}
	
	body.single-interview .section-interview .explanation-box .info-area .text {
		margin-top: 40px;
	}
}

body.single-interview .section-schedule .sec-inner {
	background: linear-gradient(90deg,rgb(245 245 245 / 1) 0%, rgb(255 255 255 / 1) 100%);
}

body.single-interview .section-schedule .sec-inner .title-en {
	color: var(--white);
	position: relative;
}

body.single-interview .section-schedule .content-box {
	margin-top: 75px;
}

body.single-interview .section-schedule .schedule-container {
	column-gap: 10px;
	display: flex;
	flex-wrap: wrap;
}

body.single-interview .section-schedule .schedule-container .list-box {
	display: flex;
	flex-basis: calc(50% - 5px);
	flex-direction: column;
	flex-wrap: wrap;
	height: auto;
	width: 100%;
}

body.single-interview .section-schedule .schedule-item {
	padding-left: 35px;
	position: relative;
}

body.single-interview .section-schedule .schedule-item + .schedule-item {
	padding-top: 40px;
}

body.single-interview .section-schedule .schedule-item.column02:first-of-type {
	padding-top: 0;
}

body.single-interview .section-schedule .schedule-item:last-child:before {
	top: -50px;
}

body.single-interview .section-schedule .schedule-item::before {
	background-color: var(--button-color);
	content: "";
	display: block;
	height: 100%;
	left: 8px;
	position: absolute;
	top: 20px;
	width: 1px;
}

body.single-interview .section-schedule .schedule-item .time {
	position: relative;
}

body.single-interview .section-schedule .schedule-item .time::before {
	background-color: var(--button-color);
	border-radius: 50%;
	content: "";
	display: block;
	height: 17px;
	left: -35px;
	position: absolute;
	top: 10px;
	width: 17px;
}

body.single-interview .section-schedule .schedule-item .time::after {
	background-color: var(--main-text-color);
	border-radius: 50%;
	content: "";
	display: block;
	height: 5px;
	left: -29px;
	position: absolute;
	top: 16px;
	width: 5px;
	z-index: 1;
}

body.single-interview .section-schedule .schedule-item .time p {
	font-size: 3.1rem;
	font-weight: 700;
	line-height: 1;
}

body.single-interview .section-schedule .schedule-item .text p {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.6;
}

@media screen and (max-width: 1023px) {
	body.single-interview .section-schedule .schedule-item {
		width: 100%;
	}
	
	body.single-interview .section-schedule .schedule-container {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		height: 100%;
	}
	
	body.single-interview .section-schedule .schedule-container .list-box {
		flex-basis: 100%;
	}
	
	body.single-interview .section-schedule .schedule-item.column01:first-child {
		padding-top: 0;
	}
	
	body.single-interview .section-schedule .schedule-item.column02:first-of-type {
		padding-top: 40px;
	}
	
	body.single-interview .section-schedule .schedule-item.column02::before {
		top: -55px;
	}
}

@media screen and (max-width: 767px) {
	body.single-interview .section-schedule .content-box {
		margin-top: 50px;
	}
	
	body.single-interview .section-schedule .schedule-item .time p {
		font-size: 2.4rem;
	}
	
	body.single-interview .section-schedule .schedule-item .text {
		margin-top: 15px;
	}

	body.single-interview .section-schedule .schedule-item .text p {
		font-size: 1.8rem;
	}
	body.single-interview .section-schedule .schedule-item .time::before {
		top: 4px;
	}

	body.single-interview .section-schedule .schedule-item .time::after {
		top: 10px;
	}
}

body.single-interview .section-message .waves-container {
	top: -70px;
}

body.single-interview .section-message .sec-inner {
	padding-top: 0;
}

body.single-interview .section-message .sec-inner .title-en {
	top: 45px;
}

body.single-interview .section-message .message-box {
	align-items: center;
	column-gap: 78px;
	display: flex;
}

body.single-interview .section-message .message-box .text {
	max-width: 504px;
	text-align: justify;
	width: 100%;
}

body.single-interview .section-message .message-box .text .title {
	font-size: 2rem;
	margin-bottom: 1em;
}

body.single-interview .section-message .message-box .image-box {
	max-width: 436px;
	position: relative;
	width: 100%;
}

body.single-interview .section-message .message-box .image-box img {
	border-radius: 40px;
}

body.single-interview .section-message .message-box .image-box::before {
	background-image: url("../images/common/wave01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display:block;
	height: 79px;
	left: -70px;
	position: absolute;
	bottom: -30px;
	width: 144px;
}

@media screen and (max-width: 767px) {
	body.single-interview .section-message .waves-container {
		top: -20px;
	}
	
	body.single-interview .section-message .sec-inner {
		padding-top: 20px;
	}
		
	body.single-interview .section-message .sec-inner .title-en {
		top: 0;
	}
	
	body.single-interview .section-message .message-box {
		flex-wrap: wrap;
		row-gap: 30px;
	}
	
	body.single-interview .section-message .message-box .text {
		max-width: unset;
	}
	
	body.single-interview .section-message .message-box .image-box {
		max-width: unset;
	}
		
	body.single-interview .section-message .message-box .image-box::before {
		height: 35px;
		left: -10px;
		bottom: -10px;
		width: 64px;
	}
	
	body.single-interview .section-message .message-box .image-box img {
		border-radius: 20px;
	}
}

/* ============================
	entry-content
============================ */
.entry-thumb {
  margin-top: 50px;
}

.entry-content {
	margin-top: 90px;
}

.entry-content a {
  color: #0066cc;
}

.entry-content p {
  margin: 2em 0;
}

.entry-content p.mb35rem {
  margin-bottom: 3.5rem;
}

.entry-content hr {
  margin: 4rem 0;
  border: none;
  color: #fff;
  border-top: 1px dashed #eee;
  height: 0;
  line-height: 0;
  background: none;
  padding: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-weight: bold;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.entry-content h1 {
  font-size: 2.8rem;
  margin: 30px 0;
}

.entry-content h2 {
  border-bottom: 1px solid var(--border-color);
	color: var(--main-text-color);
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  margin: 50px 0 30px;
	padding-bottom: 15px;
}

.entry-content h3 {
  background-color: var(--button-color);
  box-sizing: border-box;
	color: var(--main-color);
  font-size: 1.8rem;
  margin: 50px 0 30px;
  padding: 10px 16px;
}

.entry-content h4 {
  font-size: 1.5rem;
  padding: 0 0 0 14px;
  border-left: 4px solid var(--border-color);
  margin: 50px 0 30px;
}

.entry-content h4.noborder {
  border: none;
  content: none;
  padding-bottom: 0;
}

.entry-content h4.noborder::after,
.entry-content .infobox h4::after {
  content: none;
}

.entry-content span.red {
  color: #df0101;
}

.entry-content span.bold {
  font-weight: bold;
  color: #310b00;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.entry-content span.underline {
  text-decoration: underline;
  color: #310b00;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.entry-content span.marker {
  background: linear-gradient(transparent 60%, rgba(255, 167, 0, 0.7) 60%);
  color: #310b00;
  font-weight: bold;
  padding: 3px 0 4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.entry-content blockquote {
  color: #555;
  font-size: 1.7rem;
  font-weight: bold;
  margin: 4rem 0;
  padding: 0.5rem 2.5rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  position: relative;
  line-height: 1.65;
}

.entry-content blockquote::before,
.entry-content blockquote::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 3.5rem;
  height: 2.5rem;
}

.entry-content blockquote p {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 2rem 0;
}

.entry-content blockquote small,
.entry-content blockquote small a {
  font-weight: normal;
  font-size: 11px;
  color: #888;
}

.entry-content blockquote cite {
  font-size: 1.2rem;
}

.instagram-media {
  max-width: 520px !important;
}

.twitter-tweet {
  width: 520px !important;
}

.entry-content blockquote.wp-embedded-content,
.entry-content blockquote.instagram-media,
.entry-content blockquote.twitter-tweet {
  border: 1px solid #eee;
  box-sizing: border-box;
}

.entry-content blockquote.wp-embedded-content::after,
.entry-content blockquote.wp-embedded-content::before,
.entry-content blockquote.instagram-media::after,
.entry-content blockquote.instagram-media::before,
.entry-content blockquote.instagram-media-registered::after,
.entry-content blockquote.instagram-media-registered::before,
.entry-content blockquote.twitter-tweet::after,
.entry-content blockquote.twitter-tweet::before {
  display: none !important;
}

.entry-content iframe.wp-embedded-content {
  width: 100% !important;
}

.entry-content .instagram-media {
  margin: 3.5rem 0 !important;
}

.entry-content .infobox {
  background: #fdf9f5;
  margin: 2.5rem 0;
  padding: 1rem 2.5rem;
  line-height: 1.65;
}

.entry-content .infobox h4 {
  margin: 1.5rem 0;
  font-size: 1.6rem;
  padding: 0;
  border: none;
}

.entry-content .infobox p {
  margin: 1.5rem 0;
  font-size: 1.5rem;
}

.entry-content .ytsl-wrapper {
  margin: 4rem 0;
}

.entry-content .ytsl-wrapper img {
  display: none !important;
}

.entry-content img {
  height: auto !important;
}

.entry-content .imagebox br {
  display: none;
}

.entry-content .imagebox small,
.entry-content .imagebox small a {
  font-weight: normal;
  font-size: 11px;
  color: #888;
}

.entry-content ul,
.entry-content ol {
  text-align: left;
}

.entry-content li {
  position: relative;
  padding-left: 20px;
}

.entry-content li:before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  margin: auto;
  background: #ccc;
  border-radius: 50%;
}

.entry-content a {
  text-decoration: underline;
}

.entry-content .wp-block-file__button {
	background-color: var(--button-color);
}

.entry-content .wp-block-file a {
  vertical-align: middle;
}

.entry-content .wp-caption {
  box-sizing: border-box;
  max-width: 100% !important;
  margin-bottom: 20px;
  padding: 10px;
  line-height: 18px;
  background: #f1f1f1;
  text-align: center;
}

.entry-content .wp-caption img {
  margin: 0;
  max-width: 100%;
}

.entry-content .wp-caption p.wp-caption-text {
  color: #777;
  font-size: 14px;
  margin: 10px 0 0 0;
}
