@charset "UTF-8";
:root {
  --center-contents-width: 100%;
}
@media print, screen and (min-width: 992px) {
  :root {
    --center-contents-width: 480px;
  }
}

body {
  position: relative;
  color: #212121;
}
body::before {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  content: "";
  background: url(../img/exam/exam_open2026/body_bg.png) no-repeat center center;
  background-size: cover;
}
@media print, screen and (min-width: 992px) {
  body::before {
    width: calc(100% - 54px);
    height: calc(100vh - 54px);
    left: 27px;
    top: 27px;
    border-radius: 20px;
  }
}
body.show {
  overflow: hidden;
}

.main_contents {
  padding-top: 0;
}

.opc2026_header__logo {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  padding: 24px;
  width: 410px;
  max-width: 100%;
  z-index: 6;
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 0 12px 0;
}
@media print, screen and (min-width: 992px) {
  .opc2026_header__logo {
    display: block;
    position: fixed;
    width: 410px;
    background: #fff;
  }
}

.sp_menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #f3f0e7 url(../img/exam/exam_open2026/sp_nav_bg.png) no-repeat center center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 5;
}
.sp_menu.active {
  opacity: 1;
  visibility: visible;
}
.sp_menu .contents_nav {
  width: 440px;
  margin-inline: auto;
  padding-top: min(6vw, 60px);
}
.sp_menu .contents_nav__title img {
  width: 50vw;
  max-width: 100%;
}
.sp_menu .contents_nav__list {
  width: 100%;
  margin-top: min(4vw, 20px);
}
.sp_menu .contents_nav__list svg {
  width: 100%;
}
.sp_menu .opc_entry_btn {
  width: 440px;
  margin-inline: auto;
  margin-top: min(6vw, 34px);
}

.sp_menu__inner {
  height: 100%;
  overflow-y: auto;
  padding: 72px 25px 90px;
}

.sp_menu__logo img {
  width: 200px;
}

.sp_fix_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding-inline: 20px;
  transition: background-color 0.3s;
}
@media print, screen and (min-width: 992px) {
  .sp_fix_menu {
    display: none;
  }
}
.sp_fix_menu.scroll, .sp_fix_menu.active {
  background: #f3f0e7;
}

.sp_fix_menu__reservation {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: #887dbd;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 88px;
  padding-right: 50px;
  line-height: 1.3;
}
.sp_fix_menu__reservation::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  content: "\e901";
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background: #fff;
  color: #887dbd;
  font-size: 15px;
}
.sp_fix_menu__reservation > img {
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 67px;
}

.sp_fix_menu__logo {
  display: flex;
  align-items: center;
}
.sp_fix_menu__logo img {
  width: min(50vw, 240px);
}

.sp_fix_menu__glnav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding-top: 2px;
  flex-shrink: 0;
  background: #2573c7;
  border-radius: 4px;
  color: #fff;
}
.sp_fix_menu__glnav .icon {
  position: relative;
  height: 12px;
}
.sp_fix_menu__glnav .icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 32px;
  height: 2px;
  background: #fff;
}
.sp_fix_menu__glnav .icon span:nth-child(1) {
  margin-top: -4px;
}
.sp_fix_menu__glnav .icon span:nth-child(2) {
  margin-top: 4px;
}
.sp_fix_menu__glnav .text {
  display: block;
  margin-top: 2px;
  font-weight: 600;
  font-size: 1.1rem;
}
.sp_fix_menu__glnav.active .icon span:nth-child(1) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(20deg);
}
.sp_fix_menu__glnav.active .icon span:nth-child(2) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(-20deg);
}

.slide_text_wrap {
  overflow: hidden;
  position: fixed;
  bottom: 57px;
  left: 27px;
  width: calc(100% - 54px);
  z-index: -1;
}

.slide_text {
  animation: scroll-left 20s infinite linear;
  display: flex;
  width: max-content;
}
.slide_text img {
  display: block;
  width: 100%;
  max-width: none;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.left_contents,
.right_contents {
  display: none;
  position: fixed;
  top: 0;
  padding-inline: min(3.8vw, 70px);
  width: calc(50% - 27px - var(--center-contents-width) / 2);
  height: 100vh;
}
@media print, screen and (min-width: 992px) {
  .left_contents,
  .right_contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-inline: 2.5vw;
  }
}
@media print, screen and (min-width: 1280px) {
  .left_contents,
  .right_contents {
    padding-inline: min(3.8vw, 70px);
  }
}

.left_contents {
  left: 27px;
  padding-top: 155px;
}

.right_contents {
  right: 27px;
  padding-top: 155px;
}

.center_contents {
  position: relative;
  margin-inline: auto;
  padding-inline: 20px;
  padding-top: 48px;
  background: #fff url(../img/exam/exam_open2026/contents_bg.png) repeat-y 0 0;
  background-size: 100%;
  z-index: 2;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.2);
}
@media print, screen and (min-width: 992px) {
  .center_contents {
    padding-top: 0;
    max-width: var(--center-contents-width);
  }
}

.schedule_title {
  text-align: center;
}
.schedule_title img {
  width: 100%;
  max-width: 340px;
}

.schedule_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  gap: 0.5vw;
  width: 380px;
  max-width: 100%;
}
@media print, screen and (min-width: 1280px) {
  .schedule_list {
    gap: 10px;
  }
}
.schedule_list img {
  width: 100%;
}

.opc_entry_btn {
  display: block;
  margin-top: 2vw;
  width: 380px;
  max-width: 100%;
}
@media print, screen and (min-width: 1280px) {
  .opc_entry_btn {
    margin-top: min(2.2vw, 40px);
  }
}
.opc_entry_btn img {
  filter: drop-shadow(6px 6px 0px rgba(33, 33, 33, 0.67));
}
.opc_entry_btn:hover {
  opacity: 0.7;
}

.contents_nav {
  position: relative;
  width: 303px;
  max-width: 100%;
}

.contents_nav__title {
  padding-right: 40px;
}
.contents_nav__title img {
  width: 100%;
  max-width: 202px;
}

.contents_nav__list {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 2vw;
  max-width: 100%;
}
@media print, screen and (min-width: 1280px) {
  .contents_nav__list {
    margin-top: min(4.2vw, 24px);
  }
}
.contents_nav__list li a {
  display: block;
  font-size: 0;
  width: 100%;
}
.contents_nav__list li a svg {
  max-width: 100%;
  height: auto;
}
.contents_nav__list li a svg .gl_ttl_bg,
.contents_nav__list li a svg .gl_ttl_hoshi,
.contents_nav__list li a svg .gl_ttl_en,
.contents_nav__list li a svg .gl_ttl_jp {
  transition: fill 0.3s;
}
.contents_nav__list li a:not(:hover):not(.active) svg .gl_ttl_bg {
  fill: #ffa876;
}
.contents_nav__list li a:not(:hover):not(.active) svg .gl_ttl_hoshi {
  fill: #fff;
}
.contents_nav__list li a:not(:hover):not(.active) svg .gl_ttl_en {
  fill: #fff;
}
.contents_nav__list li a:not(:hover):not(.active) svg .gl_ttl_jp {
  fill: #fff;
}

.contents_nav_obj {
  position: relative;
  margin-top: -60px;
  pointer-events: none;
}
.contents_nav_obj img {
  width: 420px;
}

.opc2026_mv {
  margin-inline: -20px;
  margin-bottom: 0;
}
@media print, screen and (min-width: 992px) {
  .opc2026_mv {
    margin-bottom: 0;
  }
}
.opc2026_mv img {
  width: 100%;
}

.fix_btn_reservation {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: min(40vw, 188px);
  z-index: 100;
  filter: drop-shadow(6px 6px 0 #2b3152);
}
.fix_btn_reservation::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: url(../img/exam/exam_open2026/btn_reservation_text.png) no-repeat 0 0;
  background-size: 100%;
  pointer-events: none;
  animation: rotation-loop 20s infinite linear;
}
.fix_btn_reservation:hover {
  opacity: 0.7;
}
@media print, screen and (min-width: 768px) {
  .fix_btn_reservation {
    bottom: 20px;
    right: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .fix_btn_reservation {
    width: 188px;
    right: auto;
    left: calc(50% + min(7vw, 40px));
    bottom: 15px;
  }
}

@keyframes rotation-loop {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.program_slider {
  margin-top: 0;
  margin-bottom: 15px;
  margin-inline: -20px;
}
@media print, screen and (min-width: 992px) {
  .program_slider {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.program_slider .slick-track {
  padding-top: 30px;
  padding-bottom: 8px;
}
.program_slider .slick-dots {
  position: relative;
  display: flex !important;
  justify-content: center;
  gap: 5px;
  margin-top: min(4.2vw, 20px);
}
.program_slider .slick-dots li {
  margin: 0 4px;
  font-size: 0;
  padding: 0;
}
.program_slider .slick-dots li::before {
  content: none !important;
}
.program_slider .slick-dots li button {
  position: relative;
  color: transparent;
  width: 20px;
}
.program_slider .slick-dots li button::before {
  content: "★";
  color: #a8a8a8;
  font-size: 20px;
  opacity: 1;
}
.program_slider .slick-dots li.slick-active button::before {
  color: #2573c7;
  opacity: 1;
}

.program_slider_item {
  padding: min(4vw, 24px);
  transition: 0.5s;
  transform: scale(0.85);
  background: #fff;
  border: 1px solid #212121;
  box-shadow: 7px 6px 0 #212121;
  border-radius: 14px;
}
.program_slider_item.slick-center {
  opacity: 1;
  transform: scale(1);
}
.program_slider_item.hukidashi {
  position: relative;
}
.program_slider_item.hukidashi::before {
  position: absolute;
  top: calc(-1 * min(5.5vw, 30px));
  right: -15px;
  content: "";
  width: min(40vw, 200px);
  aspect-ratio: 2/1;
  background: url(../img/exam/exam_open2026/hukidashi_high_school.png) no-repeat 0 0;
  background-size: 100%;
}
.program_slider_item .img_box img {
  width: 100%;
}
.program_slider_item .title {
  margin-top: 15px;
}
.program_slider_item .title img {
  height: min(6.2vw, 28px);
  max-width: 100%;
  margin: 0;
}
.program_slider_item .text {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media print, screen and (min-width: 992px) {
  .program_slider_item .text {
    font-size: 1.8rem;
  }
}

.opc2026 .head_title_l {
  margin-top: 30px;
  margin-inline: -20px;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .head_title_l {
    margin-top: 50px;
  }
}
.opc2026 .element_grp_text {
  font-weight: 500;
}
.opc2026 .element_type_101 h3,
.opc2026 .element_grp_text h3 {
  background: #ff7010;
  padding: 8px 13px;
  border: 0;
  font-size: 2.4rem;
  color: #fff;
  box-shadow: 6px 4px 0 #2573c7;
  text-align: left;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .element_type_101 h3,
  .opc2026 .element_grp_text h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 3.2rem;
  }
}
.opc2026 .element_type_101 h4,
.opc2026 .element_grp_text h4 {
  padding: 0;
  padding-left: 35px;
  border: 0;
  background: none;
  font-size: 2rem;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .element_type_101 h4,
  .opc2026 .element_grp_text h4 {
    font-size: 2.8rem;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 40px;
  }
}
.opc2026 .element_type_101 h4::before,
.opc2026 .element_grp_text h4::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  top: 2px;
  left: 0;
  background: none;
  border: 5px solid #ff7010;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .element_type_101 h4::before,
  .opc2026 .element_grp_text h4::before {
    top: 6px;
    width: 2.8rem;
    height: 2.8rem;
    border: 6px solid #ff7010;
  }
}
.opc2026 .element_type_101 h5,
.opc2026 .element_grp_text h5 {
  position: relative;
  padding: 0;
  padding-block: 12px 13px;
  border: 0;
  background: none;
  font-size: 1.8rem;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #212121;
  border-top: 2px solid #212121;
  border-bottom: 2px solid #212121;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .element_type_101 h5,
  .opc2026 .element_grp_text h5 {
    font-size: 2.2rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.opc2026 .element_type_101 h5::before,
.opc2026 .element_grp_text h5::before {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #212121;
}
.opc2026 .element_type_101 h5::after,
.opc2026 .element_grp_text h5::after {
  position: absolute;
  display: block;
  bottom: 5px;
  top: auto;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #212121;
}
.opc2026 .opc_tmp .element_type_107 a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 65px 12px 26px;
  gap: 0 5px;
  min-height: 70px;
  border: 2px solid #3b3b3b;
  border-radius: 200px;
  background: #f18f8f;
  color: #fff;
  overflow: hidden;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.4;
}
.opc2026 .opc_tmp .element_type_107 a::after {
  content: none;
}
.opc2026 .opc_tmp .element_type_107 a::before {
  display: flex;
  align-items: center;
  justify-content: center;
  left: auto;
  right: 12px;
  margin-right: 0;
  transform: translate(0, -50%);
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 100px;
  font-size: 24px;
}
.opc2026 .opc_tmp .element_type_107 a > span {
  color: #fff;
  margin-left: 0;
  font-size: 1.4rem;
  font-weight: normal;
}
.opc2026 .opc_tmp .element_type_107 a[href$=".pdf"], .opc2026 .opc_tmp .element_type_107 a[href$=".PDF"] {
  border-color: #3b3b3b;
}
.opc2026 .opc_tmp .element_type_107 a[href$=".pdf"]::before, .opc2026 .opc_tmp .element_type_107 a[href$=".PDF"]::before {
  color: #d9392b;
}
.opc2026 .opc_tmp .element_type_107 a[href$=".doc"], .opc2026 .opc_tmp .element_type_107 a[href$=".docx"] {
  border-color: #3b3b3b;
}
.opc2026 .opc_tmp .element_type_107 a[href$=".doc"]::before, .opc2026 .opc_tmp .element_type_107 a[href$=".docx"]::before {
  color: #2e57a7;
}
.opc2026 .opc_tmp .element_type_107 a[href$=".xls"], .opc2026 .opc_tmp .element_type_107 a[href$=".xlsx"] {
  border-color: #3b3b3b;
}
.opc2026 .opc_tmp .element_type_107 a[href$=".xls"]::before, .opc2026 .opc_tmp .element_type_107 a[href$=".xlsx"]::before {
  color: #1f7b50;
}
.opc2026 .opc_tmp .element_type_107 a:hover {
  background-color: #fa6767;
}
.opc2026 .opc_tmp .element_type_107 a:hover[href$=".pdf"], .opc2026 .opc_tmp .element_type_107 a:hover[href$=".PDF"] {
  background-color: #fa6767;
}
.opc2026 .opc_tmp .element_type_107 a:hover[href$=".doc"], .opc2026 .opc_tmp .element_type_107 a:hover[href$=".docx"] {
  background-color: #fa6767;
}
.opc2026 .opc_tmp .element_type_107 a:hover[href$=".xls"], .opc2026 .opc_tmp .element_type_107 a:hover[href$=".xlsx"] {
  background-color: #fa6767;
}
.opc2026 .opc_tmp .element_type_108 .element_grp_link a {
  display: flex;
  align-items: center;
  font-weight: bold;
  min-height: 64px;
  border-radius: 8px;
  padding: 13px 65px 13px 22px;
  background: #fff;
  color: #2573c7;
  border: 1px solid #2573c7;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .opc_tmp .element_type_108 .element_grp_link a {
    padding: 18px 80px 18px 22px;
    font-size: 1.7rem;
  }
}
.opc2026 .opc_tmp .element_type_108 .element_grp_link a::before {
  content: none;
}
.opc2026 .opc_tmp .element_type_108 .element_grp_link a::after {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  right: 12px;
  background-color: #2573c7;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}
.opc2026 .opc_tmp .element_type_108 .element_grp_link a[target=_blank]::after {
  font-size: 18px;
  font-weight: normal;
}
.opc2026 .opc_tmp .element_type_108 .element_grp_link a:hover {
  opacity: 1;
  background-color: #2573c7;
  color: #fff;
}
.opc2026 .opc_tmp .element_type_108 .element_grp_link a:hover::after {
  background: #fff;
  color: #2573c7;
  transform: translate(0, -50%);
}
.opc2026 .opc_tmp .element_type_109 .element_grp_link li {
  margin-right: 5px;
  margin-bottom: 5px;
}
.opc2026 .opc_tmp .element_type_109 .element_grp_link a {
  padding-right: 20px;
  padding-bottom: 0;
  text-decoration: none;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .opc_tmp .element_type_109 .element_grp_link a {
    font-size: 1.8rem;
  }
}
.opc2026 .opc_tmp .element_type_109 .element_grp_link a::before {
  content: "★";
  top: 3px;
  left: 0;
  border: 0;
  width: auto;
  height: auto;
  color: #2573c7;
  line-height: 1;
  font-size: 2.1rem;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .opc_tmp .element_type_109 .element_grp_link a::before {
    top: 5px;
  }
}
.opc2026 .opc_tmp .element_type_109 .element_grp_link a::after {
  content: "→";
  position: absolute;
  right: 2px;
  top: 1px;
  transform: rotate(90deg);
}
.opc2026 .opc_tmp .element_type_109 .element_grp_link a:hover {
  color: #2573c7;
}
.opc2026 .element_type_116,
.opc2026 .element_type_108,
.opc2026 .element_type_107,
.opc2026 .element_grp_text {
  margin-bottom: 25px;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .element_type_116,
  .opc2026 .element_type_108,
  .opc2026 .element_type_107,
  .opc2026 .element_grp_text {
    margin-bottom: 30px;
  }
}
.opc2026 .paragraph {
  margin-bottom: 0;
  font-size: 1.6rem;
}
.opc2026 .element_type_114 hr {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .element_type_114 hr {
    margin-bottom: 30px;
  }
}
.opc2026 .element_grp_text ul > li::before {
  content: "★";
  font-size: 19px;
  color: #2573c7;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  top: -7px;
  left: 4px;
}
@media print, screen and (min-width: 768px) {
  .opc2026 .element_grp_text ul > li::before {
    top: -6px;
    left: 4px;
    font-size: 21px;
  }
}
.opc2026 table {
  margin-bottom: 0;
}
.opc2026 table thead th {
  background-color: #ededed;
  color: #3b3b3b;
  text-align: center;
  line-height: 1.4;
  vertical-align: middle;
}

.opc_bnr_catch {
  text-align: center;
  margin-bottom: 15px;
}
.opc_bnr_catch img {
  max-width: 80%;
  width: 80% !important;
}
@media print, screen and (min-width: 992px) {
  .opc_bnr_catch img {
    max-width: 336px !important;
  }
}

.opc_bnr a {
  display: block;
}
.opc_bnr a:hover {
  opacity: 0.7;
}

.faq_box {
  border: 1px solid #2573c7;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}
@media print, screen and (min-width: 992px) {
  .faq_box {
    padding: 16px;
  }
}
.faq_box + .faq_box {
  margin-top: 20px;
}
@media print, screen and (min-width: 992px) {
  .faq_box + .faq_box {
    margin-top: 30px;
  }
}
.faq_box dt {
  position: relative;
  padding-left: 42px;
  padding-right: 50px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #2573c7;
  line-height: 1.5;
  cursor: pointer;
  display: flex;
  align-items: center;
  min-height: 32px;
}
@media print, screen and (min-width: 992px) {
  .faq_box dt {
    font-size: 1.8rem;
    padding-left: 42px;
  }
}
.faq_box dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 22px;
  background: url(../img/exam/exam_open2026/icon_q.svg) no-repeat center center;
  background-size: 32px;
}
.faq_box dt .toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: url(../img/exam/exam_open2026/faq_toggle_bg.png) no-repeat center center;
  background-size: 44px;
}
.faq_box dt .toggle::before, .faq_box dt .toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.faq_box dt .toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq_box dt.active .toggle {
  background-image: url(../img/exam/exam_open2026/faq_toggle_bg_active.png);
}
.faq_box dt.active .toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq_box dd {
  display: none;
}
.faq_box dd .inner {
  position: relative;
  margin-top: 15px;
  padding: 12px 12px 12px 48px;
  background: #f7f7f7;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
}
@media print, screen and (min-width: 992px) {
  .faq_box dd .inner {
    margin-top: 20px;
    font-size: 1.6rem;
    padding: 17px 17px 17px 48px;
  }
}
.faq_box dd .inner::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 15px;
  width: 26px;
  height: 18px;
  background: url(../img/exam/exam_open2026/icon_a.svg) no-repeat center center;
  background-size: 26px;
}
@media print, screen and (min-width: 992px) {
  .faq_box dd .inner::before {
    left: 13px;
    top: 22px;
  }
}

.opc2026 .footer {
  margin-top: 20px;
  margin-inline: -20px;
}
.opc2026 .footer_upper {
  color: #3b3b3b;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .footer_upper {
    border-bottom: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .opc2026 .footer_upper_box {
    display: block;
  }
}
.opc2026 .footer_upper_left {
  background-color: #fff;
  margin: 0;
  padding: 40px 20px;
}
.opc2026 .footer_upper_left .retinue {
  font-size: 1.6rem;
}
.opc2026 .footer_upper_left .text_s {
  font-size: 1.6rem;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .footer_upper_left .tel a {
    pointer-events: none;
  }
}
.opc2026 .footer_upper_left .tel img {
  width: min(60vw, 289px);
  vertical-align: middle;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .footer_upper_left .tel img {
    width: 289px;
  }
}
.opc2026 .footer_upper_left .tel .tel_link a {
  color: #3b3b3b;
}
.opc2026 .footer_sns {
  margin-top: 40px;
}
.opc2026 .footer_sns li {
  width: 35px;
}
.opc2026 .footer_sns li a {
  display: block;
  font-size: 0;
}
.opc2026 .footer_upper_right {
  background: none;
  padding: 0;
  margin: 0;
}
.opc2026 .footer_nav_lower {
  display: block;
  background-color: #f3f0e7;
  padding: 40px 20px;
}
.opc2026 .footer_nav_lower_list {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  padding: 0;
}
.opc2026 .footer_nav_lower_list li {
  margin-bottom: 0;
}
.opc2026 .footer_nav_lower_list li:not(:last-child) {
  border-bottom: 1px solid #adadad;
}
.opc2026 .footer_nav_lower_list li a {
  display: block;
  padding: 14px 20px;
  color: #3b3b3b;
  font-size: 1.6rem;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .footer_nav_lower_list li a {
    font-size: 1.8rem;
  }
}
.opc2026 .footer_nav_lower_list li a::after {
  color: #3b3b3b;
  font-weight: normal;
  content: "\e901";
}
.opc2026 .footer_nav_lower_list li a[target=_blank]::after {
  font-size: 12px;
}
.opc2026 .footer_nav_lower_list li a:hover {
  color: #2573c7;
}
.opc2026 .footer_lower {
  background-color: #f3f0e7;
  padding: 0 20px 40px;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .footer_lower {
    border: 0;
    padding: 0 20px 40px;
  }
}
.opc2026 .footer_lower_box {
  padding: 0;
  display: block;
}
.opc2026 .footer_lower_box .left {
  margin-bottom: 0;
}
.opc2026 .footer_lower_box ul {
  display: block;
}
.opc2026 .footer_lower_box ul li:not(:last-child) {
  margin-bottom: 12px;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .footer_lower_box ul li:not(:last-child) {
    margin-bottom: 12px;
  }
}
.opc2026 .footer_lower_box ul a {
  color: #3b3b3b;
}
.opc2026 .footer_lower_box ul a::before {
  content: none;
}
.opc2026 .footer_lower_box ul a:hover {
  color: #2573c7;
}
.opc2026 .copyright {
  border-top: 0;
  padding: 30px 20px 90px;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .copyright {
    padding-bottom: 30px;
  }
}
.opc2026 .copyright small {
  color: #3b3b3b;
  font-size: 1rem;
}
@media print, screen and (min-width: 992px) {
  .opc2026 .copyright small {
    font-size: 1.1rem;
  }
}