@charset "UTF-8";
@import "./footer.css";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: ”;
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.limited-width {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 64px;
  overflow: hidden;
}

.unlimited-width {
  width: 100%;
  margin: 0 auto;
  padding-top: 64px;
  overflow: hidden;
}

.unlimited-width-nohidden {
  width: 100%;
  margin: 0 auto;
  padding-top: 64px;
  overflow: visible;
}

.end-column {
  margin-bottom: 0;
}

@media screen and (min-width: 1100px) {
  .sp,
  nav {
    display: block !important;
  }
}
.pagetop {
  height: 42px;
  width: 42px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px #2c3f64 solid;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5;
  cursor: pointer;
  transition: 0.3s;
}
.pagetop__arrow {
  display: block;
  position: relative;
  top: -4px;
  width: 16px;
  height: 16px;
  background-image: url(../images/top_arrow_icon.svg);
  transform: translateY(20%) rotate(90deg);
  margin: 0 auto;
}
.pagetop:hover {
  background: #d8dee6;
}

header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
  z-index: 2;
}
header.scrolled {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  header.scrolled {
    background: none;
  }
}
header#gNav {
  width: 100%;
  margin: 0 auto;
  z-index: 10;
}
header#gNav .head-inner {
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
header#gNav .head-inner .site-logo img {
  display: flex;
  width: 40px;
}
header#gNav .head-inner .head-menu {
  display: flex;
}
header#gNav .head-inner .head-menu #hamburger {
  display: none;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu #hamburger {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin: 0 24px 0 auto;
    height: 60px;
    width: 20px;
    display: block;
  }
  header#gNav .head-inner .head-menu #hamburger .openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  header#gNav .head-inner .head-menu #hamburger .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #8faace;
    width: 45%;
  }
  header#gNav .head-inner .head-menu #hamburger .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  header#gNav .head-inner .head-menu #hamburger .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  header#gNav .head-inner .head-menu #hamburger .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  header#gNav
    .head-inner
    .head-menu
    #hamburger
    .openbtn.active
    span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  header#gNav
    .head-inner
    .head-menu
    #hamburger
    .openbtn.active
    span:nth-of-type(2) {
    opacity: 0;
  }
  header#gNav
    .head-inner
    .head-menu
    #hamburger
    .openbtn.active
    span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }
  header#gNav .head-inner .head-menu .sp {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 32, 68, 0.9);
    transition: all 0.3s;
  }
  header#gNav .head-inner .head-menu .sp.panelactive {
    right: 0;
  }
  header#gNav .head-inner .head-menu .sp ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
  }
}
@media screen and (max-width: 1190px) and (max-width: 1190px) {
  header#gNav .head-inner .head-menu .sp ul {
    width: 100%;
  }
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu .sp ul li {
    list-style: none;
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 1190px) and (max-width: 1190px) {
  header#gNav .head-inner .head-menu .sp ul li {
    display: flex;
  }
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu .sp ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}
@media screen and (max-width: 1190px) and (max-width: 1190px) {
  header#gNav .head-inner .head-menu .sp ul li a {
    display: flex;
    font-size: 18px;
    font-weight: 400;
  }
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu .sp ul .award a,
  header#gNav .head-inner .head-menu .sp ul .nomination a {
    color: #332900 !important;
  }
}
header#gNav .head-inner .head-menu ul {
  display: flex;
}
header#gNav .head-inner .head-menu ul .h-btn a:hover::after {
  background: none;
}
header#gNav .head-inner .head-menu ul .award {
  width: 195px;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu ul .award {
    width: 100%;
    order: 2 !important;
  }
}
header#gNav .head-inner .head-menu ul .award a {
  color: #332900;
  font-weight: 500;
  background-image: url(../images/award_hbtn.svg);
  background-size: cover;
  background-position: center;
  width: 165px;
  height: 40px;
  transition: 0.3s;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu ul .award a {
    width: 226px;
    height: 54px;
    background-size: 226px;
    background-repeat: no-repeat;
  }
}
header#gNav .head-inner .head-menu ul .award a:hover {
  background-image: url(../images/award_hbtn_hover.svg);
  width: 184px;
  height: 36px;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu ul .award a:hover {
    width: 247px;
    height: 49px;
  }
}
header#gNav .head-inner .head-menu ul .nomination {
  width: 195px;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu ul .nomination {
    width: 100%;
    order: 3 !important;
  }
}
header#gNav .head-inner .head-menu ul .nomination a {
  color: #332900;
  font-weight: 500;
  background-image: url(../images/nomination_hbtn.svg);
  background-size: cover;
  background-position: center;
  width: 185px;
  height: 40px;
  transition: 0.3s;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu ul .nomination a {
    width: 261px;
    height: 54px;
    background-size: 261px;
    background-repeat: no-repeat;
  }
}
header#gNav .head-inner .head-menu ul .nomination a:hover {
  background-image: url(../images/nomination_hbtn_hover.svg);
  width: 196px;
  height: 34px;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu ul .nomination a:hover {
    width: 283px;
    height: 50px;
  }
}
header#gNav .head-inner .head-menu ul .top-sp {
  display: none;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu ul .top-sp {
    display: flex;
    order: 1;
  }
}
header#gNav .head-inner .head-menu ul li {
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}
header#gNav .head-inner .head-menu ul li a {
  color: #fff;
  font-size: 14px;
  margin: 0 15px;
  align-items: center;
  display: flex;
  text-decoration: none;
  font-weight: 300;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu ul li a {
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  header#gNav .head-inner .head-menu ul li a:hover {
    color: #8faace;
  }
}
header#gNav .head-inner .head-menu ul li a:hover::after {
  position: absolute;
  content: "";
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  background: rgb(0, 45, 129);
  background: linear-gradient(277deg, rgb(0, 45, 129) 0%, rgb(0, 78, 226) 100%);
  width: 24px;
  height: 4px;
  display: flex;
  top: 24px;
}
@media screen and (max-width: 1190px) {
  header#gNav .head-inner .head-menu ul li a:hover::after {
    top: 45px;
  }
}
header#gNav .head-inner .head-menu ul .apply_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  header#gNav .head-inner .head-menu ul .apply_sp {
    display: block;
  }
}
header#gNav .head-inner .head-menu .apply_btn {
  display: contents;
}
header#gNav .head-inner .head-menu .apply_btn a {
  color: #fff;
  border: 1px #fff solid;
  padding: 10px 48px;
  font-size: 12px;
  text-decoration: none;
  border-radius: 4px;
}
header#gNav .head-inner .head-menu .apply_btn a:hover {
  background: rgb(0, 23, 65);
  background: linear-gradient(277deg, rgb(0, 23, 65) 0%, rgb(0, 48, 139) 100%);
}
@media screen and (max-width: 1100px) {
  header#gNav .head-inner .head-menu .apply_btn {
    display: none;
  }
}

header.scrolled ul li a {
  color: #1c3667 !important;
  font-weight: 400 !important;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  header.scrolled ul li a {
    color: #fff !important;
  }
}
header.scrolled ul li a:hover {
  color: #164bb1 !important;
}
@media screen and (max-width: 768px) {
  header.scrolled ul li a:hover {
    color: #8faace !important;
  }
}
header.scrolled ul li a:hover::after {
  position: absolute;
  content: "";
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  background: rgb(0, 45, 129);
  background: linear-gradient(277deg, rgb(0, 45, 129) 0%, rgb(0, 78, 226) 100%);
  width: 24px;
  height: 4px;
  display: flex;
  top: 24px;
}

header.scrolled .apply_btn {
  display: contents;
}
header.scrolled .apply_btn a {
  color: #fff;
  background: rgb(0, 45, 129);
  background: linear-gradient(274deg, rgb(0, 45, 129) 0%, rgb(0, 78, 226) 100%);
  padding: 10px 48px;
  font-size: 12px;
  text-decoration: none;
}
header.scrolled .apply_btn a:hover {
  background: rgb(0, 23, 65);
  background: linear-gradient(277deg, rgb(0, 23, 65) 0%, rgb(0, 48, 139) 100%);
}

.wizard {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .wizard {
    padding: 0 20px;
    width: auto;
  }
}
.wizard ul {
  display: flex;
  justify-content: center;
  width: 366px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px #cdd6dd solid;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .wizard ul {
    width: auto;
  }
}
.wizard ul li {
  width: 100%;
  color: #939aa3;
  font-size: 16px;
  padding: 5px 40px 8px;
  display: block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .wizard ul li {
    padding: 5px 0 8px;
    text-align: center;
  }
}
.wizard ul .active {
  position: relative;
  color: #fff;
  position: relative;
  left: -1px;
}
.wizard ul .active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1c3667;
  border: 1px #1c3667 solid;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  transform-origin: bottom left;
  z-index: -1;
}
.wizard ul .end-active {
  position: relative;
  color: #fff;
  position: relative;
}
.wizard ul .end-active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1c3667;
  border: 1px #1c3667 solid;
  transform-origin: bottom left;
  z-index: -1;
}
.wizard ul .completion {
  position: relative;
  color: #fff;
  color: rgba(255, 255, 255, 0.3);
}
.wizard ul .completion::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1c3667;
  z-index: -1;
  width: 100%;
}

#top_kv {
  width: 100%;
  height: 840px;
  background: url(../images/top_kv.png) no-repeat 0 0 / cover;
  background-position: top right;
  position: relative;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 915px) {
  #top_kv {
    background-position: 65% 0;
    height: 1040px;
  }
}
#top_kv .title-position {
  position: absolute;
  top: 171px;
  left: 160px;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position {
    position: initial;
  }
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .pc-title {
    display: none;
  }
}
#top_kv .title-position .pc-title p {
  position: relative;
  top: 31px;
}
#top_kv .title-position .pc-title p a {
  display: block;
}
#top_kv .title-position .pc-title p a img {
  width: 200px;
}
#top_kv .title-position .pc-title img {
  width: 100%;
  padding: 0;
}
#top_kv .title-position .sp-title {
  display: none;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .sp-title {
    display: block;
  }
}
#top_kv .title-position .sp-title p {
  position: relative;
  top: 31px;
  margin-top: 35px;
}
#top_kv .title-position .sp-title p a {
  display: block;
}
#top_kv .title-position .sp-title p a img {
  width: 150px;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .sp-title img {
    width: 90%;
    margin-top: 35px;
    margin-bottom: 5px;
    padding: 0 24px;
  }
}
#top_kv .title-position h2 {
  width: 739px;
  font-size: 14px;
  line-height: 1.75;
  color: #ccd3dd;
  font-weight: 400;
  margin-top: 28px;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position h2 {
    width: auto;
    margin-top: 39px;
    padding: 0 24px;
  }
}
#top_kv .title-position .period_area {
  margin-top: 30px;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .period_area {
    padding: 0 24px;
    height: 98px;
  }
}
@media screen and (max-width: 768px) {
  #top_kv .title-position .period_area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 19px;
    margin-top: 70px;
    height: auto;
  }
}
#top_kv .title-position .period_area .label01 {
  display: flex;
}
@media screen and (max-width: 768px) {
  #top_kv .title-position .period_area .label01 {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #top_kv .title-position .period_area .label01 * {
    max-width: 324px;
  }
}
#top_kv .title-position .period_area .label01 .left-label,
#top_kv .title-position .period_area .label01 .right-label,
#top_kv .title-position .period_area .label02 .left-label,
#top_kv .title-position .period_area .label02 .right-label {
  clip-path: polygon(16px 0, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
}
#top_kv .title-position .period_area .label01 .left-label {
  background: #002772;
  color: #fff;
  font-size: 14px;
  padding: 12px 40px;
  padding-top: 10px;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .period_area .label01 .left-label {
    width: 60px;
  }
}
#top_kv .title-position .period_area .label01 .right-label {
  background: #fff;
  color: #1c3667;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  padding: 6px 40px;
  padding-top: 8px;
  position: relative;
  top: 5px;
  left: -18px;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .period_area .label01 .right-label {
    width: 324px;
    padding: 8px 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #top_kv .title-position .period_area .label01 .right-label {
    flex: 1 1 auto;
    width: calc(100% - 24px);
    top: 0;
    left: 0;
    margin-left: 24px;
  }
}
#top_kv .title-position .period_area .label02 {
  margin-left: 490px;
  display: flex;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .period_area .label02 {
    margin: 0;
    margin-top: 20px;
    width: 200px;
    position: absolute;
    right: 180px;
  }
}
@media screen and (max-width: 768px) {
  #top_kv .title-position .period_area .label02 {
    display: block;
    width: auto;
    position: relative;
    right: initial;
    margin-top: 16px;
  }
}
#top_kv .title-position .period_area .label02 .left-label {
  background: #002772;
  color: #fff;
  font-size: 14px;
  padding: 12px 40px;
  padding-top: 10px;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .period_area .label02 .left-label {
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #top_kv .title-position .period_area .label02 .left-label {
    width: 140px;
    box-sizing: border-box;
  }
}
#top_kv .title-position .period_area .label02 .right-label {
  background: #fff;
  color: #1c3667;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  padding: 6px 20px;
  padding-top: 8px;
  position: relative;
  top: 5px;
  left: -18px;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .period_area .label02 .right-label {
    flex: 0 0 auto;
    width: 240px;
    padding: 8px 0;
    text-align: center;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  #top_kv .title-position .period_area .label02 .right-label {
    top: 0;
    left: 0;
    margin-left: 24px;
  }
}
#top_kv .title-position .zoom_container {
  border: 1px #2c3f64 solid;
  padding: 32px;
  text-align: center;
  margin: 20px auto;
  background: #fff;
  display: none;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .zoom_container {
    margin: 30px auto 0;
    width: 70%;
  }
}
#top_kv .title-position .zoom_container_date {
  font-size: 20px;
  font-weight: bold;
  color: #1c3667;
  margin-bottom: 20px;
  line-height: 1.5;
}
#top_kv .title-position .zoom_container_date span {
  display: inline-block;
}
#top_kv .title-position .zoom_container_btn a {
  display: block;
  position: relative;
  font-size: 12px;
  color: #ffffff;
  padding: 15px 0;
  width: 100%;
  background: linear-gradient(90deg, rgb(0, 65, 190) 0%, rgb(0, 38, 108) 100%);
  text-decoration: none;
}
#top_kv .title-position .zoom_container_btn a::after {
  content: "";
  position: absolute;
  margin-left: 10px;
  width: 18px;
  height: 12px;
  background: url(../../images/zoom_icon.svg) no-repeat 0 0 / cover;
  background-position: top right;
}
#top_kv .title-position .zoom_container .passcode {
  display: none;
  font-size: 14px;
  font-weight: bold;
  color: #1c3667;
  margin-top: 20px;
}
#top_kv .title-position .zoom_container .passcode span {
  margin-left: 20px;
}
#top_kv .title-position .kv-btn_area {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .kv-btn_area {
    flex-direction: column;
    max-width: 300px;
    margin: 120px auto 0;
  }
}
#top_kv .title-position .kv-btn_area .download_btn {
  width: 100%;
  display: contents;
}
#top_kv .title-position .kv-btn_area .download_btn a {
  color: #fff;
  font-size: 14px;
  background: rgb(0, 38, 108);
  background: linear-gradient(277deg, rgb(0, 38, 108) 0%, rgb(0, 65, 190) 100%);
  padding: 0 20px 0 0;
  border: none;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  width: 300px;
  min-height: 50px;
  margin: 0 24px 0 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#top_kv .title-position .kv-btn_area .download_btn a span {
  display: block;
}
#top_kv .title-position .kv-btn_area .download_btn a::after {
  position: absolute;
  margin-right: -175px;
  background-image: url(../images/download_icon.svg);
  content: "";
  min-width: 20px;
  height: 20px;
  z-index: 1;
  display: block;
}
#top_kv .title-position .kv-btn_area .download_btn a:hover {
  background: rgb(0, 23, 65);
  background: linear-gradient(277deg, rgb(0, 23, 65) 0%, rgb(0, 48, 139) 100%);
}
#top_kv .title-position .kv-btn_area .apply_btn {
  width: 100%;
  display: contents;
}
#top_kv .title-position .kv-btn_area .apply_btn a {
  color: #fff;
  font-size: 14px;
  background: rgb(0, 38, 108);
  background: linear-gradient(277deg, rgb(0, 38, 108) 0%, rgb(0, 65, 190) 100%);
  padding: 0;
  border: none;
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  width: 300px;
  min-height: 50px;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#top_kv .title-position .kv-btn_area .apply_btn a:hover {
  background: rgb(0, 23, 65);
  background: linear-gradient(277deg, rgb(0, 23, 65) 0%, rgb(0, 48, 139) 100%);
}
#top_kv .title-position .kv-btn_area .nomination_btn {
  width: 100%;
  display: none;
}
#top_kv .title-position .kv-btn_area .nomination_btn a {
  position: relative;
  left: 24px;
  padding: 0;
  border: none;
  width: 360px;
  height: 113px;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .kv-btn_area .nomination_btn a {
    left: 0;
    top: 14px;
  }
}
#top_kv .title-position .kv-btn_area .nomination_btn a::after {
  background-image: url(../images/nomination_btn01.png);
  background-size: cover;
  content: "";
  display: block;
  width: 360px;
  height: 113px;
  position: absolute;
  top: 0;
  transition: 0.3s;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .kv-btn_area .nomination_btn a::after {
    background: url(../images/nomination_btn01.png) no-repeat center center;
    background-size: 90% auto;
  }
}
#top_kv .title-position .kv-btn_area .nomination_btn a:hover::after {
  background-image: url(../images/nomination_btn02.png);
}
#top_kv .title-position .kv-btn_area .award_btn {
  width: 100%;
  display: contents;
  display: none;
}
#top_kv .title-position .kv-btn_area .award_btn a {
  position: relative;
  padding: 0;
  border: none;
  width: 360px;
  height: 113px;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .kv-btn_area .award_btn a {
    top: 0;
  }
}
#top_kv .title-position .kv-btn_area .award_btn a::after {
  background-image: url(../images/award_report_btn01.png);
  background-size: cover;
  content: "";
  display: block;
  width: 360px;
  height: 113px;
  position: absolute;
  top: 0;
  transition: 0.3s;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .kv-btn_area .award_btn a::after {
    background: url(../images/award_report_btn01.png) no-repeat center center;
    background-size: 90% auto;
  }
}
#top_kv .title-position .kv-btn_area .award_btn a:hover::after {
  background-image: url(../images/award_report_btn02.png);
}
#top_kv .title-position .kv-btn_area .interview_btn {
  width: 100%;
  display: contents;
}
#top_kv .title-position .kv-btn_area .interview_btn a {
  position: relative;
  padding: 0;
  border: none;
  width: 360px;
  height: 113px;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .kv-btn_area .interview_btn a {
    top: 20px;
  }
}
#top_kv .title-position .kv-btn_area .interview_btn a::after {
  background-image: url(../images/interview_top_bnr_all.png);
  background-size: cover;
  content: "";
  display: block;
  width: 360px;
  height: 133px;
  position: absolute;
  top: 0;
  transition: 0.3s;
}
@media screen and (max-width: 915px) {
  #top_kv .title-position .kv-btn_area .interview_btn a::after {
    background: url(../images/interview_top_bnr_sp_all.png) no-repeat center
      center;
    background-size: 90% auto;
    height: 165px;
    top: -30px;
  }
}
#top_kv .kv_pc_deco {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_kv .kv_pc_deco {
    display: none;
  }
}
#top_kv .kv_pc_deco .left_deco {
  position: absolute;
  top: -112px;
  left: -124px;
}
#top_kv .kv_pc_deco .left_deco img {
  display: block;
}
#top_kv .kv_pc_deco .right_deco {
  position: absolute;
  top: -160px;
  right: -100px;
}
#top_kv .kv_pc_deco .right_deco img {
  display: block;
}
#top_kv .kv_sp_deco {
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_kv .kv_sp_deco {
    display: block;
  }
}
#top_kv .kv_sp_deco .left_deco {
  position: absolute;
  bottom: 0;
  left: -45px;
  z-index: 8;
}

#notice {
  padding-top: 0;
  margin-top: -100px;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  font-family: "Noto Sans JP", sans-serif;
}
#notice .infomation_area {
  display: block;
  padding: 0 20px;
  background: #fff;
  padding: 40px 150px 64px;
  /* margin-bottom: 80px; */
}
@media screen and (max-width: 768px) {
  #notice .infomation_area {
    padding: 64px 24px 64px;
  }
}
#notice .infomation_area .front_award-list {
  line-height: 1.5;
}
#notice .infomation_area .front_award-list .infomation_title {
  margin: 44px auto 103px;
}
#notice .infomation_area .front_award-list .title,
#notice .infomation_area .front_award-list .midashi,
#notice .infomation_area .front_award-list .type {
  font-weight: bold;
  color: #2c3f64;
  margin-bottom: 32px;
}
#notice .infomation_area .front_award-list .title {
  font-size: 32px;
}
#notice .infomation_area .front_award-list .midashi {
  font-size: 22px;
}
#notice .infomation_area .front_award-list .type {
  font-size: 16px;
  margin-bottom: 0;
}
#notice .infomation_area .front_award-list ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 32px;
}
#notice .infomation_area .front_award-list ul li {
  font-weight: 400;
}
#notice .infomation_area .front_award-list ul li a {
  color: #2b2b2b;
}
#notice .infomation_area .front_award-list ul ul {
  list-style-type: decimal;
  margin-top: 5px;
  margin-bottom: 10px;
  line-height: 1.7;
}
#notice .infomation_area dl {
  width: 100%;
  line-height: 1.5;
  margin-bottom: 24px;
}
#notice .infomation_area dl a {
  color: #000;
}
#notice .infomation_area dl dt {
  float: left;
  width: 180px;
  clear: both;
  color: #003379;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #notice .infomation_area dl dt {
    float: none;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 24px;
  }
}
#notice .infomation_area dl dd {
  padding: 0 0 20px 180px;
  margin-bottom: 20px;
  border-bottom: 1px #ccc solid;
}
#notice .infomation_area dl dd a {
  color: #000;
}
@media screen and (max-width: 768px) {
  #notice .infomation_area dl dd {
    padding: 0 0 32px 0;
  }
}
#notice .infomation_area .under_button_area {
  position: relative;
  margin-top: 70px;
}
#notice .infomation_area .under_button_area div {
  width: 650px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #notice .infomation_area .under_button_area div {
    width: 100%;
    display: block;
  }
}
#notice .infomation_area .under_button_area div p {
  margin: 0 32px;
}
@media screen and (max-width: 915px) {
  #notice .infomation_area .under_button_area div p {
    margin: 0 32px 32px;
  }
}
#notice .infomation_area .under_button_area div p a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #2c3f64;
  border: 1px #2c3f64 solid;
  padding: 24px 120px;
  text-decoration: none;
  background: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #notice .infomation_area .under_button_area div p a {
    padding: 24px 0;
  }
}
#notice .infomation_area .under_button_area div p a:hover {
  background: #e7edf5;
}
@media screen and (max-width: 915px) {
  #notice .infomation_area .under_button_area div p a {
    text-align: center;
  }
}
#notice .infomation_title {
  font-size: 32px;
  color: #003bab;
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: center;
}
#notice .infomation_title::after {
  background-image: url(../images/midashi_01.svg);
  content: "";
  display: block;
  height: 23px;
  width: 51px;
  position: absolute;
  margin-top: 60px;
}
#notice .infomation_list {
  width: 100%;
  margin: 40px auto 0;
}
#notice .notice_title {
  padding-top: 20px;
}
#notice .notice_title::after {
  background-image: none;
}

#detail {
  background: url(../images/sub_back_img.png) no-repeat 0 0 / cover;
  background-position: 30% 0;
  position: relative;
  padding: 0;
}
#detail .detail_area {
  width: 100%;
  max-width: 1000px;
  height: 670px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  #detail .detail_area {
    height: 883px;
    position: relative;
  }
  #detail .detail_area::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 883px;
    background: rgba(0, 59, 171, 0.3);
  }
}
#detail .detail_text {
  width: 560px;
  padding: 0 20px;
}
#detail .detail_text h3 {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  margin: 95px 0 100px;
  display: flex;
  justify-content: center;
  color: #fff;
  line-height: 1.5;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #detail .detail_text h3 {
    text-align: center;
  }
}
#detail .detail_text h3 br {
  display: none;
}
@media screen and (max-width: 768px) {
  #detail .detail_text h3 br {
    display: block;
  }
}
#detail .detail_text h3::after {
  background-image: url(../images/midashi_01.svg);
  content: "";
  display: block;
  height: 23px;
  width: 51px;
  position: absolute;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #detail .detail_text h3::after {
    margin-top: 120px;
  }
}
#detail .detail_text h4 {
  position: relative;
  z-index: 1;
}
#detail .detail_text h4 span {
  display: block;
  font-size: 18px;
  line-height: 2;
  color: #fff;
  font-weight: 400;
}
#detail::before {
  background-image: url(../images/top_deco.svg);
  content: "";
  display: block;
  height: 40px;
  width: 458px;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}
#detail::after {
  background-image: url(../images/under_deco.svg);
  content: "";
  display: block;
  height: 40px;
  width: 458px;
  position: absolute;
  bottom: 0;
  right: -10px;
}

#schedule {
  max-width: 1172px;
  font-family: "Noto Sans JP", sans-serif;
}
#schedule .schedule_area {
  margin: 0 auto;
  padding: 0 20px 80px;
}
@media screen and (max-width: 768px) {
  #schedule .schedule_area {
    padding: 0 0 80px;
  }
}
#schedule .schedule_area ul {
  position: relative;
  margin-top: 100px;
}
#schedule .schedule_area ul li {
  display: flex;
  border: 1px #ddd solid;
  margin: 20px 0;
  max-width: 848px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #schedule .schedule_area ul li {
    width: 100% !important;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  #schedule .schedule_area ul .item {
    width: 200px;
    display: block;
  }
}
#schedule .schedule_area ul .item:nth-child(2) {
  margin-left: 12%;
}
@media screen and (max-width: 768px) {
  #schedule .schedule_area ul .item:nth-child(2) {
    margin-left: 0;
  }
}
#schedule .schedule_area ul .item:nth-child(3) {
  margin-left: 24%;
}
@media screen and (max-width: 768px) {
  #schedule .schedule_area ul .item:nth-child(3) {
    margin-left: 0;
  }
}
#schedule .schedule_title {
  font-size: 32px;
  color: #003bab;
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: center;
}
#schedule .schedule_title::after {
  background-image: url(../images/midashi_01.svg);
  content: "";
  display: block;
  height: 23px;
  width: 51px;
  position: absolute;
  margin-top: 60px;
}
#schedule .schedule_item {
  background: #003bab;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  color: #fff;
  padding: 20px;
  width: 200px;
}
#schedule .schedule_text {
  padding: 20px;
}
#schedule .schedule_text span {
  font-size: 12px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  #schedule .schedule_text span {
    display: block;
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #schedule .schedule_text {
    border: 1px #ddd solid;
    width: auto;
    border-left: none;
    border-right: none;
  }
}

#department {
  height: 800px;
  background: rgb(0, 45, 129);
  background: linear-gradient(0deg, rgb(0, 45, 129) 0%, rgb(0, 78, 226) 100%);
  position: relative;
  padding-top: 64px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #department {
    height: auto;
  }
}
#department::before {
  background-image: url(../images/top_deco.svg);
  content: "";
  display: block;
  height: 40px;
  width: 458px;
  position: absolute;
  top: -1px;
  left: 0;
}
#department::after {
  background-image: url(../images/under_deco.svg);
  content: "";
  display: block;
  height: 40px;
  width: 458px;
  position: absolute;
  bottom: 0;
  right: -10px;
}
#department .department_area {
  width: 100%;
  max-width: 1280px;
  height: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #department .department_area {
    height: auto;
  }
}
#department .department_title {
  font-size: 32px;
  margin: 0 auto;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 100px;
  display: flex;
  justify-content: center;
  color: #fff;
}
#department .department_title::after {
  background-image: url(../images/midashi_01.svg);
  content: "";
  display: block;
  height: 23px;
  width: 51px;
  position: absolute;
  margin-top: 60px;
}
#department .department_midashi {
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 56px;
  padding: 0 20px;
  line-height: 1.5;
}
#department .department_list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #department .department_list {
    display: block;
    padding-bottom: 80px;
  }
}
#department .department_list div {
  width: 100%;
  max-width: 414px;
  background: #fff;
  padding-bottom: 24px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #department .department_list div {
    display: block;
    margin-bottom: 16px;
  }
}
#department .department_list div img {
  width: 100%;
}
#department .department_list div h4 {
  font-size: 24px;
  margin: 24px 0 40px;
  padding: 0 32px;
}
#department .department_list div h4::after {
  background-image: url(../images/department_title_deco.svg);
  content: "";
  display: block;
  height: 8px;
  width: 68px;
  position: absolute;
  margin-top: 16px;
}
#department .department_list div p {
  font-size: 14px;
  color: #2b2b2b;
  line-height: 1.5;
  padding: 0 32px;
}

#examination {
  background: url(../images/examination_back_img.svg) no-repeat 0 0 / cover;
  background-position: center center;
  position: relative;
  background-size: 105%;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #examination {
    background: url(../images/examination_back_img_long.svg) no-repeat 0 0 /
      cover;
    background-size: 115%;
  }
}
#examination .examination_area {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
}
#examination .examination_title {
  font-size: 32px;
  color: #003bab;
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 100px;
}
#examination .examination_title::after {
  background-image: url(../images/midashi_01.svg);
  content: "";
  display: block;
  height: 23px;
  width: 51px;
  position: absolute;
  margin-top: 60px;
}
#examination .examination_list {
  display: flex;
  flex-flow: column;
  justify-content: start;
  padding: 0 33px;
}
@media screen and (max-width: 768px) {
  #examination .examination_list {
    display: block;
  }
}
#examination .examination_list div {
  width: 100%;
  padding-bottom: 0;
  color: #2b2b2b;
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  #examination .examination_list div {
    margin: 0 auto;
    display: block;
    padding-bottom: 43px;
  }
}
#examination .examination_list div img {
  margin-bottom: 24px;
  width: 100%;
  max-width: 200px;
}
#examination .examination_list div .profile {
  flex-flow: column;
  min-width: 240px;
  max-width: 240px;
  gap: 0;
}
#examination .examination_list div .profile h4 {
  font-size: 24px;
  display: block;
  justify-content: center;
  font-weight: 600;
  line-height: 1.5;
}
#examination .examination_list div .profile h4 .chairman {
  background: rgb(128, 95, 22);
  background: linear-gradient(
    277deg,
    rgb(128, 95, 22) 0%,
    rgb(193, 169, 113) 100%
  );
  color: #fff;
  font-size: 14px;
  padding: 5px 14px;
  display: block;
  margin-right: 8px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #examination .examination_list div .profile h4 .chairman {
    width: fit-content;
    margin: 0 auto;
  }
}
#examination .examination_list div .career-title {
  display: flex;
  justify-content: center;
  font-size: 12px;
  margin-top: 16px;
  position: relative;
  font-weight: 600;
}
#examination .examination_list div .career-title::after {
  position: absolute;
  content: "";
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  background: rgb(0, 45, 129);
  background: linear-gradient(277deg, rgb(0, 45, 129) 0%, rgb(0, 78, 226) 100%);
  width: 24px;
  height: 4px;
  display: flex;
  justify-content: center;
  top: 24px;
}
#examination .examination_list div .tall {
  line-height: 1.5;
}
#examination .examination_list div .tall::after {
  top: 42px;
}
#examination .examination_list div .career-details {
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.award-second_prize {
  margin-top: 80px;
  font-family: "Noto Sans JP", sans-serif;
}
.award-second_prize_title {
  font-size: 32px;
  color: #003bab;
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 100px;
}
.award-second_prize_title::after {
  background-image: url(../images/midashi_01.svg);
  content: "";
  display: block;
  height: 23px;
  width: 51px;
  position: absolute;
  margin-top: 60px;
}
.award-second_prize_sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #2c3f64;
  text-align: center;
  margin-bottom: 16px;
}
.award-second_prize_detail {
  font-size: 16px;
  font-weight: 400;
  color: #2b2b2b;
  margin-bottom: 32px;
  padding: 0 14px;
  text-align: center;
  line-height: 1.5;
}

.award_area {
  margin-top: 80px;
  margin-bottom: 80px;
  font-family: "Noto Sans JP", sans-serif;
}
.award_area .award_kinds {
  text-align: center;
  margin: 40px;
}
@media screen and (max-width: 768px) {
  .award_area .award_kinds img {
    width: 80%;
  }
}
.award_area .grandProze_img {
  text-align: center;
  margin-bottom: 24px;
}
.award_area .grandProze_img img {
  width: 128px;
}
.award_area .grandProze_name {
  font-size: 25px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

#ecc {
  position: relative;
  padding: 0;
  height: 377px;
  margin-top: 64px;
  margin-bottom: 64px;
  font-family: "Noto Sans JP", sans-serif;
}
#ecc .ecc_area {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #ecc .ecc_area {
    height: 337px;
    position: relative;
  }
  #ecc .ecc_area::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 883px;
  }
}
#ecc .ecc_area h4 {
  font-size: 40px;
  margin-top: 26px;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #ecc .ecc_area h4 {
    font-size: 32px;
  }
}
#ecc .ecc_title {
  color: #003bab;
  font-size: 22px;
  text-align: center;
  margin-top: 112px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #ecc .ecc_title {
    font-size: 16px;
  }
}
#ecc .ecc_title span {
  display: inline-block;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  #ecc .ecc_title span {
    display: block;
    margin: 0;
    line-height: 1.7;
  }
}
#ecc .ecc_text {
  font-size: 12px;
  text-align: center;
  margin-top: 26px;
  font-weight: 500;
}
#ecc::before {
  background-image: url(../images/ecc_left_deco.svg);
  content: "";
  display: block;
  height: 96px;
  width: 844px;
  position: absolute;
  top: -1px;
  left: -270px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #ecc::before {
    background-size: contain;
    background-repeat: no-repeat;
    height: 68px;
    top: 0px;
    left: -240px;
  }
}
#ecc::after {
  background-image: url(../images/ecc_right_deco.svg);
  content: "";
  display: block;
  height: 100px;
  width: 600px;
  position: absolute;
  bottom: 0;
  right: -10px;
}
@media screen and (max-width: 768px) {
  #ecc::after {
    background-size: contain;
    background-repeat: no-repeat;
    height: 77px;
    bottom: 0;
    right: -390px;
  }
}

#requirements {
  background: #e7edf5;
  padding: 64px 0;
  position: relative;
  margin-bottom: 24px;
  font-family: "Noto Sans JP", sans-serif;
}
#requirements::before {
  background-image: url(../images/top_deco.svg);
  content: "";
  display: block;
  height: 40px;
  width: 458px;
  position: absolute;
  top: 0;
  left: 0;
}
#requirements::after {
  background-image: url(../images/under_deco.svg);
  content: "";
  display: block;
  height: 40px;
  width: 458px;
  position: absolute;
  bottom: 0;
  right: 0;
}
#requirements .requirements_area {
  width: 100%;
  max-width: 1066px;
  margin: 0 auto;
}
#requirements .requirements_area .announce {
  font-size: 24px;
  font-weight: bold;
  color: #163269;
  margin: 0 auto;
  text-align: center;
  position: relative;
  top: 70px;
  margin-top: 30px;
  display: none;
}
#requirements .requirements_area .announce span {
  display: inline-block;
  line-height: 1.5;
}
#requirements .requirements_title {
  font-size: 32px;
  color: #003bab;
  font-weight: 700;
  display: flex;
  justify-content: center;
  text-align: center;
}
#requirements .requirements_title::after {
  background-image: url(../images/midashi_01.svg);
  content: "";
  display: block;
  height: 23px;
  width: 51px;
  position: absolute;
  margin-top: 60px;
}
#requirements .requirements_title span {
  font-size: 0.3em;
  display: block;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px #fff solid;
}
#requirements .requirements_list {
  width: 100%;
  color: #2b2b2b;
  margin-top: 100px;
}
#requirements .requirements_list dl {
  width: 100%;
  line-height: 1.5;
}
#requirements .requirements_list dl dt {
  float: left;
  width: 180px;
  clear: both;
  font-size: 24px;
  color: #2c3f64;
  padding-left: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl dt {
    float: none;
    width: auto;
    font-weight: 600;
  }
}
#requirements .requirements_list dl dd {
  padding: 5px 20px 20px 200px;
  margin-bottom: 48px;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl dd {
    padding: 20px;
  }
}
#requirements .requirements_list dl dd .innner_br {
  display: inline-block;
}
#requirements .requirements_list dl dd ul {
  padding-left: 5px;
}
#requirements .requirements_list dl dd ul li {
  margin-bottom: 15px;
  display: flex;
  color: #2b2b2b;
}
#requirements .requirements_list dl dd ul li::before {
  position: relative;
  left: -5px;
  top: 2px;
  background-image: url(../images/check-circle-fill_01.svg);
  content: "";
  min-width: 20px;
  height: 20px;
  z-index: 1;
  display: block;
  margin-right: 13px;
}
#requirements .requirements_list dl dd .method {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 2fr;
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl dd .method {
    display: block;
  }
}
#requirements .requirements_list dl dd .method .preparation {
  border-top: 6px #b4d1f7 solid;
}
#requirements .requirements_list dl dd .method .preparation::before {
  content: "";
  display: inline-block;
  border-top: 6px #1c58cc solid;
  width: 82px;
  position: absolute;
  top: -6px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl dd .method .preparation {
    margin-bottom: 20px;
  }
}
#requirements .requirements_list dl dd .method .apply {
  border-top: 6px #8ca1cb solid;
}
#requirements .requirements_list dl dd .method .apply::before {
  content: "";
  display: inline-block;
  border-top: 6px #25437e solid;
  width: 82px;
  position: absolute;
  top: -6px;
  left: 0;
}
#requirements .requirements_list dl dd .method div {
  min-height: 172px;
  background: #fff;
  padding: 24px;
  color: #2b2b2b;
  position: relative;
}
#requirements .requirements_list dl dd .method div .m_01 {
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #1c58cc;
}
#requirements .requirements_list dl dd .method div .m_01::before {
  content: "1";
  background: #1c58cc;
  color: #fff;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}
#requirements .requirements_list dl dd .method div .m_01_text {
  font-size: 16px;
  color: #003bab;
  margin: 16px 0 9px 0;
  padding-bottom: 9px;
  border-bottom: 1px #003bab solid;
  font-weight: bold;
}
#requirements .requirements_list dl dd .method div .m_01_text .m_midashi {
  padding-bottom: 9px;
  margin: 16px 0 9px 0;
}
#requirements .requirements_list dl dd .method div .m_02 {
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #25437e;
}
#requirements .requirements_list dl dd .method div .m_02::before {
  content: "2";
  background: #25437e;
  color: #fff;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}
#requirements .requirements_list dl dd .method div .m_02_text {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl dd .method div .m_02_text {
    display: block;
  }
}
#requirements .requirements_list dl dd .method div .m_02_text .m_midashi {
  border-bottom: 1px #25437e solid;
  padding-bottom: 9px;
  margin: 16px 0 9px 0;
  display: block;
}
#requirements
  .requirements_list
  dl
  dd
  .method
  div
  .m_02_text
  .m_midashi
  .small-text {
  font-size: 0.7em !important;
}
#requirements .requirements_list dl dd .method div .m_02_text .m_02_text01 {
  font-size: 16px;
  color: #25437e;
  padding-bottom: 9px;
}
#requirements .requirements_list dl dd .method div .content {
  width: 100%;
  min-height: 147px;
  font-size: 14px;
  margin: 16px 0;
  font-weight: 300;
  display: block;
  color: #2b2b2b;
}
#requirements .requirements_list dl dd .method div .content02 {
  display: block;
  font-size: 12px;
  color: #164bb1;
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: bold;
}
#requirements .requirements_list dl dd .method div .content03 {
  display: block;
  font-size: 12px;
  border: 1px #1c3667 solid;
  color: #1c3667;
  padding: 10px 16px;
  font-weight: 500;
}
#requirements .requirements_list dl dd .method div .download_btn a {
  color: #192a66;
  font-size: 14px;
  display: block;
  border: 1px #192a66 solid;
  padding: 0 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  max-width: 168px;
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  height: 60px;
  align-items: center;
  border-radius: 3px;
}
#requirements .requirements_list dl dd .method div .download_btn a:hover {
  background: #dee7f4;
}
#requirements .requirements_list dl dd .method div .download_btn a::after {
  position: relative;
  left: 16px;
  top: 0px;
  background-image: url(../images/method_download_icon.svg);
  content: "";
  min-width: 16px;
  height: 16px;
  z-index: 1;
  display: block;
  margin-right: 13px;
}
#requirements .requirements_list dl dd .method div .apply_btn a {
  color: #fff;
  font-size: 14px;
  display: flex;
  background: rgb(0, 38, 108);
  background: linear-gradient(277deg, rgb(0, 38, 108) 0%, rgb(0, 65, 190) 100%);
  padding: 0;
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  margin: 48px auto 0;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl dd .method div .apply_btn a {
    margin: 15px auto 0;
  }
}
#requirements .requirements_list dl dd .method div .apply_btn a:hover {
  background: rgb(0, 23, 65);
  background: linear-gradient(277deg, rgb(0, 23, 65) 0%, rgb(0, 48, 139) 100%);
}
#requirements .requirements_list dl dd .material_format {
  border: 1px #192a66 solid;
  padding: 16px 24px;
}
#requirements .requirements_list dl dd .material_format .m_title {
  font-size: 16px;
  color: #192a66;
  font-weight: 500;
  margin-bottom: 16px;
}
#requirements .requirements_list dl dd .material_format .document_icon {
  display: flex;
  margin-bottom: 16px;
}
#requirements .requirements_list dl dd .material_format .document_icon img {
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl dd .material_format .document_icon img {
    margin-right: 14px;
  }
}
#requirements .requirements_list dl dd .category {
  margin-top: 24px;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 24px;
}
#requirements .requirements_list dl dd .category p {
  background: #2c3f64;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  padding: 2px 12px;
}
#requirements .requirements_list dl dd .selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl dd .selection {
    display: block;
  }
}
#requirements .requirements_list dl dd .selection div {
  border: none;
  border-top: 4px #005991 solid;
  background: #fff;
  padding: 10px;
  padding-top: 24px;
  text-align: center;
  width: -webkit-fill-available;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl dd .selection div {
    display: inline-block;
    margin-bottom: 24px;
    padding-right: 20px;
  }
}
#requirements .requirements_list dl dd .selection div .title {
  color: #2c3f64;
  font-size: 16px;
  text-align: left;
  margin-bottom: 5px;
  display: flex;
  font-weight: 600;
}
#requirements .requirements_list dl dd .selection div .title::before {
  position: relative;
  left: 0px;
  top: 0;
  background-image: url(../images/check-circle-fill_02.svg);
  content: "";
  min-width: 20px;
  height: 20px;
  z-index: 1;
  display: block;
  margin-right: 13px;
}
#requirements .requirements_list dl dd .selection div .explanation {
  color: #2c3f64;
  font-size: 14px;
  text-align: left;
  margin-bottom: 15px;
  padding-left: 30px;
  display: flex;
}
#requirements .requirements_list dl dd .selection div .cate_img {
  display: flex;
  justify-content: center;
  align-items: end;
}
#requirements .requirements_list dl dd .selection .end_card {
  font-size: 14px;
  color: #2c3f64;
  font-weight: 500;
  display: flex;
  align-items: center;
}
#requirements .requirements_list dl dd.apply-text {
  margin-bottom: 0 !important;
}
#requirements .requirements_list dl .download_area {
  margin: 24px auto 56px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl .download_area {
    padding: 0 20px;
  }
}
#requirements .requirements_list dl .download_area .download_btn {
  padding: 0 20px;
}
#requirements .requirements_list dl .download_area .download_btn a {
  color: #192a66;
  font-size: 16px;
  display: block;
  border: 1px #192a66 solid;
  padding: 0 32px;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  margin: 48px auto 0;
  display: flex;
  justify-content: center;
  height: 60px;
  align-items: center;
  border-radius: 3px;
}
#requirements .requirements_list dl .download_area .download_btn a::after {
  position: relative;
  left: 16px;
  top: 0px;
  background-image: url(../images/method_download_icon.svg);
  content: "";
  min-width: 16px;
  height: 16px;
  z-index: 1;
  display: block;
  margin-right: 13px;
}
#requirements .requirements_list dl .download_area .download_btn a:hover {
  background: #cad6e5;
}
#requirements .requirements_list dl .apply_area {
  margin: 24px auto 56px;
  text-align: center;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl .apply_area {
    padding: 0 20px;
  }
}
#requirements .requirements_list dl .apply_area .apply_btn a {
  color: #fff;
  font-size: 16px;
  background: linear-gradient(277deg, rgb(0, 38, 108) 0%, rgb(0, 65, 190) 100%);
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  height: 60px;
  align-items: center;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_list dl .apply_area .apply_btn a {
    width: 100%;
  }
}
#requirements .requirements_list dl .apply_area .apply_btn a:hover {
  background: rgb(0, 23, 65);
  background: linear-gradient(277deg, rgb(0, 23, 65) 0%, rgb(0, 48, 139) 100%);
}
#requirements .requirements_history {
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-top: 1px solid #192a66;
  padding-top: 56px;
}
#requirements .requirements_history_btn {
  padding: 0 20px;
}
#requirements .requirements_history_btn a {
  color: #192a66;
  border: 1px solid #192a66;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  padding: 24px 80px;
  display: flex;
  max-width: 228px;
  text-decoration: none;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #requirements .requirements_history_btn a {
    padding: 24px 20px;
  }
}
#requirements .requirements_history_btn a::after {
  position: relative;
  top: 1px;
  background-image: url(../images/link_icon.svg);
  background-repeat: no-repeat;
  content: "";
  width: 18px;
  height: 18px;
  z-index: 1;
  margin-left: 12px;
}
#requirements .requirements_history_btn a:hover {
  background: #cad6e5;
}

#administrator {
  margin-bottom: 0;
  padding-top: 0;
  font-family: "Noto Sans JP", sans-serif;
}
#administrator .administrator_area {
  margin: 40px auto 0;
  text-align: center;
  padding: 0 16px;
  max-width: 1120px;
}
#administrator .administrator_area .text01 {
  font-weight: 600;
  margin-bottom: 40px;
  margin-top: 64px;
}
#administrator .administrator_area .text02 {
  font-weight: 300;
  margin-bottom: 64px;
  font-size: 16px;
}
#administrator .administrator_area .text03 {
  font-weight: 300;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #administrator .administrator_area .text03 {
    flex-wrap: wrap;
    justify-content: center;
  }
}
#administrator .administrator_area .text03 p {
  margin: 0 15px 16px 15px;
  width: 160px;
}
@media screen and (max-width: 768px) {
  #administrator .administrator_area .text03 p {
    width: 38%;
  }
}
#administrator .administrator_area .text03 p .adm-container {
  display: inline-block;
  width: 100%;
  word-break: break-word;
  font-size: 14px;
}
#administrator .administrator_area .text03 p .adm-container span {
  display: inline-block;
  line-height: 1.5;
}
#administrator .administrator_area .text03 p .adm-container img {
  margin-top: 8px;
  width: 100%;
}
#administrator .administrator_area .text04 {
  font-weight: 300;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 10px;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 24px auto;
}
@media screen and (max-width: 768px) {
  #administrator .administrator_area .text04 {
    grid-template-columns: repeat(2, 1fr);
  }
}
#administrator .administrator_area .text04 p .adm-container {
  display: inline-block;
  width: 100%;
  word-break: break-word;
  font-size: 13px;
}
#administrator .administrator_area .text04 p .adm-container .text {
  display: inline-block;
  line-height: 1.5;
  height: 52px;
}
#administrator .administrator_area .text04 p .adm-container img {
  margin-top: 8px;
  width: 100%;
  max-width: 128px;
}
#administrator .administrator_area .text05 {
  font-weight: 300;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #administrator .administrator_area .text05 {
    grid-template-columns: repeat(2, 1fr);
  }
}
#administrator .administrator_area .text05 p .adm-container {
  display: inline-block;
  width: 100%;
  word-break: break-word;
  font-size: 13px;
}
#administrator .administrator_area .text05 p .adm-container .text {
  display: inline-block;
  line-height: 1.5;
  height: 52px;
}
#administrator .administrator_area .text05 p .adm-container img {
  margin-top: 8px;
  width: 100%;
  max-width: 128px;
}
#administrator .administrator_area .text06 {
  font-weight: 300;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 40px;
  justify-content: center;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  #administrator .administrator_area .text06 {
    grid-template-columns: repeat(2, 1fr);
  }
}
#administrator .administrator_area .text06 p .adm-container {
  display: inline-block;
  width: 100%;
  word-break: break-word;
  font-size: 12px;
}
#administrator .administrator_area .text06 p .adm-container .text {
  display: inline-block;
  line-height: 1.5;
  height: auto;
  min-height: 52px;
}
#administrator .administrator_area .text06 p .adm-container img {
  margin-top: 8px;
  width: 100%;
  max-width: 128px;
}
#administrator .administrator_area .h40-margin {
  margin-top: 40px;
}
#administrator .administrator_area .preparation {
  position: relative;
}
#administrator .administrator_area .preparation::after {
  content: "調整中";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -5px;
  font-size: 12px;
  color: #98a6b5;
}

.download_btn a,
.apply_btn a,
.content03 {
  display: none !important;
}

.close_btn::after {
  content: "募集は締め切りました";
  display: block !important;
  color: #cdd6dd;
  border: 1px solid #cdd6dd;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  padding: 10px 0;
}

.close_btn_l::after {
  content: "募集は締め切りました";
  display: block !important;
  color: #b2bec7;
  border: 1px solid #b2bec7;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  padding: 15px 70px;
}

.top_close_btn::after {
  display: block !important;
}

.participation {
  font-size: 28px;
  color: #1c3667;
  font-weight: bold;
}
