/*-------------------- reset.css --------------------*/
html,
body,
main,
header,
section,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  font-size: 16px;
  color: #333;
  scroll-behavior: smooth;
}
article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}
* {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
ol,
ul {
  list-style: none;
  list-style-type: none;
}
a {
  color: #333;
  display: block;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}
p {
  font-size: 1rem;
  line-height: 1.6;
}
img {
  display: block;
  width: 100%;
  pointer-events: none;
}
img,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
span,
em,
strong {
  user-select: none;
  -webkit-user-drag: none;
}
main {
  display: block;
}
/*-------------------- //reset.css --------------------*/
/*-------------------- common --------------------*/
body {
  font-family: "Figtree", sans-serif;
}
body.is-fixed {
  overflow: hidden;
}
main {
  padding: 0 0 7.5rem;
  overflow: hidden;
}
.common_sec {
      padding: 0;
      margin: 7.5rem auto 0;
}
.sec_tit {
  margin-bottom: 2.5rem;
  position: relative;
      z-index: 1;
}
.sec_tit .tit_eng {
    position: absolute;
    top: -10vw;
    right: 1.25rem;
    height: auto;
    width: 80%;
    max-width: 800px;
}

.sec_tit .tit_eng img {
    width: 100%;
    height: auto;
}
.sec_tit h2 {
font-size: 8.5vw;
  font-weight: 800;
  line-height: 1;
  position: relative;
  margin-bottom: .75rem;
}
.sec_tit h2 span {
  font-size: .625rem;
  font-weight: 800;
  font-style: italic;
  position: absolute;
  top: -1rem;
  left: 0;
}
.sec_tit p {
  font-size: 1rem;
  font-weight: 800;
}
.float_btn {
  opacity: 0;
  bottom: 0rem;
    position: fixed;
    width: 30%;
    min-width: 150px;
    max-width: 240px;
    height: auto;
    right: 1.25rem;
    z-index: 100;
    transition: .3s;
  }
.float_btn.scrolled {
  opacity: 1;
  bottom: 1.25rem;
  transition: .3s;
  }
  .float_btn::before {
    content: ">";
    font-size: 1rem;
    position: absolute;
    top: 50%;
    right: .75rem;
    transform: translate(0,-50%);
    color: #FF0000;
    cursor: pointer;
  }
  .float_btn a {
    color: #FF0000;
    background-color: #fff;
    padding: 1.125rem 1.25rem;
    border: solid 1px #FF0000;
    font-weight: 600;
    font-size: .875rem;
    transition: all .2s;
  }
  .float_btn:hover a {
    color: #fff;
    background-color: #FF0000;
    border: solid 1px #fff;
    transition: all .2s;
  }
.float_btn:hover::before {
    color: #fff;
    transition: all .2s;
  }
/*-------------------- //common --------------------*/

/*-------------------- header --------------------*/
header {
  display: block;
  position: relative;
  z-index: 10000;
}
header .header_top_area {
  width: 100%;
  height: auto;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
}
header .header_top_inner {
    padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
}
header .sma_logo {
    width: 25%;
    height: auto;
    max-width: 120px;
}
header .nav_pc {
  display: none;
}
header .menu_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
header .menu_btn span {
  display: block;
    width: 32px;
    height: 2px;
    background-color: #333;
    opacity: 1;
    transform: rotate(0deg) translate(0,0);
    transition: .2s;
}
header .menu_btn.is-open span {
  transition: .2s;
}
header .menu_btn.is-open span:first-child {
  transform: rotate(45deg) translate(5.5px,5.5px);
}
header .menu_btn.is-open span:nth-child(2) {
  opacity: 0;
}
header .menu_btn.is-open span:last-child {
  transform: rotate(-45deg) translate(5.5px,-5.5px);
}
header .nav_inner {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
      z-index: 9999;
}
header .nav_inner.is-open {
    display: block;
}
header .nav_inner nav {
    padding: 0 1.25rem;
}
header .nav_inner nav .nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
}
header .nav_inner nav .nav_list li {
  width: 100%;
}
header .nav_inner nav .nav_list li a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1.5rem 0;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 800;
    border-bottom: solid 1px #333;
    margin-bottom: 1px;
  }
  header .nav_inner nav .nav_list li a span {
    font-size: .75rem;
    font-weight: 800;
}
/*-------------------- //header --------------------*/
/*-------------------- top --------------------*/
#top {
  position: relative;
}
#top .top_inner.top_sp {
  display: block;
  padding: 2.5rem 1.25rem 2rem;
  background: url('../images/top_bg.jpg') no-repeat center / cover;
}
#top .top_inner.top_pc {
  display: none;
}
#top .kv_key-ring {
    width: 62%;
    margin: 0 auto 2.5rem;
    max-width: 450px;
    animation: key-swaying 32s infinite ease-in-out;
}
@keyframes key-swaying {
  0%{transform: translateY(0px)}
  10%{transform: translateY(10px)}
  20%{transform: translateY(0px)}
  30%{transform: translateY(10px)}
  40%{transform: translateY(0px)}
  50%{transform: translateY(10px)}
  60%{transform: translateY(0px)}
  70%{transform: translateY(10px)}
  80%{transform: translateY(0px)}
  70%{transform: translateY(10px)}
  100%{transform: translateY(0px)}
}
#top .audition_tit_logo h1 {
    width: 84%;
    margin: 0 auto 2.5rem;
    max-width: 600px;
}
#top .smaa2026_txt {
    margin: 0 auto .875rem;
    max-width: 600px;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
#top .smaa2026_txt span {
    width: 100%;
    height: 1px;
    max-width: 40px;
    background-color: #333;
}
#top .smaa2026_txt p {
    font-size: 1.5rem;
    font-family: din-condensed, sans-serif;
    text-wrap: nowrap;
    font-weight: 700;
}
#top .top_term_area {
    padding: 1.5rem 1rem;
    background-color: #fff;
    border: solid 1px #333;
    text-align: center;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}
#top .top_term_area p.term_tit {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: .75rem;
}
#top .dates {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}
#top .dates p {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    font-style: italic;
  }
  #top .dates small {
    font-size: .875rem;
    font-weight: 800;
    line-height: 1;
    font-style: normal;
    margin-left: .25rem;
}
  #top .dates .line {
    width: 100%;
    height: 1px;
    max-width: 1rem;
    background-color: #333;
}
/*-------------------- //top --------------------*/
/*-------------------- genre --------------------*/
#genre .sec_tit {
  padding: 0 1.25rem;
}
#genre.common_sec {
        max-width: none;
    }
/*-------------------- genre_loop_animation --------------------*/
.genre_area {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  overflow: hidden;
}
.genre_row {
  width: 100%;
  overflow: hidden;
}
.genre_track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: genreLoopRight 60s linear infinite;
}
.genre_list {
  display: flex;
  flex-shrink: 0;
  gap: .75rem;
  padding-right: .75rem;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}
.genre_list li {
  flex-shrink: 0;
  border: solid 1px #333;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  padding: .5rem .75rem;
}
@keyframes genreLoopRight {
  from { transform: translate3d(var(--genre-loop-distance-negative), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}
/*-------------------- //genre_loop_animation --------------------*/
/*-------------------- //genre --------------------*/
/*-------------------- artist --------------------*/
/*-------------------- loop_animation --------------------*/
.artist_track {
  width: 100%;
}

.artist_list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.artist_list li {
  min-width: 0;
  transform: rotateY(0);
  transition: transform .3s ease;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.artist_list li.is-flipping {
  animation: artistFlip .6s ease;
}

.artist_list img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes artistFlip {
  0% { transform: rotateY(0); }
  50% { transform: rotateY(90deg); }
  51% { transform: rotateY(-90deg); }
  100% { transform: rotateY(0); }
}

@media screen and (max-width: 768px) {
  .artist_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*-------------------- //loop_animation --------------------*/
#artist {
  margin: 7.5rem auto 0;
}
/*-------------------- //artist --------------------*/
/*-------------------- about --------------------*/
#about {
  padding: 0 1.25rem 0;
}
#about .sec_tit .tit_eng {
      top: -120%;
}
#about .sec_tit h2 {
font-size: 7.2vw;
}
#about .about_inner {
display: flex;
flex-direction: column;
position: relative;
}
#about .about_inner .bgline_red_l {
    position: absolute;
bottom: -2%;
    left: -75%;
    width: 150%;
    height: auto;
}
#about .about_inner .bgline_red_r {
position: absolute;
    top: 16%;
    right: -60%;
    width: 100%;
    height: auto;
}
#about .about_inner p {
font-size: 5.3vw;
font-weight: 700;
line-height: 2.5;
}
#about .about_inner p strong {
  color: #FF0000;
font-size: 8.5vw;
margin: 0 1.5vw;
    line-height: 2;
}
#about .about_inner p strong.no-name {
  color: #FF0000;
font-size: 9.6vw;
line-height: 2;
display: block;
margin: 6vw auto;
}
#about .about_inner p.msg_for-me {
  font-size: 7vw;
  margin: 6vw 0;
      line-height: 2;
}
/*-------------------- //about --------------------*/
/*-------------------- application --------------------*/
#application {
  padding: 0 1.25rem 0;
}
#application .sec_tit .tit_eng {
  max-width: 1080px;
  top: -5vw;
    width: 80%;
}
#application .application_inner {
  margin-top: 5rem;
}
#application .application_list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
#application .application_item .item_tit {
  margin-bottom: 1.5rem;
}
#application .application_item .item_tit h3 {
  font-size: 1.5rem;
  font-weight: 800;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.4;
}
#application .application_item .item_tit h3::before {
  content: "";
  width: .5rem;
  height: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
}
#application .item_details p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}
#application .item_details p.red_txt {
  color: #FF0000;
}
#application .item_details a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  padding-bottom: .5rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px #333;
  width: max-content;
  opacity: 1;
  transition: all .2s;
}
#application .item_details a:hover {
  opacity: .7;
  transition: all .2s;
}
#application .item_details a .ex_link_icon {
  width: 1.25rem;
  height: 1.25rem;
}
#application .dates {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .5rem;
}
#application .dates p {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    font-style: italic;
  }
#application .dates small {
    font-size: .875rem;
    font-weight: 800;
    line-height: 1;
    font-style: normal;
    margin-left: .25rem;
}
#application .dates .line {
    font-size: 1.25rem;
    font-weight: 700;
}
#application .examination_steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
}
#application .examination_steps li {
    text-align: center;
    border: solid 1px #333;
    background-color: #fff;
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 800px;
        margin: 0 auto;
}
#application .examination_steps li:not(:last-child) {
    position: relative;
}
#application .examination_steps li:not(:last-child)::after {
  content: "";
  width: 1.5rem;
  height: 1rem;
  background: url('../images/steps_arrow.svg') no-repeat center / contain;
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translate(-50%,-50%) rotate(90deg);
}
#application .examination_steps li .step_tit {
    font-size: 1rem;
    font-weight: 800;
    font-style: italic;
    color: #0331AB;
    margin-bottom: .75rem;
    display: block;
}
#application .examination_steps li .step_txt h4 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}
#application .examination_steps li .step_txt p {
    font-size: .875rem;
    font-weight: 800;
    line-height: 1.5;
    margin-top: .5rem;
    display: block;
}
#application .item_details .steps_notes {
    font-size: .875rem;
    margin-top: 1rem;
}
/*-------------------- //application --------------------*/
/*-------------------- benefits --------------------*/
#benefits {
  padding: 0 1.25rem 0;
}
#benefits .sec_tit .tit_eng {
    max-width: 1000px;
  top: -7vw;
  width: 90%;
}
#benefits .sec_tit h2 {
font-size: 7.2vw;
}
#benefits .benefits_inner {
  position: relative;
}
#benefits .benefits_inner .bgline_yel {
    position: absolute;
    top: -16%;
    left: -20%;
    width: 150%;
    height: auto;
}
#benefits .benefits_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
      z-index: 1;
    position: relative;
}
#benefits .benefits_list li {
  width: 100%;
  height: auto;
  max-width: 488px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: solid 1px #333;
      background-color: #fff;
}
#benefits .benefits_list li span {
  width: 2rem;
  min-width: 2rem;
  height: auto;
}
#benefits .benefits_list li span img {
  width: 100%;
  height: auto;
}
#benefits .benefits_list li .benef_txt_area {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
#benefits .benefits_list li .benef_txt_area h3 {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.4;
}
#benefits .benefits_list li .benef_txt_area p {
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.5;
}
/*-------------------- //benefits --------------------*/
/*-------------------- qa --------------------*/
#qa {
  padding: 0 1.25rem 0;
}
#qa .sec_tit .tit_eng {
    max-width: 530px;
    width: 60%;
}
#qa .qa_inner {
    position: relative;
}
#qa .bgline_blue {
    position: absolute;
top: -30%;
    left: -40%;
    width: 125%;
    height: auto;
}
#qa .qa_wrapper {
  max-width: 1000px;
  margin: 0 auto;
      z-index: 1;
    position: relative;
}
#qa .qa_wrapper ul {
     display: flex;
     flex-direction: column;
     gap: .75rem;
}
#qa .qa_wrapper ul li {
    cursor: pointer;
}
#qa .qa_wrapper ul li p {
  font-family: helvetica-neue-lt-pro, sans-serif;
    font-size: .875rem;
    font-weight: 700;
    padding: .75rem;
}
#qa .qa_wrapper ul li .q_txt {
    border: solid 1px #333;
    padding: .75rem 2.5rem .75rem .75rem;
    position: relative;
    background-color: #fff;
}
#qa .qa_wrapper ul li .q_txt::before {
    content: "▼";
    width: .875rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: .875rem;
    transform: translateY(-50%) rotateX(0deg);
    transition: all .3s;
  }
  #qa .qa_wrapper ul li.is-open .q_txt::before {
    transform: translateY(-50%) rotateX(180deg);
    transition: all .3s;
}
#qa .qa_wrapper ul li .a_txt {
  height: 0;
  color: #fff;
  background-color: #333;
  padding: 0 .75rem;
  transition: all .2s;
}
#qa .qa_wrapper ul li.is-open .a_txt {
  height: auto;
  padding: .75rem;
  transition: all .2s;
}
/*-------------------- //qa --------------------*/
/*-------------------- footer --------------------*/
.footer {
    background-color: #F6FAFC;
    padding: 3rem 1rem 6rem;
}
.footer .sns_wrapper {
    max-width: 525px;
    margin: 0 auto 2.5rem;
}
.footer .sns_wrapper ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.footer .sns_wrapper ul li {
    width: 8%;
    margin-right: 1.5rem;
}
.footer .sns_wrapper ul li:last-of-type {
    margin-right: 0;
}

.footer .contact_wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.footer .contact_wrapper .contact_text {
    margin-bottom: 1rem;
}
.footer .contact_wrapper .contact_text p {
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.044rem;
}
.footer .contact_wrapper .contact_text p span {
    font-size: 0.9rem;
}
.footer .contact_wrapper .contact_text p a {
    display: inline-block;
    color: #3755AF;
    text-decoration: underline;
    text-underline-offset: 5px;
    margin: 0.5rem auto;
}
.footer .contact_wrapper .notes {
    font-size: 0.65rem;
}
.footer .contact_wrapper .notes li {
    line-height: 1.5;
}
/*-------------------- //footer --------------------*/




@media (min-width: 768px) {
  main {
    padding: 0 0 12.5rem;
}
.common_sec {
    padding: 12.5rem 0 0;
    margin: 0 auto;
    max-width: 1320px;
}
.sec_tit {
    max-width: 1320px;
    margin: 0 auto 4rem;
}
.sec_tit .tit_eng {
    top: -7.5rem;
}
.sec_tit h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}
.sec_tit h2 span {
    font-size: 1.25rem;
    top: -2rem;
}
.sec_tit p {
    font-size: 2rem;
}
.float_btn {
    bottom: 0rem;
    right: 2.5rem;
}
.float_btn.scrolled {
  bottom: 2.5rem;
  }
.float_btn a {
    padding: 2rem;
    font-size: 1.25rem;
}
.float_btn::before {
    font-size: 1.5rem;
    right: 2rem;
}

#genre .sec_tit {
    padding: 0 3.75rem;
}

#about {
  padding: 12.5rem 3.75rem 0;
  }
  #about .sec_tit .tit_eng {
    top: -200%;
}
  #about .sec_tit h2 {
        font-size: 3.25rem;
}
#about .about_inner p {
    font-size: 1.75rem;
}
#about .about_inner p strong.no-name {
    font-size: 2.5rem;
        margin: 0 auto;
}
#about .about_inner p strong {
    font-size: 2.25rem;
    line-height: 1.8;
    margin: 0 .5rem;
}
#about .about_inner p.msg_for-me {
    font-size: 2.5rem;
    margin: 0;
}

#application {
  padding: 0 3.75rem 0;
  margin: 12.5rem auto 0;
  }
  #application .sec_tit .tit_eng {
    top: -4rem;
}
  #application .application_item .item_tit h3 {
    font-size: 2.5rem;
    padding-left: 3rem;
}
#application .application_item .item_tit h3::before {
    width: 1rem;
}
#application .application_inner {
    margin-top: 7.5rem;
}
#application .application_list {
    gap: 7.5rem;
}
#application .application_item .item_tit {
    margin-bottom: 2rem;
}
#application .item_details p {
    font-size: 1.5rem;
}
#application .item_details a {
    font-size: 1.5rem;
    padding-bottom: .75rem;
    margin-bottom: 1.25rem;
    border-bottom: solid 2px #333;
}
#application .item_details a .ex_link_icon {
    width: 1.75rem;
    height: 1.75rem;
}
#application .dates {
    gap: 1rem;
}
#application .dates p {
    font-size: 2.5rem;
}
#application .dates small {
    font-size: 1.25rem;
}
#application .dates .line {
    font-size: 2rem;
}
#application .item_details .steps_notes {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}


  #benefits {
    padding: 12.5rem 3.75rem 0;
  }
  #benefits .sec_tit h2 {
        font-size: 3.25rem;
  }
  #benefits .benefits_list {
    gap: 1.5rem;
}
#benefits .benefits_list li {
    gap: 1.5rem;
    padding: 2rem;
}
#benefits .benefits_list li span {
    width: 4rem;
        min-width: 4rem;
}
#benefits .benefits_list li .benef_txt_area h3 {
    font-size: 1.5rem;
}
#benefits .benefits_list li .benef_txt_area p {
    font-size: 1rem;
}

  #qa {
    padding: 12.5rem 3.75rem 0;
    }
    #qa .qa_wrapper ul {
    gap: 1.25rem;
}
#qa .qa_wrapper ul li .q_txt {
    font-size: 1.25rem;
    padding: 1rem 3rem 1rem 2rem;
  }
  #qa .qa_wrapper ul li .a_txt {
    font-size: 1.25rem;
    padding: 0 2rem;
}
  #qa .qa_wrapper ul li.is-open .a_txt {
    font-size: 1.25rem;
    padding: 1rem 2rem;
}
#qa .qa_wrapper ul li .q_txt::before {
    right: 1.75rem;
}


  .footer {
        padding: 6rem 2rem;
    }
    .footer .sns_wrapper {
        margin: 0 auto 3.5rem;
    }
    .footer .sns_wrapper ul li {
        margin-right: 3rem;
    }
    .footer .contact_wrapper .contact_text {
        margin-bottom: 1.5rem;
    }
    .footer .contact_wrapper .contact_text p {
        font-size: 0.9rem;
        letter-spacing: 0.05rem;
    }
    .footer .contact_wrapper .contact_text p span {
        font-size: 1rem;
    }
    .footer .contact_wrapper .contact_text p a {
        margin: 1rem auto;
    }
    .footer .contact_wrapper .notes {
        font-size: 0.9rem;
    }
}



@media (min-width: 1024px) {
#top .top_inner.top_sp {
  display: none;
}
#top .top_inner.top_pc {
  display: block;
padding: 2.5rem 4rem;
  background: url('../images/top_bg.jpg') no-repeat center / cover;
}
#top .top_pc .top_pc_fv_area {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
}
#top .top_pc .audition_tit_logo h1 {
    width: 100%;
}
#top .top_pc .smaa2026_txt p {
    font-size: 2.25rem;
}
#top .top_pc .top_term_area {
    padding: .5rem 1.5rem;
    max-width: 560px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
}
#top .top_pc .top_term_area p.term_tit {
    margin-bottom: 0;
}
#top .top_pc .dates .line {
    min-width: 1rem;
}
#top .top_pc .kv_key-ring {
  margin: 0;
}


  .sp_br {
  display: none;
}

#genre .genre_inner {
    /* max-width: 1200px; */
    margin: 0 auto;
}
#genre .genre_area {
    gap: 1.25rem;
}
#genre .genre_list {
  gap: 1.25rem;
  padding-right: 1.25rem;
  }
#genre .genre_list li {
    font-size: 1.25rem;
    padding: .6rem;
  }

  #about {
        padding: 12.5rem 3.75rem 0;
  }
  #about .about_inner .bgline_red_l {
    position: absolute;
    bottom: -15%;
    left: -100%;
    width: 130%;
    height: auto;
}
  #about .about_inner .bgline_red_r {
    position: absolute;
    top: 16%;
    right: -50%;
    width: 100%;
    height: auto;
}

#benefits .benefits_inner .bgline_yel {
    position: absolute;
    top: -60%;
    left: -25%;
    width: 200%;
    height: auto;
}

#qa .bgline_blue {
    position: absolute;
    top: -64%;
    left: -40%;
    width: 80%;
    height: auto;
}


}


@media (min-width: 1280px) {
  header .menu_btn {
    display: none;
  }
  header .nav_pc {
    display: flex;
    align-items: center;
  }
  header .nav_pc .nav_pc_list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
  }
  header .nav_pc .nav_pc_list li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .nav_pc .nav_pc_list li a {
    font-size: 1rem;
    font-weight: 700;
    opacity: 1;
    transition: all .2s;
  }
  header .nav_pc .nav_pc_list li a:hover {
    opacity: .7;
    transition: all .2s;
  }
  header .nav_pc .nav_pc_list li.entry_red a {
    color: #fff;
    background-color: #FF0000;
    padding: .25rem .5rem;
  }
  header .nav_pc .sns_icon {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
  }
  header .nav_pc .sns_icon li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .nav_pc .sns_icon li a {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 1;
    transition: all .2s;
  }
  header .nav_pc .sns_icon li a:hover {
    opacity: .7;
    transition: all .2s;
  }
  header .nav_pc .sns_icon li a img {
    width: 100%;
    height: auto;
  }

  #application .examination_steps {
    flex-direction: row;
    gap: 5rem;
}
#application .examination_steps li {
    padding: 2rem 2rem;
}
#application .examination_steps li:not(:last-child)::after {
  left: inherit;
    bottom: 50%;
    right: -4rem;
    transform: translate(-50%, 50%) rotate(0deg);
}
#application .examination_steps li .step_tit {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
#application .examination_steps li .step_txt h4 {
    font-size: 1.75rem;
}
#application .examination_steps li .step_txt p {
    font-size: 1rem;
    margin-top: .75rem;
}
}

