@charset "UTF-8";
/*--------------- 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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

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

img {
  vertical-align: bottom;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent none;
  box-sizing: border-box;
  box-shadow: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  vertical-align: middle;
}

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

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

/*--------------- base ---------------*/
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Osaka", "Arial", sans-serif;
  font-size: 1rem;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  line-height: 1;
  line-break: strict;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

_::-webkit-full-page-media, _:future, :root img {
  image-rendering: auto;
}

/*--------------- container（layout） ---------------*/
.container {
  padding-left: 5%;
  padding-right: 5%;
}

@media screen and (min-width: 768px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}
/*--------------- block（layout） ---------------*/
.block {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.block:nth-child(odd) {
  background-color: #f8f8f8;
}
.block:nth-child(even) {
  background-color: #fff;
}

@media screen and (min-width: 1200px) {
  .block {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
/*--------------- title（component） ---------------*/
.block-title {
  margin-bottom: clamp(2.8rem, 4vw, 4rem);
  text-align: center;
}
.block-title__inner {
  display: inline-block;
  position: relative;
  text-align: center;
}
.block-title__heading--en {
  margin-bottom: 0.8rem;
  font-size: clamp(4rem, 10.6vw, 5.4rem);
  color: #147B50;
  font-weight: 700;
  font-family: "Varela Round", sans-serif;
}
.block-title__heading--jp {
  color: #147B50;
  font-size: clamp(1.4rem, 3.7vw, 1.8rem);
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.6;
}

/*--------------- title（component） ---------------*/
.block-lead {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .block-lead {
    font-size: 1.8rem;
  }
}
/*--------------- title（component） ---------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 1.6em;
  color: #fff;
  background: #FB591B;
  font-weight: 700;
  border-radius: 50rem;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .btn {
    transition: 0.2s;
  }
  .btn:hover {
    opacity: 0.8;
  }
}
.btn--sm {
  font-size: 1.4rem;
}
.btn--md {
  font-size: 1.6rem;
}
.btn--lg {
  width: 80%;
  max-width: 600px;
  font-size: 1.8rem;
}
.btn--header {
  padding: 0.8em 1.2em;
  font-size: clamp(1.3rem, 3.47vw, 1.5rem);
}
.btn--guide {
  width: 80%;
  max-width: 600px;
  padding: 0.8em 1.2em;
  font-size: 1.6rem;
}
.btn--noshadow {
  box-shadow: none;
}
.btn--arrow::after {
  background-image: url("../img/common/ico_arrow_r_white.svg");
}
.btn--download::after {
  background-image: url("../img/common/ico_download_white.svg");
}
.btn--entry {
  width: 100%;
  min-height: 4.8rem;
  padding: 1.2rem 1.6rem;
  font-size: clamp(1.4rem, 3.73vw, 1.6rem);
}
.btn--back {
  width: 100%;
  min-height: 4.8rem;
  padding: 1.2rem 1.6rem;
  font-size: clamp(1.4rem, 3.73vw, 1.6rem);
  color: #fff;
  background-color: #797979;
}
.btn--back::before {
  left: 0.4rem;
  margin-left: 0;
  margin-right: 0.5em;
  background-image: url("../img/common/ico_arrow_l_white.svg");
  background-position: center right 55%;
}

.btn--arrow::after,
.btn--download::after,
.btn--back::before {
  content: "";
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
  margin-left: 0.5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*--------------- alert（component） ---------------*/
.alert {
  display: block;
  width: 100%;
  padding: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.alert-primary {
  color: #fff;
  background-color: #ae0879;
}

.alert-red {
  color: #fff;
  background-color: #c33939;
}

.alert-brown {
  background-color: #FB591B;
}

.alert-green {
  color: #fff;
  background-color: #147B50;
}

@media screen and (min-width: 768px) {
  .alert {
    font-size: 1.8rem;
  }
}
/*--------------- header（object） ---------------*/
.header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  height: 6rem;
  display: flex;
  align-items: center;
  padding: 0.2rem 0.8rem;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  z-index: 1030;
}
.header__inner {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}
.header__logo {
  width: 10rem;
  margin-bottom: 0.2rem;
}
.header__logo img {
  object-fit: contain;
}
.header__title {
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
.header__actions {
  display: flex;
  gap: 0.4rem;
}

@media screen and (min-width: 768px) {
  .header {
    padding: 0.2rem 5%;
  }
  .header__inner {
    align-items: end;
    flex-direction: row;
  }
  .header__logo {
    margin-right: 1.2rem;
    width: 12rem;
  }
  .header__title {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .header__actions {
    gap: 0.8rem;
  }
}
/*--------------- footer（object） ---------------*/
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.2rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background-color: #147B50;
}

/*--------------- jobt-list（object） ---------------*/
.job-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8rem;
}
.job-list__item {
  width: 100%;
}
.job-list__item a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.job-list__name {
  width: 100%;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1.6rem;
  color: #fff;
  font-size: clamp(1.8rem, 4.8vw, 2rem);
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  background-color: #147B50;
  border-radius: 5px;
}
.job-list__image {
  margin-bottom: 1.6rem;
  width: 100%;
  aspect-ratio: 1.6/1;
  overflow: hidden;
  transition: 0.2s;
}
.job-list__image img {
  transition: 0.2s;
}
.job-list__detail {
  margin-bottom: 2.8rem;
}
.job-list__description {
  color: #333;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}
.job-list .btn-wrap {
  margin-top: auto;
}

@media (hover: hover) {
  .job-list__item a:hover {
    opacity: 0.8;
  }
  .job-list__item a:hover img {
    transform: scale(1.03);
  }
}
@media screen and (min-width: 768px) {
  .job-list {
    gap: 4rem 2rem;
  }
  .job-list__item {
    width: calc((100% - 2rem) / 2);
  }
  .job-list__item a {
    padding: 2.8rem;
  }
}
@media screen and (min-width: 992px) {
  .job-list {
    gap: 4rem 2.8rem;
  }
  .job-list__item {
    width: calc((100% - 2.8rem) / 2);
  }
}
/*--------------- merit-list（object） ---------------*/
.merit-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}
.merit-list__item {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 1.6rem;
  width: 100%;
  margin-top: 7rem;
  padding: 6.8rem 2.4rem 2.8rem;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
}
.merit-list__image {
  position: absolute;
  left: 50%;
  top: -7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 12rem;
  border-radius: 50rem;
  background-color: #147B50;
  aspect-ratio: 1/1;
  transform: translateX(-50%);
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
}
.merit-list__image img {
  width: 65%;
  height: 65%;
}
.merit-list__title {
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  color: #147B50;
  font-size: clamp(1.8rem, 4.8vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}
.merit-list__text {
  grid-row: 2;
  font-size: clamp(1.4rem, 3.73vw, 1.6rem);
  line-height: 1.6;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .merit-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .merit-list__image img {
    width: 60%;
    height: 60%;
  }
}
@media screen and (min-width: 992px) {
  .merit-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*--------------- work-style-list（object） ---------------*/
.work-style-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8rem;
}
.work-style-list__item {
  position: relative;
  margin-top: 10rem;
  width: 100%;
  padding: 4.8rem 2rem 2.8rem;
  background-color: #fff;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.work-style-list__image {
  position: absolute;
  top: -10rem;
  left: 50%;
  transform: translate(-50%);
  margin: 0 auto 1.6rem;
  width: 14rem;
  border-radius: 50rem;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.work-style-list__content {
  margin-bottom: 2rem;
  text-align: center;
}
.work-style-list__lead {
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 500;
}
.work-style-list__title {
  padding: 0.8rem;
  color: #fff;
  font-size: clamp(2rem, 5.33vw, 2.4rem);
  font-weight: 700;
  background-color: #147B50;
  border-radius: 5px;
}
.work-style-list__info {
  margin-bottom: 2rem;
}
.work-style-list__term {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.4rem 0.8rem;
  color: #333;
  font-size: clamp(1.4rem, 3.73vw, 1.5rem);
  font-weight: 500;
  background-color: #cdeee0;
  border-radius: 0.2rem;
}
.work-style-list__desc {
  color: #333;
  font-size: clamp(2rem, 5.33vw, 2.4rem);
  line-height: 1.2;
  font-weight: 700;
}
.work-style-list__note-list {
  margin-top: 2rem;
}
.work-style-list__note-item {
  padding: 0.4rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  border-bottom: 1px dashed #a2a2a2;
}
.work-style-list__note-item:first-child {
  border-top: 1px dashed #a2a2a2;
}

@media screen and (min-width: 768px) {
  .work-style-list {
    gap: 4rem 2rem;
  }
  .work-style-list__item {
    width: calc((100% - 2rem) / 2);
    padding: 8rem 2.8rem 4rem;
  }
  .work-style-list__image {
    width: 16rem;
  }
}
@media screen and (min-width: 992px) {
  .work-style-list {
    gap: 4rem 2.8rem;
  }
  .work-style-list__item {
    width: calc((100% - 2.8rem) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .work-style-list__item {
    width: calc((100% - 5.6rem) / 3);
  }
}
/*--------------- btn-wrap（object） ---------------*/
.btn-center {
  margin: 0 auto;
  text-align: center;
}

.btn-right {
  margin-left: auto;
  text-align: right;
}

/*--------------- guide-block（object） ---------------*/
.block-guide {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #147B50 !important;
}
.block-guide .guide-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 4rem;
}
.block-guide .guide-list__item {
  text-align: center;
}
.block-guide .guide-list__title {
  position: relative;
  display: inline-block;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
}
.block-guide .guide-list__title::after {
  display: block;
  margin-top: 1rem;
  margin-inline: auto;
  width: 3.2rem;
  aspect-ratio: 11/1;
  background-image: url("../img/common/ico_dot_line_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .block-guide {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .block-guide .guide-list {
    flex-direction: row;
    gap: 2rem;
    max-width: 800px;
    margin-inline: auto;
  }
  .block-guide .guide-list__item {
    width: calc((100% - 2rem) / 2);
  }
  .block-guide .guide-list__title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .block-guide .guide-list {
    gap: 6rem;
  }
  .block-guide .guide-list__item {
    margin-inline: auto;
    width: calc((100% - 6rem) / 2);
    max-width: 400px;
  }
}
/*--------------- status（object） ---------------*/
.comming-soon, .recruitment-inactive, .recruitment-closed {
  position: relative;
}
.comming-soon::before, .recruitment-inactive::before, .recruitment-closed::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(3px);
  z-index: 1;
  border-radius: 8px;
}
.comming-soon::after, .recruitment-inactive::after, .recruitment-closed::after {
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  padding: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
  z-index: 2;
  white-space: nowrap;
}
.comming-soon.work-style-list__detail::before, .recruitment-inactive.work-style-list__detail::before, .recruitment-closed.work-style-list__detail::before {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
}

.comming-soon::before {
  background-color: rgba(255, 255, 255, 0.6);
}
.comming-soon::after {
  content: "募集開始までお待ちください";
  color: #fff;
  background-color: #ae0879;
}

.recruitment-inactive::before {
  background-color: rgba(255, 255, 255, 0.6);
}
.recruitment-inactive::after {
  content: "現在募集しておりません";
  color: #fff;
  background-color: #ae0879;
}

.recruitment-closed::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.recruitment-closed::after {
  content: "募集は終了しました";
  color: #fff;
  background-color: #000;
}

/*--------------- margin ---------------*/
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-4 {
  margin-top: 1.0666666667vw !important;
}

.mt-8 {
  margin-top: 2.1333333333vw !important;
}

.mt-10 {
  margin-top: 2.6666666667vw !important;
}

.mt-12 {
  margin-top: 3.2vw !important;
}

.mt-16 {
  margin-top: 4.2666666667vw !important;
}

.mt-20 {
  margin-top: 5.3333333333vw !important;
}

.mt-24 {
  margin-top: 6.4vw !important;
}

.mt-28 {
  margin-top: 7.4666666667vw !important;
}

.mt-30 {
  margin-top: 8vw !important;
}

.mt-32 {
  margin-top: 8.5333333333vw !important;
}

.mt-36 {
  margin-top: 9.6vw !important;
}

.mt-40 {
  margin-top: 10.6666666667vw !important;
}

.mt-44 {
  margin-top: 11.7333333333vw !important;
}

.mt-48 {
  margin-top: 12.8vw !important;
}

.mt-50 {
  margin-top: 13.3333333333vw !important;
}

.mt-52 {
  margin-top: 13.8666666667vw !important;
}

.mt-56 {
  margin-top: 14.9333333333vw !important;
}

.mt-60 {
  margin-top: 16vw !important;
}

.mt-64 {
  margin-top: 17.0666666667vw !important;
}

.mt-68 {
  margin-top: 18.1333333333vw !important;
}

.mt-70 {
  margin-top: 18.6666666667vw !important;
}

.mt-72 {
  margin-top: 19.2vw !important;
}

.mt-76 {
  margin-top: 20.2666666667vw !important;
}

.mt-80 {
  margin-top: 21.3333333333vw !important;
}

.mt-84 {
  margin-top: 22.4vw !important;
}

.mt-88 {
  margin-top: 23.4666666667vw !important;
}

.mt-90 {
  margin-top: 24vw !important;
}

.mt-92 {
  margin-top: 24.5333333333vw !important;
}

.mt-96 {
  margin-top: 25.6vw !important;
}

.mt-100 {
  margin-top: 26.6666666667vw !important;
}

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

.mr-4 {
  margin-right: 1.0666666667vw !important;
}

.mr-8 {
  margin-right: 2.1333333333vw !important;
}

.mr-10 {
  margin-right: 2.6666666667vw !important;
}

.mr-12 {
  margin-right: 3.2vw !important;
}

.mr-16 {
  margin-right: 4.2666666667vw !important;
}

.mr-20 {
  margin-right: 5.3333333333vw !important;
}

.mr-24 {
  margin-right: 6.4vw !important;
}

.mr-28 {
  margin-right: 7.4666666667vw !important;
}

.mr-30 {
  margin-right: 8vw !important;
}

.mr-32 {
  margin-right: 8.5333333333vw !important;
}

.mr-36 {
  margin-right: 9.6vw !important;
}

.mr-40 {
  margin-right: 10.6666666667vw !important;
}

.mr-44 {
  margin-right: 11.7333333333vw !important;
}

.mr-48 {
  margin-right: 12.8vw !important;
}

.mr-50 {
  margin-right: 13.3333333333vw !important;
}

.mr-52 {
  margin-right: 13.8666666667vw !important;
}

.mr-56 {
  margin-right: 14.9333333333vw !important;
}

.mr-60 {
  margin-right: 16vw !important;
}

.mr-64 {
  margin-right: 17.0666666667vw !important;
}

.mr-68 {
  margin-right: 18.1333333333vw !important;
}

.mr-70 {
  margin-right: 18.6666666667vw !important;
}

.mr-72 {
  margin-right: 19.2vw !important;
}

.mr-76 {
  margin-right: 20.2666666667vw !important;
}

.mr-80 {
  margin-right: 21.3333333333vw !important;
}

.mr-84 {
  margin-right: 22.4vw !important;
}

.mr-88 {
  margin-right: 23.4666666667vw !important;
}

.mr-90 {
  margin-right: 24vw !important;
}

.mr-92 {
  margin-right: 24.5333333333vw !important;
}

.mr-96 {
  margin-right: 25.6vw !important;
}

.mr-100 {
  margin-right: 26.6666666667vw !important;
}

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

.mb-4 {
  margin-bottom: 1.0666666667vw !important;
}

.mb-8 {
  margin-bottom: 2.1333333333vw !important;
}

.mb-10 {
  margin-bottom: 2.6666666667vw !important;
}

.mb-12 {
  margin-bottom: 3.2vw !important;
}

.mb-16 {
  margin-bottom: 4.2666666667vw !important;
}

.mb-20 {
  margin-bottom: 5.3333333333vw !important;
}

.mb-24 {
  margin-bottom: 6.4vw !important;
}

.mb-28 {
  margin-bottom: 7.4666666667vw !important;
}

.mb-30 {
  margin-bottom: 8vw !important;
}

.mb-32 {
  margin-bottom: 8.5333333333vw !important;
}

.mb-36 {
  margin-bottom: 9.6vw !important;
}

.mb-40 {
  margin-bottom: 10.6666666667vw !important;
}

.mb-44 {
  margin-bottom: 11.7333333333vw !important;
}

.mb-48 {
  margin-bottom: 12.8vw !important;
}

.mb-50 {
  margin-bottom: 13.3333333333vw !important;
}

.mb-52 {
  margin-bottom: 13.8666666667vw !important;
}

.mb-56 {
  margin-bottom: 14.9333333333vw !important;
}

.mb-60 {
  margin-bottom: 16vw !important;
}

.mb-64 {
  margin-bottom: 17.0666666667vw !important;
}

.mb-70 {
  margin-bottom: 18.6666666667vw !important;
}

.mb-72 {
  margin-bottom: 19.2vw !important;
}

.mb-76 {
  margin-bottom: 20.2666666667vw !important;
}

.mb-80 {
  margin-bottom: 21.3333333333vw !important;
}

.mb-84 {
  margin-bottom: 22.4vw !important;
}

.mb-88 {
  margin-bottom: 23.4666666667vw !important;
}

.mb-90 {
  margin-bottom: 24vw !important;
}

.mb-94 {
  margin-bottom: 25.0666666667vw !important;
}

.mb-96 {
  margin-bottom: 25.6vw !important;
}

.mb-100 {
  margin-bottom: 26.6666666667vw !important;
}

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

.ml-4 {
  margin-left: 1.0666666667vw !important;
}

.ml-8 {
  margin-left: 2.1333333333vw !important;
}

.ml-10 {
  margin-left: 2.6666666667vw !important;
}

.ml-12 {
  margin-left: 3.2vw !important;
}

.ml-16 {
  margin-left: 4.2666666667vw !important;
}

.ml-20 {
  margin-left: 5.3333333333vw !important;
}

.ml-24 {
  margin-left: 6.4vw !important;
}

.ml-28 {
  margin-left: 7.4666666667vw !important;
}

.ml-30 {
  margin-left: 8vw !important;
}

.ml-32 {
  margin-left: 8.5333333333vw !important;
}

.ml-36 {
  margin-left: 9.6vw !important;
}

.ml-40 {
  margin-left: 10.6666666667vw !important;
}

.ml-44 {
  margin-left: 11.7333333333vw !important;
}

.ml-48 {
  margin-left: 12.8vw !important;
}

.ml-50 {
  margin-left: 13.3333333333vw !important;
}

.ml-52 {
  margin-left: 13.8666666667vw !important;
}

.ml-56 {
  margin-left: 14.9333333333vw !important;
}

.ml-60 {
  margin-left: 16vw !important;
}

.ml-64 {
  margin-left: 17.0666666667vw !important;
}

.ml-68 {
  margin-left: 18.1333333333vw !important;
}

.ml-70 {
  margin-left: 18.6666666667vw !important;
}

.ml-72 {
  margin-left: 19.2vw !important;
}

.ml-76 {
  margin-left: 20.2666666667vw !important;
}

.ml-80 {
  margin-left: 21.3333333333vw !important;
}

.ml-84 {
  margin-left: 22.4vw !important;
}

.ml-88 {
  margin-left: 23.4666666667vw !important;
}

.ml-90 {
  margin-left: 24vw !important;
}

.ml-92 {
  margin-left: 24.5333333333vw !important;
}

.ml-96 {
  margin-left: 25.6vw !important;
}

.ml-100 {
  margin-left: 26.6666666667vw !important;
}

@media screen and (min-width: 768px) {
  .mt-4 {
    margin-top: 4px !important;
  }
  .mt-8 {
    margin-top: 8px !important;
  }
  .mt-10 {
    margin-top: 10px !important;
  }
  .mt-12 {
    margin-top: 12px !important;
  }
  .mt-16 {
    margin-top: 16px !important;
  }
  .mt-20 {
    margin-top: 20px !important;
  }
  .mt-24 {
    margin-top: 24px !important;
  }
  .mt-28 {
    margin-top: 28px !important;
  }
  .mt-30 {
    margin-top: 30px !important;
  }
  .mt-32 {
    margin-top: 32px !important;
  }
  .mt-36 {
    margin-top: 36px !important;
  }
  .mt-40 {
    margin-top: 40px !important;
  }
  .mt-44 {
    margin-top: 44px !important;
  }
  .mt-48 {
    margin-top: 48px !important;
  }
  .mt-50 {
    margin-top: 50px !important;
  }
  .mt-52 {
    margin-top: 52px !important;
  }
  .mt-56 {
    margin-top: 56px !important;
  }
  .mt-60 {
    margin-top: 60px !important;
  }
  .mt-64 {
    margin-top: 64px !important;
  }
  .mt-68 {
    margin-top: 68px !important;
  }
  .mt-70 {
    margin-top: 70px !important;
  }
  .mt-72 {
    margin-top: 72px !important;
  }
  .mt-76 {
    margin-top: 76px !important;
  }
  .mt-80 {
    margin-top: 80px !important;
  }
  .mt-84 {
    margin-top: 84px !important;
  }
  .mt-88 {
    margin-top: 88px !important;
  }
  .mt-90 {
    margin-top: 90px !important;
  }
  .mt-92 {
    margin-top: 92px !important;
  }
  .mt-96 {
    margin-top: 96px !important;
  }
  .mt-100 {
    margin-top: 100px !important;
  }
  .mr-4 {
    margin-right: 4px !important;
  }
  .mr-8 {
    margin-right: 8px !important;
  }
  .mr-10 {
    margin-right: 10px !important;
  }
  .mr-12 {
    margin-right: 12px !important;
  }
  .mr-16 {
    margin-right: 16px !important;
  }
  .mr-20 {
    margin-right: 20px !important;
  }
  .mr-24 {
    margin-right: 24px !important;
  }
  .mr-28 {
    margin-right: 28px !important;
  }
  .mr-30 {
    margin-right: 30px !important;
  }
  .mr-32 {
    margin-right: 32px !important;
  }
  .mr-36 {
    margin-right: 36px !important;
  }
  .mr-40 {
    margin-right: 40px !important;
  }
  .mr-44 {
    margin-right: 44px !important;
  }
  .mr-48 {
    margin-right: 48px !important;
  }
  .mr-50 {
    margin-right: 50px !important;
  }
  .mr-52 {
    margin-right: 52px !important;
  }
  .mr-56 {
    margin-right: 56px !important;
  }
  .mr-60 {
    margin-right: 60px !important;
  }
  .mr-64 {
    margin-right: 64px !important;
  }
  .mr-68 {
    margin-right: 68px !important;
  }
  .mr-70 {
    margin-right: 70px !important;
  }
  .mr-72 {
    margin-right: 72px !important;
  }
  .mr-76 {
    margin-right: 76px !important;
  }
  .mr-80 {
    margin-right: 80px !important;
  }
  .mr-84 {
    margin-right: 84px !important;
  }
  .mr-88 {
    margin-right: 88px !important;
  }
  .mr-90 {
    margin-right: 90px !important;
  }
  .mr-92 {
    margin-right: 92px !important;
  }
  .mr-96 {
    margin-right: 96px !important;
  }
  .mr-100 {
    margin-right: 100px !important;
  }
  .mb-4 {
    margin-bottom: 4px !important;
  }
  .mb-8 {
    margin-bottom: 8px !important;
  }
  .mb-10 {
    margin-bottom: 10px !important;
  }
  .mb-12 {
    margin-bottom: 12px !important;
  }
  .mb-16 {
    margin-bottom: 16px !important;
  }
  .mb-20 {
    margin-bottom: 20px !important;
  }
  .mb-24 {
    margin-bottom: 24px !important;
  }
  .mb-28 {
    margin-bottom: 28px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .mb-32 {
    margin-bottom: 32px !important;
  }
  .mb-36 {
    margin-bottom: 36px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .mb-44 {
    margin-bottom: 44px !important;
  }
  .mb-48 {
    margin-bottom: 48px !important;
  }
  .mb-50 {
    margin-bottom: 50px !important;
  }
  .mb-52 {
    margin-bottom: 52px !important;
  }
  .mb-56 {
    margin-bottom: 56px !important;
  }
  .mb-60 {
    margin-bottom: 60px !important;
  }
  .mb-64 {
    margin-bottom: 64px !important;
  }
  .mb-68 {
    margin-bottom: 68px !important;
  }
  .mb-70 {
    margin-bottom: 70px !important;
  }
  .mb-72 {
    margin-bottom: 72px !important;
  }
  .mb-76 {
    margin-bottom: 76px !important;
  }
  .mb-80 {
    margin-bottom: 80px !important;
  }
  .mb-84 {
    margin-bottom: 84px !important;
  }
  .mb-88 {
    margin-bottom: 88px !important;
  }
  .mb-90 {
    margin-bottom: 90px !important;
  }
  .mb-92 {
    margin-bottom: 92px !important;
  }
  .mb-96 {
    margin-bottom: 96px !important;
  }
  .mb-100 {
    margin-bottom: 100px !important;
  }
  .ml-4 {
    margin-left: 4px !important;
  }
  .ml-8 {
    margin-left: 8px !important;
  }
  .ml-10 {
    margin-left: 10px !important;
  }
  .ml-12 {
    margin-left: 12px !important;
  }
  .ml-16 {
    margin-left: 16px !important;
  }
  .ml-20 {
    margin-left: 20px !important;
  }
  .ml-24 {
    margin-left: 24px !important;
  }
  .ml-28 {
    margin-left: 28px !important;
  }
  .ml-30 {
    margin-left: 30px !important;
  }
  .ml-32 {
    margin-left: 32px !important;
  }
  .ml-36 {
    margin-left: 36px !important;
  }
  .ml-40 {
    margin-left: 40px !important;
  }
  .ml-44 {
    margin-left: 44px !important;
  }
  .ml-48 {
    margin-left: 48px !important;
  }
  .ml-50 {
    margin-left: 50px !important;
  }
  .ml-52 {
    margin-left: 52px !important;
  }
  .ml-56 {
    margin-left: 56px !important;
  }
  .ml-60 {
    margin-left: 60px !important;
  }
  .ml-64 {
    margin-left: 64px !important;
  }
  .ml-68 {
    margin-left: 68px !important;
  }
  .ml-70 {
    margin-left: 70px !important;
  }
  .ml-72 {
    margin-left: 72px !important;
  }
  .ml-76 {
    margin-left: 76px !important;
  }
  .ml-80 {
    margin-left: 80px !important;
  }
  .ml-84 {
    margin-left: 84px !important;
  }
  .ml-88 {
    margin-left: 88px !important;
  }
  .ml-90 {
    margin-left: 90px !important;
  }
  .ml-92 {
    margin-left: 92px !important;
  }
  .ml-96 {
    margin-left: 96px !important;
  }
  .ml-100 {
    margin-left: 100px !important;
  }
}
/*--------------- padding ---------------*/
.p-0 {
  padding: 0 !important;
}

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

.pt-4 {
  padding-top: 1.0666666667vw !important;
}

.pt-8 {
  padding-top: 2.1333333333vw !important;
}

.pt-10 {
  padding-top: 2.6666666667vw !important;
}

.pt-12 {
  padding-top: 3.2vw !important;
}

.pt-16 {
  padding-top: 4.2666666667vw !important;
}

.pt-20 {
  padding-top: 5.3333333333vw !important;
}

.pt-24 {
  padding-top: 6.4vw !important;
}

.pt-28 {
  padding-top: 7.4666666667vw !important;
}

.pt-30 {
  padding-top: 8vw !important;
}

.pt-32 {
  padding-top: 8.5333333333vw !important;
}

.pt-36 {
  padding-top: 9.6vw !important;
}

.pt-40 {
  padding-top: 10.6666666667vw !important;
}

.pt-44 {
  padding-top: 11.7333333333vw !important;
}

.pt-48 {
  padding-top: 12.8vw !important;
}

.pt-50 {
  padding-top: 13.3333333333vw !important;
}

.pt-52 {
  padding-top: 13.8666666667vw !important;
}

.pt-56 {
  padding-top: 14.9333333333vw !important;
}

.pt-60 {
  padding-top: 16vw !important;
}

.pt-64 {
  padding-top: 17.0666666667vw !important;
}

.pt-68 {
  padding-top: 18.1333333333vw !important;
}

.pt-70 {
  padding-top: 18.6666666667vw !important;
}

.pt-72 {
  padding-top: 19.2vw !important;
}

.pt-76 {
  padding-top: 20.2666666667vw !important;
}

.pt-80 {
  padding-top: 21.3333333333vw !important;
}

.pt-84 {
  padding-top: 22.4vw !important;
}

.pt-88 {
  padding-top: 23.4666666667vw !important;
}

.pt-90 {
  padding-top: 24vw !important;
}

.pt-92 {
  padding-top: 24.5333333333vw !important;
}

.pt-96 {
  padding-top: 25.6vw !important;
}

.pt-100 {
  padding-top: 26.6666666667vw !important;
}

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

.pr-4 {
  padding-right: 1.0666666667vw !important;
}

.pr-8 {
  padding-right: 2.1333333333vw !important;
}

.pr-10 {
  padding-right: 2.6666666667vw !important;
}

.pr-12 {
  padding-right: 3.2vw !important;
}

.pr-16 {
  padding-right: 4.2666666667vw !important;
}

.pr-20 {
  padding-right: 5.3333333333vw !important;
}

.pr-24 {
  padding-right: 6.4vw !important;
}

.pr-28 {
  padding-right: 7.4666666667vw !important;
}

.pr-30 {
  padding-right: 8vw !important;
}

.pr-32 {
  padding-right: 8.5333333333vw !important;
}

.pr-36 {
  padding-right: 9.6vw !important;
}

.pr-40 {
  padding-right: 10.6666666667vw !important;
}

.pr-44 {
  padding-right: 11.7333333333vw !important;
}

.pr-48 {
  padding-right: 12.8vw !important;
}

.pr-50 {
  padding-right: 13.3333333333vw !important;
}

.pr-52 {
  padding-right: 13.8666666667vw !important;
}

.pr-56 {
  padding-right: 14.9333333333vw !important;
}

.pr-60 {
  padding-right: 16vw !important;
}

.pr-64 {
  padding-right: 17.0666666667vw !important;
}

.pr-68 {
  padding-right: 18.1333333333vw !important;
}

.pr-70 {
  padding-right: 18.6666666667vw !important;
}

.pr-72 {
  padding-right: 19.2vw !important;
}

.pr-76 {
  padding-right: 20.2666666667vw !important;
}

.pr-80 {
  padding-right: 21.3333333333vw !important;
}

.pr-84 {
  padding-right: 22.4vw !important;
}

.pr-88 {
  padding-right: 23.4666666667vw !important;
}

.pr-90 {
  padding-right: 24vw !important;
}

.pr-92 {
  padding-right: 24.5333333333vw !important;
}

.pr-96 {
  padding-right: 25.6vw !important;
}

.pr-100 {
  padding-right: 26.6666666667vw !important;
}

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

.pb-4 {
  padding-bottom: 1.0666666667vw !important;
}

.pb-8 {
  padding-bottom: 2.1333333333vw !important;
}

.pb-10 {
  padding-bottom: 2.6666666667vw !important;
}

.pb-12 {
  padding-bottom: 3.2vw !important;
}

.pb-16 {
  padding-bottom: 4.2666666667vw !important;
}

.pb-20 {
  padding-bottom: 5.3333333333vw !important;
}

.pb-24 {
  padding-bottom: 6.4vw !important;
}

.pb-28 {
  padding-bottom: 7.4666666667vw !important;
}

.pb-30 {
  padding-bottom: 8vw !important;
}

.pb-32 {
  padding-bottom: 8.5333333333vw !important;
}

.pb-36 {
  padding-bottom: 9.6vw !important;
}

.pb-40 {
  padding-bottom: 10.6666666667vw !important;
}

.pb-44 {
  padding-bottom: 11.7333333333vw !important;
}

.pb-48 {
  padding-bottom: 12.8vw !important;
}

.pb-50 {
  padding-bottom: 13.3333333333vw !important;
}

.pb-52 {
  padding-bottom: 13.8666666667vw !important;
}

.pb-56 {
  padding-bottom: 14.9333333333vw !important;
}

.pb-60 {
  padding-bottom: 16vw !important;
}

.pb-64 {
  padding-bottom: 17.0666666667vw !important;
}

.pb-68 {
  padding-bottom: 18.1333333333vw !important;
}

.pb-70 {
  padding-bottom: 18.6666666667vw !important;
}

.pb-72 {
  padding-bottom: 19.2vw !important;
}

.pb-76 {
  padding-bottom: 20.2666666667vw !important;
}

.pb-80 {
  padding-bottom: 21.3333333333vw !important;
}

.pb-84 {
  padding-bottom: 22.4vw !important;
}

.pb-88 {
  padding-bottom: 23.4666666667vw !important;
}

.pb-90 {
  padding-bottom: 24vw !important;
}

.pb-92 {
  padding-bottom: 24.5333333333vw !important;
}

.pb-96 {
  padding-bottom: 25.6vw !important;
}

.pb-100 {
  padding-bottom: 26.6666666667vw !important;
}

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

.pl-4 {
  padding-left: 1.0666666667vw !important;
}

.pl-8 {
  padding-left: 2.1333333333vw !important;
}

.pl-10 {
  padding-left: 2.6666666667vw !important;
}

.pl-12 {
  padding-left: 3.2vw !important;
}

.pl-16 {
  padding-left: 4.2666666667vw !important;
}

.pl-20 {
  padding-left: 5.3333333333vw !important;
}

.pl-24 {
  padding-left: 6.4vw !important;
}

.pl-28 {
  padding-left: 7.4666666667vw !important;
}

.pl-30 {
  padding-left: 8vw !important;
}

.pl-32 {
  padding-left: 8.5333333333vw !important;
}

.pl-36 {
  padding-left: 9.6vw !important;
}

.pl-40 {
  padding-left: 10.6666666667vw !important;
}

.pl-44 {
  padding-left: 11.7333333333vw !important;
}

.pl-48 {
  padding-left: 12.8vw !important;
}

.pl-50 {
  padding-left: 13.3333333333vw !important;
}

.pl-52 {
  padding-left: 13.8666666667vw !important;
}

.pl-56 {
  padding-left: 14.9333333333vw !important;
}

.pl-60 {
  padding-left: 16vw !important;
}

.pl-64 {
  padding-left: 17.0666666667vw !important;
}

.pl-68 {
  padding-left: 18.1333333333vw !important;
}

.pl-70 {
  padding-left: 18.6666666667vw !important;
}

.pl-72 {
  padding-left: 19.2vw !important;
}

.pl-76 {
  padding-left: 20.2666666667vw !important;
}

.pl-80 {
  padding-left: 21.3333333333vw !important;
}

.pl-84 {
  padding-left: 22.4vw !important;
}

.pl-88 {
  padding-left: 23.4666666667vw !important;
}

.pl-90 {
  padding-left: 24vw !important;
}

.pl-92 {
  padding-left: 24.5333333333vw !important;
}

.pl-96 {
  padding-left: 25.6vw !important;
}

.pl-100 {
  padding-left: 26.6666666667vw !important;
}

@media screen and (min-width: 768px) {
  .pt-4 {
    padding-top: 4px !important;
  }
  .pt-8 {
    padding-top: 8px !important;
  }
  .pt-10 {
    padding-top: 10px !important;
  }
  .pt-12 {
    padding-top: 12px !important;
  }
  .pt-16 {
    padding-top: 16px !important;
  }
  .pt-20 {
    padding-top: 20px !important;
  }
  .pt-24 {
    padding-top: 24px !important;
  }
  .pt-28 {
    padding-top: 28px !important;
  }
  .pt-30 {
    padding-top: 30px !important;
  }
  .pt-32 {
    padding-top: 32px !important;
  }
  .pt-36 {
    padding-top: 36px !important;
  }
  .pt-40 {
    padding-top: 40px !important;
  }
  .pt-44 {
    padding-top: 44px !important;
  }
  .pt-48 {
    padding-top: 48px !important;
  }
  .pt-50 {
    padding-top: 50px !important;
  }
  .pt-52 {
    padding-top: 52px !important;
  }
  .pt-56 {
    padding-top: 56px !important;
  }
  .pt-60 {
    padding-top: 60px !important;
  }
  .pt-64 {
    padding-top: 64px !important;
  }
  .pt-68 {
    padding-top: 68px !important;
  }
  .pt-70 {
    padding-top: 70px !important;
  }
  .pt-72 {
    padding-top: 72px !important;
  }
  .pt-76 {
    padding-top: 76px !important;
  }
  .pt-80 {
    padding-top: 80px !important;
  }
  .pt-84 {
    padding-top: 84px !important;
  }
  .pt-88 {
    padding-top: 88px !important;
  }
  .pt-90 {
    padding-top: 90px !important;
  }
  .pt-92 {
    padding-top: 92px !important;
  }
  .pt-96 {
    padding-top: 96px !important;
  }
  .pt-100 {
    padding-top: 100px !important;
  }
  .pr-4 {
    padding-right: 4px !important;
  }
  .pr-8 {
    padding-right: 8px !important;
  }
  .pr-10 {
    padding-right: 10px !important;
  }
  .pr-12 {
    padding-right: 12px !important;
  }
  .pr-16 {
    padding-right: 16px !important;
  }
  .pr-20 {
    padding-right: 20px !important;
  }
  .pr-24 {
    padding-right: 24px !important;
  }
  .pr-28 {
    padding-right: 28px !important;
  }
  .pr-30 {
    padding-right: 30px !important;
  }
  .pr-32 {
    padding-right: 32px !important;
  }
  .pr-36 {
    padding-right: 36px !important;
  }
  .pr-40 {
    padding-right: 40px !important;
  }
  .pr-44 {
    padding-right: 44px !important;
  }
  .pr-48 {
    padding-right: 48px !important;
  }
  .pr-50 {
    padding-right: 50px !important;
  }
  .pr-52 {
    padding-right: 52px !important;
  }
  .pr-56 {
    padding-right: 56px !important;
  }
  .pr-60 {
    padding-right: 60px !important;
  }
  .pr-64 {
    padding-right: 64px !important;
  }
  .pr-68 {
    padding-right: 68px !important;
  }
  .pr-70 {
    padding-right: 70px !important;
  }
  .pr-72 {
    padding-right: 72px !important;
  }
  .pr-76 {
    padding-right: 76px !important;
  }
  .pr-80 {
    padding-right: 80px !important;
  }
  .pr-84 {
    padding-right: 84px !important;
  }
  .pr-88 {
    padding-right: 88px !important;
  }
  .pr-90 {
    padding-right: 90px !important;
  }
  .pr-92 {
    padding-right: 92px !important;
  }
  .pr-96 {
    padding-right: 96px !important;
  }
  .pr-100 {
    padding-right: 100px !important;
  }
  .pb-4 {
    padding-bottom: 4px !important;
  }
  .pb-8 {
    padding-bottom: 8px !important;
  }
  .pb-10 {
    padding-bottom: 10px !important;
  }
  .pb-12 {
    padding-bottom: 12px !important;
  }
  .pb-16 {
    padding-bottom: 16px !important;
  }
  .pb-20 {
    padding-bottom: 20px !important;
  }
  .pb-24 {
    padding-bottom: 24px !important;
  }
  .pb-28 {
    padding-bottom: 28px !important;
  }
  .pb-30 {
    padding-bottom: 30px !important;
  }
  .pb-32 {
    padding-bottom: 32px !important;
  }
  .pb-36 {
    padding-bottom: 36px !important;
  }
  .pb-40 {
    padding-bottom: 40px !important;
  }
  .pb-44 {
    padding-bottom: 44px !important;
  }
  .pb-48 {
    padding-bottom: 48px !important;
  }
  .pb-50 {
    padding-bottom: 50px !important;
  }
  .pb-52 {
    padding-bottom: 52px !important;
  }
  .pb-56 {
    padding-bottom: 56px !important;
  }
  .pb-60 {
    padding-bottom: 60px !important;
  }
  .pb-64 {
    padding-bottom: 64px !important;
  }
  .pb-68 {
    padding-bottom: 68px !important;
  }
  .pb-70 {
    padding-bottom: 70px !important;
  }
  .pb-72 {
    padding-bottom: 72px !important;
  }
  .pb-76 {
    padding-bottom: 76px !important;
  }
  .pb-80 {
    padding-bottom: 80px !important;
  }
  .pb-84 {
    padding-bottom: 84px !important;
  }
  .pb-88 {
    padding-bottom: 88px !important;
  }
  .pb-90 {
    padding-bottom: 90px !important;
  }
  .pb-92 {
    padding-bottom: 92px !important;
  }
  .pb-96 {
    padding-bottom: 96px !important;
  }
  .pb-100 {
    padding-bottom: 100px !important;
  }
  .pl-4 {
    padding-left: 4px !important;
  }
  .pl-8 {
    padding-left: 8px !important;
  }
  .pl-10 {
    padding-left: 10px !important;
  }
  .pl-12 {
    padding-left: 12px !important;
  }
  .pl-16 {
    padding-left: 16px !important;
  }
  .pl-20 {
    padding-left: 20px !important;
  }
  .pl-24 {
    padding-left: 24px !important;
  }
  .pl-28 {
    padding-left: 28px !important;
  }
  .pl-30 {
    padding-left: 30px !important;
  }
  .pl-32 {
    padding-left: 32px !important;
  }
  .pl-36 {
    padding-left: 36px !important;
  }
  .pl-40 {
    padding-left: 40px !important;
  }
  .pl-44 {
    padding-left: 44px !important;
  }
  .pl-48 {
    padding-left: 48px !important;
  }
  .pl-50 {
    padding-left: 50px !important;
  }
  .pl-52 {
    padding-left: 52px !important;
  }
  .pl-56 {
    padding-left: 56px !important;
  }
  .pl-60 {
    padding-left: 60px !important;
  }
  .pl-64 {
    padding-left: 64px !important;
  }
  .pl-68 {
    padding-left: 68px !important;
  }
  .pl-70 {
    padding-left: 70px !important;
  }
  .pl-72 {
    padding-left: 72px !important;
  }
  .pl-76 {
    padding-left: 76px !important;
  }
  .pl-80 {
    padding-left: 80px !important;
  }
  .pl-84 {
    padding-left: 84px !important;
  }
  .pl-88 {
    padding-left: 88px !important;
  }
  .pl-90 {
    padding-left: 90px !important;
  }
  .pl-92 {
    padding-left: 92px !important;
  }
  .pl-96 {
    padding-left: 96px !important;
  }
  .pl-100 {
    padding-left: 100px !important;
  }
}
/*--------------- display ---------------*/
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media screen and (max-width: 768px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
/*--------------- flex ---------------*/
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

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

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media screen and (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-md-content-start {
    justify-content: flex-start !important;
  }
  .justify-md-content-end {
    justify-content: flex-end !important;
  }
  .justify-md-content-center {
    justify-content: center !important;
  }
  .justify-md-content-between {
    justify-content: space-between !important;
  }
  .justify-md-content-around {
    justify-content: space-around !important;
  }
  .align-md-items-start {
    align-items: flex-start !important;
  }
  .align-md-items-end {
    align-items: flex-end !important;
  }
  .align-md-items-center {
    align-items: center !important;
  }
  .align-md-items-baseline {
    align-items: baseline !important;
  }
  .align-md-items-stretch {
    align-items: stretch !important;
  }
  .align-md-content-start {
    align-content: flex-start !important;
  }
  .align-md-content-end {
    align-content: flex-end !important;
  }
  .align-md-content-center {
    align-content: center !important;
  }
  .align-md-content-between {
    align-content: space-between !important;
  }
  .align-md-content-around {
    align-content: space-around !important;
  }
  .align-md-content-stretch {
    align-content: stretch !important;
  }
  .align-md-self-auto {
    align-self: auto !important;
  }
  .align-md-self-start {
    align-self: flex-start !important;
  }
  .align-md-self-end {
    align-self: flex-end !important;
  }
  .align-md-self-center {
    align-self: center !important;
  }
  .align-md-self-baseline {
    align-self: baseline !important;
  }
  .align-md-self-stretch {
    align-self: stretch !important;
  }
}
@media screen and (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-lg-content-start {
    justify-content: flex-start !important;
  }
  .justify-lg-content-end {
    justify-content: flex-end !important;
  }
  .justify-lg-content-center {
    justify-content: center !important;
  }
  .justify-lg-content-between {
    justify-content: space-between !important;
  }
  .justify-lg-content-around {
    justify-content: space-around !important;
  }
  .align-lg-items-start {
    align-items: flex-start !important;
  }
  .align-lg-items-end {
    align-items: flex-end !important;
  }
  .align-lg-items-center {
    align-items: center !important;
  }
  .align-lg-items-baseline {
    align-items: baseline !important;
  }
  .align-lg-items-stretch {
    align-items: stretch !important;
  }
  .align-lg-content-start {
    align-content: flex-start !important;
  }
  .align-lg-content-end {
    align-content: flex-end !important;
  }
  .align-lg-content-center {
    align-content: center !important;
  }
  .align-lg-content-between {
    align-content: space-between !important;
  }
  .align-lg-content-around {
    align-content: space-around !important;
  }
  .align-lg-content-stretch {
    align-content: stretch !important;
  }
  .align-lg-self-auto {
    align-self: auto !important;
  }
  .align-lg-self-start {
    align-self: flex-start !important;
  }
  .align-lg-self-end {
    align-self: flex-end !important;
  }
  .align-lg-self-center {
    align-self: center !important;
  }
  .align-lg-self-baseline {
    align-self: baseline !important;
  }
  .align-lg-self-stretch {
    align-self: stretch !important;
  }
}
@media screen and (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-xl-content-start {
    justify-content: flex-start !important;
  }
  .justify-xl-content-end {
    justify-content: flex-end !important;
  }
  .justify-xl-content-center {
    justify-content: center !important;
  }
  .justify-xl-content-between {
    justify-content: space-between !important;
  }
  .justify-xl-content-around {
    justify-content: space-around !important;
  }
  .align-xl-items-start {
    align-items: flex-start !important;
  }
  .align-xl-items-end {
    align-items: flex-end !important;
  }
  .align-xl-items-center {
    align-items: center !important;
  }
  .align-xl-items-baseline {
    align-items: baseline !important;
  }
  .align-xl-items-stretch {
    align-items: stretch !important;
  }
  .align-xl-content-start {
    align-content: flex-start !important;
  }
  .align-xl-content-end {
    align-content: flex-end !important;
  }
  .align-xl-content-center {
    align-content: center !important;
  }
  .align-xl-content-between {
    align-content: space-between !important;
  }
  .align-xl-content-around {
    align-content: space-around !important;
  }
  .align-xl-content-stretch {
    align-content: stretch !important;
  }
  .align-xl-self-auto {
    align-self: auto !important;
  }
  .align-xl-self-start {
    align-self: flex-start !important;
  }
  .align-xl-self-end {
    align-self: flex-end !important;
  }
  .align-xl-self-center {
    align-self: center !important;
  }
  .align-xl-self-baseline {
    align-self: baseline !important;
  }
  .align-xl-self-stretch {
    align-self: stretch !important;
  }
}
/*--------------- text aline ---------------*/
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/*--------------- font ---------------*/
.text-xs {
  font-size: 60%;
}

.text-sm {
  font-size: 80%;
}

.text-lg {
  font-size: 120%;
}

.text-xl {
  font-size: 150%;
}

.text-color {
  color: #333;
}

.text-primary {
  color: #ae0879;
}

.text-red {
  color: #c33939;
}

.text-blue {
  color: #1e9de4;
}

.text-regular {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-bold {
  font-weight: 700;
}

/*--------------- text ---------------*/
.nowrap {
  white-space: nowrap;
}

/*--------------- JS ---------------*/
/*--------------- top（page） ---------------*/
.top {
  margin-top: 6rem;
}
.top .block .block-lead {
  margin-bottom: 4rem;
}
.top .main-visual {
  width: 100%;
  height: auto;
}
.top .introduction {
  padding-block: 4rem 8rem;
}
.top .introduction__inner {
  margin-bottom: 4rem;
  text-align: center;
}
.top .introduction__title {
  margin-bottom: clamp(1.6rem, 4vw, 4rem);
  color: #147B50;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.4;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.05em;
}
.top .introduction__lead {
  margin-bottom: 4rem;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
}
.top .update {
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
}
.top .update__title {
  margin-bottom: 2rem;
  padding: 0.8rem 2rem;
  font-size: clamp(1.6rem, 4.27vw, 1.8rem);
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  text-align: center;
  background-color: #147B50;
  border-radius: 5px;
}
.top .update__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.top .update__item {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.6rem;
  font-size: 1.5rem;
  border-bottom: 2px dotted #ddd;
}
.top .update__date {
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.top .update__text {
  line-height: 1.6;
}
.top .block-hourly-wage .hourly-wage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.top .block-hourly-wage .hourly-wage-list__item {
  padding: 0.8rem 0.8rem 1.6rem;
  width: calc((100% - 1.2rem) / 2);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
}
.top .block-hourly-wage .hourly-wage-list__time {
  margin-bottom: 0.8rem;
  padding: 0.6rem 1.2rem;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  background-color: #147B50;
  white-space: nowrap;
  border-radius: 5px;
}
.top .block-hourly-wage .hourly-wage-list__reward {
  font-size: clamp(1.6rem, 4.27vw, 2rem);
  text-align: center;
  font-weight: 700;
}
.top .block-hourly-wage .hourly-wage-list__reward span {
  font-size: 160%;
}
.top .block-hourly-wage .hourly-wage-list__reward .nowrap {
  font-size: 100%;
  white-space: nowrap;
}
.top .block-hourly-wage .hourly-wage-text {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}
.top .block-briefing .alert {
  margin-bottom: 3.2rem;
}
.top .block-briefing .briefing-movie {
  position: relative;
  margin-bottom: 8rem;
  text-align: center;
}
.top .block-briefing .briefing-movie .briefing-movie-headline {
  margin-bottom: 0.8rem;
  padding: 0.8rem 1.2rem;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #147B50;
  border-radius: 5px;
}
.top .block-briefing .briefing-movie .briefing-movie-contents {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.top .block-briefing .briefing-movie .briefing-movie-contents iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top .block-briefing .briefing-detail {
  position: relative;
  margin-bottom: 4rem;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.top .block-briefing .briefing-detail__place-name {
  width: 100%;
  margin-bottom: 2rem;
  padding: 0.8rem;
  font-size: clamp(1.8rem, 4.8vw, 2rem);
  color: #fff;
  text-align: center;
  font-weight: 700;
  background-color: #147B50;
  border-radius: 5px;
}
.top .block-briefing .briefing-detail .briefing-detail-text {
  margin-bottom: 4rem;
}
.top .block-briefing .briefing-detail .briefing-detail-contents {
  margin-bottom: 4rem;
}
.top .block-briefing .briefing-detail .briefing-detail-contents:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.top .block-briefing .briefing-detail .briefing-detail-contents .briefing-detail-headline {
  display: block;
  padding-bottom: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: clamp(1.6rem, 4.27vw, 2rem);
  color: #147B50;
  font-weight: 700;
  border-bottom: 1px dashed #147B50;
}
.top .block-briefing .briefing-detail .briefing-detail-contents .briefing-detail-dl {
  margin-bottom: 2.4rem;
}
.top .block-briefing .briefing-detail .briefing-detail-contents .briefing-detail-dl:last-child {
  margin-bottom: 0;
}
.top .block-briefing .briefing-detail .briefing-detail-contents .briefing-detail-dt {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  background-color: #cdeee0;
}
.top .block-briefing .briefing-detail .briefing-detail-contents .briefing-detail-dd {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-block: calc((1em - 1lh) / 2);
}
.top .block-briefing .briefing-detail .briefing-detail-contents .map-link {
  margin-left: 0.5em;
  color: #1e9de4;
  text-decoration: underline;
}
@media (hover: hover) {
  .top .block-briefing .briefing-detail .briefing-detail-contents .map-link {
    transition: 0.2s;
  }
  .top .block-briefing .briefing-detail .briefing-detail-contents .map-link:hover {
    text-decoration: none;
  }
}
.top .block-briefing .briefing-detail .briefing-detail-schedule .briefing-detail-date {
  margin-bottom: 0.8rem;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
}
.top .block-briefing .briefing-detail .briefing-detail-schedule .briefing-detail-date small {
  font-size: 70%;
}
.top .block-briefing .briefing-detail .briefing-detail-schedule .briefing-detail-time {
  margin-bottom: 1.2em;
  font-size: clamp(1.5rem, 4vw, 1.6rem);
  line-height: 1.4;
  font-weight: 700;
}
.top .block-briefing .briefing-detail .briefing-detail-schedule .briefing-detail-time:last-child {
  margin-bottom: 0;
}
.top .block-briefing .briefing-detail .briefing-detail-schedule .briefing-detail-time-note {
  margin-top: 0.4rem;
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
}
.top .block-briefing .briefing-detail .briefing-detail-schedule p {
  font-size: clamp(1.5rem, 4vw, 1.6rem);
  line-height: 1.6;
}
.top .block-briefing .briefing-detail .briefing-detail-place .place-name {
  margin-top: -0.8rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}
.top .block-briefing .briefing-detail .briefing-detail-place .briefing-detail-dd dt {
  font-weight: 700;
}
.top .block-briefing .briefing-detail .briefing-detail-place .briefing-detail-dd dd {
  padding-left: 1em;
}
.top .block-briefing .briefing-detail .briefing-detail-map {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.top .block-briefing .briefing-detail .briefing-detail-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top .block-briefing .btn-wrap {
  margin-top: 4rem;
}
.top .block-briefing .btn-wrap .btn {
  margin-bottom: 2rem;
}
.top .footer-contact {
  text-align: center;
}
.top .footer-contact .contact-tel {
  padding: 4rem 5%;
  background-color: #ae0879;
}
.top .footer-contact .contact-tel .contact-tel-wrap {
  padding: 2rem 5%;
  background-color: #fff;
}
.top .footer-contact .contact-tel .contact-tel-lead {
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
}
.top .footer-contact .contact-tel .contact-tel-headline {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.top .footer-contact .contact-tel .contact-tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.top .footer-contact .contact-tel .contact-tel-link svg {
  padding-bottom: 0.4rem;
  margin-right: 0.8rem;
  width: 2.4rem;
  height: 4rem;
  fill: #ae0879;
}
.top .footer-contact .contact-tel .contact-tel-link a {
  display: inline-block;
  font-size: 3.2rem;
  color: #ae0879;
  font-style: italic;
  font-family: serif;
  font-weight: 700;
}
.top .footer-contact .contact-tel .contact-tel-description {
  font-size: 1.3rem;
}
.top .footer-contact .contact-address {
  padding: 4rem 0;
}
.top .footer-contact .contact-address .contact-address-title {
  margin-bottom: 1.2rem;
  color: #147B50;
  font-size: clamp(1.8rem, 4.8vw, 2rem);
  font-weight: 700;
}
.top .footer-contact .contact-address .contact-address-text {
  margin-bottom: 2rem;
  font-size: clamp(1.4rem, 3.73vw, 1.6rem);
  line-height: 1.4;
  font-weight: 500;
}
.top .footer-contact .contact-address .contact-address-text span {
  font-size: 1.3rem;
}
.top .footer-contact .contact-address .contact-address-map {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.top .footer-contact .contact-address .contact-address-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .top .introduction .introduction-contents {
    padding-top: 6rem;
    margin-bottom: 6rem;
  }
  .top .update {
    max-width: 800px;
    margin-inline: auto;
    padding: 2rem 4rem;
  }
  .top .update__item {
    flex-direction: row;
    line-height: 1.4;
  }
  .top .update__date {
    width: 25%;
    margin: 0 2rem 0 0;
    flex-shrink: 0;
  }
  .top .block-hourly-wage .hourly-wage-list__item {
    width: calc((100% - 3.2rem) / 3);
    padding: 1.6rem 1.6rem 2.4rem;
  }
  .top .block-hourly-wage .hourly-wage-list__time {
    margin-bottom: 1.6rem;
    padding: 0.8rem 1.6rem;
  }
  .top .block-briefing .briefing-detail {
    padding: 4rem 3.2rem;
  }
  .top .block-briefing .btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .top .footer-contact .contact-tel .contact-tel-lead {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
  .top .footer-contact .contact-tel .contact-tel-headline {
    margin-bottom: 1.2rem;
    padding: 0.4rem 0.8rem;
    font-size: 1.6rem;
  }
  .top .footer-contact .contact-tel .contact-tel-link {
    margin-bottom: 1.6rem;
  }
  .top .footer-contact .contact-tel .contact-tel-link svg {
    width: 3.4rem;
    height: 6.4rem;
  }
  .top .footer-contact .contact-tel .contact-tel-link a {
    pointer-events: none;
    font-size: 6rem;
  }
  .top .footer-contact .contact-tel .contact-tel-description {
    font-size: 1.5rem;
  }
  .top .footer-contact .contact-address {
    padding: 4rem 0;
  }
  .top .footer-contact .contact-address .contact-address-map {
    aspect-ratio: 2/1;
  }
}
@media screen and (min-width: 992px) {
  .top .block-briefing .alert {
    margin-bottom: 4.8rem;
  }
  .top .block-briefing .briefing-movie .briefing-movie-headline {
    margin-bottom: 1.2rem;
    padding: 1.2rem 2.4rem;
    font-size: 2rem;
  }
  .top .block-briefing .briefing-detail {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 4rem;
  }
  .top .block-briefing .briefing-detail__place-name {
    margin-bottom: 4rem;
  }
  .top .block-briefing .briefing-detail .briefing-detail-contents .briefing-detail-headline {
    padding-bottom: 1.2rem;
  }
  .top .block-briefing .briefing-detail .briefing-detail-schedule .briefing-detail-date {
    margin-bottom: 1.2rem;
  }
  .top .block-briefing .briefing-detail .briefing-detail-map {
    order: 1;
    margin-right: 3%;
    width: 47%;
    height: 100%;
    aspect-ratio: 1/1;
  }
  .top .block-briefing .briefing-detail .briefing-detail-text {
    width: 50%;
    margin-bottom: 4rem;
    order: 2;
  }
  .top .footer-contact .contact-tel {
    margin-bottom: 2.8rem;
  }
  .top .footer-contact .contact-tel .contact-tel-lead {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
  .top .footer-contact .contact-tel .contact-tel-headline {
    margin-bottom: 1.2rem;
    padding: 0.4rem 0.8rem;
    font-size: 1.6rem;
  }
  .top .footer-contact .contact-tel .contact-tel-link {
    margin-bottom: 1.6rem;
  }
  .top .footer-contact .contact-tel .contact-tel-link svg {
    width: 3.4rem;
    height: 6.4rem;
  }
  .top .footer-contact .contact-tel .contact-tel-link a {
    font-size: 6rem;
  }
  .top .footer-contact .contact-tel .contact-tel-description {
    font-size: 1.5rem;
  }
  .top .footer-contact .contact-address .contact-address-map {
    aspect-ratio: inherit;
    width: 100%;
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .top .introduction .introduction-contents {
    padding-top: 8rem;
    margin-bottom: 8rem;
  }
  .top .introduction .introduction-title {
    font-size: 4.8rem;
  }
  .top .introduction .introduction-lead {
    font-size: 2rem;
  }
}
/*--------------- page-job-list（page） ---------------*/
.page-job-list {
  background-color: #f8f8f8;
}
.page-job-list .block-wrap {
  padding-top: 6rem;
}
.page-job-list .page-lead {
  margin-top: 6rem;
  padding: 6rem 1.2rem 0;
  font-size: clamp(1.8rem, 4.8vw, 2rem);
  color: #c33939;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.page-job-list .block-lead {
  margin-bottom: 4rem;
  font-size: clamp(1.8rem, 4.8vw, 2rem);
  color: #c33939;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.page-job-list .block-text {
  margin-bottom: 4rem;
  font-size: clamp(1.5rem, 4vw, 1.6rem);
  line-height: 1.6;
  text-align: center;
}
.page-job-list .job-list-block {
  padding-top: 10rem;
  margin-bottom: 16rem;
}
.page-job-list .job-list-block:last-child {
  margin-bottom: 8rem;
}
.page-job-list .job-list-title {
  margin-bottom: 2.8rem;
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 1rem 1.6rem;
  font-size: clamp(2.2rem, 5.87vw, 2.4rem);
  color: #147B50;
}
.page-job-list .job-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.page-job-list .job-type-list__item {
  position: relative;
  width: 100%;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
}
.page-job-list .job-type-list__title {
  padding: 0.4rem;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  background-color: #147B50;
  border-radius: 5px;
}
.page-job-list .job-type-list__image {
  margin-bottom: 2rem;
}
.page-job-list .job-type-list__info {
  margin-bottom: 2rem;
  padding: 0 1.2rem;
  background-color: #f8f8f8;
  border-radius: 8px;
}
.page-job-list .job-type-list__dl {
  display: flex;
  padding: 1.2rem 0;
  border-bottom: 1px dashed #a2a2a2;
}
.page-job-list .job-type-list__dl:last-child {
  border-bottom: none;
}
.page-job-list .job-type-list__dt {
  display: inline-block;
  margin-top: 0.1rem;
  margin-right: 1.2rem;
  align-self: flex-start;
  padding: 0.4rem 0.6rem;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  background-color: #797979;
  white-space: nowrap;
}
.page-job-list .job-type-list__dd {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
}
.page-job-list .job-type-list__desc {
  font-size: 1.5rem;
  line-height: 1.5;
}
.page-job-list .job-type-list__desc ul {
  margin-top: 1em;
}
.page-job-list .job-type-list__desc ul li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 1em;
  text-indent: -1em;
  border-bottom: 1px dashed #a2a2a2;
}
.page-job-list .job-type-list__desc ul li:first-child {
  padding-top: 0.8rem;
  border-top: 1px dashed #a2a2a2;
}
.page-job-list .job-type-list__desc ul li.noindent {
  padding-left: 0;
  text-indent: 0;
}
.page-job-list .entry {
  padding-bottom: 8rem;
}
.page-job-list .entry .btn-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}

@media screen and (min-width: 768px) {
  .page-job-list .page-lead {
    padding: 6rem 0 0;
  }
  .page-job-list .job-type-list {
    gap: 4rem 2rem;
  }
  .page-job-list .job-type-list__item {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (min-width: 992px) {
  .page-job-list .job-type-list {
    gap: 4rem 2.8rem;
  }
  .page-job-list .job-type-list__item {
    width: calc((100% - 5.6rem) / 3);
  }
}/*# sourceMappingURL=style.css.map */