@charset "UTF-8";
/*====================================
* 追加設定
=====================================*/
:root {
  --c-yellow: #ffff76;
  --c-red: #1b3b8b;
  --c-black: #000;
  --c-white: #fff;
  --c-dark: #555;
  --c-gray: #f5f5f5;
  --c-darkgray: #767676;
  --c-skyblue: #009fe8;
  --c-teal: #4dbac1;
  --c-gold: #cfad5f;
  --c-blue: #004896;
  --f-sans: Noto Sans JP, sans-serif;
  --f-gothic: 游ゴシック体, Yu Gothic, YuGothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, MS Pゴシック, MS PGothic, sans-serif;
  --f-din: DINPro-Bold, sans-serif;
}

@font-face {
  font-weight: 100;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Thin.woff2") format("woff2");
}
@font-face {
  font-weight: 200;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-weight: 300;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Light.woff2") format("woff2");
}
@font-face {
  font-weight: 400;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-weight: 500;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Medium.woff2") format("woff2");
}
@font-face {
  font-weight: 600;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-SemiBold.woff2") format("woff2");
}
@font-face {
  font-weight: 700;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Bold.woff2") format("woff2");
}
@font-face {
  font-weight: 800;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-weight: 900;
  font-family: "Noto Sans JP";
  src: url("../font/Noto_Sans_JP/NotoSansJP-Black.woff2") format("woff2");
}
html {
  font-size: 2.5641025641vw;
}

body {
  color: var(--c-black);
  font-feature-settings: "palt";
  font-size: 1.6rem;
  overflow-x: hidden;
}
body.l-examinee {
  font-family: var(--f-gothic);
}
body.l-group {
  font-family: var(--f-sans);
}

a:not([class]) {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  a:not([class]):hover {
    opacity: 0.7;
  }
}

@media (768px <= width) {
  html {
    font-size: 62.5%;
    scroll-padding-top: 14rem;
  }
}
.l-container {
  width: 100%;
  max-width: calc(1200px + 3rem);
  padding-inline: 2rem;
  margin-inline: auto;
}

@media (768px <= width) {
  .l-container {
    padding-inline: 1.5rem;
  }
}
.l-drawer-btn {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-drawer-btn:hover {
    opacity: 0.7;
  }
}
.l-drawer-btn > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 0.3rem;
  border-radius: 100vh;
  background-color: var(--c-black);
}
.l-drawer-btn > span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 0.75rem));
  transition: transform 0.3s ease;
}
.l-drawer-btn > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.l-drawer-btn > span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 0.75rem));
  transition: transform 0.3s ease;
}
.l-drawer-btn.js-open > span {
  background-color: var(--c-white);
}
.l-drawer-btn.js-open > span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-drawer-btn.js-open > span:nth-child(2) {
  opacity: 0;
}
.l-drawer-btn.js-open > span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (768px <= width) {
  .l-drawer-btn {
    width: 4rem;
    height: 4rem;
    margin-right: 1rem;
  }
  .l-drawer-btn > span {
    width: 3.6rem;
  }
  .l-drawer-btn > span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 1.3rem));
  }
  .l-drawer-btn > span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 1.3rem));
  }
  .l-drawer-btn.js-open > span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-drawer-btn.js-open > span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.l-drawer-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.l-drawer-nav_inner {
  position: relative;
  z-index: 1;
  transform: translateX(100%);
  overflow: scroll;
  width: 100%;
  height: 100%;
  margin: 0 0 0 auto;
  padding: 6rem 4rem;
  background-color: var(--c-red);
  transition: transform 0.3s ease;
}
.l-drawer-nav_title {
  margin-bottom: 4rem;
  color: var(--c-white);
  font-weight: 700;
  font-size: 3rem;
  font-family: var(--f-din);
}
.l-drawer-nav_menu {
  display: grid;
  margin-bottom: 5rem;
  font-size: 1.8rem;
  row-gap: 1em;
}
.l-drawer-nav_item {
  font-size: inherit;
}
.l-drawer-nav_link {
  display: block;
  position: relative;
  padding-left: 3rem;
  color: var(--c-white);
  font-size: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-drawer-nav_link::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 1.2rem;
  height: 0.2rem;
  background-color: var(--c-white);
  content: "";
}
@media (hover: hover) {
  .l-drawer-nav_link:hover {
    opacity: 0.7;
  }
}
.l-drawer-nav_search {
  margin-bottom: 3rem;
}
.l-drawer-nav_search_btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 5rem;
  border-radius: 100vh;
  background-color: var(--c-white);
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: 0.09em;
  transition: opacity 0.3s ease;
  font-family: var(--f-sans);
  padding-left: 2rem;
}
.l-drawer-nav_search_btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_white.svg) no-repeat center/0.5rem;
  background-color: var(--c-red);
  vertical-align: middle;
  content: "";
}
@media (hover: hover) {
  .l-drawer-nav_search_btn:hover {
    opacity: 0.7;
  }
}
.l-drawer-nav_teachers_btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 4.5rem;
  border: 1px solid var(--c-white);
  color: var(--c-white);
  font-weight: 500;
  font-size: 1.4rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-family: var(--f-sans);
  padding-left: 2rem;
}
.l-drawer-nav_teachers_btn::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 1px;
  background-color: var(--c-white);
  content: "";
}
@media (hover: hover) {
  .l-drawer-nav_teachers_btn:hover {
    opacity: 0.7;
  }
}
.l-drawer-nav_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.l-drawer-nav.js-open {
  pointer-events: auto;
}
.l-drawer-nav.js-open .l-drawer-nav_inner {
  transform: translateX(0);
}
.l-drawer-nav.js-open .l-drawer-nav_bg {
  opacity: 1;
}

@media (768px <= width) {
  .l-drawer-nav_inner {
    width: 45%;
    min-width: 40rem;
  }
  .l-drawer-nav_inner > * {
    max-width: 42.6rem;
    margin-left: auto;
    margin-right: auto;
  }
  .l-drawer-nav_title {
    font-size: min(3.90625vw, 4rem);
  }
  .l-drawer-nav_menu {
    font-size: min(2.0833333333vw, 2rem);
  }
  .l-drawer-nav_link {
    padding-left: 3rem;
  }
  .l-drawer-nav_link::before {
    width: 1.2rem;
  }
  .l-drawer-nav_search {
    margin-bottom: 3rem;
  }
  .l-drawer-nav_search_btn {
    min-height: 6rem;
    font-size: min(1.8229166667vw, 2rem);
  }
  .l-drawer-nav_search_btn::after {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-size: 1rem;
  }
  .l-drawer-nav_teachers_btn {
    min-height: 6rem;
    font-size: min(1.8229166667vw, 1.8rem);
  }
  .l-drawer-nav_teachers_btn::after {
    width: 6.5rem;
  }
}
@media (768px <= width <= 1280px) {
  .l-drawer-nav_search_btn {
    justify-content: center;
    padding-left: 0;
  }
  .l-drawer-nav_search_btn::after {
    content: none;
  }
  .l-drawer-nav_teachers_btn {
    justify-content: center;
    padding-left: 0;
  }
  .l-drawer-nav_teachers_btn::after {
    content: none;
  }
}
.win .l-drawer-nav_search_btn {
  font-size: 1.2rem;
}
.win .l-drawer-nav_teachers_btn {
  font-size: 1.2rem;
}
@media (768px <= width) {
  .win .l-drawer-nav_search_btn {
    font-size: min(1.5625vw, 1.8rem);
  }
  .win .l-drawer-nav_teachers_btn {
    font-size: min(1.5625vw, 1.6rem);
  }
}

.l-footer {
  font-family: var(--f-sans);
  padding-block: 3rem;
}
.l-footer_inner {
  display: flex;
  flex-direction: column;
  padding-inline: 3rem;
}
.l-footer_nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.l-footer_nav_item {
  color: var(--c-dark);
  font-weight: 500;
  font-size: 1rem;
}
.l-footer_nav_item:not(:last-of-type)::after {
  content: "｜";
  padding-inline: 1em;
}
.l-footer_nav_link {
  color: inherit;
  font: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-footer_nav_link:hover {
    opacity: 0.7;
  }
}

@media (768px <= width) {
  .l-footer {
    padding-block: 6rem;
  }
  .l-footer_inner {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    max-width: calc(1100px + 3rem);
    padding-inline: 1.5rem;
  }
  .l-footer_nav {
    font-size: min(1.8229166667vw, 1.8rem);
    -moz-column-gap: min(2.6041666667vw, 2em);
         column-gap: min(2.6041666667vw, 2em);
  }
  .l-footer_nav_item {
    font-size: inherit;
  }
  .l-footer_nav_item:not(:last-of-type)::after {
    content: none;
  }
}
.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  background-color: var(--c-white);
  border-bottom: 2px solid var(--c-red);
}
.l-header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.l-header_label {
  flex-shrink: 0;
  padding: 0.2rem 0.4rem;
  font-weight: 500;
  font-size: min(2vw, 1rem);
  font-family: var(--f-sans);
  color: var(--c-red);
  border: 2px solid var(--c-red);
  position: relative;
}
.l-header_other {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: bold;
  color: var(--c-black);
  font-family: var(--f-sans);
  text-decoration: none;
  position: relative;
}
.l-header_other::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_white.svg) no-repeat center/0.75rem;
  background-color: var(--c-red);
  vertical-align: middle;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .l-header_other:hover::after {
    transform: translateX(3px);
  }
}
.l-header_wrapper {
  margin: 0 10px 0 auto;
  display: flex;
  gap: 10px;
}
.l-header_search {
  display: none;
}
.l-header_mutual {
  display: none;
}
.l-header_mutual_link {
  text-decoration: none;
  color: var(--c-darkgray);
  border: 0.1rem solid var(--c-darkgray);
  display: block;
  letter-spacing: 0.05em;
  position: relative;
  transition: opacity 0.3s ease;
  font-family: var(--f-sans);
  font-weight: 500;
}
.l-header_mutual_link::after {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 0.1rem;
  position: absolute;
  right: 0;
  top: calc(50% - 0.05rem);
  background-color: var(--c-darkgray);
}
@media (hover: hover) {
  .l-header_mutual_link:hover {
    opacity: 0.7;
  }
}

@media (768px <= width) {
  .l-header {
    overflow-y: hidden;
  }
  .l-header_inner {
    padding: 2.5rem min(2.6041666667vw, 3rem);
    height: min(10.9375vw, 14rem);
  }
  .l-header_label {
    padding: min(1.09375vw, 1.4rem) min(1.875vw, 2.4rem);
    font-size: min(1.25vw, 1.6rem);
    line-height: 1.3333333333;
    font-weight: bold;
  }
  .l-header_mutual {
    display: block;
  }
  .l-header_mutual_link {
    width: 23.2rem;
    line-height: 1.5;
    padding: 2rem 1.5rem;
  }
  .l-header_search {
    display: block;
    flex-grow: 1;
    text-align: end;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-header_search.-manual .l-header_search_btn {
    color: #fff;
  }
  .l-header_search_btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 1.5rem 2rem 1.5rem;
    width: min(31.75vw, 25.4rem);
    height: min(7.8125vw, 8rem);
    border-radius: 0 100vh 100vh 0;
    background-color: var(--c-teal);
    color: var(--c-yellow);
    font-weight: 700;
    font-size: min(1.7777777778vw, 1.6rem);
    line-height: 1.3636363636;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: opacity 0.3s ease;
    font-family: var(--f-sans);
    border: 2px solid var(--c-black);
    box-shadow: 6px 6px 0 var(--c-black);
    transform: translateX(20px);
    opacity: 0;
    transition: 0.3s ease-out;
    position: relative;
  }
  .l-header_search_btn::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: url(../img/common/arrow_right_green.svg) no-repeat center/0.95rem;
    background-color: var(--c-white);
    vertical-align: middle;
    content: "";
  }
  .l-header_search_btn.-active {
    transform: translateX(0);
    opacity: 1;
  }
  .l-header_search_btn span {
    display: block;
    font-size: min(1.171875vw, 1.2rem);
  }
  .l-header_search_btn.u-bg-red::after {
    background-image: url(../img/common/arrow_right_red.svg);
  }
}
@media (768px <= width) and (hover: hover) {
  .l-header_search_btn:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
  }
}
@media (768px <= width <= 1280px) {
  .l-header_search.-campaign {
    display: none;
  }
  .l-header_mutual_link {
    width: 26vw;
    line-height: 1.3333333333;
    padding: 1rem;
    font-size: min(1.875vw, 2.4rem);
  }
}
@media (width < 768px) {
  .l-header_other {
    display: none;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1470px) {
  .l-header_mutual_link {
    width: 22rem;
    padding: 1.7rem 1.5rem;
  }
}
.win .l-header_label {
  font-size: 0.85rem;
}
@media (768px <= width) {
  .win .l-header_label {
    font-size: min(1.5625vw, 2rem);
    padding: 1rem;
  }
}
@media (768px <= width <= 1280px) {
  .win .l-header_mutual_link {
    font-size: min(1.5625vw, 2rem);
  }
}
@media screen and (min-width: 1281px) and (max-width: 1470px) {
  .win .l-header_search_btn {
    font-size: 1.8rem;
  }
}

.l-sec {
  padding-block: 6rem;
}

@media (768px <= width) {
  .l-sec {
    padding-block: 10rem;
  }
}
.c-btn_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.c-btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 10rem;
  padding: 1rem 2.5rem;
  background-color: var(--c-red);
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.55;
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.c-btn::before {
  display: block;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 2px solid var(--c-red);
  content: "";
}
.c-btn::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.8rem;
  background-color: var(--c-yellow);
  vertical-align: middle;
  content: "";
}
@media (hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}

@media (768px <= width) {
  .c-btn {
    font-size: 3rem;
    letter-spacing: 0.14em;
  }
  .c-btn::after {
    right: 3.5rem;
    width: 3.8rem;
    height: 3.8rem;
    background: url(../img/common/arrow_down_red.svg) no-repeat center/1rem;
    background-color: var(--c-yellow);
  }
}
.c-copyright {
  font-size: 1rem;
  text-align: center;
}

@media (768px <= width) {
  .l-examinee .c-copyright {
    font-size: min(1.5625vw, 1.8rem);
  }
  .l-group .c-copyright {
    font-size: min(1.5625vw, 1.4rem);
  }
}
.c-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--f-sans);
}
.c-logo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--c-red);
  font-weight: normal;
  font-size: min(4.1025641026vw, 1.6rem);
  line-height: 1.2142857143;
  text-decoration: none;
  letter-spacing: 0.03em;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .c-logo a:hover {
    opacity: 0.7;
  }
}
.c-logo img {
  width: 3.4rem;
}

@media (768px <= width) {
  .c-logo a {
    font-size: min(1.7361111111vw, 2.5rem);
    line-height: 1.1875;
    letter-spacing: 0.05em;
    -moz-column-gap: min(1.25vw, 1.8rem);
         column-gap: min(1.25vw, 1.8rem);
  }
  .c-logo img {
    width: min(6.25vw, 8rem);
  }
}
.c-lead {
  margin-bottom: 3rem;
  color: var(--c-dark);
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4444444444;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: var(--f-sans);
}

.c-fixed-nav {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 890;
  width: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}
.c-fixed-nav_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  min-height: 6rem;
  padding: 1rem 2rem;
  background-color: var(--c-teal);
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: 0.07em;
}
.c-fixed-nav_btn::after {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_green.svg) no-repeat center/0.6rem;
  background-color: var(--c-white);
  vertical-align: middle;
  content: "";
}
.c-fixed-nav.js-active {
  opacity: 1;
}

@media (768px <= width) {
  .c-fixed-nav {
    display: none;
  }
}
.c-title {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2rem;
  padding: 1.5rem 3rem;
  border-radius: 1rem;
  background-color: var(--c-red);
  color: var(--c-white);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: var(--f-sans);
}
.c-title > small {
  font-size: 1em;
}
.c-title__02 {
  margin-bottom: 6rem;
  color: var(--c-red);
  font-weight: bold;
  text-align: center;
  font-family: var(--f-sans);
  position: relative;
}
.c-title__02::after {
  content: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-black);
  white-space: nowrap;
  z-index: 1;
}
.c-title__02 span {
  display: block;
  padding-top: 20px;
  border-top: 2px solid var(--c-red);
  position: relative;
  font-size: 2.6rem;
  line-height: 1.4;
  z-index: 2;
}
.c-title__02 + * {
  z-index: 5;
}
.c-title__03 {
  margin-bottom: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--c-black);
}
.c-title__03::before, .c-title__03::after {
  content: "";
  display: block;
  width: min(40rem, 32%);
  height: 3px;
  background-color: var(--c-black);
  z-index: 10;
}
.c-title__03::before {
  left: 0;
}
.c-title__03::after {
  right: 0;
}
.c-title__03 div {
  display: flex;
  gap: min(5.2151238592vw, 4rem);
  position: relative;
}
.c-title__03 div::after {
  content: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-black);
  white-space: nowrap;
  z-index: 1;
}
.c-title__03 div span {
  position: relative;
  font-size: 2.6rem;
  z-index: 2;
}
.c-title__03 div span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--c-yellow);
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  z-index: -1;
}
.c-title__04 {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.c-title__04::after {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 26/22;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: linear-gradient(45deg, var(--c-red), var(--c-red));
}
.c-title__04 span {
  padding: 1rem;
  width: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  border: 3px solid var(--c-red);
  font-size: 2.4rem;
  color: var(--c-red);
  background-color: #fff;
  border-radius: 80px;
  line-height: 1.2;
}

@media (width < 768px) {
  .c-title__02 {
    line-height: 1;
  }
}
@media (768px <= width) {
  .c-title {
    margin-bottom: 4rem;
    padding: min(1.953125vw, 2.5rem) min(3.125vw, 4rem);
    font-size: min(2.5vw, 3.2rem);
  }
  .c-title__02::after {
    bottom: calc(-1 * min(2.734375vw, 3.5rem));
    font-size: min(1.5625vw, 2rem);
  }
  .c-title__02 span {
    font-size: min(3.4375vw, 4.4rem);
    border-top: 3px solid var(--c-red);
  }
  .c-title__03 div {
    gap: min(2.34375vw, 3rem);
  }
  .c-title__03 div::after {
    bottom: -5rem;
    font-size: min(1.5625vw, 2rem);
  }
  .c-title__03 div span {
    font-size: min(3.4375vw, 4.4rem);
  }
  .c-title__03 div span::before {
    width: min(7.8125vw, 10rem);
    height: min(7.8125vw, 10rem);
  }
  .c-title__04 span {
    padding: 2.2rem 1rem;
    font-size: min(3.28125vw, 4.2rem);
  }
}
.pagetop {
  right: 1rem;
  z-index: 1000;
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-red);
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
}
.pagetop a::after {
  content: "";
  display: block;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  width: 1.8rem;
  height: 1.2rem;
  background-color: var(--c-white);
}

.l-footer {
  position: relative;
}

@media (width < 768px) {
  .l-group .pagetop.active {
    bottom: 16.5rem !important;
  }
}
.c-fixed-banner {
  position: -webkit-sticky;
  position: sticky;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.c-fixed-banner_link {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 6rem;
  color: var(--c-white);
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.c-fixed-banner_link::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.75rem;
  background-color: var(--c-white);
  vertical-align: middle;
}
.c-fixed-banner_link.-blue {
  background-color: #009fe8;
}
.c-fixed-banner_link.-blue::after {
  background-image: url(../img/common/arrow_right_blue.svg);
}
.c-fixed-banner_link.-green {
  background-color: #4dbac1;
}
.c-fixed-banner_link.-green::after {
  background-image: url(../img/common/arrow_right_green.svg);
}
.c-fixed-banner_link.-red {
  color: var(--c-yellow);
  background-color: var(--c-red);
}

@media (width < 768px) {
  .c-fixed-banner_link {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
    font-size: 1.4rem;
  }
  .c-fixed-banner_link::after {
    content: "";
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    background-size: 0.6rem;
    vertical-align: middle;
  }
  .c-fixed-banner.-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas: "item3 item3" "item1 item2";
    align-items: end;
  }
  .c-fixed-banner.-group .c-fixed-banner_link.-blue {
    grid-area: item1;
  }
  .c-fixed-banner.-group .c-fixed-banner_link.-green {
    grid-area: item2;
  }
  .c-fixed-banner.-group .c-fixed-banner_link.-red {
    grid-area: item3;
    position: relative;
  }
  .c-fixed-banner.-examinee .c-fixed-banner_link {
    padding: 0 12vw;
    justify-content: space-between;
  }
}
@media (768px <= width) {
  .c-fixed-banner {
    position: fixed;
    top: min(11.71875vw, 15rem);
    bottom: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: auto;
  }
  .c-fixed-banner_link {
    padding: 1.5rem 0 1.2rem;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: min(11.1111111111vw, 10rem);
    height: auto;
    font-size: min(2.0833333333vw, 1.6rem);
    border: 2px solid var(--c-black);
    border-right: none;
    border-radius: 24px 0 0 24px;
    box-shadow: 6px 6px 0 var(--c-black);
    transition: 0.3s ease-out;
    transition-property: transform, box-shadow;
    transform: translateX(100%);
  }
  .c-fixed-banner_link[href^="#"]::after {
    rotate: 90deg;
  }
}
@media (768px <= width) and (hover: hover) {
  .c-fixed-banner_link:hover {
    transform: translate(6px, 6px) !important;
    box-shadow: none;
  }
}
@media (768px <= width) {
  .c-fixed-banner_link.js-loading:nth-child(1) {
    transition-delay: 0s;
  }
  .c-fixed-banner_link.js-loading:nth-child(2) {
    transition-delay: 0.2s;
  }
  .c-fixed-banner_link.js-loading:nth-child(3) {
    transition-delay: 0.4s;
  }
  .c-fixed-banner_link.-active {
    transform: translateX(0);
  }
  @-webkit-keyframes arrow {
    0% {
      transform: translateX(0px);
    }
    5% {
      transform: translateX(2px);
    }
    10% {
      transform: translateX(0px);
    }
    15% {
      transform: translateX(2px);
    }
    20% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(0px);
    }
  }
  @keyframes arrow {
    0% {
      transform: translateX(0px);
    }
    5% {
      transform: translateX(2px);
    }
    10% {
      transform: translateX(0px);
    }
    15% {
      transform: translateX(2px);
    }
    20% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(0px);
    }
  }
  .c-fixed-banner_link .c-vertical {
    writing-mode: vertical-rl;
    font-feature-settings: initial;
    text-align: start;
  }
  .c-fixed-banner_link .c-vertical span {
    display: block;
    font-size: min(1.5555555556vw, 1.4rem);
  }
  .c-fixed-banner_link-inner {
    display: flex;
    flex-direction: row-reverse;
    font-size: min(2.34375vw, 1.8rem);
    line-height: 1.3;
  }
}
.p-mv + .p-campaign {
  padding-top: min(25.641025641vw, 10rem);
}

.p-campaign + .p-gnav {
  padding-top: 2rem;
}
.p-campaign_inner {
  margin: auto;
  padding: 0 20px;
  max-width: 1100px;
  text-align: center;
  color: #555555;
}
.p-campaign_title {
  margin: auto;
  padding-bottom: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(2.5vw, 3.2rem);
  letter-spacing: 0;
}
.p-campaign_title span {
  color: var(--c-red);
  font-weight: bold;
}
.p-campaign_title span.m {
  font-size: min(3.125vw, 4rem);
}
.p-campaign_title span.l {
  font-size: min(3.90625vw, 5rem);
}
.p-campaign p {
  margin-top: 40px;
  font-size: min(4.1025641026vw, 1.6rem);
  line-height: 1.8;
  font-weight: bold;
  text-align: left;
}
.p-campaign_box figure {
  margin: auto;
}

@media (width < 768px) {
  .p-campaign {
    padding-block: 2rem;
  }
  .p-campaign_inner {
    width: 100%;
    max-width: calc(1200px + 3rem);
    padding-inline: 2rem;
    margin-inline: auto;
  }
  .p-campaign_title {
    font-size: min(4.6153846154vw, 1.8rem);
  }
  .p-campaign_title div {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 4px solid var(--c-red);
  }
  .p-campaign_title div span.m {
    font-size: min(5.641025641vw, 2.2rem);
  }
  .p-campaign_title div span.l {
    font-size: min(6.1538461538vw, 2.4rem);
  }
  .p-campaign_box {
    margin-top: 58px;
  }
}
@media (768px <= width) {
  .p-mv + .p-campaign {
    padding: min(12.5vw, 16rem) 0 min(7.8125vw, 10rem);
  }
  .p-campaign {
    padding-block: 8rem;
  }
  .p-campaign_title {
    font-size: min(2.5vw, 3.2rem);
    border-bottom: 10px solid var(--c-red);
  }
  .p-campaign_title div {
    display: inline-block;
  }
  .p-campaign_title div span.m {
    font-size: min(3.125vw, 4rem);
  }
  .p-campaign_title div span.l {
    font-size: min(3.90625vw, 5rem);
  }
  .p-campaign p {
    font-size: min(2.2222222222vw, 2rem);
    text-align: center;
  }
  .p-campaign_box {
    margin-top: 80px;
    display: flex;
    gap: min(4.6875vw, 6rem);
  }
  .p-campaign_box figure {
    width: 50%;
  }
}
.p-column {
  padding: 70px 0 80px;
}
.p-column .l-container {
  padding: 5rem 5rem 5.6rem;
  background: #EBF9FF;
  max-width: 1100px;
}
.p-column__tit {
  margin: auto;
  width: 80%;
}
.p-column__list {
  margin: 25px auto 0;
  max-width: 1000px;
}
.p-column__list > li {
  padding: 36px 53px 55px 40px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0 60px;
  border: 3px solid #0078E5;
  border-radius: 10px;
  background-color: #fff;
}
.p-column__list > li + li {
  margin-top: 30px;
}
.p-column__box {
  max-width: 680px;
  flex: 1;
}
.p-column__box .tit {
  color: #0078E5;
  font-weight: bold;
  font-size: 2rem;
}
.p-column__box .catch {
  margin-top: 25px;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.5rem;
}
.p-column__box p {
  margin-top: 25px;
  line-height: 2;
  font-size: 1.125rem;
}
.p-column figure {
  display: grid;
  place-content: center;
}
.p-column__note {
  margin-top: 1em;
  width: 100%;
  text-align: right;
  font-size: 95%;
  color: red;
}

@media (width < 768px) {
  .p-column .l-container {
    padding: 2rem 2rem 2.6rem;
  }
  .p-column__list > li figure img {
    margin: auto;
    width: 80%;
  }
}
@media (768px <= width) {
  .p-column__tit {
    width: 70rem;
  }
  .p-column__list > li {
    flex-direction: row;
  }
  .p-column__list > li figure {
    width: 32%;
  }
  .p-column__box .tit {
    font-size: 3.2rem;
  }
  .p-column__box .catch {
    font-size: 2.4rem;
  }
  .p-column__box p {
    font-size: 1.8rem;
  }
}
.p-detail_content {
  overflow: hidden;
}
.p-detail__target .tit {
  text-align: center;
  font-size: 1.625rem;
}
.p-detail__target .scroll {
  margin: 30px auto 40px;
  overflow-x: scroll;
}
.p-detail__target .scroll figure {
  width: 1000px;
}

@media (768px <= width) {
  .p-detail__target .tit {
    font-size: 2.8rem;
  }
  .p-detail__target .scroll figure {
    width: 100%;
  }
}
.p-gnav_title {
  margin-bottom: 2rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 2.4rem;
  font-family: var(--f-din);
  text-align: center;
  text-transform: capitalize;
  letter-spacing: -0.02em;
}
.p-gnav_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.p-gnav_item {
  width: calc((100% - 40px) / 3);
}
.p-gnav_link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 6rem;
  border-radius: 1rem;
  background-color: var(--c-red);
  font-family: var(--f-sans);
  color: var(--c-white);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 0.07em;
  border: 2px solid var(--c-black);
  box-shadow: 6px 6px 0 var(--c-black);
  transition: 0.3s ease-out;
  position: relative;
}
.p-gnav_link::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%) rotate(90deg);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.75rem;
  background-color: var(--c-white);
  vertical-align: middle;
}
@media (hover: hover) {
  .p-gnav_link:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
  }
}

@media (768px <= width) {
  .p-gnav {
    padding-top: 18rem;
    padding-bottom: 12rem;
  }
  .p-gnav_inner {
    max-width: 1100px;
  }
  .p-gnav_title {
    margin-bottom: 3rem;
    font-size: 4rem;
  }
  .p-gnav_menu {
    gap: 20px;
  }
  .p-gnav_link {
    width: 100%;
    height: auto;
    aspect-ratio: 16/7;
    padding: 2.7rem 3rem;
    font-size: min(2.1484375vw, 2.2rem);
    line-height: 1.4545454545;
    letter-spacing: 0.05em;
  }
  .p-gnav_link::after {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (768px <= width <= 1280px) and (768px <= width) {
  .p-gnav {
    padding-top: 12rem;
    padding-bottom: 10rem;
  }
  .p-gnav_link {
    font-size: min(1.7578125vw, 1.8rem);
  }
}
@media (width < 768px) {
  .p-gnav_item {
    width: 100%;
  }
  .p-gnav_link {
    padding: 1rem 2rem;
  }
}
@media (768px <= width) {
  .l-group .p-gnav {
    padding-top: 12rem;
    padding-bottom: 12rem;
    background-color: #fafafa;
  }
}
.p-mv {
  position: relative;
  background-color: #f5f6fa;
}
.p-mv_content_bottom {
  position: absolute;
  bottom: calc(-1 * min(6.25vw, 8rem));
  left: 20px;
  transform: translate(0, 18%);
  flex-direction: row;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding-inline: 0;
}
.p-mv_title {
  font-size: 3.6rem;
  letter-spacing: 0.07em;
}

.p-hero {
  position: relative;
}
.p-hero_bg {
  width: 100%;
  height: auto;
}
.p-hero_title {
  width: 73.8461538462vw;
  position: absolute;
  top: 18.7179487179vw;
  left: 13.0769230769vw;
  z-index: 1;
}
.p-hero_circle {
  width: 53.5897435897vw;
  position: absolute;
  top: 74.358974359vw;
  left: 23.3333333333vw;
}

@media (768px <= width) {
  .p-mv_content_bottom {
    left: calc((100vw - 1150px) / 2);
  }
  .p-mv_content_balloon img {
    width: min(9.0625vw, 11.6rem);
    height: min(7.578125vw, 9.7rem);
    margin-left: inherit;
  }
  .p-mv_title {
    width: 100%;
    font-weight: 700;
    font-size: min(3.90625vw, 5rem);
    line-height: 1.76;
    letter-spacing: 0.12em;
    text-align: left;
  }
  .p-hero_title {
    width: 28.9583333333vw;
    top: 3.8541666667vw;
    left: 35.5208333333vw;
  }
  .p-hero_circle {
    width: 18.90625vw;
    top: 13.125vw;
    left: 41.40625vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .p-mv_content_bottom {
    left: 5rem;
  }
}
.p-intro {
  background: url(../img/examinee/intro_bg_cover.jpg);
  background-repeat: repeat;
  background-size: 1440px 1020px;
  background-position: top left;
}
.p-intro_wrapper {
  position: relative;
}
.p-intro_wrapper::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eeeeee;
  border-radius: 20px;
  opacity: 93%;
}
.p-intro_wrapper_bg {
  position: relative;
  z-index: 10;
  padding: 30px 20px;
  border-radius: 20px;
  background-color: #fff;
}
.p-intro_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.p-intro_left {
  width: 100%;
}
.p-intro_left_title {
  color: var(--c-black);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5625;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0 var(--c-yellow);
}
.p-intro_left_text {
  color: var(--c-black);
  font-weight: 700;
  line-height: 2.125;
  letter-spacing: 0.06em;
}
.p-intro_right {
  position: relative;
  width: 100%;
}
.p-intro_right img {
  width: 100%;
}
.p-intro_right_text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 14rem;
  height: 7rem;
  padding-bottom: 1.5rem;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  font-family: var(--f-sans);
}
.p-intro_right_text::after {
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  content: "";
}
.p-intro_right_text.-red {
  top: 0;
  right: 1rem;
  background: url(../img/examinee/intro_balloon_red.png) no-repeat center/contain;
}
.p-intro_right_text.-red::after {
  top: 61%;
  right: 12%;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../img/examinee/intro_icon01.svg) no-repeat center/contain;
}
.p-intro_right_text.-blue {
  top: 5rem;
  left: 0;
  background: url(../img/examinee/intro_balloon_blue.png) no-repeat center/contain;
}
.p-intro_right_text.-blue::after {
  top: 131%;
  left: 20%;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/examinee/intro_icon02.svg) no-repeat center/contain;
}
.p-intro_right_text.-yellow {
  top: 9rem;
  right: 0;
  background: url(../img/examinee/intro_balloon_yellow.png) no-repeat center/contain;
}
.p-intro_right_text.-yellow::after {
  top: 120%;
  right: 39%;
  width: 3.4rem;
  height: 3.2rem;
  background: url(../img/examinee/intro_icon03.svg) no-repeat center top/contain;
}
.p-intro_right_img {
  height: auto;
  margin-inline: auto;
}

@media (768px <= width) {
  .p-intro {
    padding-top: 12rem;
  }
  .p-intro_row {
    position: relative;
    flex-direction: row;
  }
  .p-intro_left {
    width: 45%;
  }
  .p-intro_left_title {
    font-size: min(4.6875vw, 6rem);
    line-height: 1.5625;
    text-shadow: 3px 3px 0 var(--c-yellow);
  }
  .p-intro_left_text {
    font-size: min(2.03125vw, 2.6rem);
    line-height: 2;
  }
  .p-intro_right {
    flex: 1;
  }
  .p-intro_right_text {
    width: min(20.3125vw, 26rem);
    height: auto;
    aspect-ratio: 260/137;
    padding-bottom: 1.5rem;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.55;
  }
  .p-intro_right_text.-red {
    top: 0;
    right: 6%;
  }
  .p-intro_right_text.-red::after {
    top: 140%;
    right: 174%;
    width: min(5.46875vw, 7rem);
    height: min(5.46875vw, 7rem);
  }
  .p-intro_right_text.-blue {
    top: 9%;
    left: 8%;
  }
  .p-intro_right_text.-blue::after {
    top: 195%;
    left: 11%;
    width: min(5.46875vw, 5.2rem);
    height: min(5.46875vw, 5.2rem);
  }
  .p-intro_right_text.-yellow {
    top: 43%;
    right: calc(-1 * min(2.96875vw, 60px));
  }
  .p-intro_right_text.-yellow::after {
    top: 130%;
    right: 50%;
    width: min(5.625vw, 7.2rem);
    height: min(5.234375vw, 6.7rem);
  }
  .p-intro_right_img {
    width: 100%;
  }
}
@media (768px <= width <= 1280px) and (768px <= width) {
  .p-intro {
    padding-top: 10rem;
  }
  .p-intro_left {
    padding-bottom: 0;
    padding-left: 0;
  }
  .p-intro_right {
    width: 45%;
  }
  .p-intro_right_text {
    font-weight: 700;
    font-size: 1.6rem;
  }
  .p-intro_right_text.-red {
    right: 0;
  }
  .p-intro_right_text.-blue {
    left: 0;
  }
  .p-intro_right_text.-blue::after {
    left: -11%;
  }
  .p-intro_right_text.-yellow {
    top: 60%;
    right: 0;
  }
  .p-intro_right_img {
    margin-inline: unset;
  }
}
.p-about_list {
  display: grid;
  margin-bottom: 6rem;
  row-gap: 4rem;
}
.p-about_item_catch {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
  min-width: 33rem;
  min-height: 8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  background: url(../img/examinee/about_balloon_sp.svg) no-repeat center/contain;
  color: var(--c-black);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
  margin-inline: auto;
}
.p-about_item_title {
  margin-bottom: 3.5rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  text-align: center;
  letter-spacing: 0.12em;
}
.p-about_item_title span:not(.-pc) {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--c-yellow);
          text-decoration-color: var(--c-yellow);
  text-decoration-thickness: 2rem;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.p-about_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 2rem;
}
.p-about_row_content {
  width: 100%;
}
.p-about_row_title {
  margin-bottom: 0.5rem;
  color: var(--c-black);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.8181818182;
  letter-spacing: 0.06em;
}
.p-about_row_title span {
  padding-bottom: 0.1em;
  border-bottom: 2px dashed var(--c-blue);
}
.p-about_row_text {
  color: var(--c-black);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
}
.p-about_row_remarks {
  color: var(--c-dark);
  font-size: 1.4rem;
  line-height: 1.7142857143;
  position: relative;
  padding-left: 1em;
}
.p-about_row_remarks::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-about_score {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2.5rem;
}
.p-about_score_box {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--c-red);
}
.p-about_score_title {
  width: 100%;
  padding: 1.8rem 1rem;
  background-color: var(--c-red);
  color: var(--c-yellow);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-about_score_list {
  width: 100%;
  padding: 2.5rem 4rem;
}
.p-about_score_item {
  position: relative;
  padding-left: 1em;
  font-family: var(--f-sans);
  color: var(--c-black);
  font-weight: 700;
  line-height: 2;
}
.p-about_score_item::before {
  position: absolute;
  left: 0;
  content: "●";
}
.p-about_score_img {
  width: 100%;
  padding: 1rem;
}
.p-about_cta {
  margin: auto;
  padding: 1.6rem 2rem;
  color: var(--c-yellow);
  font-size: 2rem;
  line-height: 1.55;
  text-decoration: none;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 76rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.07em;
  background-color: var(--c-red);
  border: 2px solid var(--c-black);
  border-radius: 10px;
  box-shadow: 6px 6px 0 var(--c-black);
  transition: 0.3s ease-out;
}
.p-about_cta::after {
  content: "";
  display: inline-block;
  transform: rotate(90deg);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.75rem;
  background-color: var(--c-yellow);
  vertical-align: middle;
}
@media (hover: hover) {
  .p-about_cta:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
  }
}

@media (768px <= width) {
  .p-about {
    padding-bottom: 13rem;
  }
  .p-about_list {
    margin-bottom: 10rem;
    row-gap: min(8.59375vw, 11rem);
  }
  .p-about_item_catch {
    max-width: 53rem;
    width: 100%;
    height: auto;
    aspect-ratio: 528/122;
    padding-bottom: 0;
    margin-bottom: 2.5rem;
    margin-left: 7%;
    background-image: url(../img/examinee/about_balloon_pc.svg);
    font-size: 2.6rem;
  }
  .p-about_item_title {
    margin-bottom: 7.5rem;
    font-size: min(3.4375vw, 4.4rem);
    line-height: 1.1;
  }
  .p-about_item_title .-pc {
    text-decoration: underline;
    -webkit-text-decoration-color: var(--c-yellow);
            text-decoration-color: var(--c-yellow);
    text-decoration-thickness: 2rem;
    text-underline-offset: -0.2em;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
  }
  .p-about_list .p-about_item:nth-of-type(odd) .p-about_row {
    flex-direction: row-reverse;
  }
  .p-about_list .p-about_item:nth-of-type(odd) .p-about_row_img {
    width: 49vw;
    margin-right: calc(50% - 50vw);
  }
  .p-about_list .p-about_item:nth-of-type(odd) .p-about_row_content {
    width: 45%;
  }
  .p-about_list .p-about_item:nth-of-type(even) .p-about_row {
    flex-direction: row;
  }
  .p-about_list .p-about_item:nth-of-type(even) .p-about_row_img {
    width: 42vw;
    margin-left: calc(50% - 50vw);
  }
  .p-about_list .p-about_item:nth-of-type(even) .p-about_row_img img {
    width: 100%;
  }
  .p-about_list .p-about_item:nth-of-type(even) .p-about_row_content {
    width: 54%;
  }
  .p-about_row_title {
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: min(3.125vw, 4rem);
    line-height: 1.75;
  }
  .p-about_row_text {
    font-size: 2.2rem;
  }
  .p-about_score {
    max-width: 1102px;
    margin-bottom: 10rem;
    margin-inline: auto;
    gap: 2.5rem;
  }
  .p-about_score_box {
    width: 44%;
  }
  .p-about_score_title {
    padding: 2rem 1rem;
    font-size: 2.6rem;
  }
  .p-about_score_list {
    padding: 3.4rem 6rem;
  }
  .p-about_score_item {
    font-size: 2.2rem;
    line-height: 2;
  }
  .p-about_score_img {
    width: 50%;
    padding: 0;
  }
  .p-about_cta {
    padding: 4rem 3rem;
    font-size: 2.6rem;
  }
}
@media (768px <= width <= 1280px) {
  .p-about {
    padding-bottom: 10rem;
  }
  .p-about_item_catch {
    max-width: 46rem;
    font-size: 2rem;
  }
  .p-about_row_text {
    font-size: 1.6rem;
  }
  .p-about_score_title {
    font-size: 2rem;
  }
  .p-about_score_list {
    padding: 3rem 1.5rem;
  }
  .p-about_score_item {
    font-size: 1.8rem;
  }
  .p-about_cta {
    font-size: 2.6rem;
  }
}
.p-voice {
  position: relative;
  overflow: hidden;
}
.p-voice_catch {
  position: absolute;
  top: -1rem;
  left: -1rem;
  color: var(--c-white);
  font-weight: 700;
  font-size: 8rem;
  line-height: 0.75;
  font-family: var(--f-din);
  letter-spacing: -0.04em;
}
.p-voice_list {
  display: grid;
  row-gap: 3rem;
}
.p-voice_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
  padding: 4rem 3.5rem 0;
  background-color: var(--c-white);
}
.p-voice_item::before, .p-voice_item::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 1rem 1rem 1rem 1rem;
  border-style: solid;
  content: "";
}
.p-voice_item::before {
  border-color: var(--c-gray) var(--c-gray) transparent transparent;
}
.p-voice_item::after {
  border-color: transparent transparent var(--c-yellow) var(--c-yellow);
}
.p-voice_item_content {
  width: 100%;
}
.p-voice_item_title {
  margin-bottom: 0.5rem;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: var(--f-sans);
}
.p-voice_item_text {
  color: var(--c-dark);
  line-height: 2;
  font-family: var(--f-sans);
}
.p-voice_item_img {
  transform: translateY(2rem);
  overflow: hidden;
  width: 100%;
  border-radius: 1rem;
}
.p-voice_item_img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 274/180;
}
.p-voice_remarks {
  position: relative;
  padding-left: 1em;
}
.p-voice_remarks::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

@media (768px <= width) {
  .p-voice {
    padding-top: 17rem;
  }
  .p-voice_catch {
    top: -1%;
    left: 0;
    width: 100%;
    font-size: min(14.0625vw, 18rem);
    text-align: center;
  }
  .p-voice .c-lead {
    font-size: min(2.0806241873vw, 2.4rem);
  }
  .p-voice_list {
    row-gap: 6rem;
    margin-bottom: 3rem;
  }
  .p-voice_item {
    margin-bottom: 0;
    padding: min(4.6875vw, 6rem);
  }
  .p-voice_item::before, .p-voice_item::after {
    border-width: 2.1rem 2.1rem 2.1rem 2.1rem;
  }
  .p-voice_item_content {
    width: 57%;
  }
  .p-voice_item_title {
    margin-bottom: 0.5rem;
    color: var(--c-dark);
    font-weight: 700;
    font-size: min(2.6041666667vw, 2.4rem);
    line-height: 1.6;
    letter-spacing: 0.1em;
  }
  .p-voice_item_text {
    color: var(--c-dark);
    line-height: 2;
  }
  .p-voice_item_img {
    transform: translateY(2rem);
    overflow: hidden;
    width: 39%;
    border-radius: 1rem;
  }
  .p-voice_item_img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 274/180;
  }
}
.p-check_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2.5rem;
}
.p-check_row_content_lead {
  position: relative;
  width: 24.5rem;
  margin: 0 auto 1rem;
  padding: 1.5rem 1.5rem 2.5rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.12em;
}
.p-check_row_content_lead::before {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24.5rem;
  height: 5.4rem;
  background: url(../img/examinee/check_balloon_sp.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
}
.p-check_row_content_title {
  color: var(--c-blue);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-check_row_content_remarks {
  font-family: var(--f-sans);
}
.p-check_row_img {
  position: absolute;
  top: 0;
  right: 5rem;
  width: 7.8rem;
}
.p-check_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-inline: 1rem;
}
.p-check_list_item {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.p-check_list_img {
  width: 34%;
}
.p-check_list_content {
  width: 62%;
}
.p-check_list_title {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.06em;
}
.p-check_list_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  border-radius: 10px;
  background-color: var(--c-red);
  font-family: var(--f-sans);
  color: var(--c-yellow);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 0.07em;
  border: 2px solid var(--c-black);
  box-shadow: 6px 6px 0 var(--c-black);
  transition: 0.3s ease-out;
}
@media (hover: hover) {
  .p-check_list_btn:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
  }
}
.p-check_list_btn::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.75rem;
  background-color: var(--c-yellow);
  vertical-align: middle;
}

@media (768px <= width) {
  .p-check .c-title {
    margin-bottom: 6rem;
  }
  .p-check_row {
    flex-direction: row;
    margin-bottom: 4rem;
  }
  .p-check_row_content {
    padding-left: 4.5%;
  }
  .p-check_row_content_lead {
    min-width: 45.7rem;
    margin: 0 0 2rem 4rem;
    padding: 3rem 3.5rem;
    font-size: 2.2rem;
  }
  .p-check_row_content_lead::before {
    width: 45.8rem;
    height: 6rem;
    background: url(../img/examinee/check_balloon_pc.svg) no-repeat center/contain;
  }
  .p-check_row_content_title {
    margin-bottom: 2rem;
    font-size: min(3.75vw, 4.8rem);
    text-align: start;
    letter-spacing: 0.08em;
  }
  .p-check_row_content_remarks {
    color: var(--c-dark);
    font-weight: 500;
    font-size: min(2.0833333333vw, 2rem);
  }
  .p-check_row_img {
    position: unset;
    width: 21%;
  }
  .p-check_list {
    gap: 4rem;
    padding-inline: 4.5%;
  }
  .p-check_list_item {
    display: flex;
    flex: 1;
    align-items: flex-end;
    justify-content: space-between;
  }
  .p-check_list_img {
    width: 38%;
  }
  .p-check_list_content {
    width: 58%;
  }
  .p-check_list_title {
    margin-bottom: 2.5rem;
    font-size: min(2.34375vw, 2.8rem);
    line-height: 1.5714285714;
  }
  .p-check_list_btn {
    padding: 3rem;
    font-size: 2.2rem;
  }
}
@media (768px <= width <= 1280px) {
  .p-check_list {
    padding-inline: 0;
  }
}
.p-detail .l-container {
  border-bottom: 1px solid var(--c-blue);
}
.p-detail .l-container > *:last-child {
  margin-bottom: 2.5rem;
}
.p-detail_title {
  position: relative;
  margin-bottom: 2.5rem;
  text-align: center;
}
.p-detail_title::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 1px;
  background-color: var(--c-blue);
  content: "";
}
.p-detail_title > span {
  display: inline-block;
  position: relative;
  padding: 1.6rem 3.3rem;
  border-radius: 100vh;
  background-color: var(--c-blue);
  color: var(--c-white);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.p-detail_subtitle {
  margin-bottom: 1.5rem;
  color: var(--c-red);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-detail_lead {
  margin-bottom: 1.5rem;
  color: var(--c-dark);
  font-weight: 600;
  line-height: 2;
}
.p-detail_table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
  background-color: var(--c-white);
}
.p-detail_table tr > * {
  padding: 0.7rem 1rem;
  border: solid 1px var(--c-black);
  color: var(--c-black);
}
.p-detail_table th {
  font-weight: 700;
  font-size: 1.4rem;
  text-align: start;
  white-space: nowrap;
  letter-spacing: 0.12em;
}
.p-detail_table td {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.02em;
}
.p-detail_remarks {
  position: relative;
  padding-left: 1em;
  margin-bottom: 1.5rem;
  color: var(--c-dark);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.02em;
}
.p-detail_remarks::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-detail_dl {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  background-color: var(--c-white);
}
.p-detail_dl dt {
  width: 100%;
  padding: 0.7rem 1.2rem;
  border: solid 1px var(--c-black);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: start;
  letter-spacing: 0.05em;
}
.p-detail_dl dd {
  width: 100%;
  border: solid 1px var(--c-black);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  border-top: none;
}

@media (768px <= width) {
  .p-detail .l-container > *:last-child {
    margin-bottom: 6rem;
  }
  .p-detail_title {
    margin-bottom: min(2.6041666667vw, 4.5rem);
  }
  .p-detail_title::before {
    width: 100%;
  }
  .p-detail_title > span {
    padding: 2.3rem 6.3rem;
    font-size: min(2.6041666667vw, 3.6rem);
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .p-detail_subtitle {
    margin-bottom: min(3.90625vw, 5.5rem);
    font-size: min(2.6041666667vw, 3.6rem);
    letter-spacing: 0.12em;
  }
  .p-detail_lead {
    margin-bottom: 5.5rem;
    font-weight: 700;
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.7;
    text-align: center;
  }
  .p-detail_table {
    max-width: 76rem;
    margin-bottom: 1rem;
    margin-inline: auto;
  }
  .p-detail_table tr > * {
    padding: 1.5rem min(1.953125vw, 3rem);
  }
  .p-detail_table th {
    font-size: min(2.34375vw, 2.6rem);
    letter-spacing: 0.12em;
  }
  .p-detail_table td {
    color: var(--c-dark);
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.95;
  }
  .p-detail_remarks {
    max-width: 76rem;
    margin: 0 auto 3rem;
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .p-detail_dl {
    max-width: 76rem;
    margin-bottom: 2rem;
    margin-inline: auto;
  }
  .p-detail_dl dt {
    padding: 1.2rem min(1.953125vw, 3rem);
    font-size: min(2.34375vw, 2.6rem);
    letter-spacing: 0.12em;
  }
  .p-detail_dl dd {
    color: var(--c-dark);
    font-size: min(2.0833333333vw, 1.6rem);
    line-height: 1.95;
  }
}
.p-howto {
  padding-inline: 20px;
}
.p-howto .l-container {
  padding: 2rem 0;
  background: #EBF9FF;
  border: 3px solid #019FE8;
  border-radius: 20px;
}
.p-howto_title {
  margin-bottom: 4rem;
  color: var(--c-white);
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-howto_list_wrap {
  position: relative;
  padding-inline: 2rem;
  max-width: 1000px;
}
.p-howto_list_wrap::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 1px;
  height: 75%;
  content: "";
  border-right: dashed 5px #009fe8;
}
.p-howto_list_wrap::after {
  position: absolute;
  top: 12.5%;
  right: 10px;
  width: 2rem;
  height: 1px;
  content: "";
  border-bottom: dashed 5px #009fe8;
}
.p-howto_list {
  display: grid;
  position: relative;
  counter-reset: counter;
  row-gap: 4rem;
}
.p-howto_list::before {
  position: absolute;
  bottom: 12.3%;
  left: 100%;
  width: 1rem;
  height: 1px;
  content: "";
  border-bottom: dashed 5px #009fe8;
}
.p-howto_list::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: calc(12.5% - 2.3rem);
  width: 3.2rem;
  height: 3.7rem;
  border-top: 1.8rem solid transparent;
  border-bottom: 1.8rem solid transparent;
  border-right: 2.8rem solid #009fe8;
  border-left: 0;
}
.p-howto_item {
  display: grid;
  position: relative;
  padding: 2rem 2.5rem;
  background-color: var(--c-white);
}
.p-howto_item:not(:last-of-type)::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
  border-right: 1.5rem solid transparent;
  border-left: 1.5rem solid transparent;
  border-top: 2.6rem solid #009fe8;
  border-bottom: 0;
}
.p-howto_item_step {
  margin-bottom: 1rem;
  color: var(--c-blue);
  font-weight: 700;
  font-size: 24px;
  font-family: var(--f-din);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.p-howto_item_step::after {
  margin-left: 0.5em;
  counter-increment: counter 1;
  content: counter(counter, decimal-leading-zero) "";
}
.p-howto_item_img {
  width: 13rem;
  margin: 0 auto 1.5rem;
}
.p-howto_item_title {
  margin-bottom: 1rem;
  color: var(--c-black);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-howto_item_text {
  font-family: var(--f-sans);
  color: var(--c-dark);
  line-height: 2;
}
.p-howto_item_text small {
  color: var(--c-dark);
  font-size: 1.4rem;
  line-height: 1.5714285714;
}
.p-howto_item_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  border-radius: 10px;
  background-color: var(--c-red);
  font-family: var(--f-sans);
  color: var(--c-yellow);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 0.07em;
  border: 2px solid var(--c-black);
  box-shadow: 6px 6px 0 var(--c-black);
  transition: 0.3s ease-out;
}
@media (hover: hover) {
  .p-howto_item_btn:hover {
    transform: translate(6px, 6px);
    box-shadow: none;
  }
}
.p-howto_item_btn::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: url(../img/common/arrow_right_red.svg) no-repeat center/0.75rem;
  background-color: var(--c-yellow);
  vertical-align: middle;
}

@media (768px <= width) {
  .p-howto .l-container {
    padding: 6rem 0;
    max-width: 1100px;
  }
  .p-howto_title {
    margin-bottom: 8rem;
    font-size: min(5.2083333333vw, 6rem);
    letter-spacing: 0.12em;
  }
  .p-howto_list_wrap {
    padding-right: 10rem;
    padding-left: 0;
    left: 5rem;
  }
  .p-howto_list_wrap::before {
    right: 2rem;
  }
  .p-howto_list_wrap::after {
    right: 2rem;
    width: 7rem;
  }
}
@media screen and (768px <= width) and (min-width: 768px) and (max-width: 1320px) {
  .p-howto_list_wrap {
    left: 0;
    margin-left: 5rem;
  }
}
@media (768px <= width) {
  .p-howto_list {
    row-gap: 10rem;
  }
  .p-howto_list::before {
    left: calc(100% + 2rem);
    width: 6rem;
  }
  .p-howto_list::after {
    right: auto;
    left: calc(100% + 1rem);
    width: 0;
    height: 0;
    border-style: solid;
    background-image: unset;
  }
  .p-howto_item {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: min(19.53125vw, 20rem) 1fr;
    padding: 4rem min(1.953125vw, 3.5rem);
    gap: 0.5rem min(2.6041666667vw, 4.5rem);
  }
  .p-howto_item:not(:last-of-type)::before {
    top: calc(100% + 3rem);
    border-right: 2.3rem solid transparent;
    border-left: 2.3rem solid transparent;
    border-top: 4rem solid #009fe8;
  }
  .p-howto_item_step {
    grid-area: 1/2/2/3;
    margin-bottom: 0;
    font-size: min(2.6041666667vw, 3rem);
    text-align: left;
  }
  .p-howto_item_img {
    grid-area: 1/1/3/2;
    width: auto;
    margin: 0 0;
  }
  .p-howto_item_content {
    grid-area: 2/2/3/3;
  }
  .p-howto_item_title {
    margin-bottom: 1rem;
    font-size: min(2.8645833333vw, 3.2rem);
    text-align: left;
    letter-spacing: 0.1em;
  }
  .p-howto_item_text {
    font-weight: 500;
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.8;
  }
  .p-howto_item_text.-notice {
    margin: 10px 0;
    color: var(--c-red);
  }
  .p-howto_item_btn {
    padding: min(2.5vw, 3rem);
    font-size: min(2.1484375vw, 2.2rem);
  }
}
.p-qa_list {
  display: grid;
}
.p-qa_item {
  padding: 1.5rem 1.5rem;
}
.p-qa_item_title, .p-qa_item_content {
  position: relative;
  padding-left: 6rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.p-qa_item_title::before, .p-qa_item_content::before {
  flex-shrink: 1;
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  font-family: var(--f-din);
  letter-spacing: 0.06em;
}
.p-qa_item_title {
  position: relative;
  padding-right: 4rem;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.p-qa_item_title::before {
  top: 0;
  color: var(--c-dark);
  content: "Q.";
}
.p-qa_item_title::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/examinee/qa_icon.svg) no-repeat center/contain;
  vertical-align: middle;
  content: "";
  transition: transform 0.3s ease;
}
.p-qa_item_title.js-open::after {
  transform: rotate(45deg) translateY(calc(-50% + 0.5rem)) translateX(-0.5rem);
}
.p-qa_item_content {
  display: none;
  font-family: var(--f-sans);
  margin-top: 2rem;
  padding-top: 2rem;
  color: var(--c-dark);
  line-height: 2;
  border-top: 2px solid var(--c-dark);
}
.p-qa_item_content::before {
  top: 2rem;
  color: var(--c-red);
  content: "A.";
}
.p-qa_item_content a {
  color: var(--c-blue);
  text-decoration: underline;
}

@media (768px <= width) {
  .p-qa_item {
    padding: 1.5rem 1.5rem;
  }
  .p-qa_item_title, .p-qa_item_content {
    padding-left: 8rem;
  }
  .p-qa_item_title::before, .p-qa_item_content::before {
    font-size: 7rem;
  }
  .p-qa_item_title {
    display: flex;
    align-items: center;
    min-height: 12rem;
    padding-right: 12rem;
    font-size: min(2.34375vw, 2rem);
    line-height: 1.8;
  }
  .p-qa_item_title::before {
    top: 50%;
    transform: translateY(-50%);
  }
  .p-qa_item_title::after {
    right: 4.5rem;
    width: 3rem;
    height: 3rem;
  }
  .p-qa_item_content {
    margin-top: 0;
    padding-top: 5rem;
    font-size: min(2.0833333333vw, 2rem);
    line-height: 1.5;
    border-top: 2px solid var(--c-dark);
  }
  .p-qa_item_content::before {
    top: 4rem;
  }
}
.p-greeting {
  background-color: rgba(27, 59, 139, 0.1);
}
.p-greeting_inner {
  max-width: 1100px;
  margin-inline: auto;
  padding: 6rem 1.5rem;
  border-radius: 1rem;
  background-color: var(--c-white);
}
.p-greeting_text {
  font-family: var(--f-sans);
  color: var(--c-dark);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  display: table;
  margin-inline: auto;
}

@media (768px <= width) {
  .p-greeting_inner {
    padding: 7rem 1.5rem;
  }
  .p-greeting_text {
    font-size: min(2.34375vw, 2rem);
    line-height: 1.8;
  }
}
.p-gallery {
  display: flex;
}
.p-gallery > * {
  flex: 1;
}

.u-c-yellow {
  color: #ffff76 !important;
}

.u-bg-yellow {
  background-color: #ffff76 !important;
}

.u-c-red {
  color: #1b3b8b !important;
}

.u-bg-red {
  background-color: #1b3b8b !important;
}

.u-c-black {
  color: #000 !important;
}

.u-bg-black {
  background-color: #000 !important;
}

.u-c-white {
  color: #fff !important;
}

.u-bg-white {
  background-color: #fff !important;
}

.u-c-dark {
  color: #555 !important;
}

.u-bg-dark {
  background-color: #555 !important;
}

.u-c-gray {
  color: #f5f5f5 !important;
}

.u-bg-gray {
  background-color: #f5f5f5 !important;
}

.u-c-darkgray {
  color: #767676 !important;
}

.u-bg-darkgray {
  background-color: #767676 !important;
}

.u-c-skyblue {
  color: #009fe8 !important;
}

.u-bg-skyblue {
  background-color: #009fe8 !important;
}

.u-c-teal {
  color: #4dbac1 !important;
}

.u-bg-teal {
  background-color: #4dbac1 !important;
}

.u-c-gold {
  color: #cfad5f !important;
}

.u-bg-gold {
  background-color: #cfad5f !important;
}

.u-c-blue {
  color: #004896 !important;
}

.u-bg-blue {
  background-color: #004896 !important;
}

.u-pc {
  display: none !important;
}

.u-tb {
  display: none !important;
}

@media (768px <= width <= 1280px) {
  .u-tb {
    display: block !important;
  }
}
@media (768px <= width) {
  .u-pc {
    display: block !important;
  }
  .u-sp {
    display: none !important;
  }
}
.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pt-5 {
  padding-top: 0.5rem !important;
}

.u-pt-10 {
  padding-top: 1rem !important;
}

.u-pt-15 {
  padding-top: 1.5rem !important;
}

.u-pt-20 {
  padding-top: 2rem !important;
}

.u-pt-25 {
  padding-top: 2.5rem !important;
}

.u-pt-30 {
  padding-top: 3rem !important;
}

.u-pt-35 {
  padding-top: 3.5rem !important;
}

.u-pt-40 {
  padding-top: 4rem !important;
}

.u-pt-45 {
  padding-top: 4.5rem !important;
}

.u-pt-50 {
  padding-top: 5rem !important;
}

.u-pt-55 {
  padding-top: 5.5rem !important;
}

.u-pt-60 {
  padding-top: 6rem !important;
}

.u-pt-65 {
  padding-top: 6.5rem !important;
}

.u-pt-70 {
  padding-top: 7rem !important;
}

.u-pt-75 {
  padding-top: 7.5rem !important;
}

.u-pt-80 {
  padding-top: 8rem !important;
}

.u-pt-85 {
  padding-top: 8.5rem !important;
}

.u-pt-90 {
  padding-top: 9rem !important;
}

.u-pt-95 {
  padding-top: 9.5rem !important;
}

.u-pt-100 {
  padding-top: 10rem !important;
}

.u-pt-105 {
  padding-top: 10.5rem !important;
}

.u-pt-110 {
  padding-top: 11rem !important;
}

.u-pt-115 {
  padding-top: 11.5rem !important;
}

.u-pt-120 {
  padding-top: 12rem !important;
}

.u-pt-125 {
  padding-top: 12.5rem !important;
}

.u-pt-130 {
  padding-top: 13rem !important;
}

.u-pt-135 {
  padding-top: 13.5rem !important;
}

.u-pt-140 {
  padding-top: 14rem !important;
}

.u-pt-145 {
  padding-top: 14.5rem !important;
}

.u-pt-150 {
  padding-top: 15rem !important;
}

@media (768px <= width) {
  .u-pt-pc-0 {
    padding-top: 0rem !important;
  }
  .u-pt-pc-5 {
    padding-top: 0.5rem !important;
  }
  .u-pt-pc-10 {
    padding-top: 1rem !important;
  }
  .u-pt-pc-15 {
    padding-top: 1.5rem !important;
  }
  .u-pt-pc-20 {
    padding-top: 2rem !important;
  }
  .u-pt-pc-25 {
    padding-top: 2.5rem !important;
  }
  .u-pt-pc-30 {
    padding-top: 3rem !important;
  }
  .u-pt-pc-35 {
    padding-top: 3.5rem !important;
  }
  .u-pt-pc-40 {
    padding-top: 4rem !important;
  }
  .u-pt-pc-45 {
    padding-top: 4.5rem !important;
  }
  .u-pt-pc-50 {
    padding-top: 5rem !important;
  }
  .u-pt-pc-55 {
    padding-top: 5.5rem !important;
  }
  .u-pt-pc-60 {
    padding-top: 6rem !important;
  }
  .u-pt-pc-65 {
    padding-top: 6.5rem !important;
  }
  .u-pt-pc-70 {
    padding-top: 7rem !important;
  }
  .u-pt-pc-75 {
    padding-top: 7.5rem !important;
  }
  .u-pt-pc-80 {
    padding-top: 8rem !important;
  }
  .u-pt-pc-85 {
    padding-top: 8.5rem !important;
  }
  .u-pt-pc-90 {
    padding-top: 9rem !important;
  }
  .u-pt-pc-95 {
    padding-top: 9.5rem !important;
  }
  .u-pt-pc-100 {
    padding-top: 10rem !important;
  }
  .u-pt-pc-105 {
    padding-top: 10.5rem !important;
  }
  .u-pt-pc-110 {
    padding-top: 11rem !important;
  }
  .u-pt-pc-115 {
    padding-top: 11.5rem !important;
  }
  .u-pt-pc-120 {
    padding-top: 12rem !important;
  }
  .u-pt-pc-125 {
    padding-top: 12.5rem !important;
  }
  .u-pt-pc-130 {
    padding-top: 13rem !important;
  }
  .u-pt-pc-135 {
    padding-top: 13.5rem !important;
  }
  .u-pt-pc-140 {
    padding-top: 14rem !important;
  }
  .u-pt-pc-145 {
    padding-top: 14.5rem !important;
  }
  .u-pt-pc-150 {
    padding-top: 15rem !important;
  }
}
.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-pb-5 {
  padding-bottom: 0.5rem !important;
}

.u-pb-10 {
  padding-bottom: 1rem !important;
}

.u-pb-15 {
  padding-bottom: 1.5rem !important;
}

.u-pb-20 {
  padding-bottom: 2rem !important;
}

.u-pb-25 {
  padding-bottom: 2.5rem !important;
}

.u-pb-30 {
  padding-bottom: 3rem !important;
}

.u-pb-35 {
  padding-bottom: 3.5rem !important;
}

.u-pb-40 {
  padding-bottom: 4rem !important;
}

.u-pb-45 {
  padding-bottom: 4.5rem !important;
}

.u-pb-50 {
  padding-bottom: 5rem !important;
}

.u-pb-55 {
  padding-bottom: 5.5rem !important;
}

.u-pb-60 {
  padding-bottom: 6rem !important;
}

.u-pb-65 {
  padding-bottom: 6.5rem !important;
}

.u-pb-70 {
  padding-bottom: 7rem !important;
}

.u-pb-75 {
  padding-bottom: 7.5rem !important;
}

.u-pb-80 {
  padding-bottom: 8rem !important;
}

.u-pb-85 {
  padding-bottom: 8.5rem !important;
}

.u-pb-90 {
  padding-bottom: 9rem !important;
}

.u-pb-95 {
  padding-bottom: 9.5rem !important;
}

.u-pb-100 {
  padding-bottom: 10rem !important;
}

.u-pb-105 {
  padding-bottom: 10.5rem !important;
}

.u-pb-110 {
  padding-bottom: 11rem !important;
}

.u-pb-115 {
  padding-bottom: 11.5rem !important;
}

.u-pb-120 {
  padding-bottom: 12rem !important;
}

.u-pb-125 {
  padding-bottom: 12.5rem !important;
}

.u-pb-130 {
  padding-bottom: 13rem !important;
}

.u-pb-135 {
  padding-bottom: 13.5rem !important;
}

.u-pb-140 {
  padding-bottom: 14rem !important;
}

.u-pb-145 {
  padding-bottom: 14.5rem !important;
}

.u-pb-150 {
  padding-bottom: 15rem !important;
}

@media (768px <= width) {
  .u-pb-pc-0 {
    padding-bottom: 0rem !important;
  }
  .u-pb-pc-5 {
    padding-bottom: 0.5rem !important;
  }
  .u-pb-pc-10 {
    padding-bottom: 1rem !important;
  }
  .u-pb-pc-15 {
    padding-bottom: 1.5rem !important;
  }
  .u-pb-pc-20 {
    padding-bottom: 2rem !important;
  }
  .u-pb-pc-25 {
    padding-bottom: 2.5rem !important;
  }
  .u-pb-pc-30 {
    padding-bottom: 3rem !important;
  }
  .u-pb-pc-35 {
    padding-bottom: 3.5rem !important;
  }
  .u-pb-pc-40 {
    padding-bottom: 4rem !important;
  }
  .u-pb-pc-45 {
    padding-bottom: 4.5rem !important;
  }
  .u-pb-pc-50 {
    padding-bottom: 5rem !important;
  }
  .u-pb-pc-55 {
    padding-bottom: 5.5rem !important;
  }
  .u-pb-pc-60 {
    padding-bottom: 6rem !important;
  }
  .u-pb-pc-65 {
    padding-bottom: 6.5rem !important;
  }
  .u-pb-pc-70 {
    padding-bottom: 7rem !important;
  }
  .u-pb-pc-75 {
    padding-bottom: 7.5rem !important;
  }
  .u-pb-pc-80 {
    padding-bottom: 8rem !important;
  }
  .u-pb-pc-85 {
    padding-bottom: 8.5rem !important;
  }
  .u-pb-pc-90 {
    padding-bottom: 9rem !important;
  }
  .u-pb-pc-95 {
    padding-bottom: 9.5rem !important;
  }
  .u-pb-pc-100 {
    padding-bottom: 10rem !important;
  }
  .u-pb-pc-105 {
    padding-bottom: 10.5rem !important;
  }
  .u-pb-pc-110 {
    padding-bottom: 11rem !important;
  }
  .u-pb-pc-115 {
    padding-bottom: 11.5rem !important;
  }
  .u-pb-pc-120 {
    padding-bottom: 12rem !important;
  }
  .u-pb-pc-125 {
    padding-bottom: 12.5rem !important;
  }
  .u-pb-pc-130 {
    padding-bottom: 13rem !important;
  }
  .u-pb-pc-135 {
    padding-bottom: 13.5rem !important;
  }
  .u-pb-pc-140 {
    padding-bottom: 14rem !important;
  }
  .u-pb-pc-145 {
    padding-bottom: 14.5rem !important;
  }
  .u-pb-pc-150 {
    padding-bottom: 15rem !important;
  }
}
.u-mt-0 {
  margin-top: 0rem !important;
}

.u-mt-5 {
  margin-top: 0.5rem !important;
}

.u-mt-10 {
  margin-top: 1rem !important;
}

.u-mt-15 {
  margin-top: 1.5rem !important;
}

.u-mt-20 {
  margin-top: 2rem !important;
}

.u-mt-25 {
  margin-top: 2.5rem !important;
}

.u-mt-30 {
  margin-top: 3rem !important;
}

.u-mt-35 {
  margin-top: 3.5rem !important;
}

.u-mt-40 {
  margin-top: 4rem !important;
}

.u-mt-45 {
  margin-top: 4.5rem !important;
}

.u-mt-50 {
  margin-top: 5rem !important;
}

.u-mt-55 {
  margin-top: 5.5rem !important;
}

.u-mt-60 {
  margin-top: 6rem !important;
}

.u-mt-65 {
  margin-top: 6.5rem !important;
}

.u-mt-70 {
  margin-top: 7rem !important;
}

.u-mt-75 {
  margin-top: 7.5rem !important;
}

.u-mt-80 {
  margin-top: 8rem !important;
}

.u-mt-85 {
  margin-top: 8.5rem !important;
}

.u-mt-90 {
  margin-top: 9rem !important;
}

.u-mt-95 {
  margin-top: 9.5rem !important;
}

.u-mt-100 {
  margin-top: 10rem !important;
}

.u-mt-105 {
  margin-top: 10.5rem !important;
}

.u-mt-110 {
  margin-top: 11rem !important;
}

.u-mt-115 {
  margin-top: 11.5rem !important;
}

.u-mt-120 {
  margin-top: 12rem !important;
}

.u-mt-125 {
  margin-top: 12.5rem !important;
}

.u-mt-130 {
  margin-top: 13rem !important;
}

.u-mt-135 {
  margin-top: 13.5rem !important;
}

.u-mt-140 {
  margin-top: 14rem !important;
}

.u-mt-145 {
  margin-top: 14.5rem !important;
}

.u-mt-150 {
  margin-top: 15rem !important;
}

@media (768px <= width) {
  .u-mt-pc-0 {
    margin-top: 0rem !important;
  }
  .u-mt-pc-5 {
    margin-top: 0.5rem !important;
  }
  .u-mt-pc-10 {
    margin-top: 1rem !important;
  }
  .u-mt-pc-15 {
    margin-top: 1.5rem !important;
  }
  .u-mt-pc-20 {
    margin-top: 2rem !important;
  }
  .u-mt-pc-25 {
    margin-top: 2.5rem !important;
  }
  .u-mt-pc-30 {
    margin-top: 3rem !important;
  }
  .u-mt-pc-35 {
    margin-top: 3.5rem !important;
  }
  .u-mt-pc-40 {
    margin-top: 4rem !important;
  }
  .u-mt-pc-45 {
    margin-top: 4.5rem !important;
  }
  .u-mt-pc-50 {
    margin-top: 5rem !important;
  }
  .u-mt-pc-55 {
    margin-top: 5.5rem !important;
  }
  .u-mt-pc-60 {
    margin-top: 6rem !important;
  }
  .u-mt-pc-65 {
    margin-top: 6.5rem !important;
  }
  .u-mt-pc-70 {
    margin-top: 7rem !important;
  }
  .u-mt-pc-75 {
    margin-top: 7.5rem !important;
  }
  .u-mt-pc-80 {
    margin-top: 8rem !important;
  }
  .u-mt-pc-85 {
    margin-top: 8.5rem !important;
  }
  .u-mt-pc-90 {
    margin-top: 9rem !important;
  }
  .u-mt-pc-95 {
    margin-top: 9.5rem !important;
  }
  .u-mt-pc-100 {
    margin-top: 10rem !important;
  }
  .u-mt-pc-105 {
    margin-top: 10.5rem !important;
  }
  .u-mt-pc-110 {
    margin-top: 11rem !important;
  }
  .u-mt-pc-115 {
    margin-top: 11.5rem !important;
  }
  .u-mt-pc-120 {
    margin-top: 12rem !important;
  }
  .u-mt-pc-125 {
    margin-top: 12.5rem !important;
  }
  .u-mt-pc-130 {
    margin-top: 13rem !important;
  }
  .u-mt-pc-135 {
    margin-top: 13.5rem !important;
  }
  .u-mt-pc-140 {
    margin-top: 14rem !important;
  }
  .u-mt-pc-145 {
    margin-top: 14.5rem !important;
  }
  .u-mt-pc-150 {
    margin-top: 15rem !important;
  }
}
.u-mb-0 {
  margin-bottom: 0rem !important;
}

.u-mb-5 {
  margin-bottom: 0.5rem !important;
}

.u-mb-10 {
  margin-bottom: 1rem !important;
}

.u-mb-15 {
  margin-bottom: 1.5rem !important;
}

.u-mb-20 {
  margin-bottom: 2rem !important;
}

.u-mb-25 {
  margin-bottom: 2.5rem !important;
}

.u-mb-30 {
  margin-bottom: 3rem !important;
}

.u-mb-35 {
  margin-bottom: 3.5rem !important;
}

.u-mb-40 {
  margin-bottom: 4rem !important;
}

.u-mb-45 {
  margin-bottom: 4.5rem !important;
}

.u-mb-50 {
  margin-bottom: 5rem !important;
}

.u-mb-55 {
  margin-bottom: 5.5rem !important;
}

.u-mb-60 {
  margin-bottom: 6rem !important;
}

.u-mb-65 {
  margin-bottom: 6.5rem !important;
}

.u-mb-70 {
  margin-bottom: 7rem !important;
}

.u-mb-75 {
  margin-bottom: 7.5rem !important;
}

.u-mb-80 {
  margin-bottom: 8rem !important;
}

.u-mb-85 {
  margin-bottom: 8.5rem !important;
}

.u-mb-90 {
  margin-bottom: 9rem !important;
}

.u-mb-95 {
  margin-bottom: 9.5rem !important;
}

.u-mb-100 {
  margin-bottom: 10rem !important;
}

.u-mb-105 {
  margin-bottom: 10.5rem !important;
}

.u-mb-110 {
  margin-bottom: 11rem !important;
}

.u-mb-115 {
  margin-bottom: 11.5rem !important;
}

.u-mb-120 {
  margin-bottom: 12rem !important;
}

.u-mb-125 {
  margin-bottom: 12.5rem !important;
}

.u-mb-130 {
  margin-bottom: 13rem !important;
}

.u-mb-135 {
  margin-bottom: 13.5rem !important;
}

.u-mb-140 {
  margin-bottom: 14rem !important;
}

.u-mb-145 {
  margin-bottom: 14.5rem !important;
}

.u-mb-150 {
  margin-bottom: 15rem !important;
}

@media (768px <= width) {
  .u-mb-pc-0 {
    margin-bottom: 0rem !important;
  }
  .u-mb-pc-5 {
    margin-bottom: 0.5rem !important;
  }
  .u-mb-pc-10 {
    margin-bottom: 1rem !important;
  }
  .u-mb-pc-15 {
    margin-bottom: 1.5rem !important;
  }
  .u-mb-pc-20 {
    margin-bottom: 2rem !important;
  }
  .u-mb-pc-25 {
    margin-bottom: 2.5rem !important;
  }
  .u-mb-pc-30 {
    margin-bottom: 3rem !important;
  }
  .u-mb-pc-35 {
    margin-bottom: 3.5rem !important;
  }
  .u-mb-pc-40 {
    margin-bottom: 4rem !important;
  }
  .u-mb-pc-45 {
    margin-bottom: 4.5rem !important;
  }
  .u-mb-pc-50 {
    margin-bottom: 5rem !important;
  }
  .u-mb-pc-55 {
    margin-bottom: 5.5rem !important;
  }
  .u-mb-pc-60 {
    margin-bottom: 6rem !important;
  }
  .u-mb-pc-65 {
    margin-bottom: 6.5rem !important;
  }
  .u-mb-pc-70 {
    margin-bottom: 7rem !important;
  }
  .u-mb-pc-75 {
    margin-bottom: 7.5rem !important;
  }
  .u-mb-pc-80 {
    margin-bottom: 8rem !important;
  }
  .u-mb-pc-85 {
    margin-bottom: 8.5rem !important;
  }
  .u-mb-pc-90 {
    margin-bottom: 9rem !important;
  }
  .u-mb-pc-95 {
    margin-bottom: 9.5rem !important;
  }
  .u-mb-pc-100 {
    margin-bottom: 10rem !important;
  }
  .u-mb-pc-105 {
    margin-bottom: 10.5rem !important;
  }
  .u-mb-pc-110 {
    margin-bottom: 11rem !important;
  }
  .u-mb-pc-115 {
    margin-bottom: 11.5rem !important;
  }
  .u-mb-pc-120 {
    margin-bottom: 12rem !important;
  }
  .u-mb-pc-125 {
    margin-bottom: 12.5rem !important;
  }
  .u-mb-pc-130 {
    margin-bottom: 13rem !important;
  }
  .u-mb-pc-135 {
    margin-bottom: 13.5rem !important;
  }
  .u-mb-pc-140 {
    margin-bottom: 14rem !important;
  }
  .u-mb-pc-145 {
    margin-bottom: 14.5rem !important;
  }
  .u-mb-pc-150 {
    margin-bottom: 15rem !important;
  }
}

/*# sourceMappingURL=examinee.css.map */