@charset "UTF-8";
/* mixin var
-----------------------------------------------------*/
/* reset
-----------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* html
-----------------------------------------------------*/
html {
  overflow: auto;
  font-size: 62.5%;
}

body {
  color: #333;
  font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

/* link
-----------------------------------------------------*/
a {
  color: #333333;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: gray;
}

/*flex
-----------------------------------------------------*/
.flex {
  display: flex;
}
@media (max-width: 1199px) {
  .flex-xl {
    display: flex;
  }
}
@media (max-width: 1023px) {
  .flex-lg {
    display: flex;
  }
}
@media (max-width: 767px) {
  .flex-md {
    display: flex;
  }
}
@media (max-width: 575px) {
  .flex-sm {
    display: flex;
  }
}

.justify-start {
  justify-content: start;
}
@media (max-width: 1199px) {
  .justify-start-xl {
    justify-content: start;
  }
}
@media (max-width: 1023px) {
  .justify-start-lg {
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .justify-start-md {
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .justify-start-sm {
    justify-content: start;
  }
}

.justify-center {
  justify-content: center;
}
@media (max-width: 1199px) {
  .justify-center-xl {
    justify-content: center;
  }
}
@media (max-width: 1023px) {
  .justify-center-lg {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .justify-center-md {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .justify-center-sm {
    justify-content: center;
  }
}

.justify-between {
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .justify-between-xl {
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .justify-between-lg {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .justify-between-md {
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .justify-between-sm {
    justify-content: space-between;
  }
}

.justify-around {
  justify-content: space-around;
}
@media (max-width: 1199px) {
  .justify-around-xl {
    justify-content: space-around;
  }
}
@media (max-width: 1023px) {
  .justify-around-lg {
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .justify-around-md {
    justify-content: space-around;
  }
}
@media (max-width: 575px) {
  .justify-around-sm {
    justify-content: space-around;
  }
}

.justify-end {
  justify-content: end;
}
@media (max-width: 1199px) {
  .justify-end-xl {
    justify-content: end;
  }
}
@media (max-width: 1023px) {
  .justify-end-lg {
    justify-content: end;
  }
}
@media (max-width: 767px) {
  .justify-end-md {
    justify-content: end;
  }
}
@media (max-width: 575px) {
  .justify-end-sm {
    justify-content: end;
  }
}

.align-items-start {
  align-items: flex-start;
}
@media (max-width: 1199px) {
  .align-items-start-xl {
    align-items: flex-start;
  }
}
@media (max-width: 1023px) {
  .align-items-start-lg {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .align-items-start-md {
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .align-items-start-sm {
    align-items: flex-start;
  }
}

.align-items-center {
  align-items: center;
}
@media (max-width: 1199px) {
  .align-items-center-xl {
    align-items: center;
  }
}
@media (max-width: 1023px) {
  .align-items-center-lg {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .align-items-center-md {
    align-items: center;
  }
}
@media (max-width: 575px) {
  .align-items-center-sm {
    align-items: center;
  }
}

.align-items-end {
  align-items: end;
}
@media (max-width: 1199px) {
  .align-items-end-xl {
    align-items: end;
  }
}
@media (max-width: 1023px) {
  .align-items-end-lg {
    align-items: end;
  }
}
@media (max-width: 767px) {
  .align-items-end-md {
    align-items: end;
  }
}
@media (max-width: 575px) {
  .align-items-end-sm {
    align-items: end;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .flex-wrap-xl {
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) {
  .flex-wrap-lg {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .flex-wrap-md {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .flex-wrap-sm {
    flex-wrap: wrap;
  }
}

.flex-nowrap {
  flex-wrap: nowrap;
}
@media (max-width: 1199px) {
  .flex-nowrap-xl {
    flex-wrap: nowrap;
  }
}
@media (max-width: 1023px) {
  .flex-nowrap-lg {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .flex-nowrap-md {
    flex-wrap: nowrap;
  }
}
@media (max-width: 575px) {
  .flex-nowrap-sm {
    flex-wrap: nowrap;
  }
}

.flex-direction-column-reverse {
  flex-direction: column-reverse;
}
@media (max-width: 1199px) {
  .flex-direction-column-reverse-xl {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1023px) {
  .flex-direction-column-reverse-lg {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
  .flex-direction-column-reverse-md {
    flex-direction: column-reverse;
  }
}
@media (max-width: 575px) {
  .flex-direction-column-reverse-sm {
    flex-direction: column-reverse;
  }
}

/*font-size
-----------------------------------------------------*/
.fs-10 {
  font-size: 1rem;
}

.fs-11 {
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-13 {
  font-size: 1.3rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-17 {
  font-size: 1.7rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-19 {
  font-size: 1.9rem;
}

.fs-20 {
  font-size: 2rem;
}

.fs-21 {
  font-size: 2.1rem;
}

.fs-22 {
  font-size: 2.2rem;
}

.fs-23 {
  font-size: 2.3rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-25 {
  font-size: 2.5rem;
}

.fs-26 {
  font-size: 2.6rem;
}

.fs-27 {
  font-size: 2.7rem;
}

.fs-28 {
  font-size: 2.8rem;
}

.fs-29 {
  font-size: 2.9rem;
}

.fs-30 {
  font-size: 3rem;
}

@media (max-width: 1199px) {
  .fs-10-xl {
    font-size: 1rem;
  }
  .fs-11-xl {
    font-size: 1.1rem;
  }
  .fs-12-xl {
    font-size: 1.2rem;
  }
  .fs-13-xl {
    font-size: 1.3rem;
  }
  .fs-14-xl {
    font-size: 1.4rem;
  }
  .fs-15-xl {
    font-size: 1.5rem;
  }
  .fs-16-xl {
    font-size: 1.6rem;
  }
  .fs-17-xl {
    font-size: 1.7rem;
  }
  .fs-18-xl {
    font-size: 1.8rem;
  }
  .fs-19-xl {
    font-size: 1.9rem;
  }
  .fs-20-xl {
    font-size: 2rem;
  }
  .fs-21-xl {
    font-size: 2.1rem;
  }
  .fs-22-xl {
    font-size: 2.2rem;
  }
  .fs-23-xl {
    font-size: 2.3rem;
  }
  .fs-24-xl {
    font-size: 2.4rem;
  }
  .fs-25-xl {
    font-size: 2.5rem;
  }
  .fs-26-xl {
    font-size: 2.6rem;
  }
  .fs-27-xl {
    font-size: 2.7rem;
  }
  .fs-28-xl {
    font-size: 2.8rem;
  }
  .fs-29-xl {
    font-size: 2.9rem;
  }
  .fs-30-xl {
    font-size: 3rem;
  }
}
@media (max-width: 1023px) {
  .fs-10-lg {
    font-size: 1rem;
  }
  .fs-11-lg {
    font-size: 1.1rem;
  }
  .fs-12-lg {
    font-size: 1.2rem;
  }
  .fs-13-lg {
    font-size: 1.3rem;
  }
  .fs-14-lg {
    font-size: 1.4rem;
  }
  .fs-15-lg {
    font-size: 1.5rem;
  }
  .fs-16-lg {
    font-size: 1.6rem;
  }
  .fs-17-lg {
    font-size: 1.7rem;
  }
  .fs-18-lg {
    font-size: 1.8rem;
  }
  .fs-19-lg {
    font-size: 1.9rem;
  }
  .fs-20-lg {
    font-size: 2rem;
  }
  .fs-21-lg {
    font-size: 2.1rem;
  }
  .fs-22-lg {
    font-size: 2.2rem;
  }
  .fs-23-lg {
    font-size: 2.3rem;
  }
  .fs-24-lg {
    font-size: 2.4rem;
  }
  .fs-25-lg {
    font-size: 2.5rem;
  }
  .fs-26-lg {
    font-size: 2.6rem;
  }
  .fs-27-lg {
    font-size: 2.7rem;
  }
  .fs-28-lg {
    font-size: 2.8rem;
  }
  .fs-29-lg {
    font-size: 2.9rem;
  }
  .fs-30-lg {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .fs-10-md {
    font-size: 1rem;
  }
  .fs-11-md {
    font-size: 1.1rem;
  }
  .fs-12-md {
    font-size: 1.2rem;
  }
  .fs-13-md {
    font-size: 1.3rem;
  }
  .fs-14-md {
    font-size: 1.4rem;
  }
  .fs-15-md {
    font-size: 1.5rem;
  }
  .fs-16-md {
    font-size: 1.6rem;
  }
  .fs-17-md {
    font-size: 1.7rem;
  }
  .fs-18-md {
    font-size: 1.8rem;
  }
  .fs-19-md {
    font-size: 1.9rem;
  }
  .fs-20-md {
    font-size: 2rem;
  }
  .fs-21-md {
    font-size: 2.1rem;
  }
  .fs-22-md {
    font-size: 2.2rem;
  }
  .fs-23-md {
    font-size: 2.3rem;
  }
  .fs-24-md {
    font-size: 2.4rem;
  }
  .fs-25-md {
    font-size: 2.5rem;
  }
  .fs-26-md {
    font-size: 2.6rem;
  }
  .fs-27-md {
    font-size: 2.7rem;
  }
  .fs-28-md {
    font-size: 2.8rem;
  }
  .fs-29-md {
    font-size: 2.9rem;
  }
  .fs-30-md {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .fs-10-sm {
    font-size: 1rem;
  }
  .fs-11-sm {
    font-size: 1.1rem;
  }
  .fs-12-sm {
    font-size: 1.2rem;
  }
  .fs-13-sm {
    font-size: 1.3rem;
  }
  .fs-14-sm {
    font-size: 1.4rem;
  }
  .fs-15-sm {
    font-size: 1.5rem;
  }
  .fs-16-sm {
    font-size: 1.6rem;
  }
  .fs-17-sm {
    font-size: 1.7rem;
  }
  .fs-18-sm {
    font-size: 1.8rem;
  }
  .fs-19-sm {
    font-size: 1.9rem;
  }
  .fs-20-sm {
    font-size: 2rem;
  }
  .fs-21-sm {
    font-size: 2.1rem;
  }
  .fs-22-sm {
    font-size: 2.2rem;
  }
  .fs-23-sm {
    font-size: 2.3rem;
  }
  .fs-24-sm {
    font-size: 2.4rem;
  }
  .fs-25-sm {
    font-size: 2.5rem;
  }
  .fs-26-sm {
    font-size: 2.6rem;
  }
  .fs-27-sm {
    font-size: 2.7rem;
  }
  .fs-28-sm {
    font-size: 2.8rem;
  }
  .fs-29-sm {
    font-size: 2.9rem;
  }
  .fs-30-sm {
    font-size: 3rem;
  }
}
.lh-1 {
  line-height: 1.1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.3;
}

.lh-4 {
  line-height: 1.4;
}

.lh-5 {
  line-height: 1.5;
}

.lh-6 {
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .lh-1-xl {
    line-height: 1.1;
  }
  .lh-2-xl {
    line-height: 1.2;
  }
  .lh-3-xl {
    line-height: 1.3;
  }
  .lh-4-xl {
    line-height: 1.4;
  }
  .lh-5-xl {
    line-height: 1.5;
  }
  .lh-6-xl {
    line-height: 1.6;
  }
}
@media (max-width: 1023px) {
  .lh-1-lg {
    line-height: 1.1;
  }
  .lh-2-lg {
    line-height: 1.2;
  }
  .lh-3-lg {
    line-height: 1.3;
  }
  .lh-4-lg {
    line-height: 1.4;
  }
  .lh-5-lg {
    line-height: 1.5;
  }
  .lh-6-lg {
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .lh-1-md {
    line-height: 1.1;
  }
  .lh-2-md {
    line-height: 1.2;
  }
  .lh-3-md {
    line-height: 1.3;
  }
  .lh-4-md {
    line-height: 1.4;
  }
  .lh-5-md {
    line-height: 1.5;
  }
  .lh-6-md {
    line-height: 1.6;
  }
}
@media (max-width: 575px) {
  .lh-1-sm {
    line-height: 1.1;
  }
  .lh-2-sm {
    line-height: 1.2;
  }
  .lh-3-sm {
    line-height: 1.3;
  }
  .lh-4-sm {
    line-height: 1.4;
  }
  .lh-5-sm {
    line-height: 1.5;
  }
  .lh-6-sm {
    line-height: 1.6;
  }
}
/*utility
-----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

.mincho {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

em {
  font-style: normal;
  font-weight: bold;
}

.line {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 80%, #fffa73 0%) repeat scroll 0 0;
}

.indent-list {
  text-indent: -1em;
  padding-left: 1em;
}

.disc-list {
  list-style: disc;
  padding-left: 1.5em;
}

.color-main {
  color: #333333 !important;
}

.color-accent01 {
  color: #65B729 !important;
}

.color-blue {
  color: #3598C4 !important;
}

.color-yellow {
  color: #F7B123 !important;
}

.color-orange {
  color: #FF8A34 !important;
}

.color-caution {
  color: red !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.align-l {
  text-align: left;
}
@media (max-width: 1199px) {
  .align-l-xl {
    text-align: left;
  }
}
@media (max-width: 1023px) {
  .align-l-lg {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .align-l-md {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .align-l-sm {
    text-align: left;
  }
}

.align-c {
  text-align: center;
}
@media (max-width: 1199px) {
  .align-c-xl {
    text-align: center;
  }
}
@media (max-width: 1023px) {
  .align-c-lg {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .align-c-md {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .align-c-sm {
    text-align: center;
  }
}

.align-r {
  text-align: right;
}
@media (max-width: 1199px) {
  .align-r-xl {
    text-align: right;
  }
}
@media (max-width: 1023px) {
  .align-r-lg {
    text-align: right;
  }
}
@media (max-width: 767px) {
  .align-r-md {
    text-align: right;
  }
}
@media (max-width: 575px) {
  .align-r-sm {
    text-align: right;
  }
}

.pos-r {
  position: relative;
}

.box-shadow {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.bg-blue-pattern01 {
  background: repeating-linear-gradient(-45deg, #0171bb, #0171bb 10px, #0674bc 0, #0674bc 20px);
}

.none {
  display: none;
}
@media (max-width: 1199px) {
  .none-xl {
    display: none;
  }
}
@media (max-width: 1023px) {
  .none-lg {
    display: none;
  }
}
@media (max-width: 767px) {
  .none-md {
    display: none;
  }
}
@media (max-width: 575px) {
  .none-sm {
    display: none;
  }
}

.block {
  display: block;
}
@media (max-width: 1199px) {
  .block-xl {
    display: block;
  }
}
@media (max-width: 1023px) {
  .block-lg {
    display: block;
  }
}
@media (max-width: 767px) {
  .block-md {
    display: block;
  }
}
@media (max-width: 575px) {
  .block-sm {
    display: block;
  }
}

/* margin padding gap
-----------------------------------------------------*/
.mt-0 {
  margin-top: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.pt-10 {
  padding-top: 1rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.pb-10 {
  padding-bottom: 1rem !important;
}

.ml-10 {
  margin-left: 1rem !important;
}

.pl-10 {
  padding-left: 1rem !important;
}

.mr-10 {
  margin-right: 1rem !important;
}

.pr-10 {
  padding-right: 1rem !important;
}

.mt-15 {
  margin-top: 1.5rem !important;
}

.pt-15 {
  padding-top: 1.5rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.pb-15 {
  padding-bottom: 1.5rem !important;
}

.ml-15 {
  margin-left: 1.5rem !important;
}

.pl-15 {
  padding-left: 1.5rem !important;
}

.mr-15 {
  margin-right: 1.5rem !important;
}

.pr-15 {
  padding-right: 1.5rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.pt-20 {
  padding-top: 2rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.pb-20 {
  padding-bottom: 2rem !important;
}

.ml-20 {
  margin-left: 2rem !important;
}

.pl-20 {
  padding-left: 2rem !important;
}

.mr-20 {
  margin-right: 2rem !important;
}

.pr-20 {
  padding-right: 2rem !important;
}

.mt-25 {
  margin-top: 2.5rem !important;
}

.pt-25 {
  padding-top: 2.5rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.pb-25 {
  padding-bottom: 2.5rem !important;
}

.ml-25 {
  margin-left: 2.5rem !important;
}

.pl-25 {
  padding-left: 2.5rem !important;
}

.mr-25 {
  margin-right: 2.5rem !important;
}

.pr-25 {
  padding-right: 2.5rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.pt-30 {
  padding-top: 3rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.pb-30 {
  padding-bottom: 3rem !important;
}

.ml-30 {
  margin-left: 3rem !important;
}

.pl-30 {
  padding-left: 3rem !important;
}

.mr-30 {
  margin-right: 3rem !important;
}

.pr-30 {
  padding-right: 3rem !important;
}

.mt-35 {
  margin-top: 3.5rem !important;
}

.pt-35 {
  padding-top: 3.5rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.pb-35 {
  padding-bottom: 3.5rem !important;
}

.ml-35 {
  margin-left: 3.5rem !important;
}

.pl-35 {
  padding-left: 3.5rem !important;
}

.mr-35 {
  margin-right: 3.5rem !important;
}

.pr-35 {
  padding-right: 3.5rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.pt-40 {
  padding-top: 4rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.pb-40 {
  padding-bottom: 4rem !important;
}

.ml-40 {
  margin-left: 4rem !important;
}

.pl-40 {
  padding-left: 4rem !important;
}

.mr-40 {
  margin-right: 4rem !important;
}

.pr-40 {
  padding-right: 4rem !important;
}

.mt-45 {
  margin-top: 4.5rem !important;
}

.pt-45 {
  padding-top: 4.5rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.pb-45 {
  padding-bottom: 4.5rem !important;
}

.ml-45 {
  margin-left: 4.5rem !important;
}

.pl-45 {
  padding-left: 4.5rem !important;
}

.mr-45 {
  margin-right: 4.5rem !important;
}

.pr-45 {
  padding-right: 4.5rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.pt-50 {
  padding-top: 5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.pb-50 {
  padding-bottom: 5rem !important;
}

.ml-50 {
  margin-left: 5rem !important;
}

.pl-50 {
  padding-left: 5rem !important;
}

.mr-50 {
  margin-right: 5rem !important;
}

.pr-50 {
  padding-right: 5rem !important;
}

.mt-60 {
  margin-top: 6rem !important;
}

.pt-60 {
  padding-top: 6rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.pb-60 {
  padding-bottom: 6rem !important;
}

.ml-60 {
  margin-left: 6rem !important;
}

.pl-60 {
  padding-left: 6rem !important;
}

.mr-60 {
  margin-right: 6rem !important;
}

.pr-60 {
  padding-right: 6rem !important;
}

.mt-70 {
  margin-top: 7rem !important;
}

.pt-70 {
  padding-top: 7rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.pb-70 {
  padding-bottom: 7rem !important;
}

.ml-70 {
  margin-left: 7rem !important;
}

.pl-70 {
  padding-left: 7rem !important;
}

.mr-70 {
  margin-right: 7rem !important;
}

.pr-70 {
  padding-right: 7rem !important;
}

.mt-80 {
  margin-top: 8rem !important;
}

.pt-80 {
  padding-top: 8rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.pb-80 {
  padding-bottom: 8rem !important;
}

.ml-80 {
  margin-left: 8rem !important;
}

.pl-80 {
  padding-left: 8rem !important;
}

.mr-80 {
  margin-right: 8rem !important;
}

.pr-80 {
  padding-right: 8rem !important;
}

.mt-100 {
  margin-top: 10rem !important;
}

.pt-100 {
  padding-top: 10rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

.pb-100 {
  padding-bottom: 10rem !important;
}

.ml-100 {
  margin-left: 10rem !important;
}

.pl-100 {
  padding-left: 10rem !important;
}

.mr-100 {
  margin-right: 10rem !important;
}

.pr-100 {
  padding-right: 10rem !important;
}

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
.m-auto {
  margin: 0 auto;
}

/*header
-----------------------------------------------------*/
#header {
  position: relative;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  background: #414141;
  color: #fff;
}
.header-wrap {
  height: 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .header-wrap {
    height: inherit;
    padding: 2rem 3rem;
  }
}
@media (max-width: 575px) {
  .header-wrap {
    padding: 2rem;
  }
}
@media (max-width: 1199px) {
  .header-wrap .head-contact-box {
    display: flex;
    margin-right: 6rem;
    gap: 0 2rem;
  }
}
@media (max-width: 575px) {
  .header-wrap .head-contact-box {
    gap: 0 1.5rem;
  }
}
.header-wrap .head-contact-box a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  width: 12.4rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .header-wrap .head-contact-box a {
    flex-direction: column;
    width: auto;
    height: auto;
    gap: 0.5rem 0;
  }
}
@media (max-width: 575px) {
  .header-wrap .head-contact-box a {
    font-size: 0.9rem;
  }
}
.header-wrap .head-contact-box a span {
  margin-right: 0.8rem;
  line-height: 0;
}
@media (max-width: 1199px) {
  .header-wrap .head-contact-box a span {
    margin-right: 0;
  }
}
.header-wrap .head-contact-box a span img {
  vertical-align: middle;
}
@media (max-width: 1199px) {
  .header-wrap .head-contact-box a span img {
    width: 25px;
  }
}
@media (max-width: 575px) {
  .header-wrap .head-contact-box a span img {
    width: 16px;
  }
}
.header-wrap .head-contact-box .register {
  background: #65B729;
}
@media (max-width: 1199px) {
  .header-wrap .head-contact-box .register {
    background: transparent;
  }
}
.header-wrap .head-contact-box .login,
.header-wrap .head-contact-box .mypage {
  display: none;
  background: #3598C4;
}
@media (max-width: 1199px) {
  .header-wrap .head-contact-box .login,
  .header-wrap .head-contact-box .mypage {
    background: transparent;
  }
}
.header-wrap .head-contact-box .active {
  display: flex;
}
.header-logo {
  margin: 0 4rem 0 6rem;
  line-height: 1;
}
@media (max-width: 1599px) {
  .header-logo {
    margin: 0 auto 0 2rem;
  }
}
.header-logo a {
  color: #fff;
  text-decoration: none;
}
.header-logo img {
  width: 308px;
  height: auto;
}
@media (max-width: 575px) {
  .header-logo img {
    width: 165px;
  }
}
@media (max-width: 1023px) {
  .header-logo {
    margin-left: 2rem;
  }
}
@media (max-width: 950px) {
  .header-logo {
    margin-left: 0;
  }
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-right: 3rem;
  margin-left: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0 4rem;
}
.header-nav > li {
  position: relative;
}
.header-nav > li > a {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.header-nav > li > a::before {
  position: absolute;
  bottom: 0;
  left: 10px;
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #65B729;
  transition: 0.2s ease;
}
.header-nav > li > a:hover {
  opacity: 1;
}
.header-nav > li > a:hover::before {
  width: calc(100% - 20px);
}
.header-nav .menu-item-has-children {
  position: relative;
  margin-right: 2rem;
}
.header-nav .menu-item-has-children::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -3px;
  bottom: 0;
  right: -20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg);
}
.header-nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.header-nav .menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  min-width: 240px;
  background: #65B729;
  transform: translateY(10px);
  padding: 2rem;
}
.header-nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  padding: 1rem;
}
.header-nav .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header-nav .menu-item-has-children:last-of-type .sub-menu {
  right: 0;
}
@media (max-width: 1199px) {
  .header-inner {
    display: none;
  }
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #414141;
}

/*sp-header
-----------------------------------------------------*/
.sp-header-inner {
  display: none;
  background: #fff;
}
@media (max-width: 1199px) {
  .sp-header-inner {
    position: relative;
    display: block;
    padding: 1rem;
    box-sizing: border-box;
    z-index: 2;
  }
  .sp-header-inner .header-logo {
    line-height: 1;
  }
}

.sp-header-inner.sp-page-header {
  box-shadow: 0px 5px 18px -6px #d6d6d6;
}

.sp-header-nav {
  display: none;
}
@media (max-width: 1199px) {
  .sp-header-nav {
    display: block;
  }
}
.sp-header-nav .header-logo {
  padding: 2rem;
  box-sizing: border-box;
  background: #414141;
  margin: 0;
}
.sp-header-nav .header-logo a {
  display: block;
}

/* hamburger-menu */
.hamburger {
  display: block;
  position: fixed;
  z-index: 30;
  right: 20px;
  top: 33px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  z-index: 10001;
}
@media (max-width: 575px) {
  .hamburger {
    top: 18px;
  }
}
.hamburger.active {
  top: 33px;
}
@media (max-width: 575px) {
  .hamburger.active {
    top: 18px;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* open */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #65B729;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #65B729;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  /*background: linear-gradient(135deg, rgb(5, 37, 184) 0%, rgb(14, 99, 201) 98%);*/
  background: #fff;
  width: 100%;
  transform: translateY(-100%);
  transition: all 0.6s;
  height: 100%;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}

.sp-head-contact-box {
  display: flex;
}
.sp-head-contact-box a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  width: 50%;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-head-contact-box a span {
  max-width: 16px;
  margin-right: 0.8rem;
  line-height: 0;
}
.sp-head-contact-box a span img {
  vertical-align: middle;
}
.sp-head-contact-box .register {
  background: #65B729;
}
.sp-head-contact-box .login {
  background: #3598C4;
}

.sp-header-nav_list {
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
  border-top: solid 1px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.sp-header-nav_list li {
  padding: 0 1rem;
  list-style-type: none;
  width: 100%;
  transition: 0.4s all;
  font-size: 1.5rem;
  font-weight: bold;
  box-sizing: border-box;
}
.sp-header-nav_list li:last-child {
  padding-bottom: 0;
}
.sp-header-nav_list li a {
  display: block;
  color: #333;
  font-size: 1.6rem;
  padding: 2rem 0;
  text-decoration: none;
}
.sp-header-nav_list li a:hover {
  opacity: 1;
}
.sp-header-nav_list li.menu-item-has-children {
  position: relative;
}
.sp-header-nav_list li.menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.sp-header-nav_list li .sub-menu {
  display: none;
}
.sp-header-nav_list li .sub-menu li {
  padding-left: 1rem;
  font-size: 1.3rem;
}
.sp-header-nav_list li .sub-menu li a {
  transition: 0.3s linear;
  padding: 1rem 0;
  font-weight: normal;
}
.sp-header-nav_list .accordion-btn {
  display: block;
  width: 40px;
  height: 68px;
  position: absolute;
  top: 0;
  right: 0;
}
.sp-header-nav_list .accordion-btn::before, .sp-header-nav_list .accordion-btn::after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #65B729;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 1px;
  transform: translate(-50%, -50%);
}
.sp-header-nav_list .accordion-btn::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sp-header-nav_list .accordion-btn.active::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateY(0%);
  z-index: 10000;
}

/*footer
-----------------------------------------------------*/
.footer-contact {
  width: 100%;
  text-align: center;
  background: #fff;
  border-top: 1px solid #DFDFDF;
}
.footer-contact__box {
  max-width: 1200px;
  padding: 7.5rem 5% 10rem 5%;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .footer-contact__box {
    padding: 5rem 2rem 6rem 2rem;
  }
}
.footer-contact__box h2 {
  position: relative;
  font-size: 3rem;
  color: #000;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .footer-contact__box h2 {
    font-size: 2.2rem;
  }
}
.footer-contact__box h2::before {
  content: "";
  background: #65B729;
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 2px;
}
.footer-contact__box-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-contact__box-btn .btn-5,
.footer-contact__box-btn .btn-6 {
  margin-top: 0;
}
.footer-contact__box-btn .btn-5 a,
.footer-contact__box-btn .btn-6 a {
  width: 360px;
}
@media (max-width: 575px) {
  .footer-contact__box-btn .btn-5 a,
  .footer-contact__box-btn .btn-6 a {
    width: 300px;
  }
}

.footer-box {
  padding: 6rem 0 15rem 0;
  background: #414141;
}
@media (max-width: 767px) {
  .footer-box {
    padding: 6rem 0 5rem 0;
  }
}
.footer-box a {
  display: block;
  padding: 0.5rem 0;
  color: #fff;
  text-decoration: none;
}

.footer-link {
  gap: 2rem 12rem;
}
@media (max-width: 865px) {
  .footer-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem 4%;
  }
}
.footer-link ul {
  font-size: 1.3rem;
  font-weight: bold;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
@media (max-width: 865px) {
  .footer-link ul {
    font-size: 1.2rem;
    box-sizing: border-box;
  }
}
@media (max-width: 865px) {
  .footer-link ul li {
    width: 100%;
  }
}
.footer-link ul .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.footer-link .sub-menu {
  display: block;
  margin-bottom: 2rem;
}
@media (max-width: 865px) {
  .footer-link .sub-menu {
    width: 100%;
  }
}
.footer-link .sub-menu li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.2rem;
  line-height: 2;
}
.footer-link .sub-menu li::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 1px;
  left: 0;
  top: 50%;
  margin-top: -1px;
  background: #DFDFDF;
}

.footer-sns-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2.5rem 0;
}
@media (max-width: 865px) {
  .footer-sns-wrap {
    margin-top: 0;
    display: block;
    width: 100%;
  }
}
.footer-sns-wrap .footer-sns ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 865px) {
  .footer-sns-wrap .footer-sns ul li {
    width: initial;
  }
}
.footer-sns-wrap .footer-sns ul img {
  width: 30px;
  height: auto;
}
.footer-sns-wrap .footer-btn {
  display: flex;
  align-items: center;
}
@media (max-width: 865px) {
  .footer-sns-wrap .footer-btn {
    margin-top: 2rem;
  }
}
.footer-sns-wrap .footer-btn a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  width: 11rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-sns-wrap .footer-btn a {
    width: 50%;
  }
}
.footer-sns-wrap .footer-btn a span {
  max-width: 16px;
  margin-right: 0.8rem;
  line-height: 0;
}
.footer-sns-wrap .footer-btn a span img {
  vertical-align: middle;
}
.footer-sns-wrap .footer-btn .register {
  background: #65B729;
}
.footer-sns-wrap .footer-btn .login {
  background: #3598C4;
}

.top-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  background: #65B729;
  bottom: 70px;
  right: 20px;
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 767px) {
  .top-btn {
    position: relative;
    width: 100%;
    margin-bottom: 9.3rem;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 575px) {
  .top-btn {
    margin-bottom: 8.14rem;
  }
}
.top-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 3px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.copy-wrap {
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 575px) {
  .copy-wrap {
    display: block;
    font-size: 1rem;
  }
}
.copy-wrap .copy {
  color: #fff;
}
@media (max-width: 575px) {
  .copy-wrap .copy {
    margin-bottom: 1rem;
  }
}
.copy-wrap-link {
  display: flex;
  align-items: center;
  gap: 0 1rem;
}

#footer-fix-btn {
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  bottom: -9.7rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 4rem;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s;
  z-index: 2;
}
@media (max-width: 767px) {
  #footer-fix-btn {
    z-index: 999;
  }
}
@media (max-width: 575px) {
  #footer-fix-btn {
    bottom: -8.14rem;
    padding: 1.4rem 2rem;
    gap: 2%;
  }
}
#footer-fix-btn.is-show {
  bottom: 0;
}
#footer-fix-btn .btn-5,
#footer-fix-btn .btn-6 {
  margin-top: 0;
}
#footer-fix-btn .btn-5 a,
#footer-fix-btn .btn-6 a {
  width: 360px;
}
@media (max-width: 900px) {
  #footer-fix-btn .btn-5 a,
  #footer-fix-btn .btn-6 a {
    width: 280px;
    font-size: 1.3rem;
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 575px) {
  #footer-fix-btn .btn-5 a,
  #footer-fix-btn .btn-6 a {
    width: 100%;
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 575px) {
  #footer-fix-btn .btn-5 {
    width: 35%;
  }
}
@media (max-width: 575px) {
  #footer-fix-btn .btn-6 {
    width: 63%;
  }
}

/*page-common
-----------------------------------------------------*/
.container-sm {
  max-width: 720px;
  padding: 0 5%;
  margin: 0 auto;
}

.container-md {
  max-width: 960px;
  padding: 0 5%;
  margin: 0 auto;
}

.container-ex {
  max-width: 780px;
  padding: 0 5%;
  margin: 0 auto;
}

.container-lg {
  max-width: 1200px;
  padding: 0 5%;
  margin: 0 auto;
}

.container-xl {
  max-width: 1400px;
  padding: 0 5%;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-ex,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
.page-common-sec h2 {
  position: relative;
  font-size: 2.8rem;
  line-height: 1.6;
  margin: 4rem 0 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #333333;
}
.page-common-sec h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 50px;
  border-bottom: 2px solid #65B729;
}
@media (max-width: 575px) {
  .page-common-sec h2 {
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    padding-bottom: 0.5rem;
  }
}
.page-common-sec h3 {
  margin: 4rem 0 3rem 0;
  font-size: 2.4rem;
  line-height: 1.6;
  padding: 0 2rem;
  border-left: 2px solid #65B729;
}
@media (max-width: 575px) {
  .page-common-sec h3 {
    font-size: 2rem;
    margin: 3rem 0 2rem 0;
  }
}
.page-common-sec h4 {
  font-size: 2rem;
  line-height: 1.6;
  margin: 4rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333333;
}
@media (max-width: 575px) {
  .page-common-sec h4 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
  }
}
.page-common-sec h5 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 4rem 0 1.5rem;
  color: #65B729;
}
@media (max-width: 575px) {
  .page-common-sec h5 {
    font-size: 1.6rem;
    margin: 3rem 0 1rem 0;
  }
}

/*section*/
.top-section {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .top-section {
    padding: 8rem 0;
  }
}
@media (max-width: 575px) {
  .top-section {
    padding: 6rem 0;
  }
}
.top-section .h2-bottom-p {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .top-section .h2-bottom-p {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .top-section .h2-bottom-p {
    font-size: 1.8rem;
  }
}
.top-section .h2-bottom-p strong {
  font-size: 3.4rem;
}
@media (max-width: 1023px) {
  .top-section .h2-bottom-p strong {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .top-section .h2-bottom-p strong {
    font-size: 2rem;
  }
}
.top-section .h2-bottom-p strong span {
  color: #65B729;
}

.page-section {
  padding-top: 10rem;
}
.page-section:last-of-type {
  padding-bottom: 10rem;
}
@media (max-width: 575px) {
  .page-section:last-of-type {
    padding-bottom: 6rem;
  }
}
@media (max-width: 575px) {
  .page-section {
    padding-top: 6rem;
  }
}
.page-section:first-child {
  padding-top: 4rem;
}
@media (max-width: 575px) {
  .page-section:first-child {
    padding-top: 2rem;
  }
}
.page-section p + p {
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .page-section p + p {
    margin-top: 2rem;
  }
}
.page-section.block-sec a {
  color: #65B729;
}
.page-section iframe {
  width: 100%;
}

.wp-block-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
@media (max-width: 575px) {
  .wp-block-table {
    border-top: 1px solid #DFDFDF;
    border-right: 1px solid #DFDFDF;
    border-left: 1px solid #DFDFDF;
  }
}
.wp-block-table tr td:first-child {
  background: #F3F3F3;
}
.wp-block-table td,
.wp-block-table th {
  border-collapse: collapse;
}
.wp-block-table td,
.wp-block-table th {
  padding: 1.5rem 2rem;
  text-align: left;
  border: 1px solid #DFDFDF;
}
@media (max-width: 575px) {
  .wp-block-table td,
  .wp-block-table th {
    display: block;
  }
}
@media (max-width: 575px) {
  .wp-block-table td {
    font-size: 1.4rem;
    border-right: none;
    border-left: none;
  }
}

iframe.wp-embedded-content {
  width: 100%;
}

/* section-bg */
.all-background-r {
  position: relative;
  margin-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 575px) {
  .all-background-r {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }
}
.all-background-r::before {
  content: "";
  background: #f3f3f3;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  border-top-right-radius: 20rem;
}
@media (max-width: 767px) {
  .all-background-r::before {
    border-top-right-radius: 10rem;
  }
}

.all-background-l {
  position: relative;
  margin-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 575px) {
  .all-background-l {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }
}
.all-background-l::before {
  content: "";
  background: #f3f3f3;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  border-top-left-radius: 20rem;
}
@media (max-width: 767px) {
  .all-background-l::before {
    border-top-left-radius: 10rem;
  }
}

.bg-t-r-radius-s {
  position: relative;
  margin-top: 10rem;
}
.bg-t-r-radius-s::before {
  content: "";
  background: #f3f3f3;
  position: absolute;
  width: 100%;
  height: 30%;
  top: 0;
  z-index: -1;
  border-top-right-radius: 20rem;
}
@media (max-width: 767px) {
  .bg-t-r-radius-s::before {
    border-top-right-radius: 10rem;
  }
}

/* box */
.box-case01 {
  padding: 4.5rem;
  background: #F3F3F3;
  box-sizing: border-box;
  margin: 3rem auto;
}
@media (max-width: 575px) {
  .box-case01 {
    padding: 3rem 2rem;
    margin: 2rem auto;
  }
}
.box-case01 ul {
  padding-left: 2rem;
}
.box-case01 ul li {
  font-weight: bold;
}
.box-case01 ul li::before {
  top: 12px;
}

.box-case02 {
  padding: 4.5rem;
  border: 1px solid #DFDFDF;
  box-sizing: border-box;
  margin: 3rem auto;
}
@media (max-width: 575px) {
  .box-case02 {
    padding: 3rem 2rem;
    margin: 2rem auto;
  }
}
.box-case02 ul {
  padding-left: 2rem;
}
.box-case02 ul li {
  font-weight: bold;
}
.box-case02 ul li::before {
  top: 12px;
}

/* parts */
.roboto {
  font-family: "Roboto", sans-serif;
}

a:hover {
  opacity: 0.6;
}

.br-sm {
  display: none;
}
@media (max-width: 575px) {
  .br-sm {
    display: block;
  }
}

/*form reset*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

/*ul*/
ul.list-style-disc li {
  position: relative;
}
ul.list-style-disc li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -12px;
  top: 10px;
  width: 3px;
  height: 3px;
  background: #333333;
  border-radius: 5px;
}

ul.list-style-num {
  list-style: decimal;
  padding-left: 2rem;
}

/* btn */
.btn-1 {
  margin-top: 4.5rem;
}
.btn-1 a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #65B729;
  position: relative;
  background: #fff;
  border: 1px solid #65B729;
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem 6rem;
  display: inline-block;
  box-sizing: border-box;
}
.btn-1 a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #65B729;
  border-bottom: 2px solid #65B729;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  right: 20px;
}

.btn-2 {
  margin-top: 4.5rem;
}
.btn-2 a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  position: relative;
  background: #65B729;
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem 6rem;
  width: 300px;
  display: inline-block;
  box-sizing: border-box;
}
.btn-2 a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  right: 20px;
}

.btn-3 {
  margin-top: 4.5rem;
}
.btn-3 a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  position: relative;
  background: #3598C4;
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem 6rem;
  width: 300px;
  display: inline-block;
  box-sizing: border-box;
}
.btn-3 a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  right: 20px;
}

.btn-4 {
  margin-top: 4.5rem;
}
.btn-4 a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #65B729;
  position: relative;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem 6rem;
  width: 300px;
  display: inline-block;
  box-sizing: border-box;
}
.btn-4 a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #65B729;
  border-bottom: 2px solid #65B729;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  right: 20px;
}

.btn-5 {
  margin-top: 4.5rem;
}
.btn-5 a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  position: relative;
  background: #65B729;
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem 6rem;
  width: 300px;
  display: inline-block;
  box-sizing: border-box;
}
.btn-5 a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  right: 20px;
}

.btn-6 {
  margin-top: 4.5rem;
}
.btn-6 a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  position: relative;
  background: #FF8A34;
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem 6rem;
  width: 300px;
  display: inline-block;
  box-sizing: border-box;
}
.btn-6 a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  right: 20px;
}

.btn-7 {
  margin-top: 4.5rem;
}
.btn-7 a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #3598C4;
  position: relative;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem 6rem;
  width: 300px;
  display: inline-block;
  box-sizing: border-box;
}
.btn-7 a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #3598C4;
  border-bottom: 2px solid #3598C4;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  right: 20px;
}

h2.h2-title01 {
  color: #333333;
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  h2.h2-title01 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 575px) {
  h2.h2-title01 {
    font-size: 2.4rem;
  }
}
h2.h2-title01 .ja {
  width: 100%;
  position: relative;
  display: inline-block;
  margin-bottom: 3.5rem;
}
h2.h2-title01 .ja::before, h2.h2-title01 .ja::after {
  position: absolute;
  content: "";
  bottom: -16px;
  left: 50%;
  width: 50px;
  height: 3px;
  background: #414141;
}
h2.h2-title01 .ja::before {
  transform: translateX(-50%);
}
h2.h2-title01 .ja::after {
  width: 25px;
  background: #65B729;
}
h2.h2-title01 .en {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  color: #838383;
}
h2.h2-title02 {
  color: #333333;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 5rem;
  display: flex;
  align-items: baseline;
}
@media (max-width: 1023px) {
  h2.h2-title02 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 575px) {
  h2.h2-title02 {
    font-size: 2.4rem;
    flex-wrap: wrap;
  }
}
h2.h2-title02 .ja {
  position: relative;
  display: inline-block;
  margin-bottom: 3.5rem;
  margin-right: 3rem;
}
@media (max-width: 575px) {
  h2.h2-title02 .ja {
    width: 100%;
  }
}
h2.h2-title02 .ja::before, h2.h2-title02 .ja::after {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 25px;
  width: 50px;
  height: 3px;
  background: #414141;
}
@media (max-width: 575px) {
  h2.h2-title02 .ja::before, h2.h2-title02 .ja::after {
    bottom: -16px;
    left: 25px;
  }
}
h2.h2-title02 .ja::before {
  transform: translateX(-50%);
}
h2.h2-title02 .ja::after {
  width: 25px;
  background: #65B729;
}
h2.h2-title02 .en {
  font-size: 1.4rem;
  font-weight: 400;
  color: #838383;
}
h2.h2-title03 {
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
h2.h2-title03 .ja {
  font-size: 3.4rem;
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  h2.h2-title03 .ja {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  h2.h2-title03 .ja {
    font-size: 2.2rem;
  }
}
h2.h2-title03 .en {
  font-size: 1.6rem;
  font-weight: 400;
  display: inline-block;
  width: 100%;
  color: #65B729;
}

h3.h3-title01 {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  h3.h3-title01 {
    font-size: 2.6rem;
    margin-bottom: 4rem;
  }
}
h3.h3-title02 {
  font-size: 2.8rem;
  text-align: center;
  position: relative;
  margin-bottom: 2.5rem;
}
@media (max-width: 575px) {
  h3.h3-title02 {
    font-size: 2.2rem;
  }
}
h3.h3-title02::after {
  position: absolute;
  content: "";
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: #65B729;
}
h3.h3-title02 strong {
  color: #65B729;
}
h3.h3-title03 {
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  padding-left: 2rem;
  margin-top: 3rem;
}
h3.h3-title03::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #65B729;
}
h3.h3-title04 {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  padding: 0 4.5rem;
  display: inline-block;
  line-height: 1.4;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  h3.h3-title04 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
h3.h3-title04::first-letter {
  color: #65B729;
}
h3.h3-title04::before, h3.h3-title04::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #65B729;
}
h3.h3-title04::before {
  left: 0;
}
h3.h3-title04::after {
  right: 0;
}

.h3-title04-wrap {
  text-align: center;
}

.h3-wrap {
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .h3-wrap {
    margin-bottom: 2rem;
  }
}
.h3-wrap .en {
  display: inline-block;
  font-size: 1.4rem;
  color: #65B729;
  position: relative;
  padding-right: 2.5rem;
  font-weight: bold;
}
.h3-wrap .en::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
  right: 0;
}
.h3-wrap h3 {
  font-size: 2.2rem;
}

h4.h4-title01 {
  font-size: 2rem;
  color: #65B729;
  position: relative;
  display: inline-block;
  padding-left: 3rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  h4.h4-title01 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
}
h4.h4-title01::before {
  content: "";
  background: #65B729;
  position: absolute;
  top: 1.6rem;
  display: inline-block;
  width: 2rem;
  height: 1px;
  left: 0;
}
@media (max-width: 767px) {
  h4.h4-title01::before {
    top: 1.3rem;
  }
}

.h3-wrap-02 {
  text-align: center;
  margin: 4rem 0;
}
@media (max-width: 575px) {
  .h3-wrap-02 {
    margin: 3rem 0;
  }
}
.h3-wrap-02-num {
  font-size: 3rem;
  color: #65B729;
  font-weight: bold;
  position: relative;
  padding: 0 2.5rem;
  display: inline-block;
  line-height: 1;
}
.h3-wrap-02-num::before, .h3-wrap-02-num::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
}
.h3-wrap-02-num::before {
  left: 0;
}
.h3-wrap-02-num::after {
  right: 0;
}
.h3-wrap-02 h3 {
  line-height: 1.6;
}
.h3-wrap-02 h3 .ja {
  width: 100%;
  display: inline-block;
  font-size: 3rem;
}
@media (max-width: 575px) {
  .h3-wrap-02 h3 .ja {
    font-size: 2.2rem;
  }
}
.h3-wrap-02 h3 .en {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  color: #838383;
}

h1 + h2,
h2 + h3,
h3 + h4 {
  margin-top: 0 !important;
}

.tilte-sub-text {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  margin-top: -1rem;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .tilte-sub-text {
    font-size: 2.2rem;
    margin-bottom: 5rem;
  }
}

.video-wrapper {
  line-height: 0;
}
.video-wrapper iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.tbl {
  border-collapse: collapse;
}
.tbl th,
.tbl td {
  border: 1px solid;
  padding: 1.5rem;
  text-align: left;
}
.tbl th {
  white-space: nowrap;
}
.tbl thead th {
  background: #333333;
  color: #fff;
}
/* img */
.img-all-radius {
  border-radius: 20px;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .img-all-radius {
    margin-bottom: 2rem;
  }
}

.img-all-radius img {
  border-radius: 20px;
}

.img-t-r-radius img {
  border-top-right-radius: 3rem;
}

.img-t-l-radius img {
  border-top-left-radius: 3rem;
}

.border-light-gray {
  border: 1px solid #DFDFDF;
}

/*wp-block
-----------------------------------------------------*/
.wp-block-columns {
  margin-bottom: 5rem;
}
@media (max-width: 575px) {
  .wp-block-columns {
    margin-bottom: 3rem;
  }
}
.wp-block-columns figure {
  margin: 0 !important;
}

.wp-block-button {
  margin: 4rem 0 !important;
}

.wp-block-buttons {
  margin: 4rem;
  gap: 2rem;
}
.wp-block-buttons .wp-block-button {
  margin: 0 !important;
}

.wp-block-embed__wrapper {
  line-height: 0;
}
.wp-block-embed__wrapper iframe {
  width: 100%;
}
.wp-block-embed__wrapper iframe:not(.wp-embedded-content) {
  height: auto;
  aspect-ratio: 16/9;
}

/*search
-----------------------------------------------------*/
.search-block {
  border: 10px solid #ebfae0;
  margin-top: 5rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  /*メニュータブ*/
  /*共通ボタン*/
  /*共通見出し*/
  /*実際に表示されるエリアの部分*/
  /*都道府県から探す*/
  /*キーワード検索*/
}
.search-block .row {
  display: flex;
}
@media (max-width: 767px) {
  .search-block .row {
    flex-wrap: wrap;
  }
}
.search-block .search-menu {
  background: #ebfae0;
  padding: 0;
  flex: 0 0 25%;
  max-width: 25%;
}
@media (max-width: 767px) {
  .search-block .search-menu {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.search-block .flex-column {
  flex-direction: column !important;
}
.search-block .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.search-block .nav-pills .nav-link + .nav-link {
  margin-top: 0.5rem;
}
.search-block .nav-pills .nav-link {
  text-decoration: none;
  display: block;
  border-radius: 0;
  background: #65B729;
  padding: 2rem;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  position: relative;
  line-height: 0;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .search-block .nav-pills .nav-link {
    font-size: 1.2rem;
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .search-block .nav-pills .nav-link {
    font-size: 1.4rem;
  }
}
.search-block .nav-pills .nav-link .search-icon {
  fill: #fff;
}
.search-block .nav-pills .nav-link.active {
  background: #fff;
  color: #333;
}
.search-block .nav-pills .nav-link.active .search-icon {
  fill: #65B729;
}
.search-block .nav-pills .nav-link .sub {
  font-size: 1.4rem;
}
.search-block .nav-pills .nav-link .active-marker {
  display: flex;
  align-items: center;
  position: relative;
}
.search-block .nav-pills .nav-link .active-marker::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 26%;
  right: 0;
}
.search-block .nav-pills .nav-link .active-marker svg {
  margin-right: 1rem;
}
@media (max-width: 1023px) {
  .search-block .nav-pills .nav-link .active-marker svg {
    margin-right: 0.5rem;
  }
}
.search-block .link-btn {
  font-size: 1.4rem;
  display: inline-block;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: #f8f9fa;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  white-space: normal;
  cursor: pointer;
  margin-bottom: 0.5rem;
  border: 1px solid #dee2e6;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-align: left;
}
.search-block .link-btn:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.search-block .btn-group {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin: 0.25rem;
}
.search-block h6 {
  padding: 0 0 0.5rem 0;
  margin: 2rem 0 1.5rem 0;
  border-bottom: 1px solid #dee2e6;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 400;
}
.search-block .tab-content-wrap {
  position: relative;
  width: 100%;
  padding: 2.5rem;
  background: #fff;
}
.search-block .tab-content-wrap *,
.search-block .tab-content-wrap ::after,
.search-block .tab-content-wrap ::before {
  box-sizing: border-box;
}
.search-block .tab-content .tab-pane {
  display: none;
}
.search-block .tab-content .tab-pane.active {
  display: block;
}
.search-block .tab-content .tab-content > .tab-pane {
  display: none;
}
.search-block .tab-content .tab-content > .active {
  display: block;
}
.search-block a:hover {
  opacity: 1;
}
.search-block .tab-pane1 {
  display: flex;
}
@media (max-width: 1023px) {
  .search-block .tab-pane1 {
    flex-wrap: wrap;
  }
}
.search-block .japan-area-container-wrap {
  width: 66%;
}
@media (max-width: 1023px) {
  .search-block .japan-area-container-wrap {
    width: 100%;
  }
}
.search-block .japan-map-list-wrap {
  width: 33%;
  padding-left: 1.5rem;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .search-block .japan-map-list-wrap {
    width: 100%;
    padding-left: 0;
  }
}
.search-block #japan-area-container {
  position: relative;
}
.search-block #japan-area-container #japan-area-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.search-block #japan-area-container #japan-area-link .area-link {
  display: inline-block;
  position: absolute;
  border-radius: 4px;
  color: #fff;
  padding: 0.1rem 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search-block #japan-area-container #japan-area-link .area-link:hover {
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .search-block #japan-area-container #japan-area-link .area-link {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .search-block #japan-area-container #japan-area-link .area-link {
    font-size: 1.2rem;
  }
}
.search-block #japan-area-container #japan-area-link .hokkaidou {
  background: #4489ff;
  top: 10%;
  left: 60%;
}
.search-block #japan-area-container #japan-area-link .touhoku {
  background: #55c2e1;
  top: 44%;
  right: 15%;
}
.search-block #japan-area-container #japan-area-link .kantou {
  background: #fccb00;
  color: #666;
  top: 74%;
  right: 25%;
}
.search-block #japan-area-container #japan-area-link .chubu {
  background: #43a556;
  top: 50%;
  left: 45%;
}
.search-block #japan-area-container #japan-area-link .kinki {
  background: #f29f19;
  top: 60%;
  left: 28%;
}
.search-block #japan-area-container #japan-area-link .chugoku {
  background: #d82e16;
  top: 63%;
  left: 10%;
}
.search-block #japan-area-container #japan-area-link .shikoku {
  background: #e62080;
  top: 77%;
  left: 25%;
}
.search-block #japan-area-container #japan-area-link .kyushu {
  background: #ab549c;
  bottom: 0;
  left: 10%;
}
.search-block #japan-area-container #japan-map-base {
  position: relative;
  z-index: 0;
}
.search-block #japan-area-container #japan-map-base img {
  width: 100%;
  height: auto;
}
.search-block #japan-area-container #japan-map-img-hokkaidou,
.search-block #japan-area-container #japan-map-img-touhoku,
.search-block #japan-area-container #japan-map-img-kantou,
.search-block #japan-area-container #japan-map-img-chubu,
.search-block #japan-area-container #japan-map-img-kinki,
.search-block #japan-area-container #japan-map-img-shikoku,
.search-block #japan-area-container #japan-map-img-chugoku,
.search-block #japan-area-container #japan-map-img-kyushu {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.search-block #japan-area-container #japan-map-img-hokkaidou {
  background: url(../images/map/hokkaidou.png) no-repeat left top/contain;
  z-index: 1;
}
.search-block #japan-area-container #japan-map-img-touhoku {
  background: url(../images/map/touhoku.png) no-repeat left top/contain;
  z-index: 1;
}
.search-block #japan-area-container #japan-map-img-kantou {
  background: url(../images/map/kantou.png) no-repeat left top/contain;
  z-index: 1;
}
.search-block #japan-area-container #japan-map-img-chubu {
  background: url(../images/map/chubu.png) no-repeat left top/contain;
  z-index: 1;
}
.search-block #japan-area-container #japan-map-img-kinki {
  background: url(../images/map/kinki.png) no-repeat left top/contain;
  z-index: 1;
}
.search-block #japan-area-container #japan-map-img-chugoku {
  background: url(../images/map/chugoku.png) no-repeat left top/contain;
  z-index: 1;
}
.search-block #japan-area-container #japan-map-img-shikoku {
  background: url(../images/map/shikoku.png) no-repeat left top/contain;
  z-index: 1;
}
.search-block #japan-area-container #japan-map-img-kyushu {
  background: url(../images/map/kyushu.png) no-repeat left top/contain;
  z-index: 1;
}
.search-block #japan-map-list {
  padding: 1rem;
  margin-top: 2.4rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.search-block #japan-map-list .link-btn {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .search-block #japan-map-list .link-btn {
    font-size: 1.4rem;
  }
}
.search-block #japan-map-list .bg-secondary {
  background-color: #6c757d;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}
.search-block #japan-map-list .text-light {
  color: #f8f9fa;
}
.search-block #japan-map-list small {
  font-size: 80%;
  font-weight: 400;
}
.search-block #japan-map-list .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.search-block #japan-map-list .list-inline-item {
  display: inline-block;
}
.search-block #v-pills-6 .tab-pane-inner {
  padding: 7rem 10rem;
}
@media (max-width: 1023px) {
  .search-block #v-pills-6 .tab-pane-inner {
    padding: 10rem 6rem;
  }
}
@media (max-width: 767px) {
  .search-block #v-pills-6 .tab-pane-inner {
    padding: 4rem;
  }
}
.search-block #v-pills-6 .tab-pane-inner h6 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 0;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .search-block #v-pills-6 .tab-pane-inner h6 {
    font-size: 2rem;
  }
}
.search-block #v-pills-6 .tab-pane-inner h6 img {
  width: 23px;
  height: auto;
  margin-right: 1rem;
}
.search-block #v-pills-6 .tab-pane-inner input[type=search] {
  border: 1px solid #ccc;
  background: #fff;
  width: 100%;
  height: 5rem;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 6px;
}
.search-block #v-pills-6 .submit-box {
  margin: 3rem auto 0 auto;
  text-align: center;
}
.search-block #v-pills-6 .submit {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}
.search-block #v-pills-6 .submit::after {
  display: inline-block;
  position: absolute;
  right: 10%;
  top: 42%;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.search-block #v-pills-6 .submit .submit-btn {
  display: inline-block;
  width: 200px;
  padding: 2rem 4rem;
  color: #fff;
  background: #65B729;
  text-decoration: none;
  border-radius: 8px;
  line-height: 1;
  font-weight: bold;
  outline: none;
  border: none;
  font-size: 1.6rem;
  transition: 0.3s linear;
  cursor: pointer;
}
.search-block #v-pills-6 .submit .submit-btn:hover {
  opacity: 0.8;
}

.search-content {
  border: 1px solid #DFDFDF;
  margin-top: 5rem;
  background: #fff;
}
.search-content .row {
  display: flex;
}
@media (max-width: 767px) {
  .search-content .row {
    flex-wrap: wrap;
  }
}
.search-content .search-card__header {
  background: #F3F3F3;
  padding: 2rem;
  display: flex;
  align-items: center;
  font-weight: bold;
}
@media (max-width: 575px) {
  .search-content .search-card__header {
    padding: 1rem 2rem;
  }
}
.search-content .search-card__header:not(:first-child) {
  border-bottom: 1px solid #DFDFDF;
}
.search-content .search-card__header svg {
  margin-right: 1rem;
}
.search-content .search-card .search-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}
.search-content .search-card .search-card__list .btn-group label input {
  display: none;
}
.search-content .search-card .search-card__list .btn-group label span {
  font-size: 1.4rem;
  display: inline-block;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: #f8f9fa;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  white-space: normal;
  cursor: pointer;
  margin-bottom: 0.5rem;
  border: 1px solid #DFDFDF;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-align: left;
}
.search-content .search-card .search-card__list .btn-group label span:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.search-content .search-card .search-card__list .btn-group label input:checked + span {
  color: #fff;
  background: #3598C4;
  border: 1px solid #3598C4;
}
.search-content .search-card .japan-area-container-wrap {
  width: 66%;
}
@media (max-width: 1023px) {
  .search-content .search-card .japan-area-container-wrap {
    width: 100%;
  }
}
.search-content .search-card .japan-map-list-wrap {
  width: 33%;
  padding-left: 1.5rem;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .search-content .search-card .japan-map-list-wrap {
    width: 100%;
    padding-left: 0;
  }
}
.search-content .search-card #japan-area-container {
  position: relative;
}
.search-content .search-card #japan-area-container #japan-area-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.search-content .search-card #japan-area-container #japan-area-link .area-link {
  display: inline-block;
  position: absolute;
  border-radius: 4px;
  color: #fff;
  padding: 0.1rem 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.search-content .search-card #japan-area-container #japan-area-link .area-link:hover {
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .search-content .search-card #japan-area-container #japan-area-link .area-link {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .search-content .search-card #japan-area-container #japan-area-link .area-link {
    font-size: 1.2rem;
  }
}
.search-content .search-card #japan-area-container #japan-area-link .hokkaidou {
  background: #4489ff;
  top: 10%;
  left: 60%;
}
.search-content .search-card #japan-area-container #japan-area-link .touhoku {
  background: #55c2e1;
  top: 44%;
  right: 15%;
}
.search-content .search-card #japan-area-container #japan-area-link .kantou {
  background: #fccb00;
  color: #666;
  top: 74%;
  right: 25%;
}
.search-content .search-card #japan-area-container #japan-area-link .chubu {
  background: #43a556;
  top: 50%;
  left: 45%;
}
.search-content .search-card #japan-area-container #japan-area-link .kinki {
  background: #f29f19;
  top: 60%;
  left: 28%;
}
.search-content .search-card #japan-area-container #japan-area-link .chugoku {
  background: #d82e16;
  top: 63%;
  left: 10%;
}
.search-content .search-card #japan-area-container #japan-area-link .shikoku {
  background: #e62080;
  top: 77%;
  left: 25%;
}
.search-content .search-card #japan-area-container #japan-area-link .kyushu {
  background: #ab549c;
  bottom: 0;
  left: 10%;
}
.search-content .search-card #japan-area-container #japan-map-base {
  position: relative;
  z-index: 0;
}
.search-content .search-card #japan-area-container #japan-map-base img {
  width: 100%;
  height: auto;
}
.search-content .search-card #japan-area-container #japan-map-img-hokkaidou,
.search-content .search-card #japan-area-container #japan-map-img-touhoku,
.search-content .search-card #japan-area-container #japan-map-img-kantou,
.search-content .search-card #japan-area-container #japan-map-img-chubu,
.search-content .search-card #japan-area-container #japan-map-img-kinki,
.search-content .search-card #japan-area-container #japan-map-img-shikoku,
.search-content .search-card #japan-area-container #japan-map-img-chugoku,
.search-content .search-card #japan-area-container #japan-map-img-kyushu {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.search-content .search-card #japan-area-container #japan-map-img-hokkaidou {
  background: url(../images/map/hokkaidou.png) no-repeat left top/contain;
  z-index: 1;
}
.search-content .search-card #japan-area-container #japan-map-img-touhoku {
  background: url(../images/map/touhoku.png) no-repeat left top/contain;
  z-index: 1;
}
.search-content .search-card #japan-area-container #japan-map-img-kantou {
  background: url(../images/map/kantou.png) no-repeat left top/contain;
  z-index: 1;
}
.search-content .search-card #japan-area-container #japan-map-img-chubu {
  background: url(../images/map/chubu.png) no-repeat left top/contain;
  z-index: 1;
}
.search-content .search-card #japan-area-container #japan-map-img-kinki {
  background: url(../images/map/kinki.png) no-repeat left top/contain;
  z-index: 1;
}
.search-content .search-card #japan-area-container #japan-map-img-chugoku {
  background: url(../images/map/chugoku.png) no-repeat left top/contain;
  z-index: 1;
}
.search-content .search-card #japan-area-container #japan-map-img-shikoku {
  background: url(../images/map/shikoku.png) no-repeat left top/contain;
  z-index: 1;
}
.search-content .search-card #japan-area-container #japan-map-img-kyushu {
  background: url(../images/map/kyushu.png) no-repeat left top/contain;
  z-index: 1;
}
.search-content .search-card #japan-map-list {
  padding: 1rem;
  margin-top: 2.4rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.search-content .search-card #japan-map-list .link-btn {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .search-content .search-card #japan-map-list .link-btn {
    font-size: 1.4rem;
  }
}
.search-content .search-card #japan-map-list .bg-secondary {
  background-color: #6c757d;
  padding: 0.25rem 0.5rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}
.search-content .search-card #japan-map-list .text-light {
  color: #f8f9fa;
}
.search-content .search-card #japan-map-list small {
  font-size: 80%;
  font-weight: 400;
}
.search-content .search-card #japan-map-list .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.search-content .search-card #japan-map-list .list-inline-item {
  display: inline-block;
}
.search-content .search-card input[type=search] {
  border: 1px solid #ccc;
  background: #fff;
  width: 100%;
  height: 5rem;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .search-content .search-card input[type=search] {
    width: 100%;
  }
}
.search-content .submit-box {
  border-top: 1px solid #DFDFDF;
  text-align: center;
  padding: 2rem;
}
.search-content .submit {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}
.search-content .submit .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 2rem 4rem;
  color: #fff;
  background: #65B729;
  text-decoration: none;
  border-radius: 8px;
  line-height: 1;
  font-weight: bold;
  outline: none;
  border: none;
  font-size: 1.6rem;
  transition: 0.3s linear;
  cursor: pointer;
}
.search-content .submit .submit-btn:hover {
  opacity: 0.8;
}
.search-content .submit .submit-btn svg {
  margin-right: 1rem;
}

/*page-title
-----------------------------------------------------*/
.page-title {
  padding-top: 16rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-title {
    padding-top: 11rem;
  }
}
@media (max-width: 575px) {
  .page-title {
    padding-top: 12rem;
  }
}
.page-title-inner {
  padding: 18rem 0 10rem 0;
}
@media (max-width: 767px) {
  .page-title-inner {
    padding: 0 0 4rem 0;
  }
}
.page-title .page-title-bg {
  position: absolute;
  top: 16rem;
  right: 0;
  width: 53.125%;
  height: 350px;
  background: url(../images/page-title/page-title_common.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-top-left-radius: 100px;
}
@media (max-width: 767px) {
  .page-title .page-title-bg {
    position: static;
    width: 100%;
    height: 250px;
    border-top-left-radius: 60px;
    margin-top: 5rem;
    margin-left: 4rem;
  }
}
@media (max-width: 575px) {
  .page-title .page-title-bg {
    height: 160px;
    margin-top: 4rem;
    margin-left: 2rem;
  }
}
.page-title .page-seminar-title .page-title-bg {
  background-image: url(../images/page-title/page-title03.jpg);
}
.page-title .page-news-title .page-title-bg {
  background-image: url(../images/page-title/page-title06.jpg);
}
.page-title .page-glossary-title .page-title-bg {
  background-image: url(../images/page-title/page-title07.jpg);
}
.page-title .page-book-title .page-title-bg {
  background-image: url(../images/page-title/page-title08.jpg);
}
.page-title .page-openings-title .page-title-bg {
  background-image: url(../images/page-title/page-title12.jpg);
}
.page-title .page-interview-title .page-title-bg {
  background-image: url(../images/page-title/page-title13.jpg);
}
.page-title::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  width: 100%;
  border-top: 272px solid #414141;
  z-index: -999;
}
@media (max-width: 767px) {
  .page-title::after {
    top: 64px;
    border-top: 5px solid #414141;
  }
}
@media (max-width: 575px) {
  .page-title::after {
    top: 29.05px;
    border-top: 5px solid #414141;
  }
}
.page-title-h1 {
  position: relative;
}
.page-title-h1 h1 {
  font-size: 4.4rem;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .page-title-h1 h1 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .page-title-h1 h1 {
    font-size: 2.6rem;
  }
}
.page-title-h1 span {
  display: block;
}
.page-title-h1 .en {
  font-size: 1.8rem;
  text-transform: none;
  margin-top: 1.5rem;
}
@media (max-width: 1023px) {
  .page-title-h1 .en {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}
@media (max-width: 1023px) and (max-width: 575px) {
  .page-title-h1 .en {
    font-size: 1.4rem;
  }
}
.page-title-h1::before {
  content: "";
  position: absolute;
  top: -10rem;
  width: 3px;
  border-top: 60px solid #65B729;
}
@media (max-width: 767px) {
  .page-title-h1::before {
    top: -47px;
    border-top: 30px solid #65B729;
  }
}
@media (max-width: 575px) {
  .page-title-h1::before {
    top: -45px;
  }
}

/*breadcrumb
-----------------------------------------------------*/
#breadcrumb {
  font-size: 1.2rem;
  margin-top: 1rem;
  padding-bottom: 6rem;
}
@media (max-width: 1023px) {
  #breadcrumb {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  #breadcrumb {
    padding-bottom: 4rem;
  }
}
#breadcrumb.page-title-none {
  margin-top: 12rem;
  padding-bottom: 4rem;
}
@media (max-width: 1199px) {
  #breadcrumb.page-title-none {
    margin-top: 14rem;
  }
}
@media (max-width: 575px) {
  #breadcrumb.page-title-none {
    display: none;
  }
}
#breadcrumb.footer-breadcrumb {
  display: none;
}
@media (max-width: 575px) {
  #breadcrumb.footer-breadcrumb {
    display: block;
    padding-bottom: 2rem;
  }
}
#breadcrumb a {
  color: #333;
  text-decoration: none;
}
#breadcrumb .space {
  margin: 0 1.5rem;
  position: relative;
}
#breadcrumb .space::after {
  content: "・";
  position: absolute;
  left: -0.8rem;
}
#breadcrumb .current-item:last-of-type {
  color: #838383;
}
#breadcrumb br {
  display: none;
}

/*post-box
-----------------------------------------------------*/
/*post-box-1*/
.post-box-1-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.post-box-1-flex__one {
  width: calc(33.3333333333% - 2rem);
}
@media (max-width: 767px) {
  .post-box-1-flex__one {
    width: 100%;
  }
}
.post-box-1-flex__one a {
  text-decoration: none;
}
.post-box-1-flex__one img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-top-right-radius: 3rem;
}
.post-box-1-flex__one .textarea {
  position: relative;
  background: #fff;
  padding: 4rem 3rem 2.5rem 3rem;
}
@media (max-width: 1023px) {
  .post-box-1-flex__one .textarea {
    padding: 3rem 2rem 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .post-box-1-flex__one .textarea {
    padding: 4rem 3rem 2.5rem 3rem;
  }
}
.post-box-1-flex__one .textarea h3 {
  font-size: 1.8rem;
  position: absolute;
  background: #fff;
  padding: 3rem 3rem 1.5rem 3rem;
  left: 0;
  top: -4rem;
  width: 92%;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .post-box-1-flex__one .textarea h3 {
    font-size: 1.7rem;
    padding: 2rem 2rem 1.5rem 2rem;
    width: 95%;
  }
}
@media (max-width: 767px) {
  .post-box-1-flex__one .textarea h3 {
    padding: 3rem 3rem 1.5rem 3rem;
    width: 95%;
  }
}

/*post-box-2*/
.post-box-2-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.post-box-2-flex__one {
  width: calc(33.3333333333% - 2rem);
  border-top-right-radius: 3rem;
  background: #F3F3F3;
}
@media (max-width: 767px) {
  .post-box-2-flex__one {
    width: 100%;
  }
}
.post-box-2-flex__one a {
  text-decoration: none;
}
.post-box-2-flex__one img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-top-right-radius: 3rem;
}
.post-box-2-flex__one .textarea {
  padding: 3rem;
}
@media (max-width: 1023px) {
  .post-box-2-flex__one .textarea {
    padding: 2.5rem;
  }
}
.post-box-2-flex__one .textarea .post-date {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.post-box-2-flex__one .textarea .post-date .post-date-day {
  font-size: 1.4rem;
}
.post-box-2-flex__one .textarea .post-date .post-date-cat {
  color: #65B729;
  font-size: 1.2rem;
  border: 1px solid #65B729;
  border-radius: 3px;
  display: inline-block;
  padding: 0 1.5rem;
  margin-top: 0;
}
.post-box-2-flex__one .textarea h3 {
  font-size: 1.6rem;
}
.post-box-2-flex__one .textarea .post-excerpt {
  margin-top: 1rem;
  font-size: 1.3rem;
}

/*post-box-3*/
.post-box-3-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
@media (max-width: 767px) {
  .post-box-3-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.post-box-3-flex__one {
  width: calc(33.3333333333% - 2rem);
}
@media (max-width: 767px) {
  .post-box-3-flex__one {
    width: 100%;
  }
}
.post-box-3-flex__one a {
  text-decoration: none;
}
.post-box-3-flex__one img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-top-right-radius: 3rem;
}
.post-box-3-flex__one .textarea {
  position: relative;
  background: #fff;
  padding: 5rem 3rem 2.5rem 3rem;
}
@media (max-width: 1023px) {
  .post-box-3-flex__one .textarea {
    padding: 5rem 2rem 2rem 2rem;
  }
}
@media (max-width: 767px) {
  .post-box-3-flex__one .textarea {
    padding: 6rem 3rem 2.5rem 3rem;
  }
}
.post-box-3-flex__one .textarea .post-date-h3 {
  position: absolute;
  background: #fff;
  padding: 2.5rem 3rem 0 3rem;
  left: 0;
  top: -4rem;
  width: 92%;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .post-box-3-flex__one .textarea .post-date-h3 {
    padding: 2rem 2rem 1.5rem 2rem;
    width: 95%;
  }
}
@media (max-width: 767px) {
  .post-box-3-flex__one .textarea .post-date-h3 {
    padding: 3rem 3rem 1.5rem 3rem;
    width: 95%;
  }
}
.post-box-3-flex__one .textarea .post-date-h3 .post-date-day {
  font-size: 1.4rem;
}
.post-box-3-flex__one .textarea .post-date-h3 h3 {
  font-size: 1.8rem;
}
@media (max-width: 1023px) {
  .post-box-3-flex__one .textarea .post-date-h3 h3 {
    font-size: 1.7rem;
  }
}

/*post-box-4*/
.post-box-4-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 790px;
}
.post-box-4-flex__one {
  width: calc(50% - 1.5rem);
  border-top-right-radius: 3rem;
  background: #F3F3F3;
}
@media (max-width: 1023px) {
  .post-box-4-flex__one {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .post-box-4-flex__one {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 575px) {
  .post-box-4-flex__one {
    width: 100%;
  }
}
.post-box-4-flex__one a {
  text-decoration: none;
}
.post-box-4-flex__one img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-top-right-radius: 3rem;
}
.post-box-4-flex__one .textarea {
  padding: 3rem;
}
@media (max-width: 1023px) {
  .post-box-4-flex__one .textarea {
    padding: 2.5rem;
  }
}
.post-box-4-flex__one .textarea .post-date {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.post-box-4-flex__one .textarea .post-date .post-date-day {
  font-size: 1.4rem;
}
.post-box-4-flex__one .textarea .post-date .post-date-cat {
  color: #65B729;
  font-size: 1.2rem;
  border: 1px solid #65B729;
  border-radius: 3px;
  display: inline-block;
  padding: 0 1.5rem;
  margin-top: 0;
}
.post-box-4-flex__one .textarea h3 {
  font-size: 1.6rem;
}

/*post-list-link*/
.post-list-link {
  position: absolute;
  top: -6rem;
  right: 0;
}
@media (max-width: 767px) {
  .post-list-link {
    top: -5rem;
  }
}
.post-list-link a {
  text-decoration: none;
  color: #65B729;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-right: 2.5rem;
}
@media (max-width: 767px) {
  .post-list-link a {
    padding-right: 3rem;
    font-size: 1.4rem;
  }
}
.post-list-link a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #65B729;
  border-bottom: 2px solid #65B729;
  transform: rotate(-45deg);
  position: absolute;
  top: 30%;
  right: 2px;
}

/*page-cat-select*/
.page-cat-select {
  position: absolute;
  top: 0;
  right: 0;
}
.page-cat-select::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #65B729;
  border-bottom: 2px solid #65B729;
  transform: rotate(45deg);
  position: absolute;
  right: 2rem;
  top: 32%;
}
@media (max-width: 767px) {
  .page-cat-select {
    top: 10rem;
  }
}
@media (max-width: 575px) {
  .page-cat-select {
    top: 12rem;
  }
}
.page-cat-select select {
  width: 200px;
  padding: 1rem 2rem;
  border: 1px solid #65B729;
  color: #65B729;
  border-radius: 8px;
}

/*pagenation
-----------------------------------------------------*/
.pagination {
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 7rem 0 0;
  gap: 1rem;
}
@media (max-width: 767px) {
  .pagination {
    position: relative;
    font-size: 1.1rem;
    margin: 5rem 0 0;
  }
}
.pagination span,
.pagination a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  color: #000;
  box-sizing: border-box;
  background: #fff;
}
@media (max-width: 767px) {
  .pagination span,
  .pagination a {
    width: 25px;
    height: 25px;
  }
}
.pagination a:hover {
  opacity: 1;
  color: #fff;
  background: #333333;
}
.pagination .current {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #333333;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .pagination .current {
    width: 25px;
    height: 25px;
  }
}

/*top
-----------------------------------------------------*/
/*mv*/
.header-mv {
  padding-top: 16rem;
}
@media (max-width: 575px) {
  .header-mv {
    padding-top: 8.5rem;
  }
}
.header-mv::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  width: 100%;
  border-top: 272px solid #414141;
  z-index: -999;
}

.main-slider {
  max-width: 100%;
}

.main-slider .slick-slide {
  height: auto;
  margin: 0 5rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .main-slider .slick-slide {
    margin: 0;
  }
}

.main-slider .slick-slide img {
  display: block;
  margin: 0 auto;
  max-width: none;
  width: 100%;
}

/*top-openings*/
.top-openings {
  position: relative;
}
.top-openings::after {
  content: "";
  background: #F3F3F3;
  position: absolute;
  width: 100%;
  height: 314px;
  bottom: 0;
  z-index: -1;
  border-top-right-radius: 20rem;
}
.top-openings.after-none::after {
  content: none;
}

/*top-support*/
.top-support-bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .top-support-bnr {
    justify-content: center;
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .top-support-bnr {
    margin-top: 3rem;
  }
}
.top-support-bnr a {
  width: calc(50% - 2rem);
}
@media (max-width: 767px) {
  .top-support-bnr a {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 575px) {
  .top-support-bnr a {
    width: 100%;
  }
}
.top-support-bnr img {
  max-width: 580px;
  width: 100%;
}
.top-support-about {
  display: flex;
  margin: 10rem auto 10rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .top-support-about {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .top-support-about {
    margin: 6rem auto 6rem 0;
  }
}
.top-support-about-l {
  width: 50vw;
}
@media (max-width: 767px) {
  .top-support-about-l {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.top-support-about-l .inner {
  width: calc(50vw - 10rem);
  padding-right: 10rem;
}
@media (max-width: 1023px) {
  .top-support-about-l .inner {
    width: calc(50vw - 4rem);
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .top-support-about-l .inner {
    width: 90%;
    padding: 0;
  }
}
.top-support-about-l .inner img {
  border-top-right-radius: 10rem;
}
.top-support-about-r {
  width: 50vw;
}
@media (max-width: 767px) {
  .top-support-about-r {
    width: 100%;
  }
}
.top-support-about-r .inner {
  max-width: 600px;
  padding-right: 10%;
}
@media (max-width: 767px) {
  .top-support-about-r .inner {
    max-width: 100%;
    padding: 0 4rem;
  }
}
@media (max-width: 575px) {
  .top-support-about-r .inner {
    padding: 0 2rem;
  }
}
.top-support-about-r .inner h3 {
  margin-bottom: 2rem;
}
.top-support-about-r .inner h3 img {
  max-width: 304px;
  height: auto;
}
@media (max-width: 575px) {
  .top-support-about-r .btn-1 {
    margin-top: 3rem;
  }
}
.top-support-link {
  display: flex;
  gap: 3rem 4rem;
  justify-content: center;
}
@media (max-width: 1199px) {
  .top-support-link {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .top-support-link-box {
    width: 100%;
  }
}
.top-support-link-box__img {
  width: 230px;
  height: auto;
  padding-right: 4rem;
}
@media (max-width: 767px) {
  .top-support-link-box__img {
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .top-support-link-box__img {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .top-support-link-box__text {
    padding: 0 4rem;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .top-support-link-box__text {
    padding: 0 2rem;
  }
}
.top-support-link-box__text p {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .top-support-link-box__text p {
    font-size: 1.6rem;
  }
}
.top-support-link-box__text p .en {
  font-size: 1.4rem;
  color: #838383;
  font-weight: 400;
}
@media (max-width: 575px) {
  .top-support-link-box__text p .en {
    font-size: 1.2rem;
  }
}
.top-support-link-box a {
  padding-right: 4rem;
  height: auto;
  border: 1px solid #DFDFDF;
  text-decoration: none;
  border-top-right-radius: 4rem;
  background: #fff;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  max-width: 580px;
  margin: auto;
}
@media (max-width: 767px) {
  .top-support-link-box a {
    width: 100%;
    padding-right: 0;
    border-top-right-radius: 2rem;
  }
}

/*top-interview*/
.top-interview {
  position: relative;
}
.top-interview-box {
  position: relative;
}
@media (max-width: 767px) {
  .top-interview-box {
    margin-top: 8rem;
  }
}
.top-interview::after {
  content: "";
  background: #f3f3f3;
  position: absolute;
  width: 76%;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-top-left-radius: 20rem;
}
.top-interview .post-box-2-flex__one {
  background: #fff;
}

/*top-column*/
.top-column-box {
  position: relative;
}
@media (max-width: 767px) {
  .top-column-box {
    margin-top: 8rem;
  }
}

/*banner*/
.banner.top-section {
  padding-top: 0;
}

.banner-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 767px) {
  .banner-flex {
    gap: 2rem;
    justify-content: center;
  }
}
.banner-flex a {
  width: calc(50% - 2rem);
}
@media (max-width: 767px) {
  .banner-flex a {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 575px) {
  .banner-flex a {
    width: 100%;
  }
}
.banner-flex img {
  width: 100%;
  max-width: 580px;
}

/*page-about
-----------------------------------------------------*/
.about-features-box {
  display: flex;
  margin-bottom: 7rem;
  position: relative;
}
@media (max-width: 767px) {
  .about-features-box {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .about-features-box {
    margin: 6rem auto 6rem 0;
  }
}
.about-features-box-l {
  width: 50vw;
}
@media (max-width: 767px) {
  .about-features-box-l {
    width: 100%;
    margin-top: 4rem;
  }
}
.about-features-box-l .inner {
  width: calc(50vw - 10rem);
  padding-right: 10rem;
}
@media (max-width: 1023px) {
  .about-features-box-l .inner {
    width: calc(50vw - 4rem);
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .about-features-box-l .inner {
    width: 90%;
    padding: 0;
  }
}
.about-features-box-l .inner img {
  border-top-right-radius: 10rem;
}
.about-features-box-r {
  width: 50vw;
}
@media (max-width: 767px) {
  .about-features-box-r {
    width: 100%;
    order: -1;
  }
}
.about-features-box-r .inner {
  max-width: 600px;
  padding-right: 10%;
}
@media (max-width: 767px) {
  .about-features-box-r .inner {
    max-width: 100%;
    padding: 0 4rem;
  }
}
@media (max-width: 575px) {
  .about-features-box-r .inner {
    padding: 0 2rem;
  }
}
.about-features-box-r .inner p strong {
  color: #65B729;
}
.about-features-box-r .inner h3 {
  font-size: 3.8rem;
  margin-bottom: 4rem;
  position: relative;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .about-features-box-r .inner h3 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .about-features-box-r .inner h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.about-features-box-r .inner h3 img {
  max-width: 298px;
  height: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 575px) {
  .about-features-box-r .inner h3 img {
    max-width: 200px;
  }
}

.features-list {
  border: 1px solid #DFDFDF;
  border-top-right-radius: 10rem;
  padding: 6rem;
}
@media (max-width: 1023px) {
  .features-list {
    padding: 4rem;
  }
}
@media (max-width: 575px) {
  .features-list {
    padding: 4rem 2rem;
  }
}
.features-list ol {
  padding: 0;
}
.features-list ol li {
  padding: 2rem 0;
  border-bottom: 1px solid #DFDFDF;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .features-list ol li {
    padding: 1.5rem 0;
    font-size: 1.6rem;
  }
}
.features-list ol li .roboto {
  color: #65B729;
  font-size: 3rem;
  max-width: 65px;
  width: 100%;
}
@media (max-width: 767px) {
  .features-list ol li .roboto {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .features-list ol li .roboto {
    max-width: 55px;
  }
}

.about-service {
  padding: 5rem 8rem;
  border: 5px solid #DFDFDF;
  border-radius: 20px;
  box-sizing: border-box;
  margin-bottom: 5rem;
}

.about-why-wrap {
  position: relative;
}
.about-why-wrap::after {
  content: "";
  background: #f3f3f3;
  position: absolute;
  width: 100%;
  height: 77%;
  bottom: 0;
  z-index: -1;
  border-top-left-radius: 20rem;
}
@media (max-width: 767px) {
  .about-why-wrap::after {
    border-top-left-radius: 10rem;
    height: 80%;
  }
}
@media (max-width: 575px) {
  .about-why-wrap::after {
    height: 86%;
  }
}

.about-why-box {
  padding: 5rem 0;
  border-bottom: 1px solid #DFDFDF;
}
.about-why-box:first-of-type {
  padding-top: 0;
}
.about-why-box img {
  border-radius: 20px;
  margin-bottom: 4rem;
}
.about-why-box h3 {
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .about-why-box h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.about-why-box h3 .roboto {
  color: #65B729;
  font-size: 3rem;
  max-width: 55px;
  width: 100%;
}
@media (max-width: 767px) {
  .about-why-box h3 .roboto {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .about-why-box h3 .roboto {
    max-width: 55px;
  }
}

/*page-flow
-----------------------------------------------------*/
.page-flow-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.page-flow-flex-box {
  width: calc(33.3333333333% - 0.7rem);
  border-top-right-radius: 3rem;
  padding: 4rem;
  box-sizing: border-box;
}
.page-flow-flex-box:nth-child(odd) {
  background-color: #F3F3F3;
}
.page-flow-flex-box:nth-child(even) {
  background-color: #F8F8F8;
}
@media (max-width: 767px) {
  .page-flow-flex-box {
    width: calc(50% - 0.5rem);
  }
}
@media (max-width: 575px) {
  .page-flow-flex-box {
    width: 100%;
  }
}
.page-flow-flex-box .h3-wrap {
  text-align: center;
}
.page-flow-flex-box .h3-wrap .flow-num {
  font-size: 3rem;
  color: #65B729;
  font-weight: bold;
  position: relative;
  padding: 0 2.5rem;
  display: inline-block;
  line-height: 1;
}
.page-flow-flex-box .h3-wrap .flow-num::before, .page-flow-flex-box .h3-wrap .flow-num::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
}
.page-flow-flex-box .h3-wrap .flow-num::before {
  left: 0;
}
.page-flow-flex-box .h3-wrap .flow-num::after {
  right: 0;
}
.page-flow-flex-box .h3-wrap h3 {
  font-size: 2.2rem;
}
.page-flow-flex-box figure {
  text-align: center;
}
.page-flow-flex-box figure img {
  width: 139px;
  height: auto;
  margin: 2rem auto 3rem auto;
}
.page-flow-flex-box p {
  font-size: 1.4rem;
}

.consultant-box-odd, .consultant-box-even {
  display: flex;
  justify-content: space-between;
  gap: 4rem 8rem;
  padding: 5rem 0;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 767px) {
  .consultant-box-odd, .consultant-box-even {
    gap: 4rem;
  }
}
@media (max-width: 575px) {
  .consultant-box-odd, .consultant-box-even {
    flex-wrap: wrap;
  }
}
.consultant-box-odd-img, .consultant-box-even-img {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 575px) {
  .consultant-box-odd-img, .consultant-box-even-img {
    max-width: 100%;
  }
}
.consultant-box-odd-img img, .consultant-box-even-img img {
  border-top-right-radius: 3rem;
}
.consultant-box-odd-text, .consultant-box-even-text {
  width: 100%;
}
.consultant-box-odd-text .h3-wrap, .consultant-box-even-text .h3-wrap {
  margin-bottom: 2rem;
}
.consultant-box-odd-text .h3-wrap .career, .consultant-box-even-text .h3-wrap .career {
  font-size: 1.6rem;
  font-weight: bold;
}
.consultant-box-odd-text .h3-wrap h3, .consultant-box-even-text .h3-wrap h3 {
  font-size: 2.8rem;
}
.consultant-box-odd-text .h3-wrap h3 .roboto, .consultant-box-even-text .h3-wrap h3 .roboto {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 2rem;
}
.consultant-box-odd:first-child {
  padding-top: 0;
}
@media (max-width: 575px) {
  .consultant-box-even .consultant-box-even-img {
    order: -1;
  }
}

/*page-seminar-detail
-----------------------------------------------------*/
.page-seminar-detail .h1-title-seminar {
  margin-bottom: 4rem;
}
.page-seminar-detail .h1-title-seminar h1 {
  font-size: 3.6rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .page-seminar-detail .h1-title-seminar h1 {
    font-size: 2.4rem;
  }
}
.page-seminar-detail .h1-title-seminar p {
  font-size: 1.5rem;
}
@media (max-width: 575px) {
  .page-seminar-detail .h1-title-seminar p {
    font-size: 1.4rem;
  }
}
.page-seminar-detail figure {
  margin: 4rem auto 5rem auto;
}
.page-seminar-detail h2 {
  position: relative;
  font-size: 2.8rem;
  line-height: 1.6;
  margin: 4rem 0 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #333333;
}
.page-seminar-detail h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 50px;
  border-bottom: 2px solid #65B729;
}
@media (max-width: 575px) {
  .page-seminar-detail h2 {
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    padding-bottom: 0.5rem;
  }
}
.page-seminar-detail h3 {
  margin: 4rem 0 3rem 0;
  font-size: 2.4rem;
  line-height: 1.6;
  padding: 0 2rem;
  border-left: 2px solid #65B729;
}
@media (max-width: 575px) {
  .page-seminar-detail h3 {
    font-size: 2rem;
    margin: 3rem 0 2rem 0;
  }
}
.page-seminar-detail h4 {
  font-size: 2rem;
  line-height: 1.6;
  margin: 4rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333333;
}
@media (max-width: 575px) {
  .page-seminar-detail h4 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
  }
}
.page-seminar-detail h5 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 4rem 0 1.5rem;
  color: #65B729;
}
@media (max-width: 575px) {
  .page-seminar-detail h5 {
    font-size: 1.6rem;
    margin: 3rem 0 1rem 0;
  }
}
.page-seminar-detail .btn-1 {
  margin-top: 5rem;
  text-align: center;
}
.page-seminar-detail ul {
  list-style: disc;
  padding-left: 1.5em;
}

/*page-industry
-----------------------------------------------------*/
.backgrounds-box {
  margin: 7rem auto;
}
.backgrounds-box:last-of-type {
  margin-bottom: 0;
}
.backgrounds-box-flex {
  display: flex;
  align-items: end;
  gap: 4rem;
}
@media (max-width: 575px) {
  .backgrounds-box-flex {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.backgrounds-box-flex-img {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 575px) {
  .backgrounds-box-flex-img {
    margin: auto;
  }
}
.backgrounds-box-flex-img-r {
  border-top-right-radius: 3rem;
}
.backgrounds-box-flex-img-l {
  border-top-left-radius: 3rem;
}
@media (max-width: 575px) {
  .backgrounds-box-flex-img.odd {
    order: 1;
  }
}
.backgrounds-box-flex-text {
  width: 100%;
}
.backgrounds-box .sdgs-box {
  display: flex;
  align-items: end;
  gap: 6rem;
}
@media (max-width: 575px) {
  .backgrounds-box .sdgs-box {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.backgrounds-box .sdgs-box .sdgs-img {
  max-width: 164px;
  height: auto;
  width: 100%;
}
@media (max-width: 575px) {
  .backgrounds-box .sdgs-box .sdgs-img {
    margin: auto;
  }
}
.backgrounds-box .sdgs-box .sdgs-text {
  width: 100%;
}
.backgrounds-box .btn-2 {
  text-align: center;
}

.page-industry .businesses-types {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 5rem;
}
@media (max-width: 575px) {
  .page-industry .businesses-types {
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.page-industry .businesses-types img {
  max-width: 231px;
  width: calc(25% - 1.2rem);
  height: auto;
  border-radius: 2rem;
}
@media (max-width: 575px) {
  .page-industry .businesses-types img {
    width: calc(50% - 1rem);
  }
}
.page-industry .businesses-case1 {
  padding: 4.5rem;
  background: #F3F3F3;
  box-sizing: border-box;
  margin: 3rem auto;
}
@media (max-width: 575px) {
  .page-industry .businesses-case1 {
    padding: 3rem 2rem;
    margin: 2rem auto;
  }
}
.page-industry .businesses-case1 ul {
  padding-left: 2rem;
}
.page-industry .businesses-case1 ul li {
  font-weight: bold;
}
.page-industry .businesses-case1 ul li::before {
  top: 12px;
}
.page-industry .businesses-case2 {
  padding: 4.5rem;
  border: 1px solid #DFDFDF;
  box-sizing: border-box;
  margin: 3rem auto;
}
@media (max-width: 575px) {
  .page-industry .businesses-case2 {
    padding: 3rem 2rem;
    margin: 2rem auto;
  }
}
.page-industry .businesses-case2 ul {
  padding-left: 2rem;
}
.page-industry .businesses-case2 ul li {
  font-weight: bold;
}
.page-industry .businesses-case2 ul li::before {
  top: 12px;
}

.businesses-contact__box-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 5rem;
}
.businesses-contact__box-btn .btn-2,
.businesses-contact__box-btn .btn-3,
.businesses-contact__box-btn .btn-4,
.businesses-contact__box-btn .btn-5,
.businesses-contact__box-btn .btn-6 {
  margin-top: 0;
}
.businesses-contact__box-btn .btn-5 a,
.businesses-contact__box-btn .btn-6 a {
  width: 360px;
}
@media (max-width: 575px) {
  .businesses-contact__box-btn .btn-5 a,
  .businesses-contact__box-btn .btn-6 a {
    width: 300px;
  }
}

/*page-status
-----------------------------------------------------*/
.business-cat-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 5rem;
}
.business-cat-flex:last-of-type {
  margin-bottom: 0;
}
.business-cat-flex-box {
  width: calc(33.3333333333% - 0.7rem);
  border-top-right-radius: 3rem;
  padding: 4rem;
  box-sizing: border-box;
}
.business-cat-flex-box:nth-child(odd) {
  background-color: #F3F3F3;
}
.business-cat-flex-box:nth-child(even) {
  background-color: #F8F8F8;
}
@media (max-width: 767px) {
  .business-cat-flex-box {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .business-cat-flex-box {
    padding: 4rem 2rem;
  }
}
.business-cat-flex-box .h4-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.business-cat-flex-box .h4-wrap .business-cat-num {
  font-size: 3rem;
  color: #65B729;
  font-weight: bold;
  position: relative;
  padding: 0 2.5rem;
  display: inline-block;
  line-height: 1;
}
.business-cat-flex-box .h4-wrap .business-cat-num::before, .business-cat-flex-box .h4-wrap .business-cat-num::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
}
.business-cat-flex-box .h4-wrap .business-cat-num::before {
  left: 0;
}
.business-cat-flex-box .h4-wrap .business-cat-num::after {
  right: 0;
}
.business-cat-flex-box .h4-wrap h4 {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .business-cat-flex-box .h4-wrap h4 {
    font-size: 1.8rem;
  }
}
.business-cat-flex-box p {
  font-size: 1.4rem;
}
.business-cat-flex-box ul {
  padding-left: 1.3rem;
}
.business-cat-flex-box ul li {
  font-size: 1.4rem;
}

.business-point-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.business-point-flex-box {
  width: calc(50% - 0.7rem);
  border-top-right-radius: 3rem;
  padding: 4rem;
  box-sizing: border-box;
  border: 1px solid #DFDFDF;
  background-color: #fff;
}
@media (max-width: 767px) {
  .business-point-flex-box {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .business-point-flex-box {
    padding: 4rem 2rem;
  }
}
.business-point-flex-box .h4-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.business-point-flex-box .h4-wrap .business-point-num {
  font-size: 3rem;
  color: #65B729;
  font-weight: bold;
  position: relative;
  padding: 0 2.5rem;
  display: inline-block;
  line-height: 1;
}
.business-point-flex-box .h4-wrap .business-point-num::before, .business-point-flex-box .h4-wrap .business-point-num::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
}
.business-point-flex-box .h4-wrap .business-point-num::before {
  left: 0;
}
.business-point-flex-box .h4-wrap .business-point-num::after {
  right: 0;
}
.business-point-flex-box .h4-wrap h4 {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .business-point-flex-box .h4-wrap h4 {
    font-size: 1.8rem;
  }
}
.business-point-flex-box img {
  border-radius: 10px;
}
.business-point-flex-box p {
  font-size: 1.4rem;
}
.business-point-flex-box ul {
  padding-left: 1.3rem;
  margin: 2.5rem auto;
}
.business-point-flex-box ul li {
  font-size: 1.4rem;
}
.business-point-flex-box a {
  font-size: 1.4rem;
  color: #65B729;
}

.page-status .status-flex {
  display: flex;
  align-items: end;
  gap: 4rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .page-status .status-flex {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.page-status .status-flex-text {
  width: 100%;
}
.page-status .status-flex-img {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 767px) {
  .page-status .status-flex-img {
    margin: auto;
  }
}
.page-status .status-flex-img img {
  border-top-left-radius: 3rem;
}
.page-status .demand-flex {
  display: flex;
  gap: 5rem;
}
@media (max-width: 575px) {
  .page-status .demand-flex {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.page-status .demand-flex-img {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 575px) {
  .page-status .demand-flex-img {
    margin: auto;
  }
}
.page-status .demand-flex-img img {
  border-top-right-radius: 3rem;
}
.page-status .demand-flex-text {
  width: 100%;
}
.page-status .demand-flex-text-link {
  margin-top: 5rem;
  padding-left: 1rem;
}
.page-status .demand-flex-text-link a {
  color: #65B729;
}
.page-status .buyers-flex {
  display: flex;
  gap: 6rem;
}
@media (max-width: 575px) {
  .page-status .buyers-flex {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.page-status .buyers-flex-img {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 575px) {
  .page-status .buyers-flex-img {
    margin: auto;
  }
}
.page-status .buyers-flex-img img {
  border-top-left-radius: 3rem;
}
.page-status .buyers-flex-text {
  width: 100%;
}
.page-status .buyers-flex-text-link {
  margin-top: 5rem;
  padding-left: 1rem;
}
.page-status .buyers-flex-text-link a {
  color: #65B729;
}
.page-status .hiring-a a {
  color: #65B729;
}

.background-half {
  position: relative;
}
.background-half::after {
  content: "";
  background: #f3f3f3;
  position: absolute;
  width: 45%;
  height: 360px;
  bottom: 10rem;
  z-index: -1;
  border-top-right-radius: 20rem;
}
@media (max-width: 767px) {
  .background-half::after {
    border-top-right-radius: 10rem;
    height: 60%;
    width: 60%;
  }
}
.background-half-flex {
  display: flex;
  gap: 6.5rem;
}
@media (max-width: 767px) {
  .background-half-flex {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.background-half-flex-img {
  max-width: 590px;
  width: 100%;
}
@media (max-width: 767px) {
  .background-half-flex-img {
    margin: auto;
  }
}
.background-half-flex-text {
  width: 100%;
}
.background-half-flex-text h2 {
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .background-half-flex-text h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 575px) {
  .background-half-flex-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .background-half .btn-6 {
    text-align: center;
  }
}
.background-half .btn-6 a {
  width: 360px;
}
@media (max-width: 575px) {
  .background-half .btn-6 a {
    width: 300px;
  }
}

/*page-news
-----------------------------------------------------*/
.page-news-box {
  position: relative;
}
@media (max-width: 767px) {
  .page-news-box .h2-title02 {
    margin-bottom: 10rem;
  }
}
@media (max-width: 575px) {
  .page-news-box .h2-title02 {
    margin-bottom: 12rem;
  }
}

/*page-glossary
-----------------------------------------------------*/
.page-glossary-box-flex {
  padding: 9rem 6rem;
  border: 1px solid #DFDFDF;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .page-glossary-box-flex {
    padding: 4rem 2rem;
  }
}
.page-glossary-box-flex ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.page-glossary-box-flex ul li {
  width: calc(25% - 4.5rem);
  padding: 0 0 0 3rem;
}
@media (max-width: 1023px) {
  .page-glossary-box-flex ul li {
    width: calc(50% - 4rem);
  }
}
.page-glossary-box-flex ul li a {
  position: relative;
  text-decoration: none;
  color: #65B729;
}
.page-glossary-box-flex ul li a .arrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #65B729;
  border-bottom: 2px solid #65B729;
  transform: rotate(-45deg);
  position: absolute;
  top: 25%;
  left: -22px;
}

/*page-books
-----------------------------------------------------*/
.page-books-box-flex {
  padding: 6rem 0;
  display: flex;
  gap: 5rem;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 767px) {
  .page-books-box-flex {
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .page-books-box-flex {
    flex-wrap: wrap;
    padding: 4rem 0;
  }
}
.page-books-box-flex:first-child {
  padding-top: 0;
}
.page-books-box-flex__l {
  max-width: 255px;
  width: 100%;
}
@media (max-width: 575px) {
  .page-books-box-flex__l {
    max-width: initial;
  }
}
.page-books-box-flex__l figure {
  margin-bottom: 2rem;
}
.page-books-box-flex__l p {
  font-size: 1.4rem;
}
.page-books-box-flex__r {
  width: 100%;
}
.page-books-box-flex__r h3 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .page-books-box-flex__r h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.page-books-box-flex__r .first-letter {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .page-books-box-flex__r .first-letter {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.page-books-box-flex__r .first-letter::first-letter {
  color: #65B729;
}
.page-books-box-flex__r .first-letter:nth-child(n+2) {
  margin-top: 5rem;
}
@media (max-width: 575px) {
  .page-books-box-flex__r .first-letter:nth-child(n+2) {
    margin-top: 3rem;
  }
}
@media (max-width: 575px) {
  .page-books-box .btn-1 {
    text-align: center;
  }
}

/*page-jobsskills
-----------------------------------------------------*/
.know_jobsskills-flex {
  display: flex;
  gap: 5rem;
}
@media (max-width: 575px) {
  .know_jobsskills-flex {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.know_jobsskills-flex-img {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 575px) {
  .know_jobsskills-flex-img {
    margin: auto;
  }
}
.know_jobsskills-flex-img img {
  border-top-right-radius: 3rem;
}
.know_jobsskills-flex-text {
  width: 100%;
}
.know_jobsskills-flex-text ul {
  padding-left: 1.5rem;
  margin: 3rem 0;
}
.know_jobsskills-flex-text ul li::before {
  top: 12px;
}

.required-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.required-flex-box {
  width: calc(50% - 0.7rem);
  border-top-right-radius: 3rem;
  padding: 4rem;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .required-flex-box {
    padding: 4rem 2rem;
  }
}
@media (max-width: 575px) {
  .required-flex-box {
    width: 100%;
  }
}
.required-flex-box .h4-wrap {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.required-flex-box .h4-wrap .required-flex-box-num {
  font-size: 3rem;
  color: #65B729;
  font-weight: bold;
  position: relative;
  padding: 0 2.5rem;
  display: inline-block;
  line-height: 1;
}
.required-flex-box .h4-wrap .required-flex-box-num::before, .required-flex-box .h4-wrap .required-flex-box-num::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
}
.required-flex-box .h4-wrap .required-flex-box-num::before {
  left: 0;
}
.required-flex-box .h4-wrap .required-flex-box-num::after {
  right: 0;
}
.required-flex-box .h4-wrap h4 {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .required-flex-box .h4-wrap h4 {
    font-size: 1.8rem;
  }
}
.required-flex-box img {
  border-radius: 10px;
}
.required-flex-box p {
  font-size: 1.4rem;
}
.required-flex-box ul {
  padding-left: 1.3rem;
  margin: 2.5rem auto;
}
.required-flex-box ul li {
  font-size: 1.4rem;
}
.required-flex-box a {
  font-size: 1.4rem;
  color: #65B729;
}

.required-contact__box-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .required-contact__box-btn {
    margin-top: 2rem;
  }
}
.required-contact__box-btn .btn-2,
.required-contact__box-btn .btn-3 {
  margin-top: 0;
}

.required-test {
  background: #F8F8F8;
  border-top-left-radius: 3rem;
  display: flex;
  margin-top: 6rem;
}
@media (max-width: 575px) {
  .required-test {
    flex-wrap: wrap;
  }
}
.required-test-img {
  border: 10px solid #F8F8F8;
  background-color: #fff;
  border-top-left-radius: 3rem;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .required-test-img {
    width: 230px;
  }
}
@media (max-width: 575px) {
  .required-test-img {
    width: 100%;
    padding: 2rem;
  }
}
.required-test-img img {
  width: 170px;
  height: 170px;
}
@media (max-width: 767px) {
  .required-test-img img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 575px) {
  .required-test-img img {
    width: 170px;
    height: 170px;
  }
}
.required-test-text {
  padding: 5rem;
  width: 58%;
}
@media (max-width: 767px) {
  .required-test-text {
    padding: 3rem;
  }
}
@media (max-width: 575px) {
  .required-test-text {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .required-test-text .btn-1 {
    text-align: center;
    margin-top: 2rem;
  }
}

/*page-qualifications
-----------------------------------------------------*/
.qualifications-list {
  border: 1px solid #DFDFDF;
  border-top-right-radius: 10rem;
  padding: 5rem 6rem;
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  .qualifications-list {
    padding: 4rem;
  }
}
@media (max-width: 575px) {
  .qualifications-list {
    padding: 4rem 2rem;
    border-top-right-radius: 5rem;
    margin-top: 2rem;
  }
}
.qualifications-list ol {
  padding: 0;
  list-style: none;
}
.qualifications-list ol li {
  padding: 2rem 4rem 2rem 0;
  border-bottom: 1px solid #DFDFDF;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .qualifications-list ol li {
    padding: 1.5rem 3.5rem 1.5rem 0;
    font-size: 1.6rem;
  }
}
.qualifications-list ol li a {
  color: #333333;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
}
.qualifications-list ol li a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  transform: rotate(45deg);
  position: absolute;
  top: 34%;
  right: -2rem;
}
.qualifications-list ol li .roboto {
  color: #65B729;
  font-size: 3rem;
  max-width: 65px;
  width: 100%;
}
@media (max-width: 767px) {
  .qualifications-list ol li .roboto {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .qualifications-list ol li .roboto {
    max-width: 55px;
  }
}

.qualifications-box {
  padding: 6rem 9rem;
  border-top-right-radius: 10rem;
  background: #fff;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .qualifications-box {
    padding: 4rem;
    border-top-right-radius: 5rem;
  }
}
@media (max-width: 575px) {
  .qualifications-box {
    padding: 2rem;
  }
}
.qualifications-box a {
  color: #65B729;
}
.qualifications-box .h4-wrap {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .qualifications-box .h4-wrap {
    margin-bottom: 2rem;
  }
}
.qualifications-box .h4-wrap .qualifications-box-num {
  font-size: 3rem;
  color: #65B729;
  font-weight: bold;
  position: relative;
  padding: 0 2.5rem;
  display: inline-block;
  line-height: 1;
}
.qualifications-box .h4-wrap .qualifications-box-num::before, .qualifications-box .h4-wrap .qualifications-box-num::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
}
.qualifications-box .h4-wrap .qualifications-box-num::before {
  left: 0;
}
.qualifications-box .h4-wrap .qualifications-box-num::after {
  right: 0;
}
.qualifications-box .h4-wrap h4 {
  line-height: 1.6;
}
.qualifications-box .h4-wrap h4 .ja {
  width: 100%;
  display: inline-block;
  font-size: 2.8rem;
}
@media (max-width: 575px) {
  .qualifications-box .h4-wrap h4 .ja {
    font-size: 2rem;
  }
}
.qualifications-box .h4-wrap h4 .en {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 400;
  color: #838383;
}
.qualifications-box-img {
  max-width: 640px;
  width: 100%;
  margin: 0 auto 5rem auto;
}
@media (max-width: 767px) {
  .qualifications-box-img {
    padding: 0 2rem;
    margin: 0 auto 4rem auto;
    box-sizing: border-box;
  }
}
.qualifications-box-excerpt {
  padding: 4.5rem;
  background: #f3f3f3;
  box-sizing: border-box;
  margin: 3rem auto;
}
@media (max-width: 767px) {
  .qualifications-box-excerpt {
    padding: 3rem;
  }
}
.qualifications-box-excerpt .list-style-num {
  font-weight: bold;
}
.qualifications-box-excerpt .pl-20 {
  padding-left: 2rem;
}
.qualifications-box .qualifications-detail {
  margin: 4rem auto;
}
@media (max-width: 767px) {
  .qualifications-box .qualifications-detail {
    margin: 3rem auto;
  }
}
.qualifications-box .qualifications-detail li {
  display: flex;
  align-items: center;
  padding: 2rem;
  border-top: 1px solid #DFDFDF;
}
@media (max-width: 575px) {
  .qualifications-box .qualifications-detail li {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 575px) {
  .qualifications-box .qualifications-detail li {
    flex-wrap: wrap;
  }
}
.qualifications-box .qualifications-detail li:last-of-type {
  border-bottom: 1px solid #DFDFDF;
}
.qualifications-box .qualifications-detail li span:first-of-type {
  flex-basis: 160px;
}
.qualifications-box .qualifications-detail li span:nth-of-type(2) {
  flex-grow: 1;
}
@media (max-width: 575px) {
  .qualifications-box .qualifications-detail li span:nth-of-type(2) {
    flex-basis: 240px;
  }
}
.qualifications-box .qualifications-detail li a {
  color: #65B729;
}
.qualifications-box .qualifications-osusume {
  padding: 4.5rem;
  border: 1px solid #dfdfdf;
  box-sizing: border-box;
  margin: 3rem auto;
}
@media (max-width: 767px) {
  .qualifications-box .qualifications-osusume {
    padding: 3rem;
  }
}
@media (max-width: 575px) {
  .qualifications-box .qualifications-osusume {
    padding: 2rem;
  }
}
.qualifications-box .qualifications-osusume p {
  color: #65B729;
  font-weight: bold;
  margin-bottom: 3rem;
  font-size: 1.7rem;
}
.qualifications-box .qualifications-osusume .list-style-disc {
  padding-left: 1.5rem;
}

.qualifications-link {
  text-align: center;
}
.qualifications-link p {
  position: relative;
  display: inline-block;
  padding: 0 4rem;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 575px) {
  .qualifications-link p {
    font-size: 1.6rem;
  }
}
.qualifications-link p br {
  display: none;
}
@media (max-width: 575px) {
  .qualifications-link p br {
    display: block;
  }
}
.qualifications-link p::before, .qualifications-link p::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #333333;
}
.qualifications-link p::before {
  left: 0;
  transform: rotate(60deg);
}
.qualifications-link p::after {
  right: 0;
  transform: rotate(115deg);
}
.qualifications-link .btn-2,
.qualifications-link .btn-3 {
  margin: 4rem auto 0 auto;
}
.qualifications-link .btn-2 a,
.qualifications-link .btn-3 a {
  width: 380px;
  color: #fff;
  padding: 1.5rem 2rem;
}
@media (max-width: 420px) {
  .qualifications-link .btn-2 a,
  .qualifications-link .btn-3 a {
    width: 100%;
    padding-right: 4rem;
  }
}
.qualifications-link .btn-2 a br,
.qualifications-link .btn-3 a br {
  display: none;
}
@media (max-width: 420px) {
  .qualifications-link .btn-2 a br,
  .qualifications-link .btn-3 a br {
    display: block;
  }
}

.page-qualifications .interview-box {
  padding: 6rem 0;
  border-top: 1px solid #DFDFDF;
}
@media (max-width: 575px) {
  .page-qualifications .interview-box {
    padding: 4rem 0;
  }
}
.page-qualifications .interview-box:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.page-qualifications .interview-box:last-of-type {
  padding-bottom: 0;
}
.page-qualifications .interview-box-flex {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 767px) {
  .page-qualifications .interview-box-flex {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.page-qualifications .interview-box-flex-img {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 767px) {
  .page-qualifications .interview-box-flex-img {
    margin: auto;
    order: 1;
  }
}
.page-qualifications .interview-box-flex-img img {
  border-top-right-radius: 3rem;
}
.page-qualifications .interview-box-flex-text {
  width: 100%;
}
.page-qualifications .interview-box-flex-text .h3-wrap .en {
  display: inline-block;
  font-size: 1.4rem;
  color: #ff8a34;
  font-weight: bold;
}
.page-qualifications .interview-box-flex-text .h3-wrap h3 {
  font-size: 2.6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .page-qualifications .interview-box-flex-text .h3-wrap h3 {
    font-size: 2rem;
  }
}

/*page-checktest
-----------------------------------------------------*/
.checktest-flex {
  display: flex;
  gap: 5rem;
  margin-bottom: 5rem;
}
@media (max-width: 575px) {
  .checktest-flex {
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
.checktest-flex-img {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 575px) {
  .checktest-flex-img {
    margin: auto;
  }
}
.checktest-flex-text {
  width: 100%;
}

.checktest-point-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 5rem;
}
.checktest-point-flex:last-of-type {
  margin-bottom: 0;
}
.checktest-point-flex-box {
  width: calc(33.3333333333% - 0.7rem);
  border-top-right-radius: 3rem;
  padding: 4rem;
  box-sizing: border-box;
}
.checktest-point-flex-box:nth-child(odd) {
  background-color: #F3F3F3;
}
.checktest-point-flex-box:nth-child(even) {
  background-color: #F8F8F8;
}
@media (max-width: 767px) {
  .checktest-point-flex-box {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .checktest-point-flex-box {
    padding: 4rem 2rem;
  }
}
.checktest-point-flex-box .num-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.checktest-point-flex-box .num-wrap .checktest-point-p {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #65B729;
  line-height: 1.4;
}
.checktest-point-flex-box .num-wrap .checktest-point-num {
  text-align: center;
  font-size: 3rem;
  color: #65B729;
  font-weight: bold;
  position: relative;
  padding: 0 2.5rem;
  display: inline-block;
  line-height: 1;
}
.checktest-point-flex-box .num-wrap .checktest-point-num::before, .checktest-point-flex-box .num-wrap .checktest-point-num::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
}
.checktest-point-flex-box .num-wrap .checktest-point-num::before {
  left: 0;
}
.checktest-point-flex-box .num-wrap .checktest-point-num::after {
  right: 0;
}
.checktest-point-flex-box p {
  font-size: 1.4rem;
}

.checktest-osusume {
  padding: 5rem;
  border-top: 2px solid #DFDFDF;
  border-bottom: 2px solid #DFDFDF;
  max-width: 780px;
  width: 100%;
  margin: auto;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .checktest-osusume {
    padding: 4rem 2rem;
  }
}
.checktest-osusume h3 {
  font-size: 2.2rem;
  color: #65B729;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .checktest-osusume h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.checktest-osusume ul {
  padding-left: 1.3rem;
}
.checktest-osusume ul li::before {
  top: 12px;
}

.checktest-trial.all-background-r {
  margin-top: 6rem;
}

.checktest-trial {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .checktest-trial {
    padding: 6rem 0;
  }
}
.checktest-trial-box {
  background: #fff;
  border-top-right-radius: 10rem;
  padding: 7rem 9rem;
}
@media (max-width: 1023px) {
  .checktest-trial-box {
    padding: 5rem 6rem;
  }
}
@media (max-width: 767px) {
  .checktest-trial-box {
    padding: 5rem 2rem;
    border-top-right-radius: 5rem;
  }
}
.checktest-trial-explanation {
  padding: 5rem 5rem 12rem 5rem;
  border: 1px solid #DFDFDF;
  position: relative;
  margin-bottom: 15rem;
}
@media (max-width: 767px) {
  .checktest-trial-explanation {
    padding: 4rem 2rem 12rem 2rem;
  }
}
@media (max-width: 575px) {
  .checktest-trial-explanation {
    padding: 4rem 2rem 10rem 2rem;
  }
}
.checktest-trial-explanation ul {
  padding-left: 1.3rem;
}
.checktest-trial-explanation ul li {
  font-weight: bold;
}
.checktest-trial-explanation ul li strong {
  color: #65B729;
}
.checktest-trial-explanation ul li::before {
  top: 12px;
}
.checktest-trial-consul {
  background: #65B729;
  text-align: center;
  padding: 4.5rem 1rem;
  border-radius: 14rem;
  max-width: 580px;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  bottom: -22%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .checktest-trial-consul {
    padding: 2rem 1rem;
    bottom: -14%;
    border-radius: 2rem;
  }
}
.checktest-trial-consul p {
  color: #fff;
  font-weight: bold;
}
.checktest-trial-consul br {
  display: none;
}
@media (max-width: 575px) {
  .checktest-trial-consul br {
    display: block;
  }
}
.checktest-trial-consul .btn-4 {
  margin-top: 2rem;
}
@media (max-width: 575px) {
  .checktest-trial-consul .btn-4 {
    margin-top: 1rem;
  }
}
.checktest-trial-consul .btn-4 a {
  padding: 1.5rem 4rem 1.5rem 2rem;
}
@media (max-width: 575px) {
  .checktest-trial-consul .btn-4 a {
    width: 100%;
  }
}
.checktest-trial-q {
  padding: 6rem 0;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 575px) {
  .checktest-trial-q {
    padding: 3rem 0;
  }
}
.checktest-trial-q h4 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .checktest-trial-q h4 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .checktest-trial-q h4 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.checktest-trial-q h4 .q-num {
  color: #65B729;
  border: 1px solid #65B729;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-right: 3rem;
  line-height: 1;
  word-break: keep-all;
}
@media (max-width: 575px) {
  .checktest-trial-q h4 .q-num {
    margin-right: 1.5rem;
  }
}
.checktest-trial-img {
  text-align: center;
}
.checktest-trial-img-box {
  display: flex;
  gap: 1rem;
}
.checktest-trial-a {
  margin-top: 3rem;
}
.checktest-trial .pt-0 {
  padding-top: 0 !important;
}
.checktest-trial-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.checktest-trial-btn label {
  background-color: #838383;
  padding: 10px 0 7px 0;
  font-size: 2.3rem;
  font-weight: bold;
  color: #fff;
  border-bottom: 3px solid #6c5f5f;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s;
}
.checktest-trial-btn label:hover {
  background-color: #65B729;
  border-bottom: 3px solid #4d911a;
}
.checktest-trial-btn .radiobutton:checked + label {
  background-color: #65B729;
  border-bottom: 0;
  height: 47px;
  margin-top: 3px;
}

.checktest-explanation ul {
  padding-left: 1.3rem;
}
.checktest-explanation ul li {
  font-weight: bold;
}
.checktest-explanation ul li strong {
  color: #65B729;
}
.checktest-explanation ul li::before {
  top: 12px;
}

/*page-openings-result
-----------------------------------------------------*/
.page-openings-result-box .h2-title02 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page-openings-result-box .h2-title02 .ja {
    margin-bottom: 1rem;
  }
  .page-openings-result-box .h2-title02 .ja::after, .page-openings-result-box .h2-title02 .ja::before {
    content: none;
  }
}
@media (max-width: 575px) {
  .page-openings-result-box .h2-title02 {
    margin-top: 9rem;
    font-size: 1.8rem;
  }
}
.page-openings-result-box .search-results {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .page-openings-result-box .search-results {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.openings-result-list {
  width: 100%;
  max-width: 810px;
}
@media (max-width: 767px) {
  .openings-result-list {
    order: 2;
  }
}
.openings-result-list__one {
  padding: 4rem 0;
  border-bottom: 1px solid #DFDFDF;
}
.openings-result-list__one:first-of-type {
  border-top: 1px solid #DFDFDF;
}
.openings-result-list__one-badge {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.openings-result-list__one-badge span {
  font-size: 1.2rem;
  padding: 0.2rem 1.5rem;
}
.openings-result-list__one-badge .new {
  background: #f45b37;
  color: #fff;
}
.openings-result-list__one-badge .employ {
  background: #fff;
  border: 1px solid #65B729;
  border-radius: 3px;
  color: #65B729;
}
.openings-result-list__one h3 {
  padding: 1.5rem 0 3rem 0;
  font-size: 2.2rem;
}
@media (max-width: 1023px) {
  .openings-result-list__one h3 {
    font-size: 1.8rem;
    padding: 1rem 0 2rem 0;
  }
}
.openings-result-list__one-shop {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.openings-result-list__one-shop-img {
  max-width: 300px;
  width: 100%;
}
@media (max-width: 575px) {
  .openings-result-list__one-shop-img {
    margin: auto;
  }
}
.openings-result-list__one-shop-img img {
  border-top-right-radius: 3rem;
}
.openings-result-list__one-shop-text {
  flex: 1;
}
@media (max-width: 1000px) {
  .page-openings-result-box .openings-result-list__one-shop-text {
    width: 100%;
    flex: auto;
  }
}
@media (max-width: 767px) {
  .openings-result-list__one-shop-text {
    width: 100%;
    flex: auto;
  }
}
.openings-result-list__one-shop-text h4 {
  font-size: 1.8rem;
}
.openings-result-list__one-shop-text p {
  font-size: 1.4rem;
}
.openings-result-list__one-shop-text ul {
  margin-top: 1rem;
  font-size: 1.4rem;
}
.openings-result-list__one-shop-text ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  border-bottom: 1px solid #DFDFDF;
}
.openings-result-list__one-shop-text ul li:first-of-type {
  border-top: 1px dotted #DFDFDF;
}
.openings-result-list__one-shop-text ul li span:first-of-type {
  flex-basis: 80px;
}
.openings-result-list__one-shop-text ul li span:nth-of-type(2) {
  flex-basis: 240px;
  flex-grow: 1;
}
.openings-result-list__one-link {
  background: #F8F8F8;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  margin-top: 2rem;
}
.openings-result-list__one-link .btn {
  flex-grow: 1;
}
@media (max-width: 1199px) {
  .openings-result-list__one-link .btn {
    width: calc(50% - 1rem);
    flex-grow: initial;
  }
}
@media (max-width: 950px) {
  .openings-result-list__one-link .btn {
    width: initial;
    flex-grow: 1;
  }
}
@media (max-width: 575px) {
  .openings-result-list__one-link .btn {
    width: 100%;
    flex-grow: initial;
  }
}
.openings-result-list__one-link .btn a {
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  padding: 1rem 1.5rem;
  display: inline-block;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.openings-result-list__one-link .btn a .arrow {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-left: 1rem;
}
.openings-result-list__one-link .btn-favorite img {
  width: 17px;
  height: 17px;
  margin-left: 1rem;
}
.openings-result-list__one-link .btn-favorite a {
  color: #F7B123;
  border: 1px solid #F7B123;
  background: #fff;
}
.openings-result-list__one-link .btn-detail a {
  background: #65B729;
}
.openings-result-list__one-link .btn-field a {
  background: #3598C4;
}
.openings-result-list__one-link .btn-app a {
  background: #FF8A34;
}

.column-sidebar-conditions {
  background: #F3F3F3;
  border-radius: 8px;
  padding: 3rem;
}
@media (max-width: 767px) {
  .column-sidebar-conditions {
    width: 100vw;
    border-radius: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: -4rem;
  }
}
@media (max-width: 575px) {
  .column-sidebar-conditions {
    padding: 2rem;
  }
}
.column-sidebar-conditions h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .column-sidebar-conditions h3 {
    text-align: left;
    margin-bottom: 0.5rem;
  }
}
.column-sidebar-conditions-word span {
  font-size: 1.4rem;
}
.column-sidebar-conditions-more {
  text-align: center;
  margin-top: 1.5rem;
}
.column-sidebar-conditions-more a {
  text-decoration: none;
  background: #414141;
  border-radius: 6px;
  padding: 1.5rem 2rem 1.5rem 4rem;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 575px) {
  .column-sidebar-conditions-more a {
    padding: 1rem 2rem 1rem 4rem;
  }
}
.column-sidebar-conditions-more p {
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  color: #d5d158;
}
.column-sidebar-conditions-more p::before, .column-sidebar-conditions-more p::after {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: #d5d158;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.column-sidebar-conditions-more p::after {
  background: #d5d158;
  transform: translateY(-50%) rotate(90deg);
}

/*page-openings-detail
-----------------------------------------------------*/
/*#header-openings*/
#header-openings .header-contact a {
  background: #f7b123;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  width: 12.4rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
@media (max-width: 575px) {
  #header-openings .header-contact a {
    height: 6rem;
  }
}

/*openings-title*/
@media (max-width: 575px) {
  .openings-title {
    margin-top: 2rem;
  }
}
.openings-title-inner-box {
  text-align: center;
}
.openings-title-inner-box h1 {
  font-size: 3.8rem;
}
@media (max-width: 575px) {
  .openings-title-inner-box h1 {
    font-size: 2.2rem;
  }
}
.openings-title-inner-box .career {
  font-size: 2.4rem;
  font-weight: bold;
  color: #65B729;
}
@media (max-width: 575px) {
  .openings-title-inner-box .career {
    font-size: 1.8rem;
  }
}
.openings-title-inner-box .page-nav {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
@media (max-width: 575px) {
  .openings-title-inner-box .page-nav {
    margin-top: 3rem;
  }
}
.openings-title-inner-box .page-nav ul {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  list-style: none;
}
@media (max-width: 575px) {
  .openings-title-inner-box .page-nav ul {
    flex-wrap: wrap;
    gap: 1rem 0;
  }
}
.openings-title-inner-box .page-nav li {
  width: 100%;
  border-left: 1px solid #DFDFDF;
  box-sizing: border-box;
}
.openings-title-inner-box .page-nav li:last-of-type {
  border-right: 1px solid #DFDFDF;
}
@media (max-width: 575px) {
  .openings-title-inner-box .page-nav li {
    width: 50%;
  }
  .openings-title-inner-box .page-nav li:nth-of-type(2) {
    border-right: 1px solid #DFDFDF;
  }
}
.openings-title-inner-box .page-nav li a {
  display: inline-block;
  padding: 0 1rem;
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .openings-title-inner-box .page-nav li a {
    font-size: 1.4rem;
  }
}
.openings-title-inner-box .page-nav li a .ja {
  font-weight: bold;
  display: inline-block;
  width: 100%;
}
.openings-title-inner-box .page-nav li a .en {
  display: inline-block;
  font-size: 1rem;
  color: #65B729;
  width: 100%;
}

/*openings-detail*/
.openings-detail {
  padding-top: 3rem;
}
.openings-detail-box {
  position: relative;
}
.openings-detail-box-img img {
  display: block;
  width: 100%;
  aspect-ratio: 80/31;
  -o-object-fit: cover;
  object-fit: cover;
}
.openings-detail-box-message {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  bottom: -4rem;
}
@media (max-width: 575px) {
  .openings-detail-box-message {
    position: relative;
    bottom: 0;
  }
}
.openings-detail-box-message-inner {
  background: #fff;
  padding: 6rem 4rem 1rem 4rem;
  max-width: 700px;
  box-sizing: border-box;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .openings-detail-box-message-inner {
    padding: 6rem 0 1rem 0;
  }
}
.openings-detail-box-message-inner img {
  max-width: 250px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -9rem;
}
@media (max-width: 575px) {
  .openings-detail-box-message-inner img {
    top: -4rem;
    max-width: 140px;
  }
}
.openings-detail-box-message-inner p {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .openings-detail-box-message-inner p {
    font-size: 1.6rem;
  }
}

/*staff-list*/
.staff-list {
  padding-top: 12rem;
}
@media (max-width: 575px) {
  .staff-list {
    padding-top: 6rem;
  }
}
.staff-list-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.staff-list-flex-box {
  width: calc(33.3333333333% - 2rem);
  background: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-top-right-radius: 3rem;
}
@media (max-width: 1023px) {
  .staff-list-flex-box {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 575px) {
  .staff-list-flex-box {
    width: 100%;
  }
}
.staff-list-flex-box-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-right-radius: 3rem;
}
.staff-list-flex-box-text {
  padding: 3rem;
}
@media (max-width: 767px) {
  .staff-list-flex-box-text {
    padding: 2.5rem 2rem;
  }
}
.staff-list-flex-box-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .staff-list-flex-box-text h3 {
    font-size: 1.8rem;
  }
}
.staff-list-flex-box-text .director,
.staff-list-flex-box-text .career {
  font-size: 1.4rem;
  margin: 0;
}
.staff-list-flex-box-text .text {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

/*photo-gallery*/
.photo-gallery {
  padding-bottom: 18rem;
  margin-bottom: 10rem;
  margin-top: 10rem;
  position: relative;
}
@media (max-width: 575px) {
  .photo-gallery {
    padding-bottom: 8rem;
    margin-bottom: 6rem;
    margin-top: 6rem;
  }
}
.photo-gallery::after {
  content: "";
  background: #f3f3f3;
  position: absolute;
  width: 74%;
  height: 100%;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-top-left-radius: 20rem;
}
@media (max-width: 575px) {
  .photo-gallery::after {
    width: 90%;
  }
}

.photo-gallery-box .slick-dots {
  position: absolute;
  display: flex;
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media (max-width: 575px) {
  .photo-gallery-box .slick-dots {
    bottom: -4rem;
  }
}
.photo-gallery-box .slick-dots li {
  display: inline-block;
  margin: 0 0.5rem;
}
.photo-gallery-box .slick-dots li button {
  position: relative;
  color: transparent;
  background: none;
  border: none;
  outline: none;
  height: 10px;
}
.photo-gallery-box .slick-dots li button::before {
  content: "";
  cursor: pointer;
  margin: auto;
  position: absolute;
  background: #ccc;
  width: 10px;
  height: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
}
.photo-gallery-box .slick-dots li.slick-active button::before {
  background: #65B729;
  width: 10px;
  height: 10px;
  border-radius: 20px;
}
.photo-gallery-box .gallery-slider {
  max-width: 100%;
}
.photo-gallery-box .gallery-slider .slick-slide {
  height: auto;
  margin: 0 1rem;
  overflow: hidden;
}
.photo-gallery-box .gallery-slider .slick-slide img {
  display: block;
  margin: 0 auto;
  max-width: none;
  width: 100%;
}
.photo-gallery-box .caption {
  margin-top: 1.5rem;
}

/*openings-about*/
@media (max-width: 767px) {
  .openings-about .container-ex {
    padding: 0;
  }
}
.openings-about-table table,
.openings-about-table td,
.openings-about-table th {
  border-collapse: collapse;
}
.openings-about-table td,
.openings-about-table th {
  padding: 1.5rem 2rem;
  text-align: left;
  border: 1px solid #DFDFDF;
}
@media (max-width: 575px) {
  .openings-about-table td,
  .openings-about-table th {
    display: block;
  }
}
.openings-about-table table {
  table-layout: fixed;
  width: 100%;
}
@media (max-width: 575px) {
  .openings-about-table table {
    border-top: 1px solid #DFDFDF;
    border-right: 1px solid #DFDFDF;
    border-left: 1px solid #DFDFDF;
  }
}
.openings-about-table th {
  width: 170px;
  background: #F3F3F3;
}
@media (max-width: 575px) {
  .openings-about-table th {
    width: initial;
    font-size: 1.6rem;
    border: none;
  }
}
@media (max-width: 575px) {
  .openings-about-table td {
    font-size: 1.4rem;
    border-right: none;
    border-left: none;
  }
}
.openings-about-table iframe {
  margin-top: 1.5rem;
}
.openings-about-table a {
  color: #65B729;
}

/*openings-information*/
.openings-information-table {
  background: #fff;
  padding: 5rem 9rem;
}
@media (max-width: 767px) {
  .openings-information-table {
    padding: 2rem;
  }
}
.openings-information-table table,
.openings-information-table td,
.openings-information-table th {
  border-collapse: collapse;
}
.openings-information-table td,
.openings-information-table th {
  padding: 1.5rem 2rem;
  text-align: left;
  border: 1px solid #DFDFDF;
}
@media (max-width: 575px) {
  .openings-information-table td,
  .openings-information-table th {
    display: block;
  }
}
.openings-information-table table {
  table-layout: fixed;
  width: 100%;
}
@media (max-width: 575px) {
  .openings-information-table table {
    border-top: 1px solid #DFDFDF;
    border-right: 1px solid #DFDFDF;
    border-left: 1px solid #DFDFDF;
  }
}
.openings-information-table th {
  width: 190px;
  background: #F3F3F3;
}
@media (max-width: 575px) {
  .openings-information-table th {
    width: initial;
    font-size: 1.6rem;
    border: none;
  }
}
@media (max-width: 575px) {
  .openings-information-table td {
    font-size: 1.4rem;
    border-right: none;
    border-left: none;
  }
}
.openings-information-table iframe {
  margin-top: 1.5rem;
}
.openings-information-table a {
  color: #65B729;
}

/*#footer-openings*/
.footer-openings {
  width: 100%;
  text-align: center;
  background: #65B729;
}
.footer-openings__box {
  max-width: 1200px;
  padding: 6rem 5%;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .footer-openings__box {
    padding: 4rem 2rem;
  }
}
.footer-openings__box h2 {
  color: #fff;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
}
.footer-openings__box h2 .ja {
  font-size: 3.4rem;
  display: inline-block;
  width: 100%;
}
@media (max-width: 575px) {
  .footer-openings__box h2 .ja {
    font-size: 2.2rem;
  }
}
.footer-openings__box h2 .en {
  font-size: 1.6rem;
  font-weight: 400;
  display: inline-block;
  width: 100%;
}
.footer-openings__box-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-openings__box-btn a {
  width: 218px;
  height: 122px;
  box-sizing: border-box;
  padding: 1.5rem;
  background: #fff;
  color: #65B729;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 8px;
}
.footer-openings__box-btn a img {
  width: 40px;
  height: 48px;
}
.footer-openings__box-btn a span {
  display: inline-block;
  width: 100%;
  font-weight: bold;
}

.footer-openings-box {
  padding: 6rem 0;
  background: #414141;
  text-align: center;
}
.footer-openings-box h2 {
  font-size: 2.2rem;
  color: #fff;
}
.footer-openings-box h2::first-letter {
  color: #65B729;
}
.footer-openings-box .for-net .footer-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.footer-openings-box .for-net .footer-btn a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #65B729;
  position: relative;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem 4rem;
  width: 200px;
  display: inline-block;
  box-sizing: border-box;
}
.footer-openings-box .for-net .footer-btn a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #65B729;
  border-bottom: 2px solid #65B729;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  right: 20px;
}
.footer-openings-box .search-methods {
  margin-top: 4rem;
  margin-bottom: 5rem;
}
.footer-openings-box .search-methods-ul {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media (max-width: 575px) {
  .footer-openings-box .search-methods-ul li {
    width: calc(50% - 2rem);
  }
}
.footer-openings-box .search-methods-ul a {
  display: block;
  padding: 0.5rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
}
.footer-openings-box .copy {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
}
@media (max-width: 575px) {
  .footer-openings-box .copy {
    font-size: 1rem;
  }
}

/*page-interview
-----------------------------------------------------*/
.page-interview-box {
  position: relative;
}
@media (max-width: 767px) {
  .page-interview-box .h2-title02 {
    margin-bottom: 10rem;
  }
}
@media (max-width: 575px) {
  .page-interview-box .h2-title02 {
    margin-bottom: 12rem;
  }
}

/*page-interview-detail
-----------------------------------------------------*/
.page-interview-detail .interview-detai-box {
  padding: 0 9rem;
}
@media (max-width: 767px) {
  .page-interview-detail .interview-detai-box {
    padding: 0;
  }
}
.page-interview-detail .interview-detai-box-h1 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 3rem;
}
.page-interview-detail .interview-detai-box-h1 h1 {
  font-size: 3.6rem;
}
@media (max-width: 767px) {
  .page-interview-detail .interview-detai-box-h1 h1 {
    font-size: 2.6rem;
  }
}
.page-interview-detail .interview-detai-box-h1 span {
  font-size: 1.4rem;
  border: 1px solid #707070;
  padding: 0 10px;
}
.page-interview-detail .interview-detai-box-img {
  text-align: center;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .page-interview-detail .interview-detai-box-img {
    margin-top: 2rem;
  }
}
.page-interview-detail .interview-detai-box .career {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .page-interview-detail .interview-detai-box .career {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
}
.page-interview-detail .interview-detai-box .career br {
  display: none;
}
@media (max-width: 767px) {
  .page-interview-detail .interview-detai-box .career br {
    display: block;
  }
}
.page-interview-detail .interview-detai-box .detail-catch {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .page-interview-detail .interview-detai-box .detail-catch {
    font-size: 1.8rem;
    margin-top: 3rem;
  }
}
.page-interview-detail .interview-detai-box h2 {
  font-size: 2rem;
  color: #65B729;
  position: relative;
  display: inline-block;
  padding-left: 3rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .page-interview-detail .interview-detai-box h2 {
    font-size: 1.6rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
  }
}
.page-interview-detail .interview-detai-box h2::before {
  content: "";
  background: #65B729;
  position: absolute;
  top: 1.6rem;
  display: inline-block;
  width: 2rem;
  height: 1px;
  left: 0;
}
@media (max-width: 767px) {
  .page-interview-detail .interview-detai-box h2::before {
    top: 1.3rem;
  }
}

/*page-column
-----------------------------------------------------*/
/*2カラム共通*/
.two-column {
  display: flex;
  gap: 10rem;
}
@media (max-width: 1199px) {
  .two-column {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .two-column {
    flex-wrap: wrap;
  }
}
.two-column .two-column-contents {
  max-width: 790px;
}
.two-column .column-sidebar {
  max-width: 300px;
  width: 100%;
}
@media (max-width: 767px) {
  .two-column .column-sidebar {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .two-column .column-sidebar .column-sidebar-popular,
  .two-column .column-sidebar .column-sidebar-cat {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 575px) {
  .two-column .column-sidebar .column-sidebar-popular,
  .two-column .column-sidebar .column-sidebar-cat {
    width: 100%;
  }
}
.two-column .column-sidebar h4 {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333333;
}
@media (max-width: 575px) {
  .two-column .column-sidebar h4 {
    font-size: 1.8rem;
  }
}
.two-column .column-sidebar h4::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 50px;
  border-bottom: 1px solid #65B729;
}
.two-column .column-sidebar .popular-articles-list-box {
  padding: 2rem 0;
  border-bottom: 1px solid #DFDFDF;
}
.two-column .column-sidebar .popular-articles-list-box a {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
}
.two-column .column-sidebar .popular-articles-list-box-img {
  max-width: 100px;
  position: relative;
  flex-shrink: 0;
}
.two-column .column-sidebar .popular-articles-list-box-img span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background: #65B729;
  width: 26px;
  height: 26px;
  position: absolute;
  text-align: center;
  border-radius: 30px;
  left: 0;
  top: -10px;
}
.two-column .column-sidebar .popular-articles-list-box-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}
.two-column .column-sidebar .popular-articles-list-box-title .title {
  font-size: 1.4rem;
  font-weight: bold;
}
.two-column .column-sidebar .column-sidebar-cat {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .two-column .column-sidebar .column-sidebar-cat {
    margin-top: 0;
  }
}
.two-column .column-sidebar .column-sidebar-cat .wp-block-categories-list .cat-item {
  padding: 2rem 0;
  border-bottom: 1px solid #DFDFDF;
}
.two-column .column-sidebar .column-sidebar-cat .wp-block-categories-list .cat-item a {
  display: block;
  position: relative;
  text-decoration: none;
}
.two-column .column-sidebar .column-sidebar-cat .wp-block-categories-list .cat-item a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  transform: rotate(-45deg);
  position: absolute;
  top: 26%;
  right: 10px;
}

/*page-company
-----------------------------------------------------*/
.company-profile {
  margin-bottom: 5rem;
}
@media (max-width: 575px) {
  .company-profile {
    margin-bottom: 3rem;
  }
}
.company-profile-list > li {
  position: relative;
  padding: 3rem;
  display: flex;
  align-items: center;
  border-top: 1px solid #DFDFDF;
}
@media (max-width: 575px) {
  .company-profile-list > li {
    flex-wrap: wrap;
    padding: 2rem;
  }
}
.company-profile-list > li::after {
  position: absolute;
  content: "";
  left: 0;
  top: -1px;
  width: 180px;
  border-top: 1px solid #65B729;
}
.company-profile-list > li:last-of-type {
  border-bottom: 1px solid #DFDFDF;
}
.company-profile-list > li span:first-of-type {
  flex-basis: 230px;
  font-weight: bold;
}
@media (max-width: 575px) {
  .company-profile-list > li span:first-of-type {
    margin-bottom: 1rem;
  }
}
.company-profile-list > li span:nth-of-type(2) {
  flex-basis: 400px;
  flex-grow: 1;
}
.company-profile .list-style-disc {
  padding-left: 1.5rem;
}

.company-box {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 767px) {
  .company-box {
    gap: 4rem;
  }
}
@media (max-width: 575px) {
  .company-box {
    flex-wrap: wrap;
  }
}
.company-box-img {
  max-width: 400px;
  width: 100%;
}
@media (max-width: 575px) {
  .company-box-img {
    max-width: 100%;
  }
}
.company-box-img img {
  border-top-right-radius: 3rem;
}
.company-box-text {
  width: 100%;
}

/*inexp-exp_common(未経験者サポート、経験者サポート共通)
-----------------------------------------------------*/
.inexp-exp_common-intr {
  position: relative;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6rem;
  text-align: center;
}
.inexp-exp_common-intr::before {
  content: "";
  position: absolute;
  background: #f0f0f0;
  width: 50%;
  height: 100%;
  left: 0;
  z-index: -1;
}
.inexp-exp_common-intr::after {
  content: "";
  position: absolute;
  background: #f8f8f8;
  width: 50%;
  height: 100%;
  right: 0;
  z-index: -1;
}
.inexp-exp_common-intr .border {
  font-size: 2rem;
  font-weight: bold;
  border: 1px solid #333;
  padding: 0.2rem 2rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .inexp-exp_common-intr .border {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .inexp-exp_common-intr .border {
    font-size: 1.6rem;
  }
}
.inexp-exp_common-intr .green {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  background: #65B729;
  padding: 0.2rem 1.5rem;
  display: inline-block;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .inexp-exp_common-intr .green {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .inexp-exp_common-intr .green {
    font-size: 1.8rem;
  }
}
.inexp-exp_common-intr .cometrue {
  margin-top: 2rem;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .inexp-exp_common-intr .cometrue {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .inexp-exp_common-intr .cometrue {
    font-size: 2rem;
  }
}

.inexp-exp_common-problems {
  display: flex;
  gap: 6rem;
}
@media (max-width: 767px) {
  .inexp-exp_common-problems {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.inexp-exp_common-problems-img {
  max-width: 550px;
  width: 100%;
}
@media (max-width: 767px) {
  .inexp-exp_common-problems-img {
    max-width: 100%;
  }
}
.inexp-exp_common-problems-img img {
  border-top-right-radius: 3rem;
}
.inexp-exp_common-problems-text {
  width: 100%;
}
.inexp-exp_common-problems-text .list-style-check {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 575px) {
  .inexp-exp_common-problems-text .list-style-check {
    font-size: 1.6rem;
  }
}
.inexp-exp_common-problems-text .list-style-check li {
  padding: 2rem 2rem 2rem 3.5rem;
  border-bottom: 1px solid #DFDFDF;
  position: relative;
}
@media (max-width: 575px) {
  .inexp-exp_common-problems-text .list-style-check li {
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  }
}
.inexp-exp_common-problems-text .list-style-check li::before {
  position: absolute;
  top: 36%;
  left: 5px;
  display: block;
  border-right: 2px solid #65B729;
  border-bottom: 2px solid #65B729;
  content: "";
  width: 8px;
  height: 12px;
  transform: rotate(45deg);
}

.take-support {
  background: #ffffde;
  position: relative;
  border-radius: 2rem;
  padding: 5rem 3rem;
  box-sizing: border-box;
  margin-top: 6rem;
}
@media (max-width: 575px) {
  .take-support {
    margin-top: 4rem;
  }
}
.take-support p {
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .take-support p {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .take-support p {
    font-size: 1.8rem;
  }
}
.take-support p strong {
  color: #65B729;
}
.take-support img {
  position: absolute;
  width: 96px;
  right: 10px;
  bottom: -30px;
}
@media (max-width: 767px) {
  .take-support img {
    bottom: -80px;
  }
}

.support-bgimg {
  background-image: url(../images/inexperienced/inexperienced-bg.jpg);
  background-size: cover;
  background-position: center;
  margin-top: 12rem;
  padding-bottom: 10rem;
}
@media (max-width: 575px) {
  .support-bgimg {
    padding-bottom: 6rem;
  }
}
.support-bgimg .support-bgimg-list {
  background: #fff;
  padding: 4rem 6rem 6rem 6rem;
  border-top-left-radius: 10rem;
}
@media (max-width: 575px) {
  .support-bgimg .support-bgimg-list {
    padding: 2rem;
    border-top-left-radius: 5rem;
  }
}
.support-bgimg .support-bgimg-list .list-style-circle {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 575px) {
  .support-bgimg .support-bgimg-list .list-style-circle {
    font-size: 1.6rem;
  }
}
.support-bgimg .support-bgimg-list .list-style-circle li {
  padding: 2rem 2rem 2rem 3rem;
  border-bottom: 1px solid #DFDFDF;
  position: relative;
}
@media (max-width: 575px) {
  .support-bgimg .support-bgimg-list .list-style-circle li {
    padding: 1.5rem 1.5rem 1.5rem 3rem;
  }
}
.support-bgimg .support-bgimg-list .list-style-circle li::before {
  position: absolute;
  top: 44%;
  left: 10px;
  display: block;
  background: #65B729;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 10px;
}

.voices-success {
  position: relative;
  margin-top: 10rem;
}
@media (max-width: 575px) {
  .voices-success {
    margin-top: 6rem;
  }
}
.voices-success::after {
  content: "";
  background: #f3f3f3;
  position: absolute;
  width: 100%;
  height: 71%;
  top: 0;
  z-index: -1;
  border-top-left-radius: 20rem;
}
@media (max-width: 980px) {
  .voices-success::after {
    height: 88%;
  }
}
.voices-success-flex {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 980px) {
  .voices-success-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
}
.voices-success-flex-case {
  width: calc(33.3333333333% - 1.25rem);
}
@media (max-width: 980px) {
  .voices-success-flex-case {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .voices-success-flex-case {
    width: 100%;
  }
}
.voices-success-flex-case-inner {
  text-align: center;
}
.voices-success-flex-case-inner .num-wrap {
  text-align: center;
}
.voices-success-flex-case-inner .num-wrap .case {
  font-size: 1.8rem;
  color: #65B729;
  font-weight: bold;
}
.voices-success-flex-case-inner .num-wrap .num {
  font-size: 3rem;
  color: #65B729;
  font-weight: bold;
}
.voices-success-flex-case-inner .case-text {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
}
@media (max-width: 1199px) {
  .voices-success-flex-case-inner .case-text {
    font-size: 1.6rem;
  }
}
.voices-success-flex-case-inner .case-text::before {
  background-color: #65B729;
  bottom: -15px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 30px;
}
.voices-success-flex-case-inner .case-text strong {
  font-size: 2rem;
}
@media (max-width: 1199px) {
  .voices-success-flex-case-inner .case-text strong {
    font-size: 1.8rem;
  }
}
.voices-success-flex-case-inner .age {
  font-size: 1.3rem;
  border: 1px solid #333;
  text-align: center;
  display: inline-block;
  width: 74px;
  height: 23px;
  margin: 4rem auto 0 auto;
  background: #fff;
}
.voices-success-flex-case-img {
  max-width: 200px;
  margin: 3rem auto;
}

.why-select .why-select-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 6rem;
}
.why-select .why-select-flex:last-of-type {
  margin-bottom: 0;
}
.why-select .why-select-flex-box {
  width: calc(33.3333333333% - 0.7rem);
  border-top-right-radius: 3rem;
  padding: 4rem;
  box-sizing: border-box;
}
.why-select .why-select-flex-box:nth-child(odd) {
  background-color: #ffffde;
}
.why-select .why-select-flex-box:nth-child(even) {
  background-color: #ffffed;
}
@media (max-width: 767px) {
  .why-select .why-select-flex-box {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .why-select .why-select-flex-box {
    padding: 3rem 2rem;
  }
}
.why-select .why-select-flex-box .h4-wrap {
  text-align: center;
  margin-bottom: 0.5rem;
}
.why-select .why-select-flex-box .h4-wrap .why-select-num {
  font-size: 3rem;
  color: #65B729;
  font-weight: bold;
  position: relative;
  padding: 0 2.5rem;
  display: inline-block;
  line-height: 1;
}
.why-select .why-select-flex-box .h4-wrap .why-select-num::before, .why-select .why-select-flex-box .h4-wrap .why-select-num::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
}
.why-select .why-select-flex-box .h4-wrap .why-select-num::before {
  left: 0;
}
.why-select .why-select-flex-box .h4-wrap .why-select-num::after {
  right: 0;
}
.why-select .why-select-flex-box p {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 575px) {
  .why-select .why-select-flex-box p {
    font-size: 1.6rem;
  }
}
.why-select .why-select-first-wrap {
  text-align: center;
}
.why-select-first {
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 12rem;
}
@media (max-width: 767px) {
  .why-select-first {
    padding: 0 10rem;
  }
}
.why-select-first::before, .why-select-first::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 140px;
  height: 1px;
  background-color: #333333;
}
.why-select-first::before {
  left: -45px;
  transform: rotate(70deg);
}
.why-select-first::after {
  right: -45px;
  transform: rotate(110deg);
}
.why-select-first .page-title-regist-login {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  background: #65B729;
  padding: 0.2rem 1.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .why-select-first .page-title-regist-login {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .why-select-first .page-title-regist-login {
    font-size: 1.6rem;
  }
}
.why-select-first .green {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  background: #65B729;
  padding: 0.2rem 1.5rem;
  display: inline-block;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .why-select-first .green {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .why-select-first .green {
    font-size: 1.8rem;
  }
}
.why-select-first .first {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .why-select-first .first {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .why-select-first .first {
    font-size: 1.6rem;
  }
}
.why-select-first .first strong {
  color: #65B729;
}

.inexp-exp_common .seeker-inputform {
  background: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 6rem 8rem;
}
@media (max-width: 767px) {
  .inexp-exp_common .seeker-inputform {
    padding: 4rem 2rem;
  }
}

.inexp-exp_common.background-con {
  position: relative;
  margin-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 575px) {
  .inexp-exp_common.background-con {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }
}
.inexp-exp_common.background-con::after {
  content: "";
  background: #f3f3f3;
  position: absolute;
  width: 100%;
  height: 35%;
  top: 0;
  z-index: -1;
  border-top-right-radius: 20rem;
}
@media (max-width: 767px) {
  .inexp-exp_common.background-con::after {
    border-top-right-radius: 10rem;
  }
}

/*page-experienced
-----------------------------------------------------*/
.page-experienced .why-select-first::before, .page-experienced .why-select-first::after {
  width: 100px;
}
.page-experienced .why-select-first::before {
  left: -30px;
}
.page-experienced .why-select-first::after {
  right: -30px;
}

/*input共通
-----------------------------------------------------*/
.inputform dl {
  display: flex;
  gap: 1rem 0;
  border-bottom: 1px solid #DFDFDF;
  padding: 3rem 2rem;
}
@media (max-width: 575px) {
  .inputform dl {
    flex-wrap: wrap;
    padding: 3rem 0;
  }
}
.inputform dl dt {
  flex-basis: 230px;
  display: flex;
  align-items: center;
  gap: 2rem;
  line-height: 1.4;
  font-weight: bold;
}
@media (max-width: 575px) {
  .inputform dl dt {
    flex-basis: 400px;
  }
}
.inputform dl dt .require {
  color: #bf2626;
  font-size: 1.1rem;
  font-weight: bold;
  border: 1px solid #bf2626;
  padding: 0.2rem 0.5rem;
}
.inputform dl dd {
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-basis: 300px;
}
@media (max-width: 575px) {
  .inputform dl dd {
    flex-basis: 400px;
  }
}
.inputform dl dd span {
  margin: 0 2rem 0 1rem;
}
.inputform dl input[type=text],
.inputform dl input[type=email],
.inputform dl input[type=tel],
.inputform dl textarea,
.inputform dl select {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.inputform dl .input-company,
.inputform dl .input-department,
.inputform dl .input-name,
.inputform dl .input-furigana,
.inputform dl .input-email,
.inputform dl .input-tel,
.inputform dl .input-occupation,
.inputform dl .input-id {
  max-width: 350px;
}
.inputform dl .input-textarea {
  max-width: 100%;
  height: 200px;
}
.inputform dl .select-wrap-pref,
.inputform dl .select-wrap-contact,
.inputform dl .select-wrap-year,
.inputform dl .select-wrap-month,
.inputform dl .select-wrap-day {
  position: relative;
  width: 100%;
}
.inputform dl .select-wrap-pref:after,
.inputform dl .select-wrap-contact:after,
.inputform dl .select-wrap-year:after,
.inputform dl .select-wrap-month:after,
.inputform dl .select-wrap-day:after {
  display: inline-block;
  position: absolute;
  top: 36%;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg);
}
.inputform dl .select-pref,
.inputform dl .select-contact,
.inputform dl .select-year,
.inputform dl .select-month,
.inputform dl .select-day {
  padding-right: 4rem;
}
.inputform dl .select-wrap-pref,
.inputform dl .select-wrap-year {
  max-width: 120px;
}
.inputform dl .select-wrap-pref:after,
.inputform dl .select-wrap-year:after {
  right: 12%;
}
.inputform dl .select-pref,
.inputform dl .select-year {
  max-width: 120px;
}
.inputform dl .select-wrap-month,
.inputform dl .select-wrap-day {
  max-width: 100px;
}
.inputform dl .select-wrap-month:after,
.inputform dl .select-wrap-day:after {
  right: 12%;
}
.inputform dl .select-month,
.inputform dl .select-day {
  max-width: 100px;
}
.inputform dl .select-wrap-contact {
  max-width: 250px;
}
.inputform dl .select-wrap-contact:after {
  right: 6%;
}
.inputform dl .select-contact {
  max-width: 250px;
}
.inputform dl .check-wrap {
  width: 100%;
}
.inputform dl .check-wrap li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.inputform dl .check-wrap li:last-of-type {
  margin-bottom: 0;
}
.inputform dl .input-check {
  box-sizing: border-box;
  position: absolute;
}
.inputform dl .label-check {
  position: relative;
  display: flex;
  flex: 1;
}
.inputform dl .label-check::before {
  left: 0;
  display: block;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 2px;
  content: "";
  max-width: 24px;
  width: 100%;
  height: 24px;
  margin-right: 1rem;
}
.inputform dl .input-check:checked + .label-check::after {
  position: absolute;
  top: 4px;
  left: 7px;
  display: block;
  border-right: 3px solid #007bff;
  border-bottom: 3px solid #007bff;
  content: "";
  width: 8px;
  height: 12px;
  transform: rotate(45deg);
}
.inputform .dl-textarea {
  align-items: flex-start;
}
.inputform .birthday-dd {
  flex-wrap: wrap;
  gap: 0.5rem;
}
.inputform .birthday {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .inputform .birthday {
    width: 100%;
  }
  .inputform .birthday + .birthday {
    margin-top: 1rem;
  }
}
.inputform .submit {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
  margin-top: 5rem;
}
.inputform .submit:after {
  display: inline-block;
  position: absolute;
  right: 10%;
  top: 42%;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.inputform .submit input[type=submit] {
  display: inline-block;
  width: 200px;
  padding: 2rem 4rem;
  color: #fff;
  background: #f45b37;
  text-decoration: none;
  border-radius: 8px;
  line-height: 1;
  font-weight: bold;
  outline: none;
  border: none;
  font-size: 1.6rem;
  transition: 0.3s linear;
  cursor: pointer;
}
.inputform .submit input[type=submit]:hover {
  opacity: 0.6;
}
.inputform .submit #submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

form.myForm input[type=text]:focus,
form.myForm input[type=password]:focus {
  padding: 0.8rem 1.5rem !important;
  border-radius: 6px !important;
}

form.myForm select:focus {
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
}

/*page-checktest-form
-----------------------------------------------------*/
.checktest-inputform {
  border: 5px solid #F3F3F3;
  padding: 5rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .checktest-inputform {
    padding: 2rem;
    margin-bottom: 4rem;
  }
}
.checktest-inputform dl {
  padding: 0;
  border-bottom: 0;
}
.checktest-inputform dl dt {
  flex-basis: 200px;
}
.checktest-inputform dl .input-name {
  max-width: 200px;
  margin-right: 1rem;
}
.checktest-inputform dl .input-name-sei {
  margin-right: 0;
}

/*page-seeker-form
-----------------------------------------------------*/
.seeker-inputform dl .input-name {
  max-width: 200px;
  margin-right: 1rem;
}
.seeker-inputform dl .input-name-mei {
  margin-right: 0;
}

/*page-recruiters
-----------------------------------------------------*/
.recruiters-inputform dl .input-name {
  max-width: 200px;
  margin-right: 1rem;
}
.recruiters-inputform dl .input-name-mei {
  margin-right: 0;
}

/*regist-login (仮登録・ログイン共通)
-----------------------------------------------------*/
.page-title-regist-login {
  padding-bottom: 18rem;
}
.page-title-regist-login-inner {
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
  padding: 5rem 5rem 0 5rem;
  border-top-right-radius: 7rem;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.page-title-regist-login-inner h2 {
  font-size: 4.4rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-title-regist-login-inner h2 {
    font-size: 3.4rem;
  }
}
.page-title-regist-login-inner h2::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 50%;
  width: 50px;
  height: 3px;
  background: #65B729;
  transform: translateX(-50%);
}

.regist-login .regist-login-form {
  max-width: 400px;
  margin: 0 auto;
}
.regist-login .regist-login-form dl {
  margin-bottom: 2rem;
}
.regist-login input[type=email],
.regist-login input[type=password] {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.regist-login .input-email,
.regist-login .input-password {
  max-width: 400px;
}
.regist-login .submit {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
  margin-top: 4rem;
}
.regist-login .submit:after {
  display: inline-block;
  position: absolute;
  right: 10%;
  top: 42%;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.regist-login .submit input[type=submit] {
  display: inline-block;
  width: 300px;
  padding: 2rem 4rem;
  color: #fff;
  background: #f45b37;
  text-decoration: none;
  border-radius: 8px;
  line-height: 1;
  font-weight: bold;
  outline: none;
  border: none;
  font-size: 1.6rem;
  transition: 0.3s linear;
  cursor: pointer;
}
.regist-login .submit input[type=submit]:hover {
  opacity: 0.6;
}
.regist-login .login-check .input-check {
  box-sizing: border-box;
  position: absolute;
}
.regist-login .login-check .label-check {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.regist-login .login-check .label-check::before {
  left: 0;
  display: block;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 2px;
  content: "";
  max-width: 24px;
  width: 100%;
  height: 24px;
  margin-right: 1rem;
}
.regist-login .login-check .input-check:checked + .label-check::after {
  position: absolute;
  top: 4px;
  left: 7px;
  display: block;
  border-right: 3px solid #007bff;
  border-bottom: 3px solid #007bff;
  content: "";
  width: 8px;
  height: 12px;
  transform: rotate(45deg);
}
.regist-login .mail-forget {
  text-align: center;
  margin-top: 3rem;
}
.regist-login .mail-forget a {
  text-decoration: none;
  color: #007bff;
}

.login-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 0;
}

.login-item {
  width: 47.3958333333%;
  background: #F3F3F3;
  text-align: center;
  padding: 5rem 3rem;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .login-item {
    padding: 3rem 2rem;
  }
}
@media (max-width: 800px) {
  .login-item {
    width: 100%;
  }
}
.login-item__title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}
@media (max-width: 575px) {
  .login-item__title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
.login-item__btn {
  margin-top: 0;
  white-space: nowrap;
}
.login-item__btn:nth-of-type(n + 2) {
  margin-top: 2rem;
}
.login-item__btn a {
  width: 100%;
  max-width: 300px;
  padding: 1.5rem 3rem;
}

/*flow
-----------------------------------------------------*/
.flow-flex {
  display: flex;
  justify-content: center;
  gap: 10rem 3.5rem;
  margin-top: 10rem;
}
@media (max-width: 1023px) {
  .flow-flex {
    flex-wrap: wrap;
  }
}
.flow-flex .green {
  color: #65B729;
}
.flow-flex .col {
  width: calc(25% - 1.5rem);
  text-align: center;
  border-top-right-radius: 3rem;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
}
@media (max-width: 1023px) {
  .flow-flex .col {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 575px) {
  .flow-flex .col {
    width: 100%;
  }
}
.flow-flex .col .num {
  font-size: 3rem;
  font-weight: 700;
  padding: 0 25px;
  flex-direction: column;
  line-height: 1;
  display: inline-flex;
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
}
.flow-flex .col .num:before, .flow-flex .col .num:after {
  content: "";
  position: absolute;
  top: 60%;
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: #65B729;
}
.flow-flex .col .num:before {
  left: 0;
}
.flow-flex .col .num:after {
  right: 0;
}
.flow-flex .col .num span {
  font-size: 1.4rem;
}
.flow-flex-img img {
  border-top-right-radius: 3rem;
}
.flow-flex-text {
  padding: 2rem 1rem;
}
.flow-flex-text h3 {
  font-size: 1.8rem;
}
.flow-flex-text small {
  font-size: 1.3rem;
}/*# sourceMappingURL=style.css.map */