@charset "UTF-8";

.nav > li:nth-child(5) > a{
	color: #A01F24;
}

.vision-wrapper{
	background-color: #fff;
	padding: 20px 0 100px;
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight: 500;
}

.vision-inner{
	max-width: 980px;
	margin: 0 auto;
	padding: 0 15px;
}

.content-box{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.contentL{
	max-width: 720px;
	width: 100%;
}
.contentsR{
	width: 200px;
  margin-left: 30px;
}
.vision-inner h2{
	text-align: center;
	margin-bottom: 50px;
}


.vision-inner h2 span{
	font-size: 27px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 900;
	letter-spacing: 0.05em;
	color: #231815;
	border-bottom: 2px dotted #231815;
	padding-bottom: 5px;
	line-height: 2em;
}

/* .flow_img{
	max-width: 680px;
	margin: 0 auto;
} */

.subNav {
	width: 200px;
	position: relative;
}
.subNav li {
	width: 100%;
	display: inline;
}
.subNav li.top {
	background: #ed002f;
	color: #fff;
	padding: 10px 0;
	text-align: center;
	display: block;
}
.subNav li .current {
	color: #ed002f;
}
.subNav li a {
	padding: 15px 15px 15px 20px;
	text-align: left;
	display: block;
	position: relative;
	border-bottom: #000 1px dotted;
	font-weight: 700;
	color: #000;
}
.subNav li a:after {
	content: '';
	margin-top: -4px;
	top: 50%;
	left: 2px;
	width: 8px;
	height: 8px;
	color: #888;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	display: block;
	position: absolute;
	border-top: 2px solid #b0b0b0;
	border-right: 2px solid #b0b0b0;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(
45deg
);
	transform: rotate(
45deg
);
}
.subNav li a:hover {color: #ed002f;}
a:link {
	color: #222;
	text-decoration: none;
}
a, a:hover {
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.sp-only{
	display: none;
}


@media screen and (max-width:970px){


	.sp-only{
		display: block;
	}

}

@media screen and (max-width:768px){

	.content-box {
   flex-direction: column;
}
.contentL {
	max-width: 100%;
	width: 100%;
	margin-bottom: 50px;
}
.contentsR {
	width: 100%;
	margin: 0 auto;
}
.subNav {
	width: 100%;
}

.vision-inner h2 span {
	font-size: 25px;
}



}

@media screen and (max-width:500px){




.vision-inner h2 span {
	font-size: 20px;
}


}


/* ===== CSS Variables ===== */
:root {
  --c-texPri: #37352f;

  /* Purple (インターンシップ) */
  --c-purBorder: #ed002f;
  --c-purBacHeading: #ed002f;

  /* Red/Pink (本選考) */
  --c-redBorder: #f38b1e;
  --c-redBacHeading: #f38b1e;
  --c-redText: #c0392b;

  /* Orange (内定後) */
  --c-oraBorder: #0750bc;
  --c-oraBacHeading: #0750bc;

  /* Callout */
  --c-calloutBorder: #e0e0e0;
  --c-calloutBg: #ffffff;

  /* Divider */
  --c-divider: #e0e0e0;

  /* Section label border */
  --c-labelBorder: #c0c0c0;
}

/* ===== Base ===== */
* {
  box-sizing: border-box;
}




.flow_wrap p {
  margin: 10px auto 25px;
  word-break: break-word;
  line-height: 1.5;
}

/* ===== Divider ===== */
.divider {
  border: none;
  border-top: 1px solid var(--c-divider);
  margin: 32px 0;
}

/* ===== Section Labels (左縦線 + テキスト) ===== */
.section-label {
  display: flex;
  align-items: center;
  font-size: 1.3em;
  font-weight: 600;
  color: var(--c-texPri);
  padding: 4px 0 4px 14px;
  margin: 0 0 16px 0;
  border: none;
  background: none;
  position: relative;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background-color: var(--c-labelBorder);
}

/* ===== Section Headings ===== */
.section-heading {
  font-size: 1.1em;
  line-height: 1.4;
  margin: 0 0 4px 0;
  padding: 6px 10px;
  color: #fff;
}

.heading-purple { background: var(--c-purBacHeading); }
.heading-red    { background: var(--c-redBacHeading); }
.heading-orange { background: var(--c-oraBacHeading); }
.section-label.label-purple::before { background-color: var(--c-purBorder); }
.section-label.label-red::before    { background-color: var(--c-redBorder); }
.section-label.label-orange::before { background-color: var(--c-oraBorder); }
/* ===== Callout ===== */
.callout {
  border-radius: 4px;
  border: 1px solid var(--c-calloutBorder);
  background: var(--c-calloutBg);
  padding: 12px 16px;
  margin: 10px 0 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.callout-icon {
  width: 20px;
  margin-top: 1px;
}

.callout-red .callout-text {
  color: var(--c-redText);
  font-size: 0.95em;
  line-height: 1.6;
}

.callout-gray {
  background: #f7f7f5;
  border-color: transparent;
  display: inline-flex;
  padding: 8px 14px;
}

/* ===== Links ===== */
.flow_wrap .notion-link {
  color: #858080;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(55, 53, 47, 0.35);
  text-underline-offset: 2px;
}

flow_wrap .notion-link:hover {
  text-decoration-color: rgba(55, 53, 47, 0.7);
}

/* ===== Intro Text ===== */
.intro-text {
  margin-bottom: 16px;
  color: var(--c-texPri);
}

/* ===== Back Button Row ===== */
.back-button-row {
  margin-top: 16px;
}
