@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
html {
  font-size: 62.5%;
}

.fo-Regular {
  font-weight: 400;
}

.fo-Medium {
  font-weight: 500;
}

.fo-Bold {
  font-weight: 700;
}

.fo-80 {
  font-size: 80px;
  font-size: 8rem;
}

.fo-50 {
  font-size: 50px;
  font-size: 5rem;
}

.fo-40 {
  font-size: 32px;
  font-size: 3.2rem;
}

.fo-35 {
  font-size: 35px;
  font-size: 3.5rem;
}

.fo-30 {
  font-size: 30px;
  font-size: 3rem;
}

.fo-25 {
  font-size: 25px;
  font-size: 2.5rem;
}

.fo-23 {
  font-size: 23px;
  font-size: 2.3rem;
}

.fo-20 {
  font-size: 20px;
  font-size: 2rem;
}

.fo-18 {
  font-size: 18px;
  font-size: 1.8rem;
}

.fo-16 {
  font-size: 16px;
  font-size: 1.6rem;
}

.fo-14 {
  font-size: 14px;
  font-size: 1.4rem;
}

.fo-10 {
  font-size: 10px;
  font-size: 1rem;
}

@media (min-width: 769px) {
  .mv {
    display: none !important;
  }
  .ipad {
    display: none;
  }
  .pc {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .ipad {
    display: none;
  }
  .mv {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .pc {
    display: none;
  }
  .mv {
    display: none;
  }
  .ipad {
    display: inline-block !important;
  }
}
@media (min-width: 769px) {
  .wrap {
    width: calc(100% - 100px);
    margin: auto;
  }
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
  .wrap > .wrap_min {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .wrap {
    width: 90%;
  }
}

@media (min-width: 769px) {
  .wrap_min {
    width: 900px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .wrap_min {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 1025px) {
  .wrap_min {
    width: 85%;
  }
}

iframe {
  width: 100%;
}

@media (min-width: 1300px) and (min-width: 768px) {
  .wrap {
    width: 1200px;
  }
}
body, button, input, select, optgroup, textarea {
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  background-size: contain;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
  padding: 0;
  margin: 0;
  color: #3C3E50;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-start {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
}

.flex-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-strech {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (min-width: 769px) {
  .flex-container-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex-between-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-start-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
  }
  .flex-strech-pc {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .flex-end-pc {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-align-center-pc {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-space-between-pc {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-center-pc {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-row-reverse-pc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.active::-webkit-scrollbar {
  display: none;
}

body.active {
  -ms-overflow-style: none;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
  margin: 0;
  line-height: 1.8;
}

img, video {
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
  height: auto;
  border: none;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

img {
  object-fit: cover;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  padding: 0.5rem 1rem;
  width: 100%;
  font-size: 1rem;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

a {
  color: #4D4D4D;
}
a:link, a:visited {
  text-decoration: none;
  word-wrap: break-word;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover, a:active {
  text-decoration: none;
  opacity: 0.8;
  cursor: pointer;
}

.omj-awre-footer-sponsor {
  background: #1d087f;
  color: #fff;
  padding: 5rem 0;
}
.omj-awre-footer-sponsor h2 {
  text-align: center;
  margin: 0 0 2rem;
}
.omj-awre-footer-sponsor li {
  text-align: center;
  margin: auto;
  padding: 1rem;
}
@media (min-width: 769px) {
  .omj-awre-footer-sponsor li {
    width: calc((100% - 4rem) / 3);
  }
}
.omj-awre-footer-sponsor .omj-awre-footer-sponsor-list-item-logo {
  padding-top: 30%;
  height: 0;
  margin: 0 auto;
  background: center center/contain no-repeat;
}

@media (max-width: 768px) {
  .sb-slidebar .sp_nav {
    height: 900px;
  }
  .sb-slidebar .sp_nav li {
    font-size: 13px;
    font-weight: 400;
    padding: 5px 10px;
    border-bottom: solid 1px #CCC;
  }
  .sb-slidebar .sp_nav li a {
    color: #111;
    text-decoration: none;
    display: block;
  }
  .sb-slidebar .sp_nav li .child {
    margin: 0;
  }
  .sb-slidebar .sp_nav li .child li {
    padding: 0;
    margin: 0;
    border: none;
  }
  .sb-slidebar .sp_nav li .child li a {
    padding: 5px 5px 5px 0;
  }
}
header.l-header {
  z-index: 100;
}
@media (max-width: 768px) {
  header .alllogo {
    margin-right: 4rem;
  }
}
header .list_01 a {
  text-decoration: underline;
  text-align: left;
}
@media (min-width: 769px) {
  header .menu-content .omj-awre-header-nav {
    height: 5rem;
    transition: var(--animation-speed);
    background: #3239cb;
  }
}
header .menu-content .omj-awre-header-nav ul {
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  header .menu-content .omj-awre-header-nav ul {
    display: flex;
    width: 1000px;
    position: relative;
    margin: auto;
  }
}
header .menu-content .omj-awre-header-nav ul li {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 769px) {
  header .menu-content .omj-awre-header-nav ul li {
    height: 100%;
    width: 25%;
    border-right: 0.5px solid #fff;
  }
}
header .menu-content .omj-awre-header-nav ul li:hover {
  background: #FF346E;
}
header .menu-content .omj-awre-header-nav ul li a {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-size: 1.3rem;
}
@media (min-width: 769px) {
  header .menu-content .omj-awre-header-nav ul li a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
header .menu-content .omj-awre-header-nav ul li:first-child img {
  width: 20px;
  margin-left: 1rem;
}
@media (min-width: 769px) {
  header .menu-content .omj-awre-header-nav ul li:first-child {
    border-left: 0.5px solid #fff;
  }
}
@media (max-width: 768px) {
  header .menu-content .hamburger {
    height: 50px;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 100;
  }
  header .menu-content .globalMenuSp {
    transform: translateX(100%);
    transition: all 0.6s;
    position: absolute;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100vh;
  }
  header .menu-content .globalMenuSp ul {
    background: #1d087f;
    width: calc(50% + 4rem);
    padding: 3rem 2rem;
    position: absolute;
    right: 0;
  }
  header .menu-content .globalMenuSp ul li {
    border-bottom: 1px solid #fff;
    margin-top: 1rem;
    padding: 1rem 0.5rem;
  }
  header .menu-content .globalMenuSp ul li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
  header .menu-content .globalMenuSp.active {
    transform: translateX(0%);
  }
}

@media (min-width: 769px) {
  .next10-2024 {
    padding-top: 12rem;
  }
}
.next10-2024 strong {
  font-weight: 500;
}
.next10-2024 .top-tit {
  margin-bottom: 5rem;
}
.next10-2024 .top-tit h2 {
  font-family: "Anton", sans-serif;
  text-align: center;
  letter-spacing: 1.7px;
}
.next10-2024 .top-tit h2 span {
  padding-bottom: 1rem;
  position: relative;
}
.next10-2024 .top-tit h2 span::after {
  content: "";
  width: 3rem;
  height: 3px;
  background: #FF346E;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.next10-2024 section {
  padding: 13rem 0;
}
@media (max-width: 768px) {
  .next10-2024 section {
    padding: 10rem 0;
  }
}
.next10-2024 .sec1 {
  height: 52.96875vw;
  background: center bottom/cover url(../images/top/top-mv-medium-compressed.jpg) no-repeat;
  position: relative;
  padding: 0;
}
@media (max-width: 768px) {
  .next10-2024 .sec1 {
    height: 100vh;
  }
}
.next10-2024 .sec1 .omj-awre-inner {
  position: relative;
  height: 100%;
}
.next10-2024 .sec1 .omj-awre-inner .omj-awre-mv-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .next10-2024 .sec1 .omj-awre-inner .omj-awre-mv-content {
    left: -3rem;
  }
}
@media (max-width: 768px) {
  .next10-2024 .sec1 .omj-awre-inner .omj-awre-mv-content {
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.next10-2024 .sec1 .omj-awre-inner .omj-awre-mv-content h1 {
  background: center center/contain url(../images/top/top-mv-cc.svg) no-repeat;
}
@media (min-width: 769px) {
  .next10-2024 .sec1 .omj-awre-inner .omj-awre-mv-content h1 {
    width: 34vw;
    height: 25vw;
  }
}
@media (max-width: 768px) {
  .next10-2024 .sec1 .omj-awre-inner .omj-awre-mv-content h1 {
    width: 270px;
    height: 140px;
  }
}
.next10-2024 .sec1 .omj-awre-inner img {
  position: absolute;
}
@media (min-width: 769px) {
  .next10-2024 .sec1 .omj-awre-inner img {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: calc(100vh - 12rem - 14rem);
  }
}
@media (max-width: 768px) {
  .next10-2024 .sec1 .omj-awre-inner img {
    width: 160px;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.next10-2024 .sec2 .sec2-content .sec2-content_item {
  align-items: center;
}
@media (min-width: 769px) {
  .next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-img {
    width: calc(50% - 5rem);
  }
}
@media (min-width: 769px) {
  .next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text {
    margin-top: 2rem;
  }
}
.next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text h3 {
  padding-left: 1rem;
  border-left: 8px solid #D3B446;
  line-height: normal;
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text h3 {
    margin-bottom: 2rem;
    font-size: 20px;
    font-size: 2rem;
  }
}
.next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text h3 span {
  opacity: 0.5;
}
@media (min-width: 769px) {
  .next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text h3 span {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text h3 span {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text h4 {
  position: relative;
  margin-top: 2rem;
}
.next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text h4::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #D3B446;
  vertical-align: 1px;
  border-radius: 10px;
}
.next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text .more-btn a {
  background: #D3B446;
  border-color: #D3B446;
}
.next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text .more-btn a:hover {
  background: #fff;
  color: #D3B446;
}
.next10-2024 .sec2 .sec2-content .sec2-content_item .sec2-content_item-text .more-btn a:hover::after {
  background: #D3B446;
}
.next10-2024 .sec2 .sec2-content .sec2-content_item:nth-child(2) {
  margin-top: 5rem;
}
@media (min-width: 769px) {
  .next10-2024 .sec2 .sec2-content .sec2-content_item:nth-child(2) {
    flex-direction: row-reverse;
  }
}
.next10-2024 .sec2 .sec2-content .sec2-content_item:nth-child(2) .sec2-content_item-text h3 {
  border-color: #258074;
}
.next10-2024 .sec2 .sec2-content .sec2-content_item:nth-child(2) .sec2-content_item-text h4::before {
  background: #258074;
}
.next10-2024 .sec2 .sec2-content .sec2-content_item:nth-child(2) .sec2-content_item-text .more-btn a {
  background: #258074;
  border-color: #258074;
}
.next10-2024 .sec2 .sec2-content .sec2-content_item:nth-child(2) .sec2-content_item-text .more-btn a:hover {
  background: #fff;
  color: #258074;
}
.next10-2024 .sec2 .sec2-content .sec2-content_item:nth-child(2) .sec2-content_item-text .more-btn a:hover::after {
  background: #258074;
}
.next10-2024 .sec3 {
  background: #0D0C31;
  color: #fff;
}
.next10-2024 .sec3 .top-tit h2 {
  color: #fff;
}
.next10-2024 .sec3 .sec3-content .sec3-content_item {
  flex-direction: row-reverse;
  align-items: center;
}
@media (min-width: 769px) {
  .next10-2024 .sec3 .sec3-content .sec3-content_item .sec3-content_item-img {
    width: calc(50% - 5rem);
  }
}
@media (max-width: 768px) {
  .next10-2024 .sec3 .sec3-content .sec3-content_item .sec3-content_item-img {
    margin-bottom: 2rem;
  }
}
@media (min-width: 769px) {
  .next10-2024 .sec3 .sec3-content .sec3-content_item .sec3-content_item-text {
    width: 50%;
  }
}
.next10-2024 .sec3 .sec3-content .sec3-content_item .sec3-content_item-text p {
  line-height: 1.8;
}
.next10-2024 .sec4 .top-tit h2 {
  font-family: "NotoSansCJKjp", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 700;
}
.next10-2024 .sec4 .sec4-content {
  margin-top: 5rem;
}
@media (min-width: 769px) {
  .next10-2024 .sec4 .sec4-content .sec4-content_img {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 768px) {
  .next10-2024 .sec4 .sec4-content .sec4-content_img {
    margin-bottom: 2rem;
  }
}
@media (min-width: 769px) {
  .next10-2024 .sec4 .sec4-content .sec4-content_text {
    width: calc(50% - 2rem);
  }
}
.next10-2024 .sec4 .sec4-content .sec4-content_text ul li {
  padding: 0 0 0 2rem;
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .next10-2024 .sec4 .sec4-content .sec4-content_text ul li {
    margin-bottom: 1rem;
  }
}
.next10-2024 .sec4 .sec4-content .sec4-content_text ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: #FF346E;
  top: 0.5em;
  left: 0;
  border-radius: 50%;
}
.next10-2024 .sec4 .sec4-content .more-btn {
  width: 100%;
}
.next10-2024 .sec4 .sec4-content .more-btn a {
  margin: 0 auto;
}
.next10-2024 .sec5 {
  padding: 0;
}
.next10-2024 .sec5 .top-tit {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .next10-2024 .sec5 .top-tit {
    margin-bottom: 5rem;
  }
}
.next10-2024 .sec5 .top-tit h2 {
  font-family: "NotoSansCJKjp", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 700;
}
@media (min-width: 769px) {
  .next10-2024 .sec5 .sec5-content .more-btn {
    width: calc(33.3333333333% - 3rem);
  }
}
@media (max-width: 768px) {
  .next10-2024 .sec5 .sec5-content .more-btn {
    margin-top: 3rem;
  }
}
.next10-2024 .sec6 h3 {
  line-height: normal;
  color: #1d087f;
}
@media (max-width: 768px) {
  .next10-2024 .sec6 h3 {
    font-size: 9vw;
  }
}
.next10-2024 .sec6 h3 span {
  display: block;
}
.next10-2024 .sec6 .sec6-content {
  margin-top: 5rem;
}
@media (min-width: 769px) {
  .next10-2024 .sec6 .sec6-content .sec6-content_item .sec6-content_item-img {
    width: calc(50% - 5rem);
  }
}
@media (max-width: 768px) {
  .next10-2024 .sec6 .sec6-content .sec6-content_item .sec6-content_item-img {
    margin-bottom: 2rem;
  }
}
@media (min-width: 769px) {
  .next10-2024 .sec6 .sec6-content .sec6-content_item .sec6-content_item-text {
    width: 50%;
  }
}
.next10-2024 .sec6 .sec6-content .sec6-content_item .sec6-content_item-text p {
  line-height: 1.8;
}

.under {
  padding: 0;
}
@media (min-width: 769px) {
  .under {
    margin-top: 12rem;
  }
}
.under section {
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .under section {
    padding: 8rem 0;
  }
}
.under section .omj-awre-title {
  font-size: 4rem;
  font-weight: bold;
  margin: 0 0 5rem;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .under section .omj-awre-title {
    font-size: 25px;
    font-size: 2.5rem;
    margin-top: 2rem;
  }
}
.under section .omj-awre-title span {
  padding: 0 0 calc(1rem + 5px);
  position: relative;
  color: #1d087f;
  border-bottom: 5px solid #1d087f;
}
.under section .under-img {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .under section .under-img {
    max-width: 80rem;
  }
}
.under section h2 {
  font-weight: bold;
  margin: 0 0 5rem;
  padding: 0 0 calc(2rem + 1px);
  position: relative;
  border-bottom: 1px solid #ff346e;
}
.under section h2::after {
  content: "";
  display: block;
  width: 7rem;
  height: 5px;
  background: #ff346e;
  position: absolute;
  bottom: 0;
  left: 0;
}
.under.lt .sub-title {
  padding: 0 0 1.2rem;
  border-bottom: 2px solid #1d087f;
  font-weight: bold;
  font-size: 1.8rem;
  display: flex;
  margin-bottom: 2rem;
}
.under.lt .lt-sec1 {
  padding-top: 0;
}
@media (max-width: 768px) {
  .under.lt .lt-sec1 {
    padding-bottom: 0;
  }
}
.under.lt .lt-sec1 p {
  margin-bottom: 4rem;
}
.under.lt .lt-sec1 ul li {
  padding: 0 0 0 2rem;
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .under.lt .lt-sec1 ul li {
    margin-bottom: 1rem;
  }
}
.under.lt .lt-sec1 ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: #FF346E;
  top: 0.5em;
  left: 0;
  border-radius: 50%;
}
.under.lt .lt-sec1 ul li p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .under.lt .lt-sec2 {
    padding-bottom: 0;
  }
}
.under.lt .lt-sec2 p {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .under.lt .lt-sec3 {
    padding-bottom: 0;
  }
}
.under.lt .lt-sec3 p {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .under.lt .lt-sec3 p {
    margin-bottom: 3rem;
  }
  .under.lt .lt-sec3 p:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .under.lt .lt-sec3 .lt-sec3_item {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .under.lt .lt-sec4 {
    padding-bottom: 0;
  }
}
@media (min-width: 769px) {
  .under.lt .lt-sec4 .omj-awre-flex-1-item {
    width: calc(50% - 2rem);
  }
}
.under.lt .lt-sec4 .omj-awre-flex-1-item .omj-awre-card-title {
  text-align: center;
  padding: 2rem;
  font-weight: bold;
  color: #fff;
  background: #3C3E50;
}
.under.lt .lt-sec4 .omj-awre-flex-1-item .omj-awre-card-inner {
  padding: 2rem;
  border: 1px solid #1d087f;
  padding-bottom: 3rem;
}
.under.lt .lt-sec4 .omj-awre-flex-1-item .omj-awre-card-content {
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid #a3a7e4;
}
.under.lt .lt-sec4 .omj-awre-flex-1-item .omj-awre-card-content .omj-awre-card-content-title {
  font-weight: bold;
  color: #1d087f;
  font-size: 16px;
  font-size: 1.6rem;
}
.under.lt .lt-sec4 .omj-awre-flex-1-item .omj-awre-card-content:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding: 0;
}
@media (max-width: 768px) {
  .under.lt .lt-sec4 .omj-awre-flex-1-item:nth-child(2) {
    margin-top: 3rem;
  }
}
.under.lt .lt-sec4 .omj-awre-flex-1-item:nth-child(2) .omj-awre-content-card-next10 .omj-awre-card-title {
  background: #1d087f;
}
.under.lt .lt-sec4 .omj-awre-flex-1-item:nth-child(2) .omj-awre-content-card-next10 .omj-awre-card-inner {
  padding: 2rem 1rem;
  border-width: 1rem;
  border-top-width: 1px;
  font-weight: bold;
}
.under.lt .lt-sec4 .omj-awre-flex-1-item:nth-child(2) .omj-awre-content-card-next10 .omj-awre-under {
  background: linear-gradient(transparent 50%, #f7e7b1 50%);
}
.under.lt .lt-sec5 .omj-awre-flex-2-item {
  text-align: center;
}
@media (min-width: 769px) {
  .under.lt .lt-sec5 .omj-awre-flex-2-item {
    width: calc(33.3333333333% - 1rem);
  }
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item .omj-awre-ask-item-title {
  background: #958348;
  padding: 2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin: 0 0 2rem;
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item .omj-awre-ask-item-text {
  margin-bottom: 1rem;
}
@media (min-width: 769px) {
  .under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item .omj-awre-ask-item-text {
    min-height: 3.4em;
  }
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item img {
  margin: 0 auto 2rem;
}
@media (min-width: 769px) {
  .under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item img {
    height: 16rem;
    object-fit: contain;
  }
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item .omj-awre-ask-item-sub-title {
  padding: 0 0 2.2rem;
  margin: 0 0 2rem;
  border-bottom: 2px solid #958348;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item li {
  padding: 0 0 0 2rem;
  position: relative;
  margin: 0 0 2rem;
  text-align: left;
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item li::before {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: #958348;
  top: 0.5em;
  left: 0;
  border-radius: 50%;
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item.omj-awre-c-5 .omj-awre-ask-item-title,
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item.omj-awre-c-5 li::before {
  background: #216d5b;
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item.omj-awre-c-5 .omj-awre-ask-item-sub-title,
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item.omj-awre-c-5 li::before {
  border-color: #216d5b;
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item.omj-awre-c-1 .omj-awre-ask-item-title,
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item.omj-awre-c-1 li::before {
  background: #1d087f;
}
.under.lt .lt-sec5 .omj-awre-flex-2-item .omj-awre-ask-item.omj-awre-c-1 .omj-awre-ask-item-sub-title {
  border-bottom: 2px solid #1d087f;
}
@media (max-width: 768px) {
  .under.lt .lt-sec5 .omj-awre-flex-2-item:nth-child(2) {
    margin: 4rem 0;
  }
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item {
  width: calc(50% - 5rem);
  margin: 0 5rem 5rem 0;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card-title {
  text-align: center;
  padding: 2rem;
  font-size: 16px;
  font-weight: bold;
  background: #1d087f;
  color: #fff;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card-inner {
  padding: 2rem 2rem;
  border: 1px solid #1d087f;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card-content-title {
  color: #1d087f;
  font-weight: bold;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card-content {
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid #a3a7e4;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card-content:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding: 0;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card.omj-awre-c-3 .omj-awre-card-title {
  background: #9b5348;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card.omj-awre-c-3 .omj-awre-card-content-title {
  color: #9b5348;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card.omj-awre-c-3 .omj-awre-card-inner {
  border-color: #9b5348;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card.omj-awre-c-4 .omj-awre-card-title {
  background: #958348;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card.omj-awre-c-4 .omj-awre-card-content-title {
  color: #958348;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card.omj-awre-c-4 .omj-awre-card-inner {
  border-color: #958348;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card.omj-awre-c-5 .omj-awre-card-title {
  background: #216d5b;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card.omj-awre-c-5 .omj-awre-card-content-title {
  color: #216d5b;
}
.under.sponsor .sponsor-sec1 .omj-awre-flex-1-item .omj-awre-card.omj-awre-c-5 .omj-awre-card-inner {
  border-color: #216d5b;
}
.under.list strong {
  font-weight: 500;
}
.under.list .top-tit {
  margin-bottom: 5rem;
}
.under.list .top-tit h2 {
  font-family: "Anton", sans-serif;
  text-align: center;
  letter-spacing: 1.7px;
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.under.list .top-tit h2::after {
  display: none;
}
.under.list .top-tit h2 span {
  padding-bottom: 1rem;
  position: relative;
}
.under.list .top-tit h2 span::after {
  content: "";
  width: 3rem;
  height: 3px;
  background: #FF346E;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.under.list .list-category {
  background: rgba(13, 12, 49, 0.4);
  position: absolute;
  top: 0;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: normal;
  z-index: 20;
}
.under.list .list-top {
  background: url(../images/list/list-top_bg.jpg);
  padding: 0;
}
@media (min-width: 769px) {
  .under.list .list-top {
    position: relative;
    height: calc(100vh - 9rem);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .under.list .list-top {
    height: calc(100vh - 6rem);
    position: relative;
    margin-top: 6rem;
  }
}
.under.list .list-top .list-top_content {
  color: #fff;
  align-items: center;
  position: absolute;
}
@media (min-width: 769px) {
  .under.list .list-top .list-top_content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
  }
}
@media (min-width: 768px) and (max-width: 1140px) {
  .under.list .list-top .list-top_content {
    width: 50vw;
  }
}
@media (max-width: 768px) {
  .under.list .list-top .list-top_content {
    left: 2rem;
    top: 3rem;
    width: calc(100% - 4rem);
    bottom: 3rem;
  }
}
.under.list .list-top .list-top_content h1 {
  font-size: 5.5vw;
  line-height: normal;
}
@media (min-width: 769px) {
  .under.list .list-top .list-top_content h1 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .under.list .list-top .list-top_content h1 {
    font-size: 50px;
    font-size: 5rem;
  }
}
.under.list .list-top .list-top_content h1 img {
  display: block;
}
@media (min-width: 769px) {
  .under.list .list-top .list-top_content h1 img {
    margin: 0 auto 1rem auto;
    width: 170px;
  }
}
@media (max-width: 768px) {
  .under.list .list-top .list-top_content h1 img {
    width: 150px;
  }
}
.under.list .list-top .list-top_content h1 span {
  font-size: 1.7vw;
  display: block;
  opacity: 0.7;
  margin-top: -1rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .under.list .list-top .list-top_content h1 span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.under.list .list-top .event {
  border: 1px solid #D3B446;
  color: #fff;
  padding: 2rem;
  text-align: center;
  background: rgba(211, 180, 70, 0.5);
}
@media (max-width: 768px) {
  .under.list .list-top .event {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
.under.list .list-top .event h3 {
  line-height: normal;
  margin-bottom: 1rem;
}
.under.list .list-top .event .text {
  line-height: normal;
}
.under.list .list-top .event .text p {
  font-family: "Anton", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media (min-width: 769px) {
  .under.list .list-top .event .text p {
    letter-spacing: 5px;
  }
}
@media (max-width: 768px) {
  .under.list .list-top .event .text p {
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.under.list .list-top .event .text strong {
  display: inline-block;
  vertical-align: 1px;
}
.under.list .list-top .event .text span {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: normal;
  opacity: 0.7;
  vertical-align: 5px;
  display: block;
}
@media (max-width: 768px) {
  .under.list .list-top .event .text span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .under.list .list-top .event h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
.under.list .list-top .list-img {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .under.list .list-top .list-img {
    width: 230px;
  }
}
@media (min-width: 768px) and (max-width: 1140px) {
  .under.list .list-top .list-img {
    width: 20vw;
  }
}
@media (max-width: 768px) {
  .under.list .list-top .list-img {
    top: calc(100px + 17rem);
    width: 37vw;
  }
}
@media (max-width: 768px) {
  .under.list .sec2 {
    padding-bottom: 0;
  }
}
.under.list .sec2 .sec2-content {
  align-items: center;
}
@media (min-width: 769px) {
  .under.list .sec2 .sec2-content img {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 768px) {
  .under.list .sec2 .sec2-content img {
    margin-bottom: 2rem;
  }
}
@media (min-width: 769px) {
  .under.list .sec2 .sec2-content .sec2-content_text {
    width: calc(50% - 2rem);
  }
}
.under.list .sec2 .sec2-content .sec2-content_text h3 {
  padding-left: 1rem;
  border-left: 6px solid #0D0C31;
  line-height: normal;
  position: relative;
  margin-bottom: 1rem;
}
.under.list .sec2 .sec2-content .sec2-content_text h3.last {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .under.list .sec2 .sec2-content .sec2-content_text h3.last {
    margin-top: 2rem;
  }
}
.under.list .sec2 .sec2-content .sec2-content_text p span {
  display: block;
  opacity: 0.6;
}
.under.list .sec2 .more-btn a {
  margin: auto;
}
@media (max-width: 768px) {
  .under.list .sec3 {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .under.list .sec4,
  .under.list .sec5,
  .under.list .sec6 {
    padding-bottom: 0;
  }
}
.under.list .sec4 .omj-awre-sponsor-list .omj-awre-sponsor-list-item,
.under.list .sec5 .omj-awre-sponsor-list .omj-awre-sponsor-list-item,
.under.list .sec6 .omj-awre-sponsor-list .omj-awre-sponsor-list-item {
  position: relative;
  border: 1px solid #1d087f;
  margin: 0 3rem 3rem 0;
}
@media (min-width: 769px) {
  .under.list .sec4 .omj-awre-sponsor-list .omj-awre-sponsor-list-item,
  .under.list .sec5 .omj-awre-sponsor-list .omj-awre-sponsor-list-item,
  .under.list .sec6 .omj-awre-sponsor-list .omj-awre-sponsor-list-item {
    width: calc(20% - 3rem);
  }
}
@media (max-width: 768px) {
  .under.list .sec4 .omj-awre-sponsor-list .omj-awre-sponsor-list-item,
  .under.list .sec5 .omj-awre-sponsor-list .omj-awre-sponsor-list-item,
  .under.list .sec6 .omj-awre-sponsor-list .omj-awre-sponsor-list-item {
    width: calc(50% - 2rem);
  }
  .under.list .sec4 .omj-awre-sponsor-list .omj-awre-sponsor-list-item:nth-child(2n),
  .under.list .sec5 .omj-awre-sponsor-list .omj-awre-sponsor-list-item:nth-child(2n),
  .under.list .sec6 .omj-awre-sponsor-list .omj-awre-sponsor-list-item:nth-child(2n) {
    margin-right: 0;
  }
}
.under.list .sec4 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-container,
.under.list .sec5 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-container,
.under.list .sec6 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-container {
  height: 0;
  padding-top: 100%;
  position: relative;
  background: center center/cover no-repeat;
}
.under.list .sec4 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-container .omj-awre-sponsor-list-item-logo,
.under.list .sec4 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-container .omj-awre-partner-list-item-thum-logo,
.under.list .sec5 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-container .omj-awre-sponsor-list-item-logo,
.under.list .sec5 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-container .omj-awre-partner-list-item-thum-logo,
.under.list .sec6 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-container .omj-awre-sponsor-list-item-logo,
.under.list .sec6 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-container .omj-awre-partner-list-item-thum-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: center center/contain no-repeat;
}
.under.list .sec4 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-content,
.under.list .sec5 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-content,
.under.list .sec6 .omj-awre-sponsor-list .omj-awre-sponsor-list-item .omj-awre-sponsor-list-item-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--part-margin-small);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff !important;
  opacity: 0;
  transition: 0.5s;
  text-decoration: none;
}
.under.list .sec4 .omj-awre-sponsor-list .omj-awre-sponsor-list-item:hover .omj-awre-sponsor-list-item-content,
.under.list .sec5 .omj-awre-sponsor-list .omj-awre-sponsor-list-item:hover .omj-awre-sponsor-list-item-content,
.under.list .sec6 .omj-awre-sponsor-list .omj-awre-sponsor-list-item:hover .omj-awre-sponsor-list-item-content {
  opacity: 1;
}
.under.list .sec7 .sec7-content {
  align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .under.list .sec7 .sec7-content img {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 768px) {
  .under.list .sec7 .sec7-content img {
    margin-bottom: 2rem;
  }
}
@media (min-width: 769px) {
  .under.list .sec7 .sec7-content .sec7-content_text {
    width: calc(50% - 2rem);
  }
}
.under.list .sec7 .sec7-content .sec7-content_text h3 {
  padding-left: 1rem;
  border-left: 6px solid #0D0C31;
  line-height: normal;
  position: relative;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .under.list .sec7 .sec7-content .sec7-content_text h3 {
    margin-bottom: 1rem;
  }
}
.under.list .sec7 .sec7-content .sec7-content_text h3.last {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .under.list .sec7 .sec7-content .sec7-content_text h3.last {
    margin-top: 2rem;
  }
}
.under.list .sec7 .sec7-content .sec7-content_text p span {
  display: block;
  opacity: 0.5;
}
.under.list .sec7 .sec7-content .sec7-content_text p a {
  padding: 0 0.5rem 0.5rem;
  border-bottom: 1px solid #3C3E50;
}
.under.list .sec7 .more-btn a {
  margin: auto;
}
.under.list.north .list-top {
  background: url(../images/list/north-top.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .under.list.north .list-top {
    background-position: 12%;
  }
}
.under.list.north li .omj-awre-speaker-list-item-content-company,
.under.list.north li h3 {
  color: #fff;
}
.under.list.north .sec2 .sec2-content .sec2-content_text h3,
.under.list.north .sec7 .sec7-content .sec7-content_text h3 {
  border-left: 6px solid #D3B446;
}
.under.list.north .top-tit h2 span::after {
  background: #D3B446;
}
.under.list.north .more-btn a {
  background: #D3B446;
  border-color: #D3B446;
}
.under.list.north .more-btn a:hover {
  background: #fff;
  color: #D3B446;
}
.under.list.north .more-btn a:hover::after {
  background: #D3B446;
}
.under.list.south .list-top {
  background: url(../images/list/south-top.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .under.list.south .list-top {
    background-position: 12%;
  }
}
.under.list.south .list-top .event {
  border: 1px solid #258074;
  background: rgba(37, 128, 116, 0.5);
}
.under.list.south .sec2 .sec2-content .sec2-content_text h3,
.under.list.south .sec7 .sec7-content .sec7-content_text h3 {
  border-left: 6px solid #258074;
}
.under.list.south .top-tit h2 span::after {
  background: #258074;
}
.under.list.south .more-btn a {
  background: #258074;
  border-color: #258074;
}
.under.list.south .more-btn a:hover {
  background: #fff;
  color: #258074;
}
.under.list.south .more-btn a:hover::after {
  background: #258074;
}

.more-btn {
  margin-top: 5rem;
}
.more-btn a {
  background: #FF346E;
  color: #fff;
  border: 1px solid #FF346E;
  display: block;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
@media (min-width: 769px) {
  .more-btn a {
    width: 250px;
  }
}
.more-btn a::after {
  content: "";
  height: calc(8.1px * tan(60deg));
  width: 14px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.more-btn a:hover {
  background: #fff;
  color: #FF346E;
}
.more-btn a:hover::after {
  background: #FF346E;
  right: 10px;
}

.apply-banner {
  position: fixed;
  right: -1px;
  bottom: 5rem;
  z-index: 10;
}
@media (max-width: 768px) {
  .apply-banner {
    bottom: 0;
    left: -1px;
    display: flex;
  }
}
.apply-banner .banner-content {
  position: relative;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .apply-banner .banner-content {
    width: 50%;
  }
}
.apply-banner .banner-content::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  width: 4px;
  height: 100%;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.apply-banner .banner-content a {
  color: #fff;
  padding: 1rem 2rem 1rem 4rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .apply-banner .banner-content a {
    padding: 0.5rem 2rem 0.5rem 3.8rem;
    font-size: 14px;
    font-size: 1.4rem;
    width: 100%;
  }
}
.apply-banner .banner-content.south-item a {
  background: #D3B446;
  border: 1px solid #D3B446;
}
.apply-banner .banner-content.south-item:hover::after {
  background: #D3B446;
}
.apply-banner .banner-content.south-item:hover a {
  opacity: 1;
  background: #fff;
  color: #D3B446;
}
.apply-banner .banner-content.north-item a {
  background: #258074;
  border: 1px solid #258074;
}
.apply-banner .banner-content.north-item:hover::after {
  background: #258074;
}
.apply-banner .banner-content.north-item:hover a {
  opacity: 1;
  background: #fff;
  color: #258074;
}
