@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
  padding: 0px;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
  display: block;
  max-width: 100%;
}

/*==========　基本設定　==========*/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 959px) {
  html {
    font-size: 14px;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  line-height: 1.5;
  width: 100%;
}

.body_wrap {
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .body_wrap {
    margin-top: var(--headerHeight);
  }
}

.container {
  width: 100%;
  max-width: calc(1000px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(900px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents {
  width: 100%;
  max-width: calc(880px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 959px) {
  .container .inner,
.container .inner_contents,
.inner .inner_contents {
    padding-left: 0;
    padding-right: 0;
  }
}
.anchor {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}

/*========== レイアウト用 ==========*/
.padding_section {
  padding-top: var(--paddingSection);
  padding-bottom: var(--paddingSection);
}

.relative_box {
  position: relative;
}

.absolute_box {
  position: absolute;
}

.position_left {
  top: 0;
  left: 0;
}

.position_right {
  top: 0;
  right: 0;
}

/*==========
フォント
==========*/
.fw_mid {
  font-weight: 500;
}

.fw_bold {
  font-weight: 700;
}

.fw_black {
  font-weight: 900;
}

.fs_12 {
  font-size: 0.75rem;
}
@media screen and (max-width: 959px) {
  .fs_12 {
    font-size: 1rem;
  }
}

.fs_13 {
  font-size: 0.8125rem;
}
@media screen and (max-width: 959px) {
  .fs_13 {
    font-size: 1rem;
  }
}

.fs_14 {
  font-size: 0.875rem;
}
@media screen and (max-width: 959px) {
  .fs_14 {
    font-size: 1rem;
  }
}

.fs_15 {
  font-size: 0.9375rem;
}
@media screen and (max-width: 959px) {
  .fs_15 {
    font-size: 1rem;
  }
}

.fs_16 {
  font-size: 1rem;
}

.fs_17 {
  font-size: 1.0625rem;
}
@media screen and (max-width: 959px) {
  .fs_17 {
    font-size: 1rem;
  }
}

.fs_18 {
  font-size: 1.125rem;
}
@media screen and (max-width: 959px) {
  .fs_18 {
    font-size: 1rem;
  }
}

.fs_19 {
  font-size: 1.1875rem;
}
@media screen and (max-width: 959px) {
  .fs_19 {
    font-size: 1.125rem;
  }
}

.fs_20 {
  font-size: 1.25rem;
}
@media screen and (max-width: 959px) {
  .fs_20 {
    font-size: 1.125rem;
  }
}

.fs_21 {
  font-size: 1.3125rem;
}
@media screen and (max-width: 959px) {
  .fs_21 {
    font-size: 1.125rem;
  }
}

.fs_22 {
  font-size: 1.375rem;
}
@media screen and (max-width: 959px) {
  .fs_22 {
    font-size: 1.125rem;
  }
}

.fs_24 {
  font-size: 1.5rem;
}
@media screen and (max-width: 959px) {
  .fs_24 {
    font-size: 1.25rem;
  }
}

.fs_26 {
  font-size: 1.625rem;
}
@media screen and (max-width: 959px) {
  .fs_26 {
    font-size: 1.25rem;
  }
}

.fs_28 {
  font-size: 1.75rem;
}
@media screen and (max-width: 959px) {
  .fs_28 {
    font-size: 1.25rem;
  }
}

.fs_30 {
  font-size: 1.875rem;
}
@media screen and (max-width: 959px) {
  .fs_30 {
    font-size: 1.25rem;
  }
}

.fs_32 {
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .fs_32 {
    font-size: 1.5rem;
  }
}

.fs_34 {
  font-size: 2.125rem;
}
@media screen and (max-width: 959px) {
  .fs_34 {
    font-size: 1.5rem;
  }
}

.fs_36 {
  font-size: 2.25rem;
}
@media screen and (max-width: 959px) {
  .fs_36 {
    font-size: 1.5rem;
  }
}

.fs_40 {
  font-size: 2.5rem;
}
@media screen and (max-width: 959px) {
  .fs_40 {
    font-size: 1.5rem;
  }
}

/*==========
汎用クラス
==========*/
.text_justify {
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: left;
       text-align-last: left;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.block_center {
  margin-left: auto;
  margin-right: auto;
}

.sp_only {
  display: none;
}
@media screen and (max-width: 959px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 959px) {
  .pc_only {
    display: none;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*==========
余白指定
==========*/
.mt_1em {
  margin-top: 1em;
}

.mt_2em {
  margin-top: 2em;
}

.mt_08 {
  margin-top: 8px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_56 {
  margin-top: 56px;
}
@media screen and (max-width: 959px) {
  .mt_56 {
    margin-top: 40px;
  }
}

.mt_64 {
  margin-top: 64px;
}
@media screen and (max-width: 959px) {
  .mt_64 {
    margin-top: 40px;
  }
}

.mt_80 {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .mt_80 {
    margin-top: 40px;
  }
}

.mt_120 {
  margin-top: 120px;
}
@media screen and (max-width: 959px) {
  .mt_120 {
    margin-top: 80px;
  }
}

.mt_160 {
  margin-top: 160px;
}
@media screen and (max-width: 959px) {
  .mt_160 {
    margin-top: 80px;
  }
}

.mb_1em {
  margin-bottom: 1em;
}

.mb_2em {
  margin-bottom: 2em;
}

.mb_08 {
  margin-bottom: 8px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .mb_56 {
    margin-bottom: 40px;
  }
}

.mb_64 {
  margin-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .mb_64 {
    margin-bottom: 40px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .mb_120 {
    margin-bottom: 80px;
  }
}

.mb_160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .mb_160 {
    margin-bottom: 80px;
  }
}

.pt_1em {
  padding-top: 1em;
}

.pt_2em {
  padding-top: 2em;
}

.pt_08 {
  padding-top: 8px;
}

.pt_16 {
  padding-top: 16px;
}

.pt_24 {
  padding-top: 24px;
}

.pt_32 {
  padding-top: 32px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_56 {
  padding-top: 56px;
}
@media screen and (max-width: 959px) {
  .pt_56 {
    padding-top: 40px;
  }
}

.pt_64 {
  padding-top: 64px;
}
@media screen and (max-width: 959px) {
  .pt_64 {
    padding-top: 40px;
  }
}

.pt_80 {
  padding-top: 80px;
}
@media screen and (max-width: 959px) {
  .pt_80 {
    padding-top: 40px;
  }
}

.pt_120 {
  padding-top: 120px;
}
@media screen and (max-width: 959px) {
  .pt_120 {
    padding-top: 80px;
  }
}

.pt_160 {
  padding-top: 160px;
}
@media screen and (max-width: 959px) {
  .pt_160 {
    padding-top: 80px;
  }
}

.pb_1em {
  padding-bottom: 1em;
}

.pb_2em {
  padding-bottom: 2em;
}

.pb_08 {
  padding-bottom: 8px;
}

.pb_16 {
  padding-bottom: 16px;
}

.pb_24 {
  padding-bottom: 24px;
}

.pb_32 {
  padding-bottom: 32px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_56 {
  padding-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .pb_56 {
    padding-bottom: 40px;
  }
}

.pb_64 {
  padding-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .pb_64 {
    padding-bottom: 40px;
  }
}

.pb_80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .pb_80 {
    padding-bottom: 40px;
  }
}

.pb_120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .pb_120 {
    padding-bottom: 80px;
  }
}

.pb_160 {
  padding-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .pb_160 {
    padding-bottom: 80px;
  }
}

:root {
  --headerHeight: 180px;
  --paddingSection: 40px;
  --paddingLR: 20px;
}
@media screen and (max-width: 1400px) {
  :root {
    --headerHeight: 166px;
  }
}
@media screen and (max-width: 1079px) {
  :root {
    --headerHeight: 152px;
  }
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 64px;
    --paddingSection: 24px;
  }
}

/*========== 汎用オブジェクト ==========*/
/*==========
汎用デザイン
==========*/
button[data-readmore] {
  cursor: pointer;
}

[data-readmore]:not(button) {
  display: none;
}

.text_blue {
  color: #005497;
}

.link_underline {
  color: #0066c0;
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .link_underline:hover {
    text-decoration: none;
  }
}

.icon_pdf::after {
  content: "";
  width: 1em;
  height: 1em;
  background: center/contain url("../img/common/icon_pdf.svg") no-repeat;
  display: inline-block;
  margin-left: 0.25em;
  margin-bottom: -0.125em;
}

.youtube_wrap {
  margin: 40px auto 80px;
}
.youtube_wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 959px) {
  .youtube_wrap {
    margin-top: 24px;
    margin-bottom: 40px;
  }
}

/*==========
バナー
==========*/
.banner_01 .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
}
.banner_01 .flex > * {
  flex: 1;
}
.banner_01 .aside {
  font-size: 0.875rem;
  font-weight: 700;
  color: #7C7C7C;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .banner_01 .flex > * {
    flex: 0 1 auto;
    width: 100%;
  }
}

.banner_apply,
.banner_contact {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 440px;
  min-height: 100px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 8px var(--paddingLR);
}
.banner_apply .title,
.banner_contact .title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  line-height: 1.25;
}
.banner_apply .label,
.banner_contact .label {
  padding: 0.125em;
  background-color: #fff;
  border-radius: 100px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0em 1em;
}
.banner_apply .text,
.banner_contact .text {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  margin-top: 4px;
  line-height: 1;
}
.banner_apply .tel,
.banner_contact .tel {
  display: flex;
  align-items: center;
}
.banner_apply .tel::before,
.banner_contact .tel::before {
  content: "";
  width: 1em;
  height: 1em;
  background: center/contain url("../img/common/icon_tel.svg") no-repeat;
  display: block;
  margin-right: 0.125em;
}
.banner_apply .mail,
.banner_contact .mail {
  display: flex;
  align-items: center;
  font-size: 10px;
}
.banner_apply .mail::before,
.banner_contact .mail::before {
  content: "";
  width: 1.9em;
  height: 1.5em;
  background: center/contain url("../img/common/icon_mail.svg") no-repeat;
  display: block;
  margin-right: 0.5em;
}
@media screen and (min-width: 960px) {
  .banner_apply,
.banner_contact {
    transition: opacity 0.5s;
  }
  .banner_apply:hover,
.banner_contact:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 959px) {
  .banner_apply,
.banner_contact {
    min-height: 64px;
  }
  .banner_apply .title,
.banner_contact .title {
    font-size: 1.125rem;
  }
  .banner_apply .label,
.banner_contact .label {
    padding: 0.25em;
    line-height: 1.25;
  }
}

.banner_apply {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background-color: #FF750F;
}
.banner_apply .label {
  color: #FF750F;
}
.banner_apply.disable {
  pointer-events: none;
  background-color: #7C7C7C;
}
.banner_apply.disable .label {
  display: none;
}
.banner_apply.disable .title::after {
  content: "今年度の募集は、参加企業上限に達したため、\a締め切らせて頂きました";
  white-space: pre;
  margin-top: 0.5em;
  font-size: 0.875rem;
  padding: 0.125em;
  color: #222222;
  background-color: #fff;
  border-radius: 100px;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0em 1em;
}
@media screen and (max-width: 959px) {
  .banner_apply.disable .title::after {
    padding: 0.25em;
    line-height: 1.25;
  }
}
.banner_apply:not(.disable) {
  position: relative;
  padding: 0.325em 1.25em 0.325em 1em;
}
.banner_apply:not(.disable)::after {
  content: "最短\a" "3分";
  white-space: pre;
  position: absolute;
  top: 0;
  right: 0;
  color: #FF750F;
  border: 2px solid #FF750F;
  background-color: #fff;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1.125;
  border-radius: 100px;
  width: 3.75em;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(50%, -35%);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 960px) {
  .banner_apply {
    transition: opacity 0.5s;
  }
  .banner_apply:hover {
    opacity: 0.75;
  }
}

.banner_contact {
  color: #fff;
  background-color: #00559C;
}
.banner_contact .label {
  color: #005497;
}

/*==========
リスト
==========*/
.list_dots {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.25;
}
.list_dots > *::before {
  content: "・";
}
.list_dots > *:not(:last-of-type) {
  margin-bottom: 0.25em;
}

.list_circle > * {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.list_circle > *::before {
  content: "";
  width: 0.71428572em;
  height: 0.71428572em;
  margin-right: 0.78571428em;
  margin-top: 0.14285714em;
  background-color: #005497;
  display: inline-block;
  border-radius: 50%;
}
.list_circle > *:not(:last-of-type) {
  margin-bottom: 1em;
}

.list_index_works_01 {
  max-width: 866px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.list_index_works_01 > * {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 15px;
}
.list_index_works_01 .img_area img {
  width: 100%;
}
.list_index_works_01 .category {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #005497;
  background-color: #FFEF00;
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.125em 1em;
  margin-top: 10px;
}
.list_index_works_01 .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #005497;
  line-height: 1.25;
  margin-top: 8px;
}
.list_index_works_01 a {
  display: block;
  padding: 15px;
  margin: -15px;
}
@media screen and (max-width: 1079px) {
  .list_index_works_01 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 959px) {
  .list_index_works_01 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 4px;
  }
  .list_index_works_01 > * {
    padding: 10px 8px;
  }
  .list_index_works_01 a {
    padding: 10px 8px;
    margin: -10px -8px;
  }
  .list_index_works_01 .category {
    font-size: 0.75rem;
  }
  .list_index_works_01 .title {
    font-size: 1rem;
  }
}

/*==========
ボタン
==========*/
.btn_01 {
  background-color: #FF750F;
  border: 1px solid #FF750F;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 277px;
  height: 66px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  flex-direction: column;
}
.btn_01.disable {
  pointer-events: none;
  background-color: #7C7C7C;
  border-color: #7C7C7C;
}
.btn_01.disable::after {
  content: "今年度の募集は、参加企業上限に達したため、\a締め切らせて頂きました";
  white-space: pre;
  text-align: center;
  display: block;
  font-size: 10px;
  line-height: 1;
}
.btn_01:not(.disable) {
  position: relative;
  padding: 0.325em 1.25em 0.325em 1em;
}
.btn_01:not(.disable)::after {
  content: "最短\a" "3分";
  white-space: pre;
  position: absolute;
  top: 0;
  right: 0;
  color: #FF750F;
  border: 2px solid #FF750F;
  background-color: #fff;
  font-size: 0.625em;
  line-height: 1.125;
  border-radius: 100px;
  width: 3.75em;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(50%, -35%);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 960px) {
  .btn_01 {
    transition: background-color 0.5s, color 0.5s;
    will-change: background-color, color;
  }
  .btn_01:hover {
    background-color: #fff;
    color: #FF750F;
  }
}
@media screen and (max-width: 959px) {
  .btn_01 {
    font-size: 1.25rem;
    width: 100%;
    max-width: 240px;
    height: 48px;
  }
}

.btn_02 {
  background-color: #005497;
  color: #fff;
  width: 100%;
  max-width: 240px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0 1.5em;
  position: relative;
}
.btn_02::after {
  content: "";
  width: 0.5em;
  height: 0.75em;
  background: center/contain url("../img/index/index_flow_icon.svg") no-repeat;
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
}

.btn_apply {
  background-color: #FF750F;
  border: 1px solid #FF750F;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.325em 1em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn_apply.disable {
  pointer-events: none;
  background-color: #7C7C7C;
  border-color: #7C7C7C;
}
.btn_apply:not(.disable) {
  position: relative;
  margin-right: 0.5em;
  padding: 0.325em 1.25em 0.325em 1em;
  margin-top: 0.5em;
}
.btn_apply:not(.disable)::after {
  content: "最短\a" "3分";
  white-space: pre;
  position: absolute;
  top: 0;
  right: 0;
  color: #FF750F;
  border: 2px solid #FF750F;
  background-color: #fff;
  font-size: 0.625em;
  line-height: 1.125;
  border-radius: 100px;
  width: 3.75em;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(50%, -35%);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 960px) {
  .btn_apply {
    transition: background-color 0.5s, color 0.5s;
    will-change: background-color, color;
  }
  .btn_apply:hover {
    background-color: #fff;
    color: #FF750F;
  }
}
@media screen and (max-width: 959px) {
  .btn_apply {
    font-size: 0.875rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
  }
}

.btn_apply_header {
  background-color: #FF750F;
  border: 2px solid #FF750F;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
}
.btn_apply_header .arrow {
  display: block;
  border: 2px solid #FF750F;
  background-color: #fff;
  color: #FF750F;
  padding: 0.5em 1em 0.5em 0.5em;
  -webkit-clip-path: polygon(0 0, calc(100% - 0.75em) 0, 100% 50%, calc(100% - 0.75em) 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 0.75em) 0, 100% 50%, calc(100% - 0.75em) 100%, 0 100%);
}
.btn_apply_header .text {
  display: block;
  border: 2px solid #FF750F;
  background-color: #FF750F;
  color: #fff;
  margin: auto;
  padding: 0.5em;
}
@media screen and (min-width: 960px) {
  .btn_apply_header {
    transition: opacity 0.5s;
  }
  .btn_apply_header:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 1079px) {
  .btn_apply_header {
    font-size: 1rem;
  }
}

.btn_contact {
  background-color: #50B9A5;
  border: 1px solid #50B9A5;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.325em 1em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 960px) {
  .btn_contact {
    transition: background-color 0.5s, color 0.5s;
    will-change: background-color, color;
  }
  .btn_contact:hover {
    background-color: #fff;
    color: #50B9A5;
  }
}
@media screen and (max-width: 959px) {
  .btn_contact {
    font-size: 0.875rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
  }
}

#float_banner {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 98;
  transition: bottom 0.5s;
}
#float_banner .logo {
  margin-bottom: 1rem;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#float_banner .logo a {
  display: block;
  padding: 1em;
}
#float_banner .apply {
  padding: 1.33333em var(--paddingLR);
  display: block;
  width: 100%;
  height: 64px;
  background-color: rgba(255, 115, 15, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
#float_banner .apply.disable {
  pointer-events: none;
  background-color: #7C7C7C;
  border-color: #7C7C7C;
}
@media screen and (max-width: 959px) {
  #float_banner .logo {
    width: 160px;
  }
  #float_banner .apply {
    height: 48px;
    font-size: 1rem;
  }
}

#float_banner_02 {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  padding: var(--paddingLR);
  z-index: 999;
  width: 100%;
  height: 100%;
}
#float_banner_02 .flex {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#float_banner_02 a,
#float_banner_02 img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#float_banner_02 .close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  cursor: pointer;
  max-width: 10%;
}

/*==========
タイトル
==========*/
.title_01 {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.125rem;
  font-weight: 700;
  color: #005497;
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
}
.title_01::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #005497;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.title_01.with_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em 0.5em;
  -webkit-text-decoration: underline 1px;
          text-decoration: underline 1px;
  text-underline-offset: 0.75em;
}
.title_01.with_icon::after {
  display: none;
}
@media screen and (max-width: 959px) {
  .title_01.with_icon .icon {
    width: 40px;
  }
}
@media screen and (max-width: 959px) {
  .title_01 {
    font-size: 1.25rem;
  }
}

.title_02 {
  font-weight: 700;
  line-height: 1.25;
  color: #005497;
  padding-top: 0.125em;
  padding-bottom: 0.45em;
  padding-left: 0.625em;
  position: relative;
}
.title_02::before {
  content: "";
  width: 0.3125em;
  height: calc(100% - 0.5em);
  background-color: #005497;
  position: absolute;
  top: 0.2em;
  left: 0;
}
.title_02::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #005497;
  position: absolute;
  bottom: 0;
  left: 0;
}

/*========== 汎用レイアウト ==========*/
/*==========
ヘッダー
==========*/
.btn_mypage {
  font-size: 1.1875rem;
  color: #197AFF;
  font-weight: 500;
  display: block;
  height: 45px;
}
.btn_mypage img {
  width: auto;
  height: 100%;
}

main {
  margin-top: var(--headerHeight);
}
@media screen and (max-width: 959px) {
  main {
    margin-top: 0;
  }
}

#header {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  left: 0;
}
#header .container {
  max-width: calc(1400px + var(--paddingLR) * 2);
}
#header .row_upper {
  padding: 1em 0 0;
  background-color: #F8F8F8;
}
#header .row_upper .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
#header .row_upper .link_area {
  margin-top: 1em;
  font-size: 0.8125rem;
  display: flex;
  gap: 0.5em;
}
#header .row_upper .link_area a {
  cursor: pointer;
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  #header .row_upper .link_area a {
    transition: opacity 0.5s;
  }
  #header .row_upper .link_area a:hover {
    text-decoration: none;
    opacity: 0.75;
  }
}
#header .row_upper .font_change {
  display: flex;
  gap: 0.25em;
}
#header .row_upper .col_banner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1em;
}
@media screen and (min-width: 960px) {
  #header .row_upper .col_banner a {
    transition: opacity 0.5s;
  }
  #header .row_upper .col_banner a:hover {
    opacity: 0.75;
  }
}
#header .row_upper .col_banner_02 {
  flex: 1;
  max-width: 184px;
  margin-right: auto;
}
#header .row_upper .banner {
  max-width: 296px;
}
#header .row_upper .login {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.125em;
}
#header .row_upper .login a {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  #header .row_upper .login a:hover {
    text-decoration: none;
  }
}
#header .row_upper .btn_login {
  max-width: 126px;
}
#header .row_middle {
  padding: 1em 0;
  background-color: #F8F8F8;
}
#header .row_middle .logo {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 0.5em;
}
#header .row_middle .logo a {
  display: block;
}
#header .row_middle .flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1em;
}
#header .row_middle .title {
  margin-top: -0.325em;
  line-height: 1.125;
  color: #005497;
  font-size: 1.625rem;
  font-weight: 700;
}
#header .row_middle .title .small {
  font-size: 0.615384em;
}
#header .row_middle .btn_area {
  display: flex;
  align-items: flex-end;
  gap: 0.5em;
  margin-left: auto;
}
#header .row_middle .btn_apply {
  font-size: 1.5rem;
}
#header .row_middle .outer_area {
  padding-right: var(--paddingLR);
}
#header .row_lower {
  background-color: #005497;
  color: #fff;
}
#header .row_sp {
  display: none;
}
@media screen and (max-width: 1400px) {
  #header .row_middle .title {
    font-size: 1.375rem;
  }
  #header .row_middle .btn_apply {
    font-size: 1.25rem;
  }
  #header .row_middle .btn_contact {
    font-size: 1rem;
  }
  #header .row_middle .btn_mypage {
    height: 36.38px;
  }
}
@media screen and (max-width: 1179px) {
  #header .row_middle .logo {
    max-width: 120px;
  }
  #header .row_middle .title {
    font-size: 1rem;
  }
  #header .row_middle .btn_apply {
    font-size: 1rem;
  }
  #header .row_middle .btn_contact {
    font-size: 0.875rem;
  }
}

.menu_header {
  padding: 1em 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em 0;
  font-size: 1.25rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
}
.menu_header > * {
  display: flex;
  align-items: center;
}
.menu_header > *:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  margin: 0 0.5em;
}
.menu_header .small {
  font-size: 0.75em;
}
.menu_header .active {
  color: #FFEF00;
}
.menu_header .btn_menu_sub {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.menu_header .btn_menu_sub::after {
  content: "";
  width: 1em;
  height: 1em;
  background: center/contain url("../img/common/icon_btn_menu_sub.svg") no-repeat;
  display: block;
  margin-top: 0.25em;
  margin-left: 0.5em;
  transform: rotate(180deg);
  transition: transform 0.5s, opacity 0.5s;
}
.menu_header .btn_menu_sub.open {
  color: #FFEF00;
}
.menu_header .btn_menu_sub.open::after {
  transform: rotate(0deg);
}
@media screen and (min-width: 960px) {
  .menu_header .btn_menu_sub:hover {
    opacity: 0.75;
  }
}
@media screen and (min-width: 960px) {
  .menu_header a:not(.btn_mypage) {
    position: relative;
  }
  .menu_header a:not(.btn_mypage)::after {
    content: "";
    width: 0%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: -0.125em;
    transform: translateX(-50%);
    transition: width 0.5s;
    will-change: width;
  }
  .menu_header a:not(.btn_mypage):hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .menu_header {
    font-size: 1rem;
  }
}
@media screen and (max-width: 959px) {
  .menu_header {
    margin-right: 0;
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  .menu_header > *::after {
    display: none;
  }
}

.menu_header_sub_area {
  display: none;
  background: #fff;
  color: #006CFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.menu_header_sub {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1em 0;
}
@media screen and (min-width: 960px) {
  .menu_header_sub a {
    transition: opacity 0.5s;
  }
  .menu_header_sub a:hover {
    opacity: 0.75;
  }
}

/*==========
ハンバーガーメニュー
==========*/
/*== ボタン ==*/
.hamburger_btn_area {
  display: none;
  margin-left: auto;
  position: relative;
  z-index: 3;
}

#hamburger_btn {
  width: calc(var(--headerHeight) / 2.5);
  height: calc(var(--headerHeight) / 2.5);
  margin-left: auto;
  display: flex;
  gap: 5px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 30;
  cursor: pointer;
}
#hamburger_btn span {
  transform-origin: center;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #005497;
  transition: all 0.5s;
  will-change: transform, margin;
}

/*== エリア外 ==*/
#hamburger_bg {
  width: 0px;
  height: 0px;
  background-color: rgb(204, 204, 204);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.5s;
  will-change: opacity;
}

@media screen and (max-width: 959px) {
  #header {
    position: fixed;
    width: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 99;
  }
  #header .hamburger_btn_area {
    display: block;
  }
  #header .row_sp {
    width: 100%;
    height: var(--headerHeight);
    display: block;
    padding: 1em 0;
    background-color: #fff;
    position: relative;
    z-index: 20;
  }
  #header .row_sp .flex {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
  }
  #header .hamburger_area {
    width: 100%;
    max-height: calc(100vh - var(--headerHeight));
    max-height: calc(100dvh - var(--headerHeight));
    max-height: calc(100svh - var(--headerHeight));
    overflow: auto;
    position: fixed;
    top: var(--headerHeight);
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s;
    will-change: transform;
  }
  #header .row_upper {
    display: none;
  }
  #header .row_middle {
    margin-right: 0;
    order: 0;
  }
  #header .row_middle .flex {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    padding-right: 0;
  }
  #header .row_middle .title {
    font-size: 1.25rem;
  }
  #header .row_middle .btn_apply,
#header .row_middle .btn_contact {
    font-size: 1rem;
  }
  #header .row_middle .btn_area {
    margin-left: 0;
  }
  #header .row_middle .outer_area {
    padding-right: 0;
  }
  #header .row_lower {
    order: 1;
    padding: 2em 0;
  }
  /*== オープン ==*/
  #header.hamburger_open .hamburger_area {
    transform: translate(-50%, 0%);
  }
  #header.hamburger_open #hamburger_btn {
    gap: 0;
  }
  #header.hamburger_open #hamburger_btn span {
    margin-bottom: 0;
  }
  #header.hamburger_open #hamburger_btn span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: -1px;
  }
  #header.hamburger_open #hamburger_btn span:nth-of-type(2) {
    height: 0;
  }
  #header.hamburger_open #hamburger_btn span:nth-of-type(3) {
    transform: rotate(-45deg);
  }
  #header.hamburger_open #hamburger_bg {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    opacity: 0.5;
  }
}
/*==========
フッター
==========*/
#footer {
  background-color: #005497;
  padding: 40px 0;
}
#footer .layout {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 959px) {
  #footer .layout {
    flex-direction: column;
  }
}
#footer .flex_right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 1em;
  flex-direction: column;
  border: 1px solid #fff;
  padding: var(--paddingLR);
}
#footer .flex_right .title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
#footer .flex_right .tel {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
#footer .flex_right .small {
  font-size: 0.75rem;
}
@media screen and (max-width: 959px) {
  #footer .flex_right {
    padding: calc(var(--paddingLR) / 2);
  }
  #footer .flex_right .title {
    font-size: 1rem;
  }
  #footer .flex_right .small {
    font-size: 0.71428rem;
  }
}
#footer .flex {
  flex: 1;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  flex-direction: column;
}
#footer .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 1em;
  background-color: #fff;
  max-width: 320px;
}
#footer .btn_area {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
#footer .aside {
  color: #fff;
  border-top: 1px solid #fff;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  #footer .logo {
    max-width: 170px;
  }
  #footer .banner_02 {
    max-width: 182px;
    flex-direction: column;
    margin-top: 0;
  }
  #footer .aside {
    font-size: 0.875rem;
    padding-top: 24px;
    padding-bottom: 0;
  }
}

.menu_footer {
  color: #fff;
  display: flex;
  gap: 0.5em 2em;
  font-size: 0.8125rem;
}
@media screen and (max-width: 959px) {
  .menu_footer {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}

.btn_footer {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  background-color: #7CCE36;
  color: #fff;
  padding: 1em 2em;
}
@media screen and (min-width: 960px) {
  .btn_footer {
    transition: opacity 0.5s;
  }
  .btn_footer:hover {
    opacity: 0.75;
  }
}

/*==========
コピーライト
==========*/
/*==========
PageToTop
==========*/
#pagetop {
  position: fixed;
  bottom: -100%;
  right: var(--paddingLR);
  z-index: 99;
  width: 80px;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_pageTop.svg") no-repeat;
  transition: bottom 0.5s;
}
#pagetop.view {
  bottom: calc(var(--paddingLR) + 60px);
}
@media screen and (max-width: 959px) {
  #pagetop {
    width: 40px;
  }
  #pagetop.view {
    bottom: calc(var(--paddingLR) + 40px);
  }
}

/*==========
Effect
==========*/
.trigger .fx_fadeIn, .trigger.fx_fadeIn {
  -webkit-animation-name: fx_fadeIn;
          animation-name: fx_fadeIn;
}
.trigger .fx_fadeUp, .trigger.fx_fadeUp {
  -webkit-animation-name: fx_fadeUp;
          animation-name: fx_fadeUp;
}
.trigger .fx_slideLeft, .trigger.fx_slideLeft {
  -webkit-animation-name: fx_slideLeft;
          animation-name: fx_slideLeft;
}
.trigger .fx_slideRight, .trigger.fx_slideRight {
  -webkit-animation-name: fx_slideRight;
          animation-name: fx_slideRight;
}

.fx_fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fx_fadeUp {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fx_slideLeft {
  will-change: transform, opacity;
  transform: translateX(-40px);
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fx_slideRight {
  will-change: transform, opacity;
  transform: translateX(40px);
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}