@charset "UTF-8";
/* px to rem functions start 
rem(Xpx)でコンパイル時にremへ変換

各ファイル内で1行目に
@use "variable" as val;
を入れた後、
font-size: val.rem(●px);
と記述することでpx→rem自動変換する。
*/
:root {
  --primary: #ff4848;
}

body {
  background-color: #fff7f7;
  overflow-x: hidden;
}

header {
  background: #fff;
}

.childpage .wrapper {
  max-width: 1100px;
  margin: auto;
  width: 96%;
}

.result_note_child .fc_pink {
  color: #f56c6e;
}
.result_note_child .result_note_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: flex-start;
  color: #626262;
  font-weight: bold;
  margin-top: 2em;
}
@media screen and (max-width: 960px) {
  .result_note_child .result_note_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .result_note_child .result_note_list {
    grid-template-columns: 1fr;
    margin-top: 10vw;
  }
}
.result_note_child .result_note_card {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 20px 20px;
  display: grid;
  grid-template-areas: "univ_name" "picture" "student" "ttl" "text" "more";
  position: relative;
  min-height: 406px;
}
@media screen and (max-width: 767px) {
  .result_note_child .result_note_card {
    grid-template-areas: "univ_name univ_name" "picture student" "picture ttl" "text text" "more more";
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
    padding: 16px;
    min-height: unset;
  }
}
.result_note_child .result_note_card .passed_univ_name {
  font-weight: bold;
  color: #f56c6e;
  font-size: 1.125rem;
  text-align: center;
  grid-area: univ_name;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 767px) {
  .result_note_child .result_note_card .passed_univ_name {
    font-size: 0.9375rem;
    line-height: 1;
    margin-bottom: 0;
  }
}
.result_note_child .result_note_card .passed_univ_name .univ {
  font-size: 120%;
}
.result_note_child .result_note_card .passed_univ_name .depart {
  display: block;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .result_note_child .result_note_card .passed_univ_name .depart {
    display: inline-block;
    margin-left: 0.5em;
  }
}
.result_note_child .result_note_card figure {
  grid-area: picture;
}
@media screen and (max-width: 767px) {
  .result_note_child .result_note_card figure {
    margin-bottom: 0;
  }
}
.result_note_child .result_note_card .student_name {
  grid-area: student;
  justify-self: center;
  align-self: center;
}
.result_note_child .result_note_card .result_message_ttl {
  grid-area: ttl;
  font-size: 0.9375rem;
  justify-self: center;
}
@media screen and (max-width: 767px) {
  .result_note_child .result_note_card .result_message_ttl {
    font-size: 0.75rem;
    justify-self: unset;
  }
}
.result_note_child .result_note_card button {
  grid-area: more;
  align-self: flex-end;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .result_note_child .result_note_card button {
    font-size: 0.8125rem;
  }
}
.result_note_child button {
  color: #f56c6e;
  padding: 0.3em;
  margin-top: 0.5em;
  font-weight: bold;
  border: 1px solid #f56c6e;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .result_note_child button {
    padding: 0.5em;
    background: #f56c6e;
    color: #fff;
  }
}
.result_note_child button::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url(/freestep/wp-content/uploads/sites/2/fs_250122_ico_arrou_down.svg) no-repeat center center/contain;
  display: inline-block;
  position: absolute;
  right: 0.5em;
  top: 50%;
  translate: 0 -50%;
  transition: 0.2s ease translate;
}
.result_note_child button:hover::after {
  translate: 0 -40%;
}
.result_note_child button.current:after {
  rotate: 180deg;
}
@media screen and (min-width: 768px) {
  .result_note_child button.current {
    background: #f56c6e;
    color: #fff;
  }
  .result_note_child button.current:hover::after {
    translate: 0 -50%;
  }
}
.result_note_child .result_text {
  grid-area: text;
  font-size: 0.9375rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  padding: 1em 0;
}

.experience_ttl {
  font-weight: bold;
  text-align: center;
  margin-top: 2em;
}
.experience_ttl .year {
  color: #fff;
  font-size: 1.125rem;
  background: var(--primary);
  font-weight: bold;
  padding: 0.3em 0.5em;
  border-radius: 2px;
}
@media screen and (max-width: 960px) {
  .experience_ttl .year {
    font-size: 4vw;
  }
}
.experience_ttl .title {
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.4;
  margin-top: 0.5em;
}
@media screen and (max-width: 960px) {
  .experience_ttl .title {
    font-size: 4vw;
  }
}
.experience_ttl .title .lg {
  font-size: 175%;
  display: block;
  position: relative;
}
.experience_ttl .title .lg::after, .experience_ttl .title .lg::before {
  content: "";
  width: 262px;
  height: 90px;
  background: url(https://www.kaisei-group.co.jp/freestep/wp-content/uploads/sites/2/fs_250122_senbatsu_img01.png) no-repeat center center/contain;
  display: block;
  position: absolute;
  top: -0.2em;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .experience_ttl .title .lg::after, .experience_ttl .title .lg::before {
    width: 35vw;
    height: 12vw;
    top: 1em;
  }
}
.experience_ttl .title .lg::before {
  left: 8%;
}
@media screen and (max-width: 960px) {
  .experience_ttl .title .lg::before {
    left: 12vw;
  }
}
.experience_ttl .title .lg::after {
  scale: -1 1;
  right: 8%;
}
@media screen and (max-width: 960px) {
  .experience_ttl .title .lg::after {
    right: 12vw;
  }
}

.experience_line {
  display: flex;
  margin: 2em 0;
}