/*!**********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/@acab/reset.css/index.css ***!
  \**********************************************************************************************************************/
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:where([hidden]:not([hidden='until-found'])) {
	display: none !important;
}

:where(html) {
	-webkit-text-size-adjust: none;
	color-scheme: dark light;
	tab-size: 2;
}

@media (prefers-reduced-motion: no-preference) {
	:where(html:focus-within) {
		scroll-behavior: smooth;
	}
}

:where(body) {
	line-height: 1.5;
	font-family: system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

:where(button) {
	all: unset;
}

:where(input, button, textarea, select) {
	font: inherit;
	color: inherit;
}

:where(textarea) {
	resize: vertical;
	resize: block;
}

:where(button, label, select, summary, [role='button'], [role='option']) {
	cursor: pointer;
}

:where(:disabled) {
	cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
	cursor: not-allowed;
}

:where(a) {
	color: inherit;
	text-underline-offset: 0.2ex;
}

:where(ul, ol) {
	list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}

:where(img, picture, svg, video) {
	max-inline-size: 100%;
	block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}

:where(h1, h2, h3) {
	line-height: calc(1em + 0.5rem);
	text-wrap: balance;
}

:where(hr) {
	border: none;
	border-block-start: 1px solid;
	color: inherit;
	block-size: 0;
	overflow: visible;
}

:where(:focus-visible) {
	outline: 3px solid CanvasText;
	box-shadow: 0 0 0 5px Canvas;
	outline-offset: 1px;
}

:where(:focus-visible, :target) {
	scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
	clip-path: inset(50%) !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/baron/baron.css ***!
  \************************************************************************************************************/
.baron__clipper {
    position: relative;
    overflow: hidden;
}
.baron__scroller {
    overflow-y: scroll;
    -ms-overflow-style: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    border: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    /* remove line to customize scrollbar in iOs */
}
.baron__scroller::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.baron__track {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.baron._scrollbar .baron__track {
    display: block;
}
.baron__free {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}
.baron__bar {
    display: none;
    position: absolute;
    right: 0;    
    z-index: 1;
    width: 10px;
    background: #999;
}
.baron._scrollbar .baron__bar {
    display: block;
}
.baron__control {
    display: none;
}
/*!***************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/2024/scss/index.scss ***!
  \***************************************************************************************************************************************************************************/
@charset "UTF-8";
/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 16px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

::-webkit-scrollbar { /* for Mac OS X support */
  width: 0;
}

#main_scroll_area,
#main_scroll_area_track {
  height: 100vh;
}

#section_main_visual_pc_container {
  display: block;
}

#section_main_visual_sp_container {
  display: none;
}

@media screen and (max-width: 1320px) {
  #section_main_visual_pc_container {
    display: none;
  }
  #section_main_visual_sp_container {
    display: block;
  }
}
.jury_test {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: white;
}

@media screen and (min-width: 800px) {
  .jury_test section {
    width: 50%;
  }
}
_:lang(x) + _:-webkit-full-screen-document .jury_test section, body .jury_test section {
  width: 100%;
}

.support_by_flexbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: white;
}

@media screen and (min-width: 800px) {
  .support_by_flexbox extern-svg {
    width: 50%;
  }
}
_:lang(x) + _:-webkit-full-screen-document .support_by_flexbox extern-svg, body .support_by_flexbox extern-svg {
  width: 100%;
}

#archive_list {
  margin-bottom: 2em;
}
#archive_list .wrapper {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  width: clamp(240px, 60%, 800px);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  margin: auto;
  font-weight: 600;
}
#archive_list .wrapper .button {
  padding: 1em;
  display: block;
  margin: auto;
  width: clamp(200px, 20em, 640px);
  background-color: hsl(43, 54%, 40%);
  text-decoration: none;
  text-align: center;
  --color-button_text:rgba(255, 255, 255, 0.8);
  color: var(--color-button_text);
}
#archive_list .wrapper .button:link {
  color: var(--color-button_text);
}
#archive_list .wrapper .button:visited {
  color: var(--color-button_text);
}
#archive_list .wrapper .button:hover {
  --color-button_text:rgba(255, 255, 255, 1);
  color: var(--color-button_text);
  background-color: hsl(42, 65%, 72%);
}
#archive_list .wrapper .button:active {
  color: var(--color-button_text);
}
#archive_list .wrapper .button.hide {
  display: none;
}
#archive_list .wrapper {
  /*
  @media screen and (max-width: 1320px) {
  }
  */
}

#modal-1 .modal__footer .invisible {
  visibility: hidden;
}

.application_slide {
  height: 450px;
}

#modal-1 .modal__container {
  width: clamp(320px, 80%, 720px);
}

#modal-1 .modal__footer {
  margin-top: 0.5rem;
  display: flex;
}

#modal-1 .modal__footer .cancel_apply {
  margin-right: auto;
}

#modal-1 .modal__footer .go_previous {
  margin-right: 1em;
}

.splide__slide {
  padding: 8px;
}

.splide__pagination li {
  pointer-events: none !important;
}

.splide__pagination__page:focus-visible {
  outline: unset;
  outline-offset: unset;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: unset;
  outline-offset: unset;
}

.splide__pagination__page.is-active {
  background: yellowgreen;
  transform: scale(1);
}

form#application .splide__list div, form#application .splide__list form, form#application .splide__list input, form#application .splide__list textarea, form#application .splide__list select, form#application .splide__list p {
  padding: 0px;
  margin: 0;
  outline: none;
  font-family: "Yu Gothic", "ヒラギノ角ゴ Pro", "メイリオ", Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  line-height: 24px;
}
form#application .splide__list .message {
  background: #fff0f0;
  border: 1px solid #ffa9a9;
  padding: 0px 8px;
}
form#application .splide__list .message:empty {
  display: none;
}
form#application .splide__list h1 {
  position: absolute;
  margin: 0;
  font-size: 38px;
  color: #fff;
  z-index: 2;
}
form#application .splide__list p.top-info {
  margin: 10px 0;
}
form#application .splide__list .testbox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  padding: 20px;
}
form#application .splide__list form {
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 25px 0 #1c87c9;
}
form#application .splide__list input, form#application .splide__list select, form#application .splide__list textarea {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
form#application .splide__list input {
  width: calc(100% - 10px);
  padding: 5px;
}
form#application .splide__list input[type=date] {
  padding: 4px 5px;
}
form#application .splide__list select {
  width: 100%;
  padding: 7px 0;
  background: transparent;
}
form#application .splide__list .item:hover p, form#application .splide__list .item:hover i, form#application .splide__list .question:hover p, form#application .splide__list .question label:hover, form#application .splide__list input:hover::placeholder {
  color: #1c87c9;
}
form#application .splide__list .item input:hover, form#application .splide__list .item select:hover, form#application .splide__list .item textarea:hover {
  border: 1px solid transparent;
  box-shadow: 0 0 6px 0 #1c87c9;
  color: #1c87c9;
}
form#application .splide__list .item {
  position: relative;
  margin: 10px 0;
}
form#application .splide__list input[type=date]::-webkit-inner-spin-button {
  display: none;
}
form#application .splide__list .item i, form#application .splide__list input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  font-size: 20px;
  color: #a9a9a9;
}
form#application .splide__list .item i {
  right: 2%;
  top: 30px;
  z-index: 1;
}
form#application .splide__list [type=date]::-webkit-calendar-picker-indicator {
  right: 1%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}
form#application .splide__list input[type=radio] {
  display: none;
}
form#application .splide__list input[type=checkbox] {
  display: none;
}
form#application .splide__list label.radio {
  position: relative;
  display: inline-block;
  margin: 5px 20px 10px 0;
  cursor: pointer;
}
form#application .splide__list label.checkbox {
  position: relative;
  display: inline-block;
  margin: 5px 20px 10px 0;
  cursor: pointer;
}
form#application .splide__list .question span {
  margin-left: 30px;
}
form#application .splide__list span.required {
  margin-left: 0;
  color: red;
}
form#application .splide__list label.radio:before {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #ccc;
}
form#application .splide__list label.checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #ccc;
}
form#application .splide__list input[type=radio]:checked + label:before, form#application .splide__list label.radio:hover:before {
  border: 2px solid #1c87c9;
}
form#application .splide__list input[type=checkbox]:checked + label:before, form#application .splide__list label.checkbox:hover:before {
  border: 2px solid #1c87c9;
}
form#application .splide__list label.radio:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 3.45px;
  width: 18px;
  height: 8px;
  border: 3px solid #1c87c9;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  opacity: 0;
}
form#application .splide__list label.checkbox:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 3.45px;
  width: 18px;
  height: 8px;
  border: 3px solid #1c87c9;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  opacity: 0;
}
form#application .splide__list input[type=radio]:checked + label:after {
  opacity: 1;
}
form#application .splide__list input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form#application .splide__list .btn-block {
  margin-top: 10px;
  text-align: center;
}
form#application .splide__list button {
  width: auto;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #1c87c9;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
form#application .splide__list button:hover {
  background: #1e6fa0;
}
form#application .splide__list #application_term_title {
  text-align: center;
  padding: 0.5em;
  font-size: 18px;
  font-weight: bold;
}
form#application .splide__list #application_term {
  padding: 0.5em;
  background: #f3f3f3;
  overflow-y: scroll;
  height: 32dvh;
}
form#application .splide__list #application_term::-webkit-scrollbar {
  width: 8px;
}
form#application .splide__list #application_term::-webkit-scrollbar-thumb {
  background: #000;
}
form#application .splide__list textarea[name=career] {
  width: 100%;
  height: 8em;
}
form#application .splide__list .credit_account {
  padding: 0px;
  margin: 0;
  outline: none;
  font-family: "Yu Gothic", "ヒラギノ角ゴ Pro", "メイリオ", Roboto, Arial, sans-serif;
  color: #666;
  line-height: 24px;
}
form#application .splide__list .credit_account {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
form#application .splide__list .credit_account {
  width: calc(100% - 10px);
  padding: 8px !important;
}
form#application .splide__list .credit_account:hover {
  border: 1px solid transparent;
  box-shadow: 0 0 6px 0 #1c87c9;
  color: #1c87c9;
}
form#application .splide__list .input_box_credit_number.hide {
  display: none;
}
form#application .splide__list .question-answer .item {
  text-align: center;
}
form#application .splide__list label[for=radio_payment_method_credit] span {
  margin-left: 24px;
}
form#application .splide__list label[for=radio_payment_method_bank_transfer] span {
  margin-left: 24px;
}
form#application .splide__list #card-input {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form#application .splide__list #card-input .field {
  padding: 10px 20px 11px;
  background-color: #e9eef7;
  border-radius: 8px;
  width: 100%;
}
form#application .splide__list #card-input .number {
  width: 100%;
}
form#application .splide__list #card-input .expiry {
  width: 49%;
}
form#application .splide__list #card-input .cvc {
  width: 49%;
}
form#application .splide__list #card-input .field + .field {
  margin-top: 12px;
}
form#application .splide__list #thank_you_outer {
  position: relative;
  min-height: 100%;
}
form#application .splide__list #thank_you {
  padding: 1em;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

body.no_scroll {
  overflow: hidden;
}

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