@charset "UTF-8";
/* CSS Document */

.pc-none { 
	display:none; 
}

/* ------------------------------
  Reset
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  background-color: #000;
  line-height: 1.8;
	overflow-x: hidden;
}





html { 
	font-size: 62.5%;
}
body {
	font-family: "Noto Sans JP", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 3.4rem;
  font-feature-settings: "palt" 1;
  margin:0;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  font-synthesis: none; /* iOSでの擬似ボールド/イタリック抑止 */
}
a {
	text-decoration: none;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.bold {
	font-weight: bold;
}



/* ------------------------------
  Header
------------------------------ */
header {
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: 10;
	width: 30rem;
}
header h1 {
	width: 100%;
}
header h1 img {
  width: 100%;
}
/* ------------------------------
  Top FV (ファーストビュー)
------------------------------ */
.top_fv {
  position: relative;
	height: 100vh;
	display: flex; flex-direction: column; justify-content: center;
	padding: 0 5%;
}
.top_fv::before {
  position: absolute;
	width: 100%;
  height: 130vh;
	top: 0;
	left: 0;
  background: linear-gradient(120deg, #B20000 0%, #B20000 25%, #000 25%, #000 100%);
	content: "";
	z-index: -1;
}
.top_fv::after {
  position: absolute;
	top: 20rem;
	right: 0;
	width: 60rem;
  height: 300rem;
	background: linear-gradient(120deg, transparent 0%, transparent 20%, #1A1A1A 20%, #1A1A1A 100%);
  clip-path: polygon(10% 98%, 100% 100%, 100% 0);
	content: "";
	z-index: -1;
}

.project_text {
	display: block;
	width: 20rem;
	padding: 0.5rem;
	border: solid 0.1rem;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	margin: 0 0 6rem;
}

.top_fv h2 {
  font-size: 8rem;
  font-weight: 800;
  margin-bottom: 5rem;
  line-height: 1.3;
}

.top_fv_text {
  font-size: 6rem;
  font-weight: 800;
}

/* ------------------------------
  Main Text
------------------------------ */
.top_maintext {
  padding: 15rem 10%;
}

.top_maintext p {
	font-size: 2rem;
	line-height: 2.2;
	margin: 0 0 4rem;
}
/* ------------------------------
  Content List
------------------------------ */
.top_content_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top_content_list li {
  position: relative;
  overflow: hidden;
}

/* コンテンツ共通設定 */
.top_content {
  display: block;
  position: relative;
  overflow: hidden;
	padding: 3rem 0;
	background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
	aspect-ratio: 16 / 9;       /* 比率で高さを作る（対応ブラウザ多い） */
  min-height: clamp(320px, 40vw, 560px); /* 低解像度でも潰れない保険 */
}

.top_bg01 {
  background-image: url("images/top_content-img01.png");
}
.top_bg02 {
  background-image: url("images/top_content-img02.png");
}
.top_bg03 {
  background-image: url("images/top_content-img03.png");
}

/* ✅ホバー時ズーム（画像が斜めでもOK） */
.top_content:hover {
  transform: scale(1.05);
}

/* 半透明オーバーレイ */
.top_content_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.1s;
}


.top_content_inner {
	border: solid 0.1rem #fff;
  color: #fff;
  padding: 6rem 5rem 5rem;
  position: relative;
  z-index: 2;
}

.top_content_inner h3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
	letter-spacing: 0.1rem;
  text-align: left;
}
.top_content_inner01,
.top_content_inner03 {
	margin: 0 10% 0 auto;
}
.top_content_inner02 {
	margin: 0 auto 0 10%;
}
.top_content_inner h3::before {
	position: absolute;
	content: "";
	width: 7rem;
	height: 5.8rem;
	background: linear-gradient(140deg, #FE0100 0%, #FE0100 50%, transparent 50%, transparent 100%);
	opacity: 0.7;
	top: 0.6rem;
	left: -1rem;
}
.top_content_inner01 h3::after,
.top_content_inner02 h3::after,
.top_content_inner03 h3::after {
	position: absolute;
	top: 2rem;
	left: 0.8rem;
	font-size: 3rem;
	font-family: "Roboto", sans-serif;
	font-style: italic;
}
.top_content_inner01 h3::after {
	content: "#1";
}
.top_content_inner02 h3::after {
	content: "#2";
}
.top_content_inner03 h3::after {
	content: "#3";
}


/* ホバー時でもズームさせない */
.top_content.comingsoon:hover {
  transform: none;
}


/* ------------------------------
  Footer
------------------------------ */
footer {
  background: #fff;
  padding: 4rem 0;
	margin: 10rem 0 0;
  text-align: center;
  font-size: 1.5rem;font-weight: 700;
  color: #000;
}

footer span img {
  width: 15rem;
  vertical-align: middle;
  margin-left: 1rem;
}





/**インタビュー記事**/
.interview_fv {
	position: relative;
	height: 100vh;
	display: flex; flex-direction: column;
	justify-content: flex-end;
	padding: 0 5%;
	background: url("images/content-fv-01.png") no-repeat;
	background-size: cover;
}
.interview_fv::before {
  position: absolute;
	width: 180rem;
  height: 25vh;
	top: 0;
	left: 0;
  background: linear-gradient(143deg, #FE0100 0%, #FE0100 12%, transparent 12%, transparent 100%);
	content: "";
	opacity: 0.8;
}

.interview_fv_02 {
	background: url("images/content-fv-02.png") no-repeat;
	background-size: cover;
}
.interview_fv_03 {
	background: url("images/content-fv-03.png") no-repeat;
	background-size: cover;
}
.interview_fv_sub {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.5;
}

.interview_fv h2 {
	margin: 0 0 5rem;
	font-size: 7.5rem;
	font-weight: 900;
	line-height: 1.3;
}
.interview_number {
	position: absolute;
	top: 6rem;
	left: 5rem;
	font-size: 10rem;
	font-weight: 900;
	font-style: italic;
	letter-spacing: 0.5rem;
}
.interview_number span {
	font-size: 7rem;
}

/* ------------------------------
  Main Text
------------------------------ */
.interview_maintext {
  margin: 20rem 15%;
}

.interview_maintext_number {
	margin: 0 -10% 6rem;
	font-size: 8rem;
	font-weight: 800;
	font-style: italic;
	letter-spacing: 0.5rem;
	opacity: 0.6;
}
.interview_maintext_number span {
	font-size: 5rem;
}
.interview_maintext p {
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.2;
	letter-spacing: 0.1rem;
	margin: 0 auto 4rem;
}
.interview_maintext p span {
	font-weight: 700;
	letter-spacing: 0.2rem;
}




.interview_introduction {
	width: 70%;
	margin: 15rem auto;
	padding: 1rem 6rem 3rem;
	border-top: solid 0.2rem #fff;
	border-bottom: solid 0.2rem #fff;
}
.interview_introduction_content {
	display: flex;
	align-items: center;
	margin: 5rem auto;
}
.interview_introduction_content img {
	width: 13rem;
	margin: 0 3rem 0 0;
}
.interview_introduction_content h3 {
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1.3;
}
.introduction_position {
	font-size: 1.4rem;
	font-weight: 500;
}
.introduction_name {
	margin: 1rem 0 0;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
}
.introduction_name span {
	margin: 0 0 0 0.5rem;
	font-size: 1.8rem;
	font-weight: 600;
}
.small_text {
	font-size: 1.3rem;
	font-weight: 400;
}
.interview_introduction .small_text {
	margin: -2rem 0 0;
	text-align: right;
}






.interview_toc {
	position: relative;
	margin: 20rem 10%;
	padding: 8rem 8%;
	border: solid 0.1rem #fff;
}
.interview_toc::before {
	position: absolute;
	width: 100%;
	height: 12rem;
	top: 1.5rem;
	left: -2rem;
	background: linear-gradient(140deg, #FE0100 0%, #FE0100 10%, transparent 10%, transparent 100%);
	content: "";
	opacity: 0.8;
}
.interview_toc h2 {
	position: absolute;
	top: 5rem;
	left: 4rem;
	font-size: 4rem;
	font-weight: 800;
	letter-spacing: 0.2rem;
}
.interview_toc ul {
	margin: 5rem auto 0;
	list-style: none;
	overflow: hidden;
	transition: max-height 0.5s ease;
}
.interview_toc ul li {
	margin: 3rem auto 0;
}
.interview_toc ul li a {
	position: relative;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
	color: #fff;
	transition: .4s;
}
.interview_toc ul li a::before {
	position: absolute;
	content: "#";
	left: -3rem;
	opacity: 0.6;
}
.interview_toc ul li a:hover {
	color: #FF3D3C;
	transition: .3s;
}
.toc_toggle_btn {
    display: none;
}





.interview_content {
	margin: 20rem 10% 15rem 14%;
	scroll-margin-top: 12rem;
}
.interview_content h3 {
	position: relative;
	margin: 0 0 6rem;
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: 0.1rem;
}
.interview_content h3::before {
	position: absolute;
	width: 80rem;
	height: 3rem;
	top: -1rem;
	left: -5rem;
	background: linear-gradient(138deg, #FE0100 0%, #FE0100 2.5%, transparent 2.5%, transparent 100%);
	content: "";
}
.interview_talk {
	display: flex;
	margin: 5rem auto;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 2.3;
}
.interview_talk_speaker {
	width: 10rem;
	margin: 0 2rem;
	font-weight: 500;
}
.interview_talk_sspeech {
	width: 100%;
}
.interview_talk_sspeech p {
	margin: 0 0 2.5rem;
}
.interview_talk_sspeech .small_text {
	line-height: 2;
}
.sasaki {
	color: #00FFFF;
}
.yamashita {
	color: #FFA500;
}

.closing {
	margin: 15rem auto 10rem;
}
.closing p {
	font-size: 2rem;
	font-weight: 500;
	line-height: 2.2;
	letter-spacing: 0.1rem;
	margin: 0 auto 4rem;
}
.interview_content img {
	width: 100%;
}

.interview_talk_listbtn {
	margin: 10rem 10% 20rem;
	padding: 2rem;
	border-top: solid 0.1rem #fff;
	border-bottom: solid 0.1rem #fff;
}
.interview_talk_listbtn ul {
	display: flex;
	justify-content: space-between;
	list-style: none;
}
.interview_talk_listbtn ul li {
	position: relative;
	padding: 3.5rem 0 0;
	transition: .3s;
}
.interview_talk_listbtn ul li:hover {
	opacity: 0.7;
	transition: .3s;
}
.interview_prev::before {
	position: absolute;
	top: 1.2rem;
	left: 50%;
	transform: translate(-50%,0);
	content: "";
	width: 2rem; 
	height: 2rem;
	background: url("images/interview-prev.png") no-repeat;
	background-size: contain;
}
.interview_next::before {
	position: absolute;
	top: 1.2rem;
	left: 50%;
	transform: translate(-50%,0);
	content: "";
	width: 2rem; 
	height: 2rem;
	background: url("images/interview-next.png") no-repeat;
	background-size: contain;
}
.interview_home::before {
	position: absolute;
	top: 1.2rem;
	left: 50%;
	transform: translate(-50%,0);
	content: "";
	width: 2rem; 
	height: 2rem;
	background: url("images/interview-home.png") no-repeat;
	background-size: contain;
}
.interview_talk_listbtn ul li a {
	color: #fff;
}

.interview_prev_none,
.interview_next_none {
	opacity: 0!important;
}



.interview_talk_sspeech_inner {
	display: inline-block;
    border: solid 0.1rem;
    padding: 2rem 4rem 0;
    margin: 0 0 3rem;
	width: 50%;
}
.interview_talk_sspeech_inner_02 {
	display: inline-block;
    border: solid 0.1rem;
    padding: 2rem 4rem 0;
    margin: 0 0 3rem;
	width: 100%;
}

.interview_talk_other {
	margin: 10rem 15% 20rem;
}
.interview_talk_other_content {
	display: block;
	position: relative;
	border: solid 0.1rem #fff;
	padding: 5rem 2rem;
	margin: 4rem auto;
	transition: .3s;
}
.interview_talk_other_content:hover {
	transition: .3s;
	background: rgb(254 1 0 / 40%);
}
.interview_talk_other_content h4 {
	font-size: 2.4rem;
	letter-spacing: 0.1rem;
	text-align: center;
	color: #fff;
}
.interview_talk_other_content::before {
	position: absolute;
    width: 50%;
    height: 15rem;
    top: 1rem;
    left: -1rem;
    background: linear-gradient(140deg, #FE0100 0%, #FE0100 10%, transparent 10%, transparent 100%);
    content: "";
    opacity: 0.8;
	color: #fff;
	pointer-events: none;
}
.interview_talk_other_content p {
	position: absolute;
	top: 2rem;
	left: 1rem;
	font-size: 4rem;
	font-weight: 800;
	letter-spacing: 0.4rem;
	font-style: italic;
	color: #fff;
}
.interview_talk_other_content p span {
	font-size: 3rem;
}




.interview_fixedbtn {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 1000;
}
.interview_fixedbtn ul {
	display: flex;
	justify-content: center;
	align-items: center;
}
.interview_fixedbtn ul li {
	list-style: none;
	background: #fff;
	border-radius: 50rem;
	margin: 0 0.3rem;
	overflow: hidden;
	transition: .3s;
}
.interview_fixedbtn ul li:hover {
	opacity: 0.9;
	transition: .3s;
	transform: translateY(-0.3rem);
}
.interview_fixedbtn_prev,
.interview_fixedbtn_next {
	width: 5.2rem;
	height: 5.2rem;
}
.interview_fixedbtn_home {
	width: 6.2rem;
	height: 6.2rem;
}
.interview_fixedbtn ul li a {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.interview_fixedbtn_prev a:link,
.interview_fixedbtn_next a:link,
.interview_fixedbtn_prev a:visited,
.interview_fixedbtn_next a:visited {
	position: relative;
	margin: 1rem 0 0;
	font-style: italic;
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: 0.2rem;
	color: #000;
}
.interview_fixedbtn_prev a::before,
.interview_fixedbtn_next a::before {
	position: absolute;
	top: -0.15rem;
	content: "";
	width: 1.5rem;
	height: 1.5rem;
}
.interview_fixedbtn_prev a::before {
	background: url("images/interview-prev-bk.png") no-repeat;
	background-size: contain;
	margin: 0 0 0 0.2rem;
}
.interview_fixedbtn_next a::before {
	background: url("images/interview-next-bk.png") no-repeat;
	background-size: contain;
	margin: 0 -0.6rem 0 0;
}
.interview_fixedbtn_prev a span,
.interview_fixedbtn_next a span {
	font-size: 1.6rem;
}
.interview_fixedbtn_home a:link,
.interview_fixedbtn_home a:visited {
	position: relative;
	margin: 1.2rem 0 0;
	color: #000;
	font-size: 1.4rem;
	font-weight: 700;
}
.interview_fixedbtn_home a::before {
	position: absolute;
	top: -0.1rem;
	content: "";
	width: 2rem;
	height: 2rem;
	background: url("images/interview-home-bk.png") no-repeat;
	background-size: contain;
	background-position: center;
}
.interview_fixedbtn_prev_none,
.interview_fixedbtn_next_none {
	opacity: 0!important;
}


.gomu_top_back_btn {
	position: absolute;
    top: 1rem;
    left: 2rem;
	z-index: 1000;
}
.gomu_top_back_btn a:link,
.gomu_top_back_btn a:visited {
	color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
}