@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 62.5%; /* 基準フォントサイズ10px */
  scroll-padding-top: 12rem;
  /******SMOOTH SCROLL ANCHOR******/
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 72px;
  }
}

/* iOS Safari向けアンカーリンク位置調整 */
[id] {
  scroll-margin-top: 12rem;
}
@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 72px;
  }
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.9;
  color: #333;
}

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

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* パンくずリスト */
.bread {
  width: 100%;
  background-color: #d9d9d9;
  padding: 0 0.8rem;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
@media (max-width: 1024px) {
  .bread .inner {
    width: 100%;
  }
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 0.5rem;
}
@media (max-width: 1024px) {
  .bread ul li {
    padding: 0.5rem 0.3rem;
  }
}
.bread ul li a {
  transition: 0.15s;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .bread ul li a {
    font-size: 1.2rem;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (max-width: 1024px) {
  .bread ul li:after {
    margin: 0;
    font-size: 1rem;
  }
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

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

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

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

/* inner */
.inner {
  width: 120rem;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 1024px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 1024px) {
  .tab_db {
    display: block;
  }
}

section {
  padding: 50px 0;
}

.common_ttl_wrap {
  margin-bottom: 3.2rem;
  color: #E50012;
}
.common_ttl_wrap .common_subttl {
  font-size: 1.5rem;
  position: relative;
  padding-left: 2.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  display: inline;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.common_ttl_wrap .common_subttl::before {
  content: "";
  background: url(../images/icon_common_ttl_red.png) center/cover no-repeat;
  width: 1.5rem;
  height: 1.6rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.common_ttl_wrap .common_ttl {
  font-size: 3.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .common_ttl_wrap .common_ttl {
    font-size: 2.4rem;
  }
}

.text_bold {
  font-weight: bold;
}

.text_red {
  color: #EB3746;
}

.text_blue {
  color: #1779AE;
}

.text_yellow {
  color: #FF6017;
}

.text_green {
  color: #25AB82;
}

.text_red_02 {
  color: #E50012;
}

.common_schedule_btn {
  background-color: #EB3746;
  padding: 0.9rem 0;
  padding-left: 5.3rem;
  border-radius: 3.2rem;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  color: #fff;
  position: relative;
  display: block;
  width: 16.2rem;
  border: 0.1rem solid #EB3746;
}
@media (max-width: 1200px) {
  .common_schedule_btn {
    width: 14rem;
    padding-left: 4.75rem;
    font-size: 1.4rem;
  }
}
.common_schedule_btn::before {
  content: "";
  background-color: #333;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .common_schedule_btn::before {
    left: 1.25rem;
  }
}
@media (max-width: 1024px) {
  .common_schedule_btn::before {
    width: 2rem;
    height: 2rem;
  }
}
.common_schedule_btn::after {
  content: "";
  background: url(../images/icon_schedule_white.png) center/cover no-repeat;
  width: 1.5rem;
  height: 1.4rem;
  position: absolute;
  left: 2.55rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
@media (max-width: 1200px) {
  .common_schedule_btn::after {
    left: 2.05rem;
  }
}
@media (max-width: 1024px) {
  .common_schedule_btn::after {
    width: 1.2rem;
    height: 1.1rem;
  }
}
.common_schedule_btn:hover {
  background-color: #fff;
  color: #EB3746;
  opacity: 1;
  transform: translateY(0.4rem);
  box-shadow: none;
}
.common_schedule_btn:hover::before {
  background-color: #EB3746;
}

.common_btn_01 {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
}
.common_btn_01::before {
  content: "";
  background-color: #EB3746;
  width: 4.8rem;
  height: 4.8rem;
  position: absolute;
  right: -7.2rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #EB3746;
  transition: 0.3s;
}
.common_btn_01::after {
  content: "";
  background: url(../images/arrow_right_white.png) center/cover no-repeat;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  right: -5.3rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.common_btn_01:hover {
  opacity: 1;
  color: #EB3746;
}
.common_btn_01:hover::before {
  background-color: #fff;
}
.common_btn_01:hover::after {
  background: url(../images/arrow_right_red.png) center/cover no-repeat;
}

.driver_btn_wrap {
  position: fixed;
  bottom: 4rem;
  right: 3.2rem;
  width: 32rem;
  z-index: 3000;
  transition: 0.3s;
  opacity: 1;
}
.driver_btn_wrap:hover .close {
  transform: translateY(0.4rem);
}
.driver_btn_wrap .driver_btn {
  font-size: 2rem;
  display: block;
  width: 100%;
  background-color: #E50012;
  color: #fff;
  border: 0.1rem solid #fff;
  border-radius: 4.8rem;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  padding: 2.4rem 0;
  padding-left: 3.2rem;
}
.driver_btn_wrap .driver_btn::before {
  content: "";
  background-color: #d9d9d9;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 2.1rem;
  transform: translateY(-50%);
}
.driver_btn_wrap .driver_btn::after {
  content: "";
  background: url(../images/arrow_right_black.png) center/cover no-repeat;
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  right: 4.1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  z-index: 100;
}
.driver_btn_wrap .driver_btn:hover {
  background-color: #fff;
  color: #E50012;
  border: 0.1rem solid #E50012;
  box-shadow: none;
  transform: translateY(0.4rem);
  opacity: 1;
}
.driver_btn_wrap .driver_btn:hover::before {
  background-color: #E50012;
}
.driver_btn_wrap .driver_btn:hover::after {
  background: url(../images/arrow_right_white.png) center/cover no-repeat;
}
.driver_btn_wrap .close {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #333;
  border-radius: 50%;
  border: 0.1rem solid #fff;
  position: absolute;
  top: -1rem;
  left: 1rem;
  z-index: 5000;
  transition: 0.3s;
}
.driver_btn_wrap .close span {
  background-color: #fff;
  height: 0.1rem;
  width: 1.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
}
.driver_btn_wrap .close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.driver_btn_wrap .close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.top_btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  background-color: #fff;
  border: 0.1rem solid #E50012;
  box-shadow: 0.5rem 0.8rem 0.8rem rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding-top: 0.8rem;
}
@media (max-width: 1024px) {
  .top_btn {
    width: 6.4rem;
    height: 6.4rem;
    bottom: 9rem;
  }
}
.top_btn:hover {
  opacity: 1;
  transform: translateY(0.8rem);
  box-shadow: none;
}
.top_btn img {
  width: 3.2rem;
  display: block;
  margin-bottom: 0.4rem;
}
@media (max-width: 1024px) {
  .top_btn img {
    width: 2.8rem;
    margin-bottom: 0;
  }
}
.top_btn .top_btn_text {
  font-size: 1.2rem;
  color: #E50012;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.common_news .common_news_row {
  display: grid;
  grid-template-columns: 27rem 1fr;
}
@media (max-width: 1024px) {
  .common_news .common_news_row {
    grid-template-columns: 100% 100%;
  }
}
.common_news .common_news_list li {
  padding-bottom: 5.6rem;
  margin-bottom: 5.6rem;
  border-bottom: 1px dashed #858585;
}
@media (max-width: 1024px) {
  .common_news .common_news_list li {
    padding-bottom: 3.2rem;
    margin-bottom: 3.2rem;
  }
}
.common_news .common_news_list li:last-child {
  margin-bottom: 0;
}
.common_news .common_news_list a {
  display: grid;
  place-items: flex-start;
  grid-template-columns: 28rem 1fr;
}
@media (max-width: 1024px) {
  .common_news .common_news_list a {
    grid-template-columns: 100%;
  }
}
.common_news .common_news_list a .common_news_info {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
}
.common_news .common_news_list a .common_news_info .common_news_date {
  grid-column: 1;
  grid-row: 1/-1;
  margin-right: 0;
}
.common_news .common_news_list a .common_news_info .common_news_date::after {
  content: "-";
  margin-left: 1rem;
}
.common_news .common_news_list a .common_news_info .common_news_cate {
  grid-column: 2;
  color: #E50012;
  font-size: 1.5rem;
  width: 12.8rem;
  border: 1px solid #E50012;
  font-weight: 100;
  text-align: center;
  display: block;
  border-radius: 2.4rem;
  padding: 0.2rem 0;
  margin-right: 1.6rem;
}
.common_news .common_news_list a .common_news_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .common_news .common_news_list a .common_news_ttl {
    margin-top: 1.6rem;
  }
}
.common_news .common_news_list a:hover {
  opacity: 1;
}
.common_news .common_news_list a:hover .common_news_ttl {
  color: #E50012;
}

.work_tagarea {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
}
.work_tagarea .work_tag_01 {
  grid-area: 1/1/2/2;
  background-color: #FFF3C1;
  color: #E50012;
  padding: 0.8rem 1.4rem;
}
@media (max-width: 1024px) {
  .work_tagarea .work_tag_01 {
    padding: 0.2rem 0.8rem;
  }
}
.work_tagarea .work_tag_02 {
  grid-area: 1/2/2/4;
  border-radius: 0 2.4rem 0 0;
  background-color: #E50012;
  color: #fff;
  padding: 0.8rem 1.6rem;
}
@media (max-width: 1024px) {
  .work_tagarea .work_tag_02 {
    padding: 0.2rem 0.8rem;
  }
}
.work_tagarea p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}

.work_textarea {
  padding: 3.2rem;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .work_textarea {
    padding: 2.4rem;
    padding-bottom: 0;
  }
}
.work_textarea .work_subttl {
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  color: #E50012;
  margin-bottom: 0.8rem;
  font-weight: bold;
  line-height: 1;
}
.work_textarea .work_ttl {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.4;
}
.work_textarea .work_text {
  margin-bottom: 5.6rem;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .work_textarea .work_text {
    margin-bottom: 2.4rem;
  }
}
.work_textarea .common_btn_01_wrap {
  padding-right: 7.2rem;
  text-align: right;
}

.column_column_cont .slick-arrow {
  display: inline-block !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 4.8rem;
  height: 7.2rem;
  background-color: #333;
}
.column_column_cont .slick-arrow::before {
  content: "";
  width: 0.7rem;
  height: 1.3rem;
  padding: 0;
  display: block;
  border-radius: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.column_column_cont .slick-arrow.slick-prev {
  left: 0;
  border-radius: 0 1rem 1rem 0;
}
.column_column_cont .slick-arrow.slick-prev::before {
  background: url(../images/slide_arrow_left_white.png) center/cover no-repeat;
}
.column_column_cont .slick-arrow.slick-next {
  right: 0;
  border-radius: 1rem 0 0 1rem;
}
.column_column_cont .slick-arrow.slick-next::before {
  background: url(../images/slide_right_white.png) center/cover no-repeat;
}
.column_column_cont .slick-track {
  display: flex;
}
.column_column_cont .slick-slide {
  height: auto !important;
}
.column_column_cont .slick-list {
  padding-bottom: 2rem !important;
}
.column_column_cont .column_item {
  margin: 0 0.8rem;
  background-color: #fff;
  border-radius: 1.5rem;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
.column_column_cont .column_item:hover {
  opacity: 1;
  transform: translateY(0.5rem);
  box-shadow: none;
}
@media (max-width: 1024px) {
  .column_column_cont .column_item {
    box-shadow: none;
  }
}
.column_column_cont .column_item .column_item_box {
  padding: 2.4rem;
}
.column_column_cont .column_item .column_item_box img {
  border-radius: 1.5rem;
  margin-bottom: 1.6rem;
}
.column_column_cont .column_item .column_item_tagarea {
  background-color: #F1F1EF;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 1.4rem;
}
.column_column_cont .column_item .column_item_tagarea .column_item_tag {
  font-size: 1.2rem;
}
.column_column_cont .column_item .column_item_cate {
  font-size: 1.5rem;
  width: 8rem;
  padding: 0.2rem 0;
  text-align: center;
  display: block;
  position: absolute;
  top: 2.4rem;
  right: 1.2rem;
  transform: rotate(15deg);
}
.column_column_cont .column_item .column_item_cate.column_item_cate_red {
  background-color: #FFD8DA;
  color: #DE4D6A;
}
.column_column_cont .column_item .column_item_cate.column_item_cate_yellow {
  background-color: #FFF3C1;
  color: #A99123;
}
.column_column_cont .column_item .column_item_cate.column_item_cate_blue {
  background-color: #D7F1FA;
  color: #349CC1;
}
.column_column_cont .column_item .column_item_cate.column_item_cate_green {
  background-color: #C9DDD6;
  color: #25AB82;
}

.fix_sp {
  background-color: #EB3746;
  padding: 1.6rem 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 5000;
}
.fix_sp .inner {
  width: 91%;
}
.fix_sp .fix_sp_btn {
  position: relative;
  border-radius: 4.8rem;
  padding: 1rem 1.3rem;
  padding-left: 4rem;
  background-color: #F1F1EF;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  width: 48%;
  padding-right: 0;
}
.fix_sp .fix_sp_btn:hover {
  opacity: 1;
}
.fix_sp .fix_sp_btn::before {
  content: "";
  background-color: #333;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
}
.fix_sp .fix_sp_btn.fix_sp_schedule {
  margin-right: 0.5rem;
  padding-left: 5.3rem;
}
.fix_sp .fix_sp_btn.fix_sp_schedule::after {
  content: "";
  background: url(../images/icon_schedule_white.svg) center/cover no-repeat;
  width: 1.4rem;
  height: 1.3rem;
  position: absolute;
  top: 50%;
  left: 2.8rem;
  transform: translateY(-50%);
}
.fix_sp .fix_sp_btn.fix_sp_schedule::before {
  left: 2.1rem;
}
.fix_sp .fix_sp_btn.fix_sp_driver {
  padding-left: 4.6rem;
}
.fix_sp .fix_sp_btn.fix_sp_driver::after {
  content: "";
  background: url(../images/arrow_right_white.png) center/cover no-repeat;
  width: 1.4rem;
  height: 1.3rem;
  position: absolute;
  top: 50%;
  left: 2.1rem;
  transform: translateY(-50%);
}
.fix_sp .fix_sp_btn.fix_sp_driver::before {
  left: 1.4rem;
}

.fix_sp_menu {
  position: fixed;
  width: 100%;
  padding-bottom: 7.2rem;
  padding-top: 2.4rem;
  background-color: #EB3746;
  bottom: -50%;
  opacity: 0;
  transition: 0.4s;
  z-index: 1000;
}
.fix_sp_menu.active {
  bottom: 0;
  opacity: 1;
}
.fix_sp_menu .fix_sp_menu_link {
  width: 48%;
  margin-bottom: 1.6rem;
}
.fix_sp_menu .fix_sp_menu_link img {
  border-radius: 1.2rem;
  display: block;
  height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.fix_sp_menu .fix_sp_menu_link .fix_sp_menu_ttl {
  font-size: 1.4rem;
  margin-top: 0.4rem;
  text-align: center;
  color: #fff;
}
.fix_sp_menu .close {
  position: absolute;
  width: 3.6rem;
  height: 3.6rem;
  background-color: #fff;
  border-radius: 50%;
  border: 0.1rem solid #333;
  position: absolute;
  top: -2rem;
  right: 1rem;
  z-index: 5000;
  transition: 0.3s;
}
.fix_sp_menu .close span {
  background-color: #333;
  height: 0.1rem;
  width: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
}
.fix_sp_menu .close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.fix_sp_menu .close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.common_mv {
  position: relative;
  margin-top: 10.5rem;
}
@media (max-width: 1024px) {
  .common_mv {
    margin-top: 7.2rem;
  }
}
.common_mv .common_mv_ttl {
  display: flex;
}
.common_mv .common_mv_ttl.common_mv_ttl_general .text_small {
  display: inline;
  font-size: 1.6rem;
  padding: 0;
  background-color: #EB3746;
  color: #fff;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 1.6rem;
}
.common_mv .common_mv_ttl.common_mv_ttl_general .common_mv_ttl_red {
  border-radius: 0 !important;
  padding-right: 0.8rem;
}
@media (max-width: 1024px) {
  .common_mv .common_mv_ttl.common_mv_ttl_general .text_small {
    font-size: 1.2rem;
  }
}
.common_mv .common_mv_ttl_wrap {
  position: absolute;
  bottom: 0;
  left: 8%;
}
@media (max-width: 1024px) {
  .common_mv .common_mv_ttl_wrap {
    left: 5%;
  }
}
.common_mv .common_mv_ttl_wrap .common_mv_ttl {
  border-radius: 2.4rem 2.4rem 0 0;
  font-size: 3.2rem;
  font-weight: bold;
  filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-width: 1024px) {
  .common_mv .common_mv_ttl_wrap .common_mv_ttl {
    font-size: 2.4rem;
    line-height: 1.6;
  }
}
.common_mv .common_mv_ttl_wrap .common_mv_ttl .common_mv_ttl_gray {
  background-color: #F1F1EF;
  color: #E50012;
}
.common_mv .common_mv_ttl_wrap .common_mv_ttl .common_mv_ttl_red {
  background-color: #EB3746;
  color: #fff;
}
.common_mv .common_mv_ttl_wrap .common_mv_ttl .common_mv_ttl_yellow {
  background-color: #FFF3C1;
  color: #EB3746;
}
.common_mv .common_mv_ttl_wrap .common_mv_ttl span {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
@media (max-width: 1024px) {
  .common_mv .common_mv_ttl_wrap .common_mv_ttl span {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
.common_mv .common_mv_ttl_wrap .common_mv_ttl span:first-child {
  border-radius: 2.4rem 0 0 0;
}
@media (max-width: 1024px) {
  .common_mv .common_mv_ttl_wrap .common_mv_ttl span:first-child {
    border-radius: 1.6rem 0 0 0;
  }
}
.common_mv .common_mv_ttl_wrap .common_mv_ttl span:last-child {
  border-radius: 0 2.4rem 0 0;
}
@media (max-width: 1024px) {
  .common_mv .common_mv_ttl_wrap .common_mv_ttl span:last-child {
    border-radius: 0 1.6rem 0 0;
  }
}
.common_mv .common_mv_bg {
  height: 40rem;
  background-color: #EB3746;
}
@media (max-width: 1024px) {
  .common_mv .common_mv_bg {
    height: 24rem;
  }
}
.common_mv .common_mv_bg_img {
  position: relative;
}
.common_mv .common_mv_bg_img img {
  height: 40rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .common_mv .common_mv_bg_img img {
    height: 24rem;
  }
}
.common_mv .common_mv_ttl_02 {
  font-size: 3.5rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .common_mv .common_mv_ttl_02 {
    font-size: 2.4rem;
    width: 100%;
    text-align: center;
  }
}

.common_mv_nav {
  background-color: #EB3746;
  padding: 2.8rem 0;
  position: relative;
}
@media (max-width: 1024px) {
  .common_mv_nav {
    padding: 1.6rem;
    overflow: scroll;
  }
  .common_mv_nav.common_mv_nav_beauty .inner {
    width: 100%;
  }
  .common_mv_nav .inner {
    width: 96rem;
  }
  .common_mv_nav .inner .row {
    justify-content: flex-start;
  }
}
.common_mv_nav li {
  margin-right: 3rem;
}
.common_mv_nav li:last-child {
  margin-right: 0;
}
.common_mv_nav li a {
  color: #fff;
}
@media (max-width: 1024px) {
  .common_mv_nav li a {
    font-size: 1.4rem;
  }
}
.common_mv_nav li a i {
  margin-right: 0.5rem;
}

.mynav {
  color: #fff;
  font-weight: bold;
  padding: 1.5rem 0;
  padding-left: 5rem;
  padding-right: 5rem;
  border-radius: 6.4rem;
  background-color: #00AAEB;
  display: block;
  position: relative;
  width: 32rem;
  margin-top: 3rem;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
}
@media (max-width: 1200px) {
  .mynav {
    padding-left: 2rem;
  }
}
@media (max-width: 1024px) {
  .mynav {
    width: 100%;
  }
}
.mynav .text_large {
  font-size: 2rem;
}
.mynav i {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
}
@media (max-width: 1200px) {
  .mynav i {
    right: 1.6rem;
  }
}

.modal_item {
  border-radius: 1.6rem;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s;
  position: relative;
  cursor: pointer;
}
.modal_item img {
  border-radius: 1.6rem 1.6rem 0 0;
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.modal_item::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 4rem;
  height: 4rem;
  background-color: #EB3746;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
  pointer-events: none;
  display: block;
}
@media (max-width: 1024px) {
  .modal_item::before {
    top: 1.2rem;
    right: 1.2rem;
  }
}
.modal_item::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  z-index: 11;
  transition: 0.3s;
  pointer-events: none;
  line-height: 1;
}
@media (max-width: 1024px) {
  .modal_item::after {
    top: 1.2rem;
    right: 1.2rem;
  }
}
.modal_item:hover::before {
  opacity: 0.9;
  transform: scale(1.05);
}
.modal_item:hover::after {
  opacity: 0.9;
  transform: scale(1.05);
}
.modal_item p {
  padding: 1.6rem;
  padding-top: 0;
}
.modal_item .modal_item_ttl {
  color: #333;
  text-align: center;
  padding: 1rem 0;
  border-radius: 0 0 1.6rem 1.6rem;
}

.lightbox_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.lightbox_overlay .lightbox_content {
  position: relative;
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 3.2rem;
  max-width: 90%;
  max-height: 90%;
  cursor: default;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .lightbox_overlay .lightbox_content {
    padding: 2rem;
    width: 90%;
  }
}
.lightbox_overlay .lightbox_content .lightbox_content_wrap {
  overflow: scroll;
}
.lightbox_overlay .lightbox_content img {
  max-width: 76rem;
  border-radius: 1.6rem;
  display: block;
}
@media (max-width: 1024px) {
  .lightbox_overlay .lightbox_content img {
    width: 100%;
  }
}
.lightbox_overlay .lightbox_content .lightbox_caption {
  text-align: center;
  color: #333;
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .lightbox_overlay .lightbox_content .lightbox_caption {
    font-size: 1.6rem;
  }
}
.lightbox_overlay .lightbox_content .lightbox_text {
  text-align: left;
  color: #333;
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 76rem;
}
@media (max-width: 1024px) {
  .lightbox_overlay .lightbox_content .lightbox_text {
    font-size: 1.4rem;
  }
}
.lightbox_overlay .lightbox_close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 5.6rem;
  height: 5.6rem;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background-color: #EB3746;
  border-radius: 50%;
  border: 0.1rem solid #fff;
  padding: 1rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .lightbox_overlay .lightbox_close {
    width: 4.8rem;
    height: 4.8rem;
    top: auto;
    bottom: -2.2rem;
    right: 50%;
    padding: 0.8rem;
    transform: translateX(50%);
  }
}
.lightbox_overlay .lightbox_close:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
.lightbox_overlay .lightbox_close span {
  position: absolute;
  width: 3rem;
  height: 0.2rem;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .lightbox_overlay .lightbox_close span {
    width: 2.2rem;
  }
}
.lightbox_overlay .lightbox_close span:first-child {
  transform: rotate(45deg);
}
.lightbox_overlay .lightbox_close span:last-child {
  transform: rotate(-45deg);
}

.page_job_loopslide {
  display: none;
}

.page_job_loopslide.slick-initialized {
  display: block; /*slick-initializedが付与されたら表示*/
}

.job_message_slide {
  display: none !important;
}

.job_message_slide.slick-initialized {
  display: block !important; /*slick-initializedが付与されたら表示*/
}

/* header */
header {
  padding-left: 8rem;
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 6000;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  header {
    padding-left: 4.8rem;
  }
}
@media (max-width: 1024px) {
  header {
    padding-left: 0;
  }
}
header .header_logo {
  width: 17rem;
  padding-top: 3rem;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  header .header_logo {
    width: 15rem;
    padding-top: 2rem;
  }
}
@media (max-width: 1024px) {
  header .header_logo {
    padding-top: 0;
    width: calc(100% - 72px);
    position: relative;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    padding-left: 2rem;
  }
  header .header_logo h1 {
    width: 14.4rem;
  }
}
header .header_btnarea .header_links {
  margin-right: 4rem;
}
@media (max-width: 1200px) {
  header .header_btnarea .header_links {
    margin-right: 3.2rem;
    padding: 1.6rem 0;
  }
}
@media (max-width: 1024px) {
  header .header_btnarea .header_links {
    display: none;
  }
}
header .header_btnarea .header_links .header_nav_01 {
  margin-bottom: 1.3rem;
}
header .header_btnarea .header_links .header_nav_01 li {
  margin-right: 2.4rem;
}
@media (max-width: 1200px) {
  header .header_btnarea .header_links .header_nav_01 li {
    margin-right: 1.6rem;
  }
}
header .header_btnarea .header_links .header_nav_01 li:last-child {
  margin-right: 0;
}
header .header_btnarea .header_links .header_nav_01 li a {
  padding: 0.8rem 0;
}
@media (max-width: 1200px) {
  header .header_btnarea .header_links .header_nav_01 li a {
    font-size: 1.4rem;
  }
}
header .header_btnarea .header_links .header_nav_01 li a:hover {
  color: #E50012;
  opacity: 1;
}
header .header_btnarea .header_links .header_nav_01 li a.active {
  background-color: #F1F1EF;
  padding: 0.8rem 3.2rem;
}
header .header_btnarea .header_links .header_nav_01 li a.active:hover {
  color: #fff;
  background-color: #E50012;
}
header .header_btnarea .header_links .header_nav_02 li {
  padding-right: 2.3rem;
  margin-right: 2.4rem;
  border-right: 1px solid #000;
}
@media (max-width: 1200px) {
  header .header_btnarea .header_links .header_nav_02 li {
    padding-right: 1.2rem;
    margin-right: 1.2rem;
  }
}
header .header_btnarea .header_links .header_nav_02 li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
header .header_btnarea .header_links .header_nav_02 li a {
  color: #E50012;
  font-weight: bold;
  position: relative;
}
@media (max-width: 1200px) {
  header .header_btnarea .header_links .header_nav_02 li a {
    font-size: 1.4rem;
  }
}
header .header_btnarea .header_links .header_nav_02 li a::after {
  position: absolute;
  left: 0;
  bottom: -0.8rem;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: #E50012;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
header .header_btnarea .header_links .header_nav_02 li a:hover {
  opacity: 1;
  cursor: pointer;
}
header .header_btnarea .header_links .header_nav_02 li a:hover::after {
  width: 100%;
}
@media (max-width: 1024px) {
  header .header_btnarea .header_btns .header_schedule_btn {
    display: none;
  }
}

.menu_btn {
  width: 11.2rem;
  height: 11.2rem;
  margin-left: 2.4rem;
  position: relative;
  z-index: 4000;
  background-color: #EB3746;
}
@media (max-width: 1200px) {
  .menu_btn {
    width: 7.2rem;
    height: 10.5rem;
  }
}
@media (max-width: 1024px) {
  .menu_btn {
    margin-left: 0;
    height: 7.2rem;
  }
}
.menu_btn span {
  display: inline-block;
  height: 1px;
  width: 4.4rem;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .menu_btn span {
    width: 3.6rem;
  }
}
.menu_btn span:nth-child(1) {
  top: 3.7rem;
}
@media (max-width: 1200px) {
  .menu_btn span:nth-child(1) {
    top: 4rem;
  }
}
@media (max-width: 1024px) {
  .menu_btn span:nth-child(1) {
    top: 2.6rem;
  }
}
.menu_btn span:nth-child(2) {
  top: 5.4rem;
}
@media (max-width: 1200px) {
  .menu_btn span:nth-child(2) {
    top: 5.25rem;
  }
}
@media (max-width: 1024px) {
  .menu_btn span:nth-child(2) {
    top: 3.6rem;
  }
}
.menu_btn span:nth-child(3) {
  top: 7.1rem;
}
@media (max-width: 1200px) {
  .menu_btn span:nth-child(3) {
    top: 6.4rem;
  }
}
@media (max-width: 1200px) and (max-width: 1024px) {
  .menu_btn span:nth-child(3) {
    top: 4.6rem;
  }
}

.header_menu_inner {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.15);
  z-index: 500;
  transition: 500ms ease-out;
  padding: 8rem 0 4rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 1024px) {
  .header_menu_inner {
    padding: 8rem 0 2.4rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-bottom: 10rem;
  }
}
.header_menu_inner .header_menu_content {
  width: 120rem;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .header_menu_inner .header_menu_content {
    width: 90%;
  }
}
.header_menu_inner .header_menu_company {
  margin-bottom: 2.4rem;
}
.header_menu_inner .header_menu_company .header_menu_logo {
  width: 20rem;
  margin-right: 5.6rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_company .header_menu_logo {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_company .header_menu_sns {
    position: absolute;
    top: 10rem;
    right: 5%;
  }
}
.header_menu_inner .header_menu_company .header_menu_sns .header_menu_sns_icon {
  width: 4.8rem;
  margin-right: 2.2rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_company .header_menu_sns .header_menu_sns_icon {
    width: 3.6rem;
    margin-right: 1.8rem;
  }
}
.header_menu_inner .header_menu_company .header_menu_sns .header_menu_sns_icon:last-child {
  margin-right: 0;
}
.header_menu_inner .header_menu_nav .header_menu_nav_list li {
  border-bottom: 0.1rem dashed #858585;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
}
.header_menu_inner .header_menu_nav .header_menu_nav_list li a {
  position: relative;
  padding-left: 3.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_nav .header_menu_nav_list li a {
    font-size: 1.8rem;
  }
}
.header_menu_inner .header_menu_nav .header_menu_nav_list li a::before {
  content: "";
  background: url(../images/arrow_nav_red.svg) center/cover no-repeat;
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 2rem;
  height: 2rem;
}
.header_menu_inner .header_menu_nav .header_menu_nav_list li a:hover {
  opacity: 1;
  color: #E50012;
}
.header_menu_inner .header_menu_nav_01 {
  width: 49%;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_nav_01 {
    width: 100%;
  }
}
.header_menu_inner .header_menu_nav_02 {
  width: 49%;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_nav_02 {
    width: 100%;
  }
}
.header_menu_inner .header_menu_nav_02 .header_menu_nav .header_menu_nav_list li {
  border-bottom: none;
  padding-bottom: 0;
}
.header_menu_inner .header_menu_job {
  border-bottom: 0.1rem dashed #858585;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.header_menu_inner .header_menu_job::after {
  content: "";
  position: absolute;
  bottom: 2.8rem;
  right: 2.2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.8rem solid transparent;
  border-left: 0.8rem solid transparent;
  border-top: 1.4rem solid #EB3746;
  border-bottom: 0;
  transition: 0.3s;
  pointer-events: none;
}
.header_menu_inner .header_menu_job.active::after {
  transform: scale(1, -1);
}
.header_menu_inner .header_menu_job .header_menu_job_ttl {
  font-size: 2rem;
  font-weight: bold;
  padding-left: 6rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_job .header_menu_job_ttl {
    font-size: 1.8rem;
    padding-left: 3.2rem;
  }
}
.header_menu_inner .header_menu_job .header_menu_job_ttl::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 0;
  width: 3.2rem;
  height: 3.2rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_job .header_menu_job_ttl::before {
    width: 2.4rem;
    height: 2.4rem;
    left: 0rem;
    top: 0.6rem;
  }
}
.header_menu_inner .header_menu_job .header_menu_job_links {
  margin-top: 1.6rem;
  padding-left: 6rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_job .header_menu_job_links {
    padding-left: 3.2rem;
  }
}
.header_menu_inner .header_menu_job .header_menu_job_links li {
  width: 50%;
  margin-bottom: 0.8rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_job .header_menu_job_links li {
    text-indent: -1rem;
    line-height: 1.4;
  }
}
.header_menu_inner .header_menu_job .header_menu_job_links li a {
  position: relative;
  padding-left: 1.6rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_job .header_menu_job_links li a {
    font-size: 1.4rem;
    padding-left: 1.2rem;
  }
}
.header_menu_inner .header_menu_job .header_menu_job_links li a::before {
  content: "";
  background: url(../images/arrow_nav_red02.svg) center/cover no-repeat;
  width: 0.5rem;
  height: 0.8rem;
  position: absolute;
  left: 0;
  top: 1rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_job .header_menu_job_links li a::before {
    top: 0.6rem;
  }
}
.header_menu_inner .header_menu_job .header_menu_job_links li a:hover {
  opacity: 1;
  color: #E50012;
}
.header_menu_inner .header_menu_job.header_menu_job_01 .header_menu_job_ttl::before {
  background: url(../images/icon_menu_job01.svg) center/cover no-repeat;
}
.header_menu_inner .header_menu_job.header_menu_job_02 .header_menu_job_ttl::before {
  background: url(../images/icon_menu_job02.svg) center/cover no-repeat;
}
.header_menu_inner .header_menu_job.header_menu_job_03 .header_menu_job_ttl::before {
  background: url(../images/icon_menu_job03.svg) center/cover no-repeat;
}
.header_menu_inner .header_menu_job.header_menu_job_04 .header_menu_job_ttl::before {
  background: url(../images/icon_menu_job04.svg) center/cover no-repeat;
}
.header_menu_inner .header_menu_icons {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1.6rem;
  justify-content: start;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
.header_menu_inner .header_menu_icons .header_menu_icon {
  width: 16rem;
  height: 17.6rem;
  background-color: #fff;
  border-radius: 1.6rem;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
  margin-bottom: 1.6rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_icons .header_menu_icon {
    width: 100%;
    height: 6.4rem;
    font-size: 1.4rem;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    padding-left: 4.8rem;
    margin-bottom: 0;
    line-height: 1.4;
  }
}
.header_menu_inner .header_menu_icons .header_menu_icon::before {
  content: "";
  position: absolute;
  right: 0%;
  transform: translateX(-50%);
  top: 3.8rem;
  width: 8rem;
  height: 8rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_icons .header_menu_icon::before {
    height: 3.2rem;
    width: 3.2rem;
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
    right: auto;
  }
}
.header_menu_inner .header_menu_icons .header_menu_icon:hover {
  background-color: #FFEFF0;
  box-shadow: none;
  transform: translateY(0.4rem);
  opacity: 1;
}
.header_menu_inner .header_menu_icons .header_menu_icon.header_menu_icon_01::before {
  background: url(../images/header_menu_icon01.svg) center/cover no-repeat;
}
.header_menu_inner .header_menu_icons .header_menu_icon.header_menu_icon_02::before {
  background: url(../images/header_menu_icon02.svg) center/cover no-repeat;
}
.header_menu_inner .header_menu_icons .header_menu_icon.header_menu_icon_03::before {
  background: url(../images/header_menu_icon03.svg) center/cover no-repeat;
}
.header_menu_inner .header_menu_icons .header_menu_icon.header_menu_icon_04 {
  line-height: 1.4;
  text-align: center;
  padding-bottom: 1rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_icons .header_menu_icon.header_menu_icon_04 {
    padding-bottom: 0;
    text-align: left;
  }
}
.header_menu_inner .header_menu_icons .header_menu_icon.header_menu_icon_04::before {
  background: url(../images/header_menu_icon04.svg) center/cover no-repeat;
  width: 7.1rem;
  height: 7.1rem;
  right: 7%;
  top: 4.2rem;
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_icons .header_menu_icon.header_menu_icon_04::before {
    height: 3.2rem;
    width: 3.2rem;
    top: 50%;
  }
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_info {
    padding-top: 2.4rem;
  }
}
@media (max-width: 1024px) {
  .header_menu_inner .header_menu_info .header_menu_info_text {
    font-size: 1.4rem;
  }
}
.header_menu_inner .header_menu_info .header_menu_info_text .text_large {
  font-size: 2rem;
  font-weight: bold;
}
.open .menu_btn {
  z-index: 1000;
  background-color: #333;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .header_menu_inner {
  opacity: 1 !important;
  left: 0 !important;
  overflow: scroll;
}

.open {
  overflow: hidden;
}
.open .top_mv {
  filter: blur(15px);
}

.schedule_menu {
  background-color: #EB3746;
  padding-top: 14.4rem;
  padding-bottom: 3.2rem;
  position: fixed;
  top: -55%;
  width: 100%;
  z-index: 2000;
  opacity: 0;
  transition: 0.4s;
}
.schedule_menu .row {
  flex-wrap: nowrap;
}
.schedule_menu.active {
  top: 0;
  opacity: 1;
}
.schedule_menu .schedule_menu_ttl_wrap .schedule_menu_ttl {
  position: relative;
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  padding-left: 4.8rem;
}
@media (max-width: 1200px) {
  .schedule_menu .schedule_menu_ttl_wrap .schedule_menu_ttl {
    font-size: 2rem;
  }
}
.schedule_menu .schedule_menu_ttl_wrap .schedule_menu_ttl::before {
  content: "";
  background: url(../images/icon_schedule_white.svg) center/cover no-repeat;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
@media (max-width: 1200px) {
  .schedule_menu .schedule_menu_ttl_wrap .schedule_menu_ttl::before {
    top: 0.4rem;
  }
}
.schedule_menu .schedule_menu_links .schedule_menu_link {
  width: 23%;
  display: block;
}
.schedule_menu .schedule_menu_links .schedule_menu_link .schedule_menu_img {
  margin-bottom: 0.8rem;
  overflow: hidden;
  transform: 0.3s;
  border-radius: 1.6rem;
}
.schedule_menu .schedule_menu_links .schedule_menu_link .schedule_menu_img img {
  border-radius: 1.6rem;
  transition: 0.3s;
  height: 14rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.schedule_menu .schedule_menu_links .schedule_menu_link:hover .schedule_menu_img img {
  transform: scale(1.1);
}
.schedule_menu .schedule_menu_links .schedule_menu_link .schedule_menu_text {
  color: #fff;
}

/* footer */
footer {
  background-color: #F1F1EF;
  padding-top: 6.4rem;
  position: relative;
}
footer .inner {
  position: relative;
}
footer .footer_row {
  display: grid;
  grid-template-columns: 3fr 7fr;
  grid-column-gap: 120px;
  padding-bottom: 5.6rem;
}
@media (max-width: 1024px) {
  footer .footer_row {
    display: block;
  }
}
footer .footer_row .footer_company {
  grid-area: 1/1/2/2;
}
footer .footer_row .footer_company .footer_logo {
  width: 22rem;
}
footer .footer_row .footer_company .footer_info {
  padding-top: 3.5rem;
  border-top: 0.1rem solid #858585;
  margin-top: 3.2rem;
}
footer .footer_row .footer_company .footer_info .footer_info_text {
  font-weight: normal;
  font-size: 1.4rem;
}
footer .footer_row .footer_company .footer_info .footer_info_text .text_bold {
  font-size: 2rem;
  font-weight: bold;
}
footer .footer_row .footer_links {
  grid-area: 1/2/2/3;
}
footer .footer_row .footer_links .footer_nav_01 {
  background-color: #fff;
  border-radius: 3rem;
  padding: 1rem 4rem;
  padding-left: 7rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  footer .footer_row .footer_links .footer_nav_01 {
    display: none;
  }
}
footer .footer_row .footer_links .footer_nav_01 .footer_nav_01_row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5rem;
}
footer .footer_row .footer_links .footer_nav_01 .footer_nav_01_row a {
  color: #E50012;
}
footer .footer_row .footer_links .footer_nav_02 {
  padding: 0 4rem;
  padding-left: 7rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  footer .footer_row .footer_links .footer_nav_02 {
    display: none;
  }
}
footer .footer_row .footer_links .footer_nav_02 .footer_nav_02_row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5rem;
}
footer .footer_row .footer_links .footer_nav_02 li {
  margin-bottom: 2.4rem;
}
footer .footer_row .footer_links .footer_nav_02 li a:hover {
  color: #E50012;
  opacity: 1;
}
@media (max-width: 1024px) {
  footer .footer_row .footer_links .footer_sns {
    margin-top: 3.6rem;
  }
  footer .footer_row .footer_links .footer_sns .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    max-width: 35.2rem;
    margin: 0 auto;
  }
}
footer .footer_row .footer_links .footer_sns .footer_sns_link {
  width: 4.8rem;
  margin-right: 1.6rem;
}
@media (max-width: 1024px) {
  footer .footer_row .footer_links .footer_sns .footer_sns_link:first-child {
    margin-left: auto;
    margin-right: 0;
  }
}
footer .footer_row .footer_links .footer_sns .footer_sns_link_btn {
  background-color: #EB3746;
  color: #fff;
  font-size: 1.4rem;
  width: 16rem;
  text-align: center;
  border: 0.1rem solid #EB3746;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.8rem;
  padding: 0.5rem 0;
  line-height: 1.5;
  margin-left: 1.6rem;
}
@media (max-width: 1024px) {
  footer .footer_row .footer_links .footer_sns .footer_sns_link_btn {
    width: 100%;
    margin-left: 0;
  }
}
footer .footer_row .footer_links .footer_sns .footer_sns_link_btn:first-of-type {
  margin-left: 0;
}
footer .footer_row .footer_links .footer_sns .footer_sns_link_btn:hover {
  background-color: #fff;
  color: #EB3746;
  opacity: 1;
}
footer .footer_row .footer_links .footer_sns .footer_sns_link_btn:last-child {
  margin-left: 0.8rem;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  footer .footer_row .footer_links .footer_sns .footer_sns_link_btn:last-child {
    margin-left: 0;
    margin-top: 0;
  }
}
footer .copyright_wrap {
  padding: 0.7rem 0;
  text-align: center;
  background-color: #EB3746;
}
@media (max-width: 1024px) {
  footer .copyright_wrap {
    padding-bottom: 9.6rem;
  }
}
footer .copyright_wrap .copyright {
  color: #fff;
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  footer .copyright_wrap .copyright {
    font-size: 1rem;
  }
}
footer .copyright_wrap .copyright a {
  color: #fff;
}

main {
  overflow: hidden;
}

/* top */
.top_mv {
  margin-top: 11.2rem;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .top_mv {
    margin-top: 7.2rem;
  }
}

.top_news {
  padding: 12.8rem 0;
}
@media (max-width: 1024px) {
  .top_news {
    padding: 5.4rem 0;
  }
  .top_news .common_btn_01_wrap {
    padding-right: 7.2rem;
  }
}
.top_news .common_news_row {
  display: grid;
  grid-template-columns: 27rem 1fr;
}
@media (max-width: 1024px) {
  .top_news .common_news_row {
    display: block;
  }
  .top_news .common_news_row .common_btn_01_wrap {
    text-align: right;
  }
}
.top_news .common_news_row .common_ttl_wrap {
  margin-bottom: 9.6rem;
}
@media (max-width: 1024px) {
  .top_news .common_news_row .common_ttl_wrap {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 1024px) {
  .top_news .common_news_list {
    margin-bottom: 3.2rem;
  }
}

.top_gifubus {
  background-color: #EB3746;
  padding: 13rem 0;
  position: relative;
}
@media (max-width: 1024px) {
  .top_gifubus {
    padding: 6.4rem 0;
  }
}
.top_gifubus .common_ttl_wrap {
  color: #fff;
}
@media (max-width: 1024px) {
  .top_gifubus .common_ttl_wrap {
    margin-bottom: 1.6rem;
  }
}
.top_gifubus .common_ttl_wrap .common_subttl::before {
  background: url(../images/icon_common_ttl_white.png) center/cover no-repeat;
}
.top_gifubus .top_gifubus_text {
  margin-bottom: 4rem;
  color: #fff;
}
@media (max-width: 1024px) {
  .top_gifubus .top_gifubus_text {
    margin-bottom: 4rem;
  }
}
.top_gifubus .common_btn_01_wrap {
  width: 64rem;
  text-align: right;
}
@media (max-width: 1024px) {
  .top_gifubus .common_btn_01_wrap {
    width: 100%;
    padding-right: 7.2rem;
  }
}
.top_gifubus .common_btn_01 {
  color: #fff;
}
.top_gifubus .common_btn_01::before {
  background-color: #fff;
}
.top_gifubus .common_btn_01::after {
  background: url(../images/arrow_right_red.png) center/cover no-repeat;
}
.top_gifubus .common_btn_01:hover {
  opacity: 0.7;
}
.top_gifubus .top_gifubus_jinbutu {
  width: 28rem;
  position: absolute;
  bottom: 0;
  right: 22rem;
}
@media (max-width: 1200px) {
  .top_gifubus .top_gifubus_jinbutu {
    width: 24rem;
    right: 1.2rem;
  }
}
@media (max-width: 1024px) {
  .top_gifubus .top_gifubus_jinbutu {
    width: 20.8rem;
    position: initial;
    margin: 0 auto 1.6rem;
  }
}

.top_gallery {
  padding-top: 4.8rem;
}
@media (max-width: 1024px) {
  .top_gallery {
    padding-top: 3.2rem;
  }
}
.top_gallery .top_gallery_img {
  margin: 0 2.4rem;
}

.top_about {
  padding: 12.8rem 0;
}
@media (max-width: 1024px) {
  .top_about {
    padding: 9.6rem 0 6.2rem;
  }
}
.top_about .inner {
  position: relative;
}
.top_about .inner.common_btn_01_wrap {
  text-align: right;
  padding-right: 6.4rem;
}
.top_about .top_about_textarea {
  width: 60rem;
  padding-bottom: 12.8rem;
}
@media (max-width: 1024px) {
  .top_about .top_about_textarea {
    width: 100%;
    padding-bottom: 0;
  }
}
.top_about .top_about_jinbutu {
  width: 40rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .top_about .top_about_jinbutu {
    width: 100%;
    max-width: 40rem;
    position: initial;
    margin-top: 1.6rem;
  }
}
.top_about .top_about_numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-bottom: 7.8rem;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers {
    display: block;
    margin-bottom: 3.2rem;
  }
}
.top_about .top_about_numbers .about_number_icon {
  width: 18rem;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers .about_number_icon {
    width: 12rem;
  }
}
.top_about .top_about_numbers .about_number_textarea {
  text-align: center;
}
.top_about .top_about_numbers .about_number_textarea .about_number_text {
  font-weight: 900;
  line-height: 1;
  font-size: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 0.8rem;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers .about_number_textarea .about_number_text {
    font-size: 1.6rem;
  }
}
.top_about .top_about_numbers .about_number_textarea .about_number_text .text_small {
  font-size: 2.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers .about_number_textarea .about_number_text .text_small {
    font-size: 1.6rem;
  }
}
.top_about .top_about_numbers .about_number_textarea .about_number_text .text_red {
  font-size: 6.4rem;
  color: #EB3746;
  font-family: "Roboto", sans-serif;
}
.top_about .top_about_numbers .top_about_enrollment {
  grid-area: 1/1/6/2;
  background-color: #FFD8DA;
  place-content: center;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers .top_about_enrollment {
    grid-area: unset;
    display: flex;
    padding: 4rem 0;
  }
}
.top_about .top_about_numbers .top_about_enrollment .about_number_icon {
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers .top_about_enrollment .about_number_icon {
    margin: 0;
    margin-right: 2.4rem;
  }
}
.top_about .top_about_numbers .top_about_age {
  padding: 5rem 0;
  grid-area: 1/2/2/3;
  background-color: #D7F1FA;
  display: grid;
  grid-template-columns: 24.5rem 18rem;
  grid-template-rows: 1fr;
  grid-column-gap: 4rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers .top_about_age {
    grid-area: unset;
    display: flex;
    flex-direction: row-reverse;
    padding: 4rem 0;
  }
}
.top_about .top_about_numbers .top_about_age .about_number_textarea {
  grid-area: 1/1/2/2;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers .top_about_age .about_number_textarea {
    margin-bottom: 0;
  }
}
.top_about .top_about_numbers .top_about_age .about_number_textarea .about_number_text {
  margin-bottom: 0.8rem;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers .top_about_age .about_number_textarea .about_number_text {
    margin-bottom: 0;
  }
  .top_about .top_about_numbers .top_about_age .about_number_textarea .about_number_text:first-child {
    margin-bottom: 0.8rem;
  }
  .top_about .top_about_numbers .top_about_age .about_number_textarea .about_number_text .text_red {
    font-size: 4.8rem;
  }
}
.top_about .top_about_numbers .top_about_age .about_number_icon {
  grid-area: 1/2/2/3;
}
.top_about .top_about_numbers .top_about_continuous {
  padding: 4.6rem 0;
  grid-area: 2/2/3/3;
  background-color: #FFF3C1;
  display: grid;
  grid-template-columns: 24.5rem 18rem;
  grid-template-rows: 1fr;
  grid-column-gap: 4rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .top_about .top_about_numbers .top_about_continuous {
    grid-area: unset;
    display: flex;
    flex-direction: row-reverse;
  }
}
.top_about .top_about_numbers .top_about_continuous .about_number_textarea {
  grid-area: 1/1/2/2;
}
.top_about .top_about_numbers .top_about_continuous .about_number_icon {
  grid-area: 1/2/2/3;
}
.top_about .common_btn_01_wrap.inner {
  margin-bottom: 0;
}

.top_work {
  background-color: #F1F1EF;
  padding: 12.8rem 0;
}
@media (max-width: 1024px) {
  .top_work {
    padding: 6.4rem 0;
  }
}
.top_work .inner {
  position: relative;
}
.top_work .top_work_textarea {
  margin-bottom: 9.8rem;
}
@media (max-width: 1024px) {
  .top_work .top_work_textarea {
    margin-bottom: 1.6rem;
  }
}
.top_work .top_work_jinbutu {
  width: 40rem;
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1024px) {
  .top_work .top_work_jinbutu {
    width: 94%;
    position: initial;
    margin-bottom: 0;
  }
}
.top_work .top_work_half {
  margin-bottom: 4.8rem;
}
@media (max-width: 1024px) {
  .top_work .top_work_half {
    margin-bottom: 3.2rem;
  }
}
.top_work .top_work_half .work_half_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  position: relative;
}
@media (max-width: 1024px) {
  .top_work .top_work_half .work_half_row {
    display: block;
  }
}
.top_work .top_work_half .work_half_imgarea {
  grid-area: 1/1/2/2;
  position: relative;
}
.top_work .top_work_half .work_half_imgarea .work_half_img {
  height: 100%;
}
.top_work .top_work_half .work_half_imgarea .work_half_img img {
  border-radius: 2.4rem 0 0 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .top_work .top_work_half .work_half_imgarea .work_half_img img {
    border-radius: 1.6rem 1.6rem 0 0;
  }
}
.top_work .top_work_half .work_half_imgarea .work_half_tagarea {
  top: 0;
  left: 0;
  bottom: auto;
}
@media (max-width: 1024px) {
  .top_work .top_work_half .work_half_imgarea .work_half_tagarea {
    top: auto;
    bottom: 0;
  }
}
.top_work .top_work_half .work_half_imgarea .work_half_tag_01 {
  font-size: 2.4rem;
  padding-left: 1.7rem;
  padding-right: 1.7rem;
  background-color: #E50012;
  color: #fff;
  border-radius: 2.4rem 0 0 0;
}
@media (max-width: 1024px) {
  .top_work .top_work_half .work_half_imgarea .work_half_tag_01 {
    font-size: 2rem;
    padding: 0.2rem 0.8rem;
    border-radius: 0;
  }
}
.top_work .top_work_half .work_half_imgarea .work_half_tag_02 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: #F1F1EF;
  color: #E50012;
  border-radius: 0 0 2.4rem 0;
}
@media (max-width: 1024px) {
  .top_work .top_work_half .work_half_imgarea .work_half_tag_02 {
    font-size: 2rem;
    padding: 0.2rem 0.8rem;
    border-radius: 0 1.6rem 0 0;
  }
}
.top_work .top_work_half .work_half_imgarea p {
  font-size: 2.4rem;
}
.top_work .top_work_half .work_half_textarea {
  grid-area: 1/2/2/3;
  padding: 4.8rem;
  background-color: #fff;
  border-radius: 0 2.4rem 2.4rem 0;
}
@media (max-width: 1024px) {
  .top_work .top_work_half .work_half_textarea {
    padding: 3.2rem;
    border-radius: 0 0 1.6rem 1.6rem;
  }
}
.top_work .top_work_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 4.8rem;
}
@media (max-width: 1024px) {
  .top_work .top_work_row {
    display: block;
  }
}
.top_work .top_work_row .top_work_item {
  background-color: #fff;
  position: relative;
  padding-bottom: 8.8rem;
  border-radius: 2.4rem;
}
@media (max-width: 1024px) {
  .top_work .top_work_row .top_work_item {
    border-radius: 0 0 1.6rem 1.6rem;
    margin-bottom: 3.2rem;
  }
  .top_work .top_work_row .top_work_item:last-child {
    margin-bottom: 0;
  }
}
.top_work .top_work_row .top_work_item .work_item_imgarea {
  position: relative;
}
.top_work .top_work_row .top_work_item .work_item_imgarea .work_item_img img {
  border-radius: 2.4rem 2.4rem 0 0;
}
@media (max-width: 1024px) {
  .top_work .top_work_row .top_work_item .work_item_imgarea .work_item_img img {
    border-radius: 1.6rem 1.6rem 0 0;
  }
}
.top_work .top_work_row .top_work_item .work_textarea .work_text {
  margin-bottom: 0;
}
.top_work .top_work_row .top_work_item .work_textarea .common_btn_01_wrap {
  position: absolute;
  right: 3.2rem;
  bottom: 4rem;
}
.top_life {
  padding: 12.8rem 0 0;
}
@media (max-width: 1200px) {
  .top_life {
    width: 120rem;
    overflow: hidden;
  }
  .top_life .inner {
    overflow: hidden;
  }
}
@media (max-width: 1024px) {
  .top_life {
    padding: 6.4rem 0;
    width: 100%;
  }
  .top_life .common_btn_01_wrap {
    text-align: right;
    padding-right: 7.2rem;
    margin-bottom: 3.2rem;
  }
}
.top_life .inner {
  position: relative;
  padding-bottom: 63rem;
}
@media (max-width: 1024px) {
  .top_life .inner {
    padding-bottom: 0;
  }
}
.top_life .top_life_textarea {
  width: 48.8rem;
}
@media (max-width: 1024px) {
  .top_life .top_life_textarea {
    width: 100%;
  }
}
.top_life .top_life_textarea .top_life_text {
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .top_life .top_life_textarea .top_life_text {
    margin-bottom: 1.6rem;
  }
}
.top_life .top_life_imgs .top_life_img {
  position: absolute;
}
@media (max-width: 1024px) {
  .top_life .top_life_imgs .top_life_img {
    position: initial;
    margin-bottom: 2.4rem;
  }
}
.top_life .top_life_imgs .top_life_img img {
  border-radius: 2.4rem;
  box-shadow: 0.4rem 0.8rem 0.8rem rgba(0, 0, 0, 0.15);
}
@media (max-width: 1024px) {
  .top_life .top_life_imgs .top_life_img img {
    border-radius: 1.46em;
    box-shadow: 0.2rem 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  }
}
.top_life .top_life_imgs .top_life_img_01 {
  right: 0;
  top: 0;
  width: 44rem;
}
@media (max-width: 1024px) {
  .top_life .top_life_imgs .top_life_img_01 {
    width: 100%;
  }
}
.top_life .top_life_imgs .top_life_img_02 {
  left: 13rem;
  bottom: 34.5rem;
  width: 31.6rem;
}
.top_life .top_life_imgs .top_life_img_03 {
  width: 28rem;
  bottom: 9rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .top_life .top_life_imgs .top_life_img_03 {
    margin-bottom: 0;
    margin-left: auto;
  }
}
.top_life .top_life_imgs .top_life_img_03 img {
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .top_life .top_life_imgs .top_life_img_03 img {
    height: 14rem;
  }
}
.top_life .top_life_illusts .top_life_illust_img {
  position: absolute;
}
.top_life .top_life_illusts .top_life_illust_img_01 {
  left: 0;
  bottom: 9rem;
  width: 35rem;
}
.top_life .top_life_illusts .top_life_illust_img_02 {
  right: 0;
  bottom: 18rem;
  width: 29rem;
}

.common_faq {
  background: url(../images/top/top_faq_bg.png) top center/auto repeat;
  padding: 13rem 0;
}
@media (max-width: 1024px) {
  .common_faq {
    padding: 6.4rem 0;
    background: #FFD8DA;
  }
}
.common_faq .common_ttl_wrap {
  text-align: center;
}
.common_faq .common_ttl_wrap .common_subttl {
  display: inline;
}
.common_faq .common_faq_text {
  text-align: center;
  margin-bottom: 6.2rem;
}
@media (max-width: 1024px) {
  .common_faq .common_faq_text {
    margin-bottom: 1.6rem;
    text-align: left;
  }
}
.common_faq .common_faq_cont_ttl {
  font-size: 2.4rem;
  color: #E50012;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .common_faq .common_faq_cont_ttl {
    margin-bottom: 1.6rem;
  }
}
.common_faq .common_faq_cont .common_faq_item {
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  margin-bottom: 2.4rem;
  position: relative;
}
@media (max-width: 1024px) {
  .common_faq .common_faq_cont .common_faq_item {
    padding: 0;
    margin-bottom: 1.6rem;
  }
}
.common_faq .common_faq_cont .common_faq_item:last-child {
  margin-bottom: 0;
}
.common_faq .common_faq_cont .common_faq_item::after {
  content: "";
  position: absolute;
  bottom: 3.2rem;
  right: 3.2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.8rem solid transparent;
  border-left: 0.8rem solid transparent;
  border-top: 1.4rem solid #EB3746;
  border-bottom: 0;
  transition: 0.3s;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .common_faq .common_faq_cont .common_faq_item::after {
    right: 2.4rem;
  }
}
.common_faq .common_faq_cont .common_faq_item.active::after {
  transform: scale(1, -1);
}
.common_faq .common_faq_cont .common_faq_item .question {
  padding: 2.4rem 4rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .common_faq .common_faq_cont .common_faq_item .question {
    padding: 1.6rem 3.2rem;
  }
}
.common_faq .common_faq_cont .common_faq_item .question .question_cate {
  padding: 0.3rem 2rem;
  background-color: #EB3746;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6;
  display: inline-block;
}
.common_faq .common_faq_cont .common_faq_item .question .question_text {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .common_faq .common_faq_cont .common_faq_item .question .question_text {
    padding-right: 2.4rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.common_faq .common_faq_cont .common_faq_item .answer {
  padding: 2.4rem 4rem;
  padding-top: 0;
  padding-right: 5.6rem;
}
@media (max-width: 1024px) {
  .common_faq .common_faq_cont .common_faq_item .answer {
    padding-top: 0;
    padding-bottom: 1.6rem;
    padding-right: 4rem;
    padding-left: 3.2rem;
  }
}
.common_faq_cont_wrap {
  margin-bottom: 5.6rem;
}
@media (max-width: 1024px) {
  .common_faq_cont_wrap {
    margin-bottom: 3.2rem;
  }
}

.top_column {
  background-color: #EB3746;
  padding: 12.8rem 0;
}
@media (max-width: 1024px) {
  .top_column {
    padding: 6.4rem 0;
  }
}
.top_column .common_ttl_wrap {
  text-align: center;
  color: #fff;
}
.top_column .common_ttl_wrap .common_subttl {
  display: inline;
}
.top_column .common_ttl_wrap .common_subttl::before {
  background: url(../images/icon_common_ttl_white.png) center/cover no-repeat;
}

.fadein {
  opacity: 0;
  transform: translateY(10%);
}
.fadein.active {
  animation: 0.6s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(10%);
}
.fadein2.active {
  animation: 0.6s forwards 0.2s fadein;
}

.fadein3 {
  opacity: 0;
  transform: translateY(10%);
}
.fadein3.active {
  animation: 0.6s forwards 0.4s fadein;
}

.fadein4 {
  opacity: 0;
  transform: translateY(10%);
}
.fadein4.active {
  animation: 0.6s forwards 0.6s fadein;
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.text_anime_wrap {
  overflow: hidden;
}
.text_anime_wrap .text_anime {
  opacity: 0;
}
.text_anime_wrap.active .text_anime {
  animation: textanimation 0.4s ease-out forwards;
  animation-delay: var(--delay);
}

@keyframes textanimation {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text_anime_wrap.active .text_anime:nth-child(1) {
  --delay: 0.045s;
}

.text_anime_wrap.active .text_anime:nth-child(2) {
  --delay: 0.09s;
}

.text_anime_wrap.active .text_anime:nth-child(3) {
  --delay: 0.135s;
}

.text_anime_wrap.active .text_anime:nth-child(4) {
  --delay: 0.18s;
}

.text_anime_wrap.active .text_anime:nth-child(5) {
  --delay: 0.225s;
}

.text_anime_wrap.active .text_anime:nth-child(6) {
  --delay: 0.27s;
}

.text_anime_wrap.active .text_anime:nth-child(7) {
  --delay: 0.315s;
}

.text_anime_wrap.active .text_anime:nth-child(8) {
  --delay: 0.36s;
}

.text_anime_wrap.active .text_anime:nth-child(9) {
  --delay: 0.405s;
}

.text_anime_wrap.active .text_anime:nth-child(10) {
  --delay: 0.45s;
}

.text_anime_wrap.active .text_anime:nth-child(11) {
  --delay: 0.495s;
}

.text_anime_wrap.active .text_anime:nth-child(12) {
  --delay: 0.54s;
}

.text_anime_wrap.active .text_anime:nth-child(13) {
  --delay: 0.585s;
}

.text_anime_wrap.active .text_anime:nth-child(14) {
  --delay: 0.63s;
}

.text_anime_wrap.active .text_anime:nth-child(15) {
  --delay: 0.675s;
}

.text_anime_wrap.active .text_anime:nth-child(16) {
  --delay: 0.72s;
}

.text_anime_wrap.active .text_anime:nth-child(17) {
  --delay: 0.765s;
}

.text_anime_wrap.active .text_anime:nth-child(18) {
  --delay: 0.81s;
}

.text_anime_wrap.active .text_anime:nth-child(19) {
  --delay: 0.855s;
}

.text_anime_wrap.active .text_anime:nth-child(20) {
  --delay: 0.9s;
}

.text_anime_wrap.active .text_anime:nth-child(21) {
  --delay: 0.945s;
}

.text_anime_wrap.active .text_anime:nth-child(22) {
  --delay: 0.99s;
}

.text_anime_wrap.active .text_anime:nth-child(23) {
  --delay: 1.035s;
}

.text_anime_wrap.active .text_anime:nth-child(24) {
  --delay: 1.08s;
}

.text_anime_wrap.active .text_anime:nth-child(25) {
  --delay: 1.125s;
}

.text_anime_wrap.active .text_anime:nth-child(26) {
  --delay: 1.17s;
}

.text_anime_wrap.active .text_anime:nth-child(27) {
  --delay: 1.215s;
}

.text_anime_wrap.active .text_anime:nth-child(28) {
  --delay: 1.26s;
}

.text_anime_wrap.active .text_anime:nth-child(29) {
  --delay: 1.305s;
}

.text_anime_wrap.active .text_anime:nth-child(30) {
  --delay: 1.35s;
}

.text_anime_wrap.active .text_anime:nth-child(31) {
  --delay: 1.395s;
}

.text_anime_wrap.active .text_anime:nth-child(32) {
  --delay: 1.44s;
}

.text_anime_wrap.active .text_anime:nth-child(33) {
  --delay: 1.485s;
}

.text_anime_wrap.active .text_anime:nth-child(34) {
  --delay: 1.53s;
}

.text_anime_wrap.active .text_anime:nth-child(35) {
  --delay: 1.575s;
}

.text_anime_wrap.active .text_anime:nth-child(36) {
  --delay: 1.62s;
}

.text_anime_wrap.active .text_anime:nth-child(37) {
  --delay: 1.665s;
}

.text_anime_wrap.active .text_anime:nth-child(38) {
  --delay: 1.71s;
}

.text_anime_wrap.active .text_anime:nth-child(39) {
  --delay: 1.755s;
}

.text_anime_wrap.active .text_anime:nth-child(40) {
  --delay: 1.8s;
}

.text_anime_wrap.active .text_anime:nth-child(41) {
  --delay: 1.845s;
}

.text_anime_wrap.active .text_anime:nth-child(42) {
  --delay: 1.89s;
}

.text_anime_wrap.active .text_anime:nth-child(43) {
  --delay: 1.935s;
}

.text_anime_wrap.active .text_anime:nth-child(44) {
  --delay: 1.98s;
}

.text_anime_wrap.active .text_anime:nth-child(45) {
  --delay: 2.025s;
}

.text_anime_wrap.active .text_anime:nth-child(46) {
  --delay: 2.07s;
}

.text_anime_wrap.active .text_anime:nth-child(47) {
  --delay: 2.115s;
}

.text_anime_wrap.active .text_anime:nth-child(48) {
  --delay: 2.16s;
}

.text_anime_wrap.active .text_anime:nth-child(49) {
  --delay: 2.205s;
}

.text_anime_wrap.active .text_anime:nth-child(50) {
  --delay: 2.25s;
}

.text_anime_wrap.active .text_anime:nth-child(51) {
  --delay: 2.295s;
}

.text_anime_wrap.active .text_anime:nth-child(52) {
  --delay: 2.34s;
}

.text_anime_wrap.active .text_anime:nth-child(53) {
  --delay: 2.385s;
}

.text_anime_wrap.active .text_anime:nth-child(54) {
  --delay: 2.43s;
}

.text_anime_wrap.active .text_anime:nth-child(55) {
  --delay: 2.475s;
}

.text_anime_wrap.active .text_anime:nth-child(56) {
  --delay: 2.52s;
}

.text_anime_wrap.active .text_anime:nth-child(57) {
  --delay: 2.565s;
}

.text_anime_wrap.active .text_anime:nth-child(58) {
  --delay: 2.61s;
}

.text_anime_wrap.active .text_anime:nth-child(59) {
  --delay: 2.655s;
}

.text_anime_wrap.active .text_anime:nth-child(60) {
  --delay: 2.7s;
}

.text_anime_wrap.active .text_anime:nth-child(61) {
  --delay: 2.745s;
}

.text_anime_wrap.active .text_anime:nth-child(62) {
  --delay: 2.79s;
}

.text_anime_wrap.active .text_anime:nth-child(63) {
  --delay: 2.835s;
}

.text_anime_wrap.active .text_anime:nth-child(64) {
  --delay: 2.88s;
}

.text_anime_wrap.active .text_anime:nth-child(65) {
  --delay: 2.925s;
}

.text_anime_wrap.active .text_anime:nth-child(66) {
  --delay: 2.97s;
}

.text_anime_wrap.active .text_anime:nth-child(67) {
  --delay: 3.015s;
}

.text_anime_wrap.active .text_anime:nth-child(68) {
  --delay: 3.06s;
}

.text_anime_wrap.active .text_anime:nth-child(69) {
  --delay: 3.105s;
}

.text_anime_wrap.active .text_anime:nth-child(70) {
  --delay: 3.15s;
}

.text_anime_wrap.active .text_anime:nth-child(71) {
  --delay: 3.195s;
}

.text_anime_wrap.active .text_anime:nth-child(72) {
  --delay: 3.24s;
}

.text_anime_wrap.active .text_anime:nth-child(73) {
  --delay: 3.285s;
}

.text_anime_wrap.active .text_anime:nth-child(74) {
  --delay: 3.33s;
}

.text_anime_wrap.active .text_anime:nth-child(75) {
  --delay: 3.375s;
}

.text_anime_wrap.active .text_anime:nth-child(76) {
  --delay: 3.42s;
}

.text_anime_wrap.active .text_anime:nth-child(77) {
  --delay: 3.465s;
}

.text_anime_wrap.active .text_anime:nth-child(78) {
  --delay: 3.51s;
}

.text_anime_wrap.active .text_anime:nth-child(79) {
  --delay: 3.555s;
}

.text_anime_wrap.active .text_anime:nth-child(80) {
  --delay: 3.6s;
}

.text_anime_wrap.active .text_anime:nth-child(81) {
  --delay: 3.645s;
}

.text_anime_wrap.active .text_anime:nth-child(82) {
  --delay: 3.69s;
}

.text_anime_wrap.active .text_anime:nth-child(83) {
  --delay: 3.735s;
}

.text_anime_wrap.active .text_anime:nth-child(84) {
  --delay: 3.78s;
}

.text_anime_wrap.active .text_anime:nth-child(85) {
  --delay: 3.825s;
}

.text_anime_wrap.active .text_anime:nth-child(86) {
  --delay: 3.87s;
}

.text_anime_wrap.active .text_anime:nth-child(87) {
  --delay: 3.915s;
}

.text_anime_wrap.active .text_anime:nth-child(88) {
  --delay: 3.96s;
}

.text_anime_wrap.active .text_anime:nth-child(89) {
  --delay: 4.005s;
}

.text_anime_wrap.active .text_anime:nth-child(90) {
  --delay: 4.05s;
}

.text_anime_wrap.active .text_anime:nth-child(91) {
  --delay: 4.095s;
}

.text_anime_wrap.active .text_anime:nth-child(92) {
  --delay: 4.14s;
}

.text_anime_wrap.active .text_anime:nth-child(93) {
  --delay: 4.185s;
}

.text_anime_wrap.active .text_anime:nth-child(94) {
  --delay: 4.23s;
}

.text_anime_wrap.active .text_anime:nth-child(95) {
  --delay: 4.275s;
}

.text_anime_wrap.active .text_anime:nth-child(96) {
  --delay: 4.32s;
}

.text_anime_wrap.active .text_anime:nth-child(97) {
  --delay: 4.365s;
}

.text_anime_wrap.active .text_anime:nth-child(98) {
  --delay: 4.41s;
}

.text_anime_wrap.active .text_anime:nth-child(99) {
  --delay: 4.455s;
}

.text_anime_wrap.active .text_anime:nth-child(100) {
  --delay: 4.5s;
}

.text_anime_wrap.active .text_anime:nth-child(101) {
  --delay: 4.545s;
}

.text_anime_wrap.active .text_anime:nth-child(102) {
  --delay: 4.59s;
}

.text_anime_wrap.active .text_anime:nth-child(103) {
  --delay: 4.635s;
}

.text_anime_wrap.active .text_anime:nth-child(104) {
  --delay: 4.68s;
}

.text_anime_wrap.active .text_anime:nth-child(105) {
  --delay: 4.725s;
}

.text_anime_wrap.active .text_anime:nth-child(106) {
  --delay: 4.77s;
}

.text_anime_wrap.active .text_anime:nth-child(107) {
  --delay: 4.815s;
}

.text_anime_wrap.active .text_anime:nth-child(108) {
  --delay: 4.86s;
}

.text_anime_wrap.active .text_anime:nth-child(109) {
  --delay: 4.905s;
}

.text_anime_wrap.active .text_anime:nth-child(110) {
  --delay: 4.95s;
}

.text_anime_wrap.active .text_anime:nth-child(111) {
  --delay: 4.995s;
}

.text_anime_wrap.active .text_anime:nth-child(112) {
  --delay: 5.04s;
}

.text_anime_wrap.active .text_anime:nth-child(113) {
  --delay: 5.085s;
}

.text_anime_wrap.active .text_anime:nth-child(114) {
  --delay: 5.13s;
}

.text_anime_wrap.active .text_anime:nth-child(115) {
  --delay: 5.175s;
}

.text_anime_wrap.active .text_anime:nth-child(116) {
  --delay: 5.22s;
}

.text_anime_wrap.active .text_anime:nth-child(117) {
  --delay: 5.265s;
}

.text_anime_wrap.active .text_anime:nth-child(118) {
  --delay: 5.31s;
}

.text_anime_wrap.active .text_anime:nth-child(119) {
  --delay: 5.355s;
}

.text_anime_wrap.active .text_anime:nth-child(120) {
  --delay: 5.4s;
}

.text_anime_wrap.active .text_anime:nth-child(121) {
  --delay: 5.445s;
}

.text_anime_wrap.active .text_anime:nth-child(122) {
  --delay: 5.49s;
}

.text_anime_wrap.active .text_anime:nth-child(123) {
  --delay: 5.535s;
}

.text_anime_wrap.active .text_anime:nth-child(124) {
  --delay: 5.58s;
}

.text_anime_wrap.active .text_anime:nth-child(125) {
  --delay: 5.625s;
}

.text_anime_wrap.active .text_anime:nth-child(126) {
  --delay: 5.67s;
}

.text_anime_wrap.active .text_anime:nth-child(127) {
  --delay: 5.715s;
}

.text_anime_wrap.active .text_anime:nth-child(128) {
  --delay: 5.76s;
}

.text_anime_wrap.active .text_anime:nth-child(129) {
  --delay: 5.805s;
}

.text_anime_wrap.active .text_anime:nth-child(130) {
  --delay: 5.85s;
}

.text_anime_wrap.active .text_anime:nth-child(131) {
  --delay: 5.895s;
}

.text_anime_wrap.active .text_anime:nth-child(132) {
  --delay: 5.94s;
}

.text_anime_wrap.active .text_anime:nth-child(133) {
  --delay: 5.985s;
}

.text_anime_wrap.active .text_anime:nth-child(134) {
  --delay: 6.03s;
}

.text_anime_wrap.active .text_anime:nth-child(135) {
  --delay: 6.075s;
}

.text_anime_wrap.active .text_anime:nth-child(136) {
  --delay: 6.12s;
}

.text_anime_wrap.active .text_anime:nth-child(137) {
  --delay: 6.165s;
}

.text_anime_wrap.active .text_anime:nth-child(138) {
  --delay: 6.21s;
}

.text_anime_wrap.active .text_anime:nth-child(139) {
  --delay: 6.255s;
}

.text_anime_wrap.active .text_anime:nth-child(140) {
  --delay: 6.3s;
}

.text_anime_wrap.active .text_anime:nth-child(141) {
  --delay: 6.345s;
}

.text_anime_wrap.active .text_anime:nth-child(142) {
  --delay: 6.39s;
}

.text_anime_wrap.active .text_anime:nth-child(143) {
  --delay: 6.435s;
}

.text_anime_wrap.active .text_anime:nth-child(144) {
  --delay: 6.48s;
}

.text_anime_wrap.active .text_anime:nth-child(145) {
  --delay: 6.525s;
}

.text_anime_wrap.active .text_anime:nth-child(146) {
  --delay: 6.57s;
}

.text_anime_wrap.active .text_anime:nth-child(147) {
  --delay: 6.615s;
}

.text_anime_wrap.active .text_anime:nth-child(148) {
  --delay: 6.66s;
}

.text_anime_wrap.active .text_anime:nth-child(149) {
  --delay: 6.705s;
}

.text_anime_wrap.active .text_anime:nth-child(150) {
  --delay: 6.75s;
}

.text_anime_wrap.active .text_anime:nth-child(151) {
  --delay: 6.795s;
}

.text_anime_wrap.active .text_anime:nth-child(152) {
  --delay: 6.84s;
}

.text_anime_wrap.active .text_anime:nth-child(153) {
  --delay: 6.885s;
}

.text_anime_wrap.active .text_anime:nth-child(154) {
  --delay: 6.93s;
}

.text_anime_wrap.active .text_anime:nth-child(155) {
  --delay: 6.975s;
}

.text_anime_wrap.active .text_anime:nth-child(156) {
  --delay: 7.02s;
}

.text_anime_wrap.active .text_anime:nth-child(157) {
  --delay: 7.065s;
}

.text_anime_wrap.active .text_anime:nth-child(158) {
  --delay: 7.11s;
}

.text_anime_wrap.active .text_anime:nth-child(159) {
  --delay: 7.155s;
}

.text_anime_wrap.active .text_anime:nth-child(160) {
  --delay: 7.2s;
}

.text_anime_wrap.active .text_anime:nth-child(161) {
  --delay: 7.245s;
}

.text_anime_wrap.active .text_anime:nth-child(162) {
  --delay: 7.29s;
}

.text_anime_wrap.active .text_anime:nth-child(163) {
  --delay: 7.335s;
}

.text_anime_wrap.active .text_anime:nth-child(164) {
  --delay: 7.38s;
}

.text_anime_wrap.active .text_anime:nth-child(165) {
  --delay: 7.425s;
}

.text_anime_wrap.active .text_anime:nth-child(166) {
  --delay: 7.47s;
}

.text_anime_wrap.active .text_anime:nth-child(167) {
  --delay: 7.515s;
}

.text_anime_wrap.active .text_anime:nth-child(168) {
  --delay: 7.56s;
}

.text_anime_wrap.active .text_anime:nth-child(169) {
  --delay: 7.605s;
}

.text_anime_wrap.active .text_anime:nth-child(170) {
  --delay: 7.65s;
}

.text_anime_wrap.active .text_anime:nth-child(171) {
  --delay: 7.695s;
}

.text_anime_wrap.active .text_anime:nth-child(172) {
  --delay: 7.74s;
}

.text_anime_wrap.active .text_anime:nth-child(173) {
  --delay: 7.785s;
}

.text_anime_wrap.active .text_anime:nth-child(174) {
  --delay: 7.83s;
}

.text_anime_wrap.active .text_anime:nth-child(175) {
  --delay: 7.875s;
}

.text_anime_wrap.active .text_anime:nth-child(176) {
  --delay: 7.92s;
}

.text_anime_wrap.active .text_anime:nth-child(177) {
  --delay: 7.965s;
}

.text_anime_wrap.active .text_anime:nth-child(178) {
  --delay: 8.01s;
}

.text_anime_wrap.active .text_anime:nth-child(179) {
  --delay: 8.055s;
}

.text_anime_wrap.active .text_anime:nth-child(180) {
  --delay: 8.1s;
}

.text_anime_wrap.active .text_anime:nth-child(181) {
  --delay: 8.145s;
}

.text_anime_wrap.active .text_anime:nth-child(182) {
  --delay: 8.19s;
}

.text_anime_wrap.active .text_anime:nth-child(183) {
  --delay: 8.235s;
}

.text_anime_wrap.active .text_anime:nth-child(184) {
  --delay: 8.28s;
}

.text_anime_wrap.active .text_anime:nth-child(185) {
  --delay: 8.325s;
}

.text_anime_wrap.active .text_anime:nth-child(186) {
  --delay: 8.37s;
}

.text_anime_wrap.active .text_anime:nth-child(187) {
  --delay: 8.415s;
}

.text_anime_wrap.active .text_anime:nth-child(188) {
  --delay: 8.46s;
}

.text_anime_wrap.active .text_anime:nth-child(189) {
  --delay: 8.505s;
}

.text_anime_wrap.active .text_anime:nth-child(190) {
  --delay: 8.55s;
}

.text_anime_wrap.active .text_anime:nth-child(191) {
  --delay: 8.595s;
}

.text_anime_wrap.active .text_anime:nth-child(192) {
  --delay: 8.64s;
}

.text_anime_wrap.active .text_anime:nth-child(193) {
  --delay: 8.685s;
}

.text_anime_wrap.active .text_anime:nth-child(194) {
  --delay: 8.73s;
}

.text_anime_wrap.active .text_anime:nth-child(195) {
  --delay: 8.775s;
}

.text_anime_wrap.active .text_anime:nth-child(196) {
  --delay: 8.82s;
}

.text_anime_wrap.active .text_anime:nth-child(197) {
  --delay: 8.865s;
}

.text_anime_wrap.active .text_anime:nth-child(198) {
  --delay: 8.91s;
}

.text_anime_wrap.active .text_anime:nth-child(199) {
  --delay: 8.955s;
}

.text_anime_wrap.active .text_anime:nth-child(200) {
  --delay: 9s;
}

.text_anime_wrap.active .text_anime:nth-child(201) {
  --delay: 9.045s;
}

.text_anime_wrap.active .text_anime:nth-child(202) {
  --delay: 9.09s;
}

.text_anime_wrap.active .text_anime:nth-child(203) {
  --delay: 9.135s;
}

.text_anime_wrap.active .text_anime:nth-child(204) {
  --delay: 9.18s;
}

.text_anime_wrap.active .text_anime:nth-child(205) {
  --delay: 9.225s;
}

.text_anime_wrap.active .text_anime:nth-child(206) {
  --delay: 9.27s;
}

.text_anime_wrap.active .text_anime:nth-child(207) {
  --delay: 9.315s;
}

.text_anime_wrap.active .text_anime:nth-child(208) {
  --delay: 9.36s;
}

.text_anime_wrap.active .text_anime:nth-child(209) {
  --delay: 9.405s;
}

.text_anime_wrap.active .text_anime:nth-child(210) {
  --delay: 9.45s;
}

.text_anime_wrap.active .text_anime:nth-child(211) {
  --delay: 9.495s;
}

.text_anime_wrap.active .text_anime:nth-child(212) {
  --delay: 9.54s;
}

.text_anime_wrap.active .text_anime:nth-child(213) {
  --delay: 9.585s;
}

.text_anime_wrap.active .text_anime:nth-child(214) {
  --delay: 9.63s;
}

.text_anime_wrap.active .text_anime:nth-child(215) {
  --delay: 9.675s;
}

.text_anime_wrap.active .text_anime:nth-child(216) {
  --delay: 9.72s;
}

.text_anime_wrap.active .text_anime:nth-child(217) {
  --delay: 9.765s;
}

.text_anime_wrap.active .text_anime:nth-child(218) {
  --delay: 9.81s;
}

.text_anime_wrap.active .text_anime:nth-child(219) {
  --delay: 9.855s;
}

.text_anime_wrap.active .text_anime:nth-child(220) {
  --delay: 9.9s;
}

.text_anime_wrap.active .text_anime:nth-child(221) {
  --delay: 9.945s;
}

.text_anime_wrap.active .text_anime:nth-child(222) {
  --delay: 9.99s;
}

.text_anime_wrap.active .text_anime:nth-child(223) {
  --delay: 10.035s;
}

.text_anime_wrap.active .text_anime:nth-child(224) {
  --delay: 10.08s;
}

.text_anime_wrap.active .text_anime:nth-child(225) {
  --delay: 10.125s;
}

.text_anime_wrap.active .text_anime:nth-child(226) {
  --delay: 10.17s;
}

.text_anime_wrap.active .text_anime:nth-child(227) {
  --delay: 10.215s;
}

.text_anime_wrap.active .text_anime:nth-child(228) {
  --delay: 10.26s;
}

.text_anime_wrap.active .text_anime:nth-child(229) {
  --delay: 10.305s;
}

.text_anime_wrap.active .text_anime:nth-child(230) {
  --delay: 10.35s;
}

.text_anime_wrap.active .text_anime:nth-child(231) {
  --delay: 10.395s;
}

.text_anime_wrap.active .text_anime:nth-child(232) {
  --delay: 10.44s;
}

.text_anime_wrap.active .text_anime:nth-child(233) {
  --delay: 10.485s;
}

.text_anime_wrap.active .text_anime:nth-child(234) {
  --delay: 10.53s;
}

.text_anime_wrap.active .text_anime:nth-child(235) {
  --delay: 10.575s;
}

.text_anime_wrap.active .text_anime:nth-child(236) {
  --delay: 10.62s;
}

.text_anime_wrap.active .text_anime:nth-child(237) {
  --delay: 10.665s;
}

.text_anime_wrap.active .text_anime:nth-child(238) {
  --delay: 10.71s;
}

.text_anime_wrap.active .text_anime:nth-child(239) {
  --delay: 10.755s;
}

.text_anime_wrap.active .text_anime:nth-child(240) {
  --delay: 10.8s;
}

.text_anime_wrap.active .text_anime:nth-child(241) {
  --delay: 10.845s;
}

.text_anime_wrap.active .text_anime:nth-child(242) {
  --delay: 10.89s;
}

.text_anime_wrap.active .text_anime:nth-child(243) {
  --delay: 10.935s;
}

.text_anime_wrap.active .text_anime:nth-child(244) {
  --delay: 10.98s;
}

.text_anime_wrap.active .text_anime:nth-child(245) {
  --delay: 11.025s;
}

.text_anime_wrap.active .text_anime:nth-child(246) {
  --delay: 11.07s;
}

.text_anime_wrap.active .text_anime:nth-child(247) {
  --delay: 11.115s;
}

.text_anime_wrap.active .text_anime:nth-child(248) {
  --delay: 11.16s;
}

.text_anime_wrap.active .text_anime:nth-child(249) {
  --delay: 11.205s;
}

.text_anime_wrap.active .text_anime:nth-child(250) {
  --delay: 11.25s;
}

.text_anime_wrap.active .text_anime:nth-child(251) {
  --delay: 11.295s;
}

.text_anime_wrap.active .text_anime:nth-child(252) {
  --delay: 11.34s;
}

.text_anime_wrap.active .text_anime:nth-child(253) {
  --delay: 11.385s;
}

.text_anime_wrap.active .text_anime:nth-child(254) {
  --delay: 11.43s;
}

.text_anime_wrap.active .text_anime:nth-child(255) {
  --delay: 11.475s;
}

.text_anime_wrap.active .text_anime:nth-child(256) {
  --delay: 11.52s;
}

.text_anime_wrap.active .text_anime:nth-child(257) {
  --delay: 11.565s;
}

.text_anime_wrap.active .text_anime:nth-child(258) {
  --delay: 11.61s;
}

.text_anime_wrap.active .text_anime:nth-child(259) {
  --delay: 11.655s;
}

.text_anime_wrap.active .text_anime:nth-child(260) {
  --delay: 11.7s;
}

.text_anime_wrap.active .text_anime:nth-child(261) {
  --delay: 11.745s;
}

.text_anime_wrap.active .text_anime:nth-child(262) {
  --delay: 11.79s;
}

.text_anime_wrap.active .text_anime:nth-child(263) {
  --delay: 11.835s;
}

.text_anime_wrap.active .text_anime:nth-child(264) {
  --delay: 11.88s;
}

.text_anime_wrap.active .text_anime:nth-child(265) {
  --delay: 11.925s;
}

.text_anime_wrap.active .text_anime:nth-child(266) {
  --delay: 11.97s;
}

.text_anime_wrap.active .text_anime:nth-child(267) {
  --delay: 12.015s;
}

.text_anime_wrap.active .text_anime:nth-child(268) {
  --delay: 12.06s;
}

.text_anime_wrap.active .text_anime:nth-child(269) {
  --delay: 12.105s;
}

.text_anime_wrap.active .text_anime:nth-child(270) {
  --delay: 12.15s;
}

.text_anime_wrap.active .text_anime:nth-child(271) {
  --delay: 12.195s;
}

.text_anime_wrap.active .text_anime:nth-child(272) {
  --delay: 12.24s;
}

.text_anime_wrap.active .text_anime:nth-child(273) {
  --delay: 12.285s;
}

.text_anime_wrap.active .text_anime:nth-child(274) {
  --delay: 12.33s;
}

.text_anime_wrap.active .text_anime:nth-child(275) {
  --delay: 12.375s;
}

.text_anime_wrap.active .text_anime:nth-child(276) {
  --delay: 12.42s;
}

.text_anime_wrap.active .text_anime:nth-child(277) {
  --delay: 12.465s;
}

.text_anime_wrap.active .text_anime:nth-child(278) {
  --delay: 12.51s;
}

.text_anime_wrap.active .text_anime:nth-child(279) {
  --delay: 12.555s;
}

.text_anime_wrap.active .text_anime:nth-child(280) {
  --delay: 12.6s;
}

.text_anime_wrap.active .text_anime:nth-child(281) {
  --delay: 12.645s;
}

.text_anime_wrap.active .text_anime:nth-child(282) {
  --delay: 12.69s;
}

.text_anime_wrap.active .text_anime:nth-child(283) {
  --delay: 12.735s;
}

.text_anime_wrap.active .text_anime:nth-child(284) {
  --delay: 12.78s;
}

.text_anime_wrap.active .text_anime:nth-child(285) {
  --delay: 12.825s;
}

.text_anime_wrap.active .text_anime:nth-child(286) {
  --delay: 12.87s;
}

.text_anime_wrap.active .text_anime:nth-child(287) {
  --delay: 12.915s;
}

.text_anime_wrap.active .text_anime:nth-child(288) {
  --delay: 12.96s;
}

.text_anime_wrap.active .text_anime:nth-child(289) {
  --delay: 13.005s;
}

.text_anime_wrap.active .text_anime:nth-child(290) {
  --delay: 13.05s;
}

.text_anime_wrap.active .text_anime:nth-child(291) {
  --delay: 13.095s;
}

.text_anime_wrap.active .text_anime:nth-child(292) {
  --delay: 13.14s;
}

.text_anime_wrap.active .text_anime:nth-child(293) {
  --delay: 13.185s;
}

.text_anime_wrap.active .text_anime:nth-child(294) {
  --delay: 13.23s;
}

.text_anime_wrap.active .text_anime:nth-child(295) {
  --delay: 13.275s;
}

.text_anime_wrap.active .text_anime:nth-child(296) {
  --delay: 13.32s;
}

.text_anime_wrap.active .text_anime:nth-child(297) {
  --delay: 13.365s;
}

.text_anime_wrap.active .text_anime:nth-child(298) {
  --delay: 13.41s;
}

.text_anime_wrap.active .text_anime:nth-child(299) {
  --delay: 13.455s;
}

.text_anime_wrap.active .text_anime:nth-child(300) {
  --delay: 13.5s;
}

.page_job .close {
  position: fixed;
  top: calc(5% + 2rem);
  right: calc(50% - 60rem + 2rem);
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background-color: #EB3746;
  border-radius: 50%;
  border: 0.1rem solid #fff;
  padding: 1rem;
}
@media (max-width: 1200px) {
  .page_job .close {
    right: calc(5% + 2rem);
  }
}
@media (max-width: 1024px) {
  .page_job .close {
    position: fixed;
    bottom: 1rem;
    right: 50%;
    transform: translateX(50%);
    top: auto;
    width: 6.4rem;
    height: 6.4rem;
    padding: 0.8rem;
  }
}
.page_job .close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page_job .close:hover {
  opacity: 0.7;
}
.page_job .close span {
  position: absolute;
  width: 3rem;
  height: 0.2rem;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .page_job .close span {
    width: 2.8rem;
  }
}
.page_job .close span:first-child {
  transform: rotate(45deg);
}
.page_job .close span:last-child {
  transform: rotate(-45deg);
}

.page_job_loopslide {
  padding: 4rem 0;
  height: 28rem;
}
@media (max-width: 1024px) {
  .page_job_loopslide {
    padding: 3rem 0;
    height: 19rem;
  }
}
.page_job_loopslide .job_slide {
  margin: 0 1.2rem;
}
.page_job_loopslide .job_slide img {
  border-radius: 1.6rem;
}

.page_job_news {
  background-color: #F1F1EF;
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  .page_job_news {
    padding: 3rem 0;
  }
}
.page_job_news .page_job_news_container {
  position: relative;
}
.page_job_news .page_job_news_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.page_job_news .page_job_news_item.fadeInDown {
  opacity: 0;
}
.page_job_news .page_job_news_item.fadeInDown.run {
  animation: pageJobNewsFadeInDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.page_job_news .page_job_news_item.fadeOutDown {
  opacity: 1;
}
.page_job_news .page_job_news_item.fadeOutDown.run {
  animation: pageJobNewsFadeOutDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.page_job_news .page_job_news_row {
  width: 100%;
}
.page_job_news .page_job_news_row .job_news_link {
  flex: 1;
  margin-right: 4rem;
  min-width: 0;
}
@media (max-width: 1024px) {
  .page_job_news .page_job_news_row .job_news_link {
    margin-right: 0;
    flex: 1 1 100%;
  }
}
.page_job_news .job_news_link {
  display: inline-block;
  width: auto;
  white-space: nowrap;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .page_job_news .job_news_link {
    width: 100%;
    display: block;
  }
}
.page_job_news .job_news_link:hover {
  opacity: 1;
}
.page_job_news .job_news_link:hover .common_news_info .common_news_date {
  color: #E50012;
}
.page_job_news .job_news_link:hover .common_news_ttl {
  color: #E50012;
}
.page_job_news .job_news_link .common_news_ttl {
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .page_job_news .job_news_link .common_news_ttl {
    white-space: normal;
    line-height: 1.6;
  }
}
.page_job_news .job_news_link .common_news_info {
  margin-right: 2.4rem;
}
@media (max-width: 1024px) {
  .page_job_news .job_news_link .common_news_info {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
}
.page_job_news .job_news_link .common_news_info .common_news_date {
  margin-right: 1.2rem;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_news .job_news_link .common_news_info .common_news_date {
    font-size: 1.4rem;
    margin-right: 1rem;
  }
}
.page_job_news .job_news_link .common_news_info .common_news_cate {
  padding: 0 2.4rem;
  background-color: #E50012;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-right: 0.8rem;
}
@media (max-width: 1024px) {
  .page_job_news .job_news_link .common_news_info .common_news_cate {
    font-size: 1.4rem;
    padding: 0 1.6rem;
  }
}
.page_job_news .job_news_link .common_news_ttl {
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_news .job_news_link .common_news_ttl {
    font-size: 1.4rem;
  }
}
.page_job_news .job_news_detail_link {
  margin-right: 6%;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .page_job_news .job_news_detail_link {
    display: none;
  }
}

@keyframes pageJobNewsFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pageJobNewsFadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}
.page_job_tsunagu {
  position: relative;
  padding-bottom: 13rem;
}
.page_job_tsunagu .job_tsunagu_cont {
  width: 78%;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_cont {
    width: 100%;
    margin: 0 auto;
  }
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap {
  margin-top: 6rem;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item {
  padding-bottom: 5.4rem;
  margin-bottom: 5.4rem;
  border-bottom: 1px dashed #333;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item.job_tsunagu_item_01 .tsunagu_item_ttl::before {
  background: url(../images/driver_career/icon_clock_red.png) no-repeat center center/contain;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item.job_tsunagu_item_01.job_tsunagu_item_01_general .tsunagu_item_list li {
  width: 100%;
  margin-right: 0;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item.job_tsunagu_item_02 .tsunagu_item_ttl::before {
  background: url(../images/driver_career/icon_educational_red.png) no-repeat center center/contain;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item.job_tsunagu_item_03 .tsunagu_item_ttl::before {
  background: url(../images/driver_career/icon_license_red.png) no-repeat center center/contain;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item.job_tsunagu_item_04 .tsunagu_item_ttl::before {
  background: url(../images/driver_career/icon_uiturn_red.png) no-repeat center center/contain;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item.job_tsunagu_item_05 .tsunagu_item_ttl::before {
  background: url(../images/driver_career/icon_stepup_red.png) no-repeat center center/contain;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item.job_tsunagu_item_06 .tsunagu_item_ttl::before {
  background: url(../images/driver_career/icon_support_red.png) no-repeat center center/contain;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item.job_tsunagu_item_07 .tsunagu_item_ttl::before {
  background: url(../images/driver_career/icon_woman_red.png) no-repeat center center/contain;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item.job_tsunagu_item_together .tsunagu_item_ttl::before {
  background: url(../images/driver_career/icon_together_red.png) no-repeat center center/contain;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_ttl {
  position: relative;
  padding-left: 4.4rem;
  margin-bottom: 3rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_ttl {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
    line-height: 1.4;
  }
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_img {
  width: 47%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_img {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_img img {
  border-radius: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_textarea {
  width: 49%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_textarea .tsunagu_item_text {
  margin-bottom: 3.2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_textarea .tsunagu_item_text {
    font-size: 1.5rem;
  }
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_textarea .tsunagu_item_list {
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_textarea .tsunagu_item_list {
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_textarea .tsunagu_item_list li {
  padding: 0.5rem 2.4rem;
  background-color: #FFD8DA;
  border-radius: 6.4rem;
  text-align: center;
  min-width: 16rem;
  white-space: nowrap;
  margin-right: 1.2rem;
  margin-bottom: 1.6rem;
  letter-spacing: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_textarea .tsunagu_item_list li {
    width: 48%;
    margin-right: 0;
    padding: 0.8rem 1rem;
    font-size: 1.4rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
  }
}
.page_job_tsunagu .job_tsunagu_cont .job_tsunagu_item_wrap .job_tsunagu_item .tsunagu_item_row .tsunagu_item_textarea .common_btn_01 {
  width: 12rem;
  margin-left: auto;
  margin-right: 6.4rem;
  cursor: pointer;
  margin-top: auto;
}
.page_job_tsunagu .job_tsunagu_side {
  width: 20%;
  position: absolute;
  top: 5rem;
  left: 0;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.15));
  background-color: #F1F1EF;
  padding-bottom: 6rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_side {
    display: none;
  }
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_ttlarea {
  background-color: #EB3746;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_ttlarea.tsunagu_side_ttlarea_general .tsunagu_side_career {
  margin-right: 0.6rem;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_ttlarea.tsunagu_side_ttlarea_general .tsunagu_side_ttl {
  font-size: 2.4rem;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_ttlarea.tsunagu_side_ttlarea_general .tsunagu_side_list_sub {
  font-size: 1.4rem;
  color: #FFF3C1;
  line-height: 1.5;
  margin-top: 1rem;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_ttlarea .tsunagu_side_ttl_row img {
  width: 3.2rem;
  margin-right: 0.4rem;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_ttlarea .tsunagu_side_ttl_row .tsunagu_side_career {
  font-size: 2.4rem;
  font-weight: bold;
  color: #E50012;
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 0 0.7rem;
  line-height: 1.6;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_ttlarea .tsunagu_side_ttl_row .tsunagu_side_career.tsunagu_side_career_yellow {
  background-color: #FFF3C1;
  color: #E50012;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_ttlarea .tsunagu_side_ttl {
  font-size: 2.4rem;
  color: #fff;
  margin-top: 0.4rem;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_ttlarea .tsunagu_side_ttl.tsunagu_side_ttl_yellow {
  color: #FFF3C1;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_list {
  padding: 3.2rem 2.4rem;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_list li {
  margin-bottom: 2.3rem;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_list li:last-child {
  margin-bottom: 0;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_list li.active a {
  border-left: 1px solid #EB3746;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_list li.active a i {
  color: #EB3746;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_list li a {
  padding-left: 1.6rem;
  border-left: 1px solid #333;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_list li a:hover {
  border-left: 1px solid #EB3746;
  opacity: 1;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_list li a:hover i {
  color: #EB3746;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_list li a i {
  margin-left: auto;
  transition: 0.3s;
}
.page_job_tsunagu .job_tsunagu_side .tsunagu_side_btn {
  margin: 0 auto;
}
.page_job_tsunagu .job_tsunagu_popups {
  position: relative;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popups_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup {
  width: 120rem;
  height: 90%;
  max-height: 75rem;
  overflow: scroll;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1.6rem;
  box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  padding: 4% 6%;
}
@media (max-width: 1200px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup {
    width: 90%;
    padding: 6% 4%;
  }
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup {
    padding: 3.6rem 1.6rem;
    padding-bottom: 4.8rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup.job_tsunagu_popup_01 .tsunagu_popup_ttlarea .tsunagu_popup_ttl::before {
  background: url(../images/driver_career/icon_clock_red.png) center/cover no-repeat;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup.job_tsunagu_popup_02 .tsunagu_popup_ttlarea .tsunagu_popup_ttl::before {
  background: url(../images/driver_career/icon_educational_red.png) center/cover no-repeat;
  top: 60%;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup.job_tsunagu_popup_03 .tsunagu_popup_ttlarea .tsunagu_popup_ttl::before {
  background: url(../images/driver_career/icon_license_red.png) center/cover no-repeat;
  top: 60%;
  height: 2.7rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup.job_tsunagu_popup_04 .tsunagu_popup_ttlarea .tsunagu_popup_ttl::before {
  background: url(../images/driver_career/icon_uiturn_red.png) center/cover no-repeat;
  top: 5rem;
  height: 2.7rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup.job_tsunagu_popup_04.job_tsunagu_popup_04_guide .tsunagu_popup_ttlarea .tsunagu_popup_ttl::before {
  background: url(../images/driver_career/icon_together_red.png) center/cover no-repeat;
  top: 53%;
  height: 2.3rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup.job_tsunagu_popup_05 .tsunagu_popup_ttlarea .tsunagu_popup_ttl::before {
  background: url(../images/driver_career/icon_stepup_red.png) center/cover no-repeat;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup.job_tsunagu_popup_06 .tsunagu_popup_ttlarea .tsunagu_popup_ttl::before {
  background: url(../images/driver_career/icon_support_red.png) center/cover no-repeat;
  height: 2.9rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup.job_tsunagu_popup_07 .tsunagu_popup_ttlarea .tsunagu_popup_ttl::before {
  background: url(../images/driver_career/icon_woman_red.png) center/cover no-repeat;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_ttlarea .tsunagu_popup_ttl {
  font-size: 3.5rem;
  color: #E50012;
  margin-bottom: 2.4rem;
  position: relative;
  padding-left: 4.4rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_ttlarea .tsunagu_popup_ttl {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
    line-height: 1.4;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_ttlarea .tsunagu_popup_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_list {
  margin-bottom: 0.8rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_list li {
  text-indent: -1.7rem;
  padding-left: 1.7rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_text {
  margin-bottom: 5.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_text {
    margin-bottom: 2.8rem;
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_subttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_subttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_row {
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_row {
    margin-bottom: 2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_row .tsunagu_popup_row_img {
  width: 48%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_row .tsunagu_popup_row_img {
    width: 100%;
    margin-bottom: 2rem;
  }
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_row .tsunagu_popup_row_img:last-child {
    margin-bottom: 0;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_row .tsunagu_popup_row_img img {
  border-radius: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_yattemitai {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_yattemitai {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule {
  position: relative;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule::before {
  content: "";
  position: absolute;
  left: 6%;
  top: 10%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0.1rem;
  height: 80%;
  background-color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule::before {
    display: none;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item {
  margin-bottom: 2.7rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item {
    margin-bottom: 2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_timearea {
  width: 30%;
  position: relative;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_timearea {
    width: 90%;
    margin-bottom: 1.6rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_timearea .tsunagu_popup_schedule_time {
  width: 39%;
  background-color: #EB3746;
  color: #fff;
  font-size: 2.4rem;
  border-radius: 6.4rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_timearea .tsunagu_popup_schedule_time {
    width: 40%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_timearea img {
  width: 55%;
  border-radius: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_timearea img {
    width: 50%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_textarea {
  width: 66%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_textarea .sunagu_popup_schedule_ttl {
  margin-bottom: 0.8rem;
  color: #E50012;
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule .tsunagu_popup_schedule_item .tsunagu_popup_schedule_row .tsunagu_popup_schedule_textarea .tsunagu_popup_schedule_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide::before {
  content: none;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row {
  margin-bottom: 9rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row {
    margin-bottom: 4rem;
    flex-direction: column-reverse;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_textarea {
  width: 50%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_textarea .schedule_guide_text_item {
  margin-bottom: 3.2rem;
  display: flex;
  align-items: center;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_textarea .schedule_guide_text_item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_textarea .schedule_guide_text_item {
    margin-bottom: 2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_textarea .schedule_guide_text_item .schedule_guide_time {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  background-color: #EB3746;
  margin-right: 2.4rem;
  border-radius: 6.4rem;
  padding: 0.6rem 0;
  width: 9.8rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_textarea .schedule_guide_text_item .schedule_guide_time {
    font-size: 1.8rem;
    width: 8rem;
    margin-right: 1.6rem;
    padding: 0.4rem 0;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_textarea .schedule_guide_text_item .schedule_guide_text {
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_textarea .schedule_guide_text_item .schedule_guide_text {
    font-size: 1.4rem;
    font-weight: bold;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_img {
  width: 45%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_row .schedule_guide_img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_cont .schedule_guide_cont_img {
  width: 55%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_cont .schedule_guide_cont_img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_cont .schedule_guide_cont_img img {
  border-radius: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_cont .schedule_guide_cont_textarea {
  width: 43%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_cont .schedule_guide_cont_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_cont .schedule_guide_cont_textarea .schedule_guide_cont_ttl {
  font-size: 2.4rem;
  color: #E50012;
  margin-bottom: 0.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_cont .schedule_guide_cont_textarea .schedule_guide_cont_ttl {
    font-size: 1.8rem;
  }
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .schedule_guide_cont .schedule_guide_cont_textarea .schedule_guide_cont_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .tsunagu_popup_schedule_textarea {
  width: 100% !important;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_schedule.tsunagu_popup_schedule_guide .tsunagu_popup_schedule_textarea {
    width: 100% !important;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type {
  margin-bottom: 7.2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type {
    margin-bottom: 4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .job_popup_ttl {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  color: #E50012;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left {
  width: 50%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box {
  padding: 1rem 6.4rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box {
    padding: 1rem 1.6rem;
    padding-bottom: 0;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box.tsunagu_popup_type_box_red {
  background-color: #FFD8DA;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box.tsunagu_popup_type_box_red .tsunagu_popup_type_ttl {
  color: #E50012;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box.tsunagu_popup_type_box_blue {
  background-color: #D7F1FA;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box.tsunagu_popup_type_box_blue .tsunagu_popup_type_ttl {
  color: #1779AE;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box .tsunagu_popup_type_ttl {
  font-size: 2rem;
  margin-right: 4.6rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box .tsunagu_popup_type_ttl {
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-right: 0.8rem;
    margin-bottom: 0;
    font-size: 2.4rem;
    letter-spacing: 0.5em;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box .tsunagu_popup_type_text {
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_left .tsunagu_popup_type_box .tsunagu_popup_type_text {
    letter-spacing: 0rem;
    line-height: 1.5;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right {
  width: 50%;
  background-color: #FFF3C1;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right .tsunagu_popup_type_box_right_row {
  flex-wrap: nowrap;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right .tsunagu_popup_type_box_right_row {
    flex-wrap: wrap;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right .tsunagu_popup_type_box {
  padding: 2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right .tsunagu_popup_type_box {
    padding: 1.6rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right .tsunagu_popup_type_box .tsunagu_popup_type_ttl {
  color: #FF6017;
  font-size: 2rem;
  margin-right: 2.4rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right .tsunagu_popup_type_box .tsunagu_popup_type_ttl {
    margin-right: 0;
    font-size: 2.4rem;
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right .tsunagu_popup_type_box .tsunagu_popup_type_text {
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_type .tsunagu_popup_type_box_right .tsunagu_popup_type_box .tsunagu_popup_type_text {
    letter-spacing: 0rem;
    line-height: 1.5;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_calendar .job_popup_ttl {
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
  color: #E50012;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_calendar .tsunagu_popup_calendar_img {
  margin-bottom: 3.2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_calendar .tsunagu_popup_calendar_img img {
    width: 100rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_item_wrap .tsunagu_popup_educational_item {
  margin-bottom: 2.4rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_item_wrap .tsunagu_popup_educational_item:last-child {
  margin-bottom: 0;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_item_wrap .tsunagu_popup_educational_item .tsunagu_popup_educational_text {
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_item_wrap .tsunagu_popup_educational_item .tsunagu_popup_educational_text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_item_wrap .tsunagu_popup_educational_item .tsunagu_popup_educational_text .text_red {
  font-weight: bold;
  margin-right: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_item_wrap .tsunagu_popup_educational_item .tsunagu_popup_educational_text .text_red {
    margin-right: 0;
    display: block;
    font-size: 1.8rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group {
  margin-bottom: 3.2rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group:last-child {
  margin-bottom: 0;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group .tsunagu_popup_educational_img {
  width: 39%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group .tsunagu_popup_educational_img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group .tsunagu_popup_educational_img img {
  border-radius: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group .tsunagu_popup_educational_textarea {
  width: 59%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group .tsunagu_popup_educational_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group .tsunagu_popup_educational_textarea .tsunagu_popup_educational_ttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #E50012;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group .tsunagu_popup_educational_textarea .tsunagu_popup_educational_ttl {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_group .tsunagu_popup_educational_textarea .tsunagu_popup_educational_ttl .tsunagu_popup_educational_number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #E50012;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  padding-left: 0.2rem;
  margin-right: 0.8rem;
  flex-shrink: 0;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box {
  background-color: #F1F1EF;
  padding: 2rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box {
    padding: 1.6rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li:last-child {
  margin-bottom: 0;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #E50012;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li::before {
    width: 1.4rem;
    height: 1.4rem;
    top: 0.6rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li.label_list {
  padding-left: 0;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li.label_list::before {
  content: none;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li .label {
  width: 12rem;
  text-align: center;
  padding: 0.2rem 0;
  border-radius: 6.4rem;
  font-size: 1.5rem;
  display: inline-block;
  font-weight: 500;
  margin-right: 1.2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li .label {
    width: 10rem;
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li .label_pink {
  background-color: #FFD8DA;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational .tsunagu_popup_educational_box li .label_blue {
  background-color: #D7F1FA;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row {
  padding: 2.4rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row {
    padding: 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row:last-child {
  margin-bottom: 0;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row.popup_educational_guide_row_02 {
  background-color: #F1F1EF;
  border-radius: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row.popup_educational_guide_row_02.popup_educational_guide_row_02_general {
  background-color: transparent;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row.popup_educational_guide_row_03 {
  background-color: #F1F1EF;
  border-radius: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row.popup_educational_guide_row_03.popup_educational_guide_row_03_general {
  background-color: transparent;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_img {
  width: 37%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_img {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_img img {
  border-radius: 1.6rem;
  margin-bottom: 2.4rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea {
  width: 59%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_step {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 3.2rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_step {
    font-size: 2.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_step .text_large {
  font-size: 6.2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_step .text_large {
    font-size: 4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_step .text_red {
  font-size: 2.1rem;
  margin-left: 1.6rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_step .text_red {
    font-size: 1.8rem;
    margin-left: 0;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_ttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #E50012;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_ttl {
    font-size: 1.8rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_ttl.popup_educational_guide_row_ttl_general {
  font-size: 1.6rem;
  color: #333;
  margin-top: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_ttl.popup_educational_guide_row_ttl_general {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_ttl .bg_pink {
  background-color: #FFD8DA;
  font-size: 1.6rem;
  padding: 0.2rem 1rem;
  border-radius: 6.4rem;
  padding: 0.5rem 3rem;
  font-weight: bold;
  margin-left: 1.2rem;
  color: #333;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_ttl .bg_pink {
    font-size: 1.4rem;
    padding: 0.2rem 1rem;
    padding: 0.5rem 2rem;
    margin-left: 0;
    display: inline-block;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_box_gray {
  background-color: #F1F1EF;
  padding: 1.6rem;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  margin-bottom: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_box_gray li {
  position: relative;
  padding-left: 1.5em;
  list-style: none;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_box_gray li {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_box_gray li::before {
  content: "●";
  color: #E50012;
  position: absolute;
  left: 0;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .text_red {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_item_wrap .popup_educational_guide_row_item {
  margin-bottom: 1rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_item_wrap .popup_educational_guide_row_item .popup_educational_guide_row_subttl {
  font-size: 1.8rem;
  color: #DE4D6A;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_item_wrap .popup_educational_guide_row_item .popup_educational_guide_row_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_box {
  background-color: #FFF3C1;
  padding: 0.8rem 2rem;
  border-radius: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_box .popup_educational_guide_row_box_item .popup_educational_guide_row_box_img {
  width: 8.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_box .popup_educational_guide_row_box_item .popup_educational_guide_row_box_text {
  width: calc(100% - 10rem);
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: bold;
  color: #FF9500;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_cont .popup_educational_guide_row .popup_educational_guide_row_textarea .popup_educational_guide_row_box .popup_educational_guide_row_box_item .popup_educational_guide_row_box_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style {
  padding: 2.4rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style {
    padding: 0;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style .popup_educational_guide_style_img {
  width: 37%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style .popup_educational_guide_style_img {
    width: 65%;
    margin: 0 auto;
    margin-bottom: 2.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style .popup_educational_guide_style_textarea {
  width: 59%;
  background-color: #FFF3C1;
  padding: 2.4rem;
  border-radius: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style .popup_educational_guide_style_textarea {
    padding: 1.6rem;
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style .popup_educational_guide_style_textarea .popup_educational_guide_style_ttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #F86F2B;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style .popup_educational_guide_style_textarea .popup_educational_guide_style_ttl {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style .popup_educational_guide_style_textarea .popup_educational_guide_style_text {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_educational.tsunagu_popup_educational_guide .popup_educational_guide_style .popup_educational_guide_style_textarea .popup_educational_guide_style_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_license .tsunagu_popup_license_ttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_license .tsunagu_popup_license_ttl {
    font-size: 1.8rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_license .tsunagu_popup_license_text {
  margin-bottom: 7.2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_license .tsunagu_popup_license_text {
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_license_group_caption {
  text-align: right;
  font-size: 1.2rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_ttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_text {
  margin-bottom: 3.2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_text {
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row {
  margin-bottom: 4.8rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box {
  width: 48%;
  background-color: #F1F1EF;
  padding: 2rem 2.4rem;
  border-radius: 1.6rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  margin-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box {
    margin-bottom: 1.6rem;
    padding: 1rem 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_img {
  width: 48%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_img {
    width: 100%;
    margin-bottom: 0.8rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_img img {
  border-radius: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea {
  width: 48%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea .popup_uiturn_box_ttl {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #E50012;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea .popup_uiturn_box_ttl {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea .popup_uiturn_box_text {
  font-size: 1.4rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea .popup_uiturn_box_text {
    text-align: center;
    line-height: 1.2;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea .popup_uiturn_box_text .text_large {
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 4.5rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea .popup_uiturn_box_text .text_large {
    font-size: 4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea .popup_uiturn_box_text .text_large_02 {
  font-weight: bold;
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_row .tsunagu_popup_uiturn_box .popup_uiturn_box_textarea .popup_uiturn_box_text .text_large_02 {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku {
  margin-bottom: 11rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku {
    margin-bottom: 4.8rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_map {
  width: 68%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_map {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea {
  width: 30%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list {
    display: flex;
    flex-wrap: wrap;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li {
  margin-bottom: 1.6rem;
  border-bottom: 0.1rem dashed #333;
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  display: flex;
  align-items: center;
  line-height: 1;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li {
    width: 50%;
    padding-right: 1.6rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li:last-child {
    border-bottom: 0.1rem dashed #333;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li p:first-child {
  width: 8rem;
  margin-right: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li p:first-child {
    width: 6rem;
    font-size: 1.6rem;
    margin-right: 1.2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li p:first-child.text_red {
  color: #E50012;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li p:first-child.text_orange {
  color: #FF6017;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li p:first-child.text_green {
  color: #25AB82;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li p:first-child.text_purpule {
  color: #9E40D9;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li p:last-child .text_large {
  font-size: 4.8rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_katuyaku .popup_uiturn_katuyaku_row .popup_uiturn_katuyaku_textarea .popup_uiturn_katuyaku_list li p:last-child .text_large {
    font-size: 4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_house .popup_uiturn_house_item {
  margin-bottom: 2.4rem;
  width: 24%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_house .popup_uiturn_house_item {
    width: 48%;
    margin-bottom: 1rem;
  }
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_house .popup_uiturn_house_item .popup_uiturn_house_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_house .popup_uiturn_house_item img {
  border-radius: 0.8rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_uiturn_wrap .tsunagu_popup_uiturn_house .popup_uiturn_house_item img {
    margin-bottom: 1rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_ttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_img {
  width: 78%;
  margin: 0 auto 1.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_img {
    margin: 0 auto 2.4rem;
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_text {
  width: 78%;
  margin: 0 auto 4.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_text {
    margin: 0 auto 2.4rem;
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_row_wrap {
  margin-bottom: 2.4rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_row_wrap .popup_stepup_row {
  margin-bottom: 4rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_row_wrap .popup_stepup_row:last-child {
  margin-bottom: 0;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_row_wrap .popup_stepup_row .popup_stepup_years {
  width: 24%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_row_wrap .popup_stepup_row .popup_stepup_years {
    width: 12rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_row_wrap .popup_stepup_row .popup_stepup_textarea {
  width: 72%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_row_wrap .popup_stepup_row .popup_stepup_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_box {
  background-color: #FFF3C1;
  padding: 2rem 6.4rem;
  margin-bottom: 7rem;
}
@media (max-width: 1200px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_box {
    padding: 2rem;
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .popup_stepup_box .popup_stepup_box_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_img {
  margin-bottom: 4.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_img {
    margin-bottom: 4rem;
  }
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_img.js-scrollable img {
    width: 62rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item {
  margin-bottom: 4.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item {
    margin-bottom: 2.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item:last-child {
  margin-bottom: 0;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item .popup_stepup_image_name {
  background-color: #F1F1EF;
  width: 21%;
  padding: 2.2rem 2.4rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item .popup_stepup_image_name {
    width: 100%;
    padding: 0.6rem 0;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item .popup_stepup_image_name::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -2.5rem;
  width: 2.5rem;
  height: 100%;
  background-color: #8E8E93;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item .popup_stepup_image_name::after {
    display: none;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item .popup_stepup_image_textarea {
  width: 74%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item .popup_stepup_image_textarea {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item .popup_stepup_image_textarea .popup_stepup_image_text {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_stepup_wrap .tsunagu_popup_stepup_image .popup_stepup_image_item_wrap .popup_stepup_image_item .popup_stepup_image_textarea .popup_stepup_image_text .text_red {
  font-weight: 500;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support {
  border-bottom: 0.1rem dashed #333;
  padding-bottom: 8rem;
  margin-bottom: 8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support {
    margin-bottom: 4rem;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_img {
  width: 38%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_img img {
  border-radius: 0.8rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea {
  width: 60%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea .tsunagu_popup_support_ttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea .tsunagu_popup_support_ttl {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea .tsunagu_popup_support_box {
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  background-color: #F1F1EF;
  border-radius: 0.8rem;
  padding: 1.6rem 2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea .tsunagu_popup_support_box {
    padding: 1.8rem 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea .tsunagu_popup_support_box li {
  padding-left: 2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea .tsunagu_popup_support_box li {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea .tsunagu_popup_support_box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #E50012;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_support_wrap .tsunagu_popup_support .tsunagu_popup_support_textarea .tsunagu_popup_support_box li::before {
    width: 1.4rem;
    height: 1.4rem;
    top: 0.6rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman .tsunagu_popup_woman_ttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman .tsunagu_popup_woman_ttl {
    font-size: 1.8rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman .tsunagu_popup_woman_row {
  margin-bottom: 3.2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman .tsunagu_popup_woman_row {
    margin-bottom: 2.4rem;
    flex-direction: column-reverse;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman .tsunagu_popup_woman_row .tsunagu_popup_woman_textarea {
  width: 60%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman .tsunagu_popup_woman_row .tsunagu_popup_woman_textarea {
    width: 100%;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman .tsunagu_popup_woman_row .tsunagu_popup_woman_img {
  width: 38%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman .tsunagu_popup_woman_row .tsunagu_popup_woman_img {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman .tsunagu_popup_woman_row .tsunagu_popup_woman_img img {
  border-radius: 0.8rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman_item_wrap {
  margin-bottom: 7.2rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman_item_wrap {
    margin-bottom: 4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman_item_wrap .tsunagu_popup_woman_item {
  width: 24%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman_item_wrap .tsunagu_popup_woman_item {
    width: 48%;
    margin-bottom: 0.8rem;
  }
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman_item_wrap .tsunagu_popup_woman_item .tsunagu_popup_woman_item_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman_item_wrap .tsunagu_popup_woman_item img {
  border-radius: 0.8rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .tsunagu_popup_woman_item_wrap .tsunagu_popup_woman_item img {
    margin-bottom: 0.2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item {
  width: 46%;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item .tsunagu_popup_woman_ttl {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item .tsunagu_popup_woman_ttl {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    margin-bottom: 1rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item .popup_woman_mdoel_img {
  margin-bottom: 2.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item .popup_woman_mdoel_img {
    margin-bottom: 1.2rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item .popup_woman_mdoel_img img {
  border-radius: 0.8rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item .popup_woman_mdoel_textarea ul {
  margin-bottom: 1.6rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item .popup_woman_mdoel_textarea li {
  font-weight: bold;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item .popup_woman_mdoel_textarea li {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_woman_wrap .popup_woman_mdoel_row .popup_woman_mdoel_item .popup_woman_mdoel_textarea .popup_woman_mdoel_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_job {
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  background-color: #F1F1EF;
  border-radius: 0.8rem;
  padding: 1.6rem 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_job {
    padding: 1.8rem 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_job .tsunagu_popup_job_textarea {
  margin-bottom: 2rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_job .tsunagu_popup_job_textarea .sunagu_popup_job_ttl {
  color: #E50012;
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .tsunagu_popup_job .tsunagu_popup_job_textarea .tsunagu_popup_job_text {
    font-size: 1.4rem;
  }
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .job_tsunagu_course .job_tsunagu_contentarea .job_tsunagu_content .job_tsunagu_course_row {
  margin-bottom: 1.2rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .job_tsunagu_course .job_tsunagu_contentarea .job_tsunagu_content .job_tsunagu_course_row .job_tsunagu_course_label {
  padding: 1rem 2.4rem;
  width: 32%;
  background-color: #F1F1EF;
  font-size: 1.8rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .job_tsunagu_course .job_tsunagu_contentarea .job_tsunagu_content .job_tsunagu_course_row .job_tsunagu_course_text {
  width: 68%;
  padding: 1rem 2.4rem;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .job_tsunagu_course .job_tsunagu_contentarea .job_tsunagu_content .job_tsunagu_course_row .job_tsunagu_course_text li {
  position: relative;
  padding-left: 1.5em;
  list-style: none;
}
.page_job_tsunagu .job_tsunagu_popups .job_tsunagu_popup .job_tsunagu_course .job_tsunagu_contentarea .job_tsunagu_content .job_tsunagu_course_row .job_tsunagu_course_text li::before {
  content: "●";
  color: #E50012;
  position: absolute;
  left: 0;
}

.job_tsunagu_tabarea {
  margin-bottom: 4rem;
}
.job_tsunagu_tabarea .job_tsunagu_tab {
  font-size: 1.8rem;
  background-color: #F1F1EF;
  padding: 0.4rem 0;
  text-align: center;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  border-radius: 6.4rem;
  margin-right: 2rem;
  display: inline-block;
  width: 32rem;
  line-height: 1.4;
  cursor: pointer;
  transition: 0.3s;
}
.job_tsunagu_tabarea .job_tsunagu_tab:last-child {
  margin-right: 0;
}
.job_tsunagu_tabarea .job_tsunagu_tab.active {
  background-color: #EB3746;
  color: #fff;
}
.job_tsunagu_tabarea .job_tsunagu_tab:hover {
  background-color: #EB3746;
  color: #fff;
}
@media (max-width: 1024px) {
  .job_tsunagu_tabarea .job_tsunagu_tab {
    margin-right: 0;
    margin-bottom: 2rem;
    width: 100%;
  }
}
.job_tsunagu_tabarea .job_tsunagu_tab .text_small {
  font-size: 1.4rem;
}

.page_job_message {
  padding: 13rem 0;
}
@media (max-width: 1024px) {
  .page_job_message {
    padding: 5.6rem 0 8rem;
  }
}
.page_job_message .job_message_ttl {
  width: 570px;
  margin: 0 auto 4rem;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_ttl {
    width: 90%;
  }
}
.page_job_message .job_message_slide {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  width: 120rem;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .page_job_message .job_message_slide {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .page_job_message .job_message_slide {
    width: 100%;
  }
}
.page_job_message .job_message_slide .job_message_item {
  width: 30%;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_slide .job_message_item {
    width: 100%;
  }
}
.page_job_message .job_message_slide .slick-arrow {
  display: inline-block !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 4.8rem;
  height: 7.2rem;
  background-color: #E50012;
}
.page_job_message .job_message_slide .slick-arrow::before {
  content: "";
  width: 0.7rem;
  height: 1.3rem;
  padding: 0;
  display: block;
  border-radius: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page_job_message .job_message_slide .slick-arrow.slick-prev {
  left: 0;
  border-radius: 0 1rem 1rem 0;
}
.page_job_message .job_message_slide .slick-arrow.slick-prev::before {
  background: url(../images/slide_arrow_left_white.png) center/cover no-repeat;
}
.page_job_message .job_message_slide .slick-arrow.slick-next {
  right: 0;
  border-radius: 1rem 0 0 1rem;
}
.page_job_message .job_message_slide .slick-arrow.slick-next::before {
  background: url(../images/slide_right_white.png) center/cover no-repeat;
}
.page_job_message .job_message_slide .slick-track {
  display: flex;
}
.page_job_message .job_message_slide .slick-slide {
  height: auto !important;
}
.page_job_message .job_message_slide .slick-list {
  padding-bottom: 2rem !important;
}
.page_job_message .job_message_slide .job_message_item {
  margin: 0 1rem;
  background-color: #FFF3C1;
  border-radius: 1.6rem;
  position: relative;
  overflow: hidden;
}
.page_job_message .job_message_slide .job_message_item::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 4rem;
  height: 4rem;
  background-color: #EB3746;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2);
  pointer-events: none;
  display: block;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_slide .job_message_item::before {
    top: 1.2rem;
    right: 1.2rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.page_job_message .job_message_slide .job_message_item::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  z-index: 11;
  transition: 0.3s;
  pointer-events: none;
  line-height: 1;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_slide .job_message_item::after {
    top: 1.2rem;
    right: 1.2rem;
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.4rem;
  }
}
.page_job_message .job_message_slide .job_message_item:hover::before {
  opacity: 0.9;
  transform: scale(1.05);
}
.page_job_message .job_message_slide .job_message_item:hover::after {
  opacity: 0.9;
  transform: scale(1.05);
}
.page_job_message .job_message_slide .job_message_item .job_message_img img {
  border-radius: 1.6rem 1.6rem 0 0;
  height: 27rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_slide .job_message_item .job_message_img img {
    height: 23rem;
  }
}
.page_job_message .job_message_slide .job_message_item .job_message_textarea {
  background-color: #FFF3C1;
  padding: 3.2rem;
  border-radius: 0 0 1.6rem 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_slide .job_message_item .job_message_textarea {
    padding: 2rem 2.4rem;
  }
}
.page_job_message .job_message_slide .job_message_item .job_message_textarea .job_message_text {
  font-size: 1.5rem;
}
.page_job_message .job_message_slide .job_message_item .job_message_textarea .job_message_info {
  margin-top: 0.8rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_slide .job_message_item .job_message_textarea .job_message_info {
    font-size: 1.5rem;
  }
}
.page_job_message .job_message_slide .job_message_item .job_message_textarea .job_message_info .text_label {
  padding: 0.2rem 0.8rem;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_slide .job_message_item .job_message_textarea .job_message_info .text_label {
    display: inline-block;
    margin-top: 0.4rem;
    border-radius: 0.8rem;
  }
}
.page_job_message .job_message_popups_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}
.page_job_message .job_message_popup {
  width: 120rem;
  height: 90%;
  overflow: scroll;
  margin: 0 auto;
  background-color: rgba(255, 243, 193, 0.9);
  border-radius: 1.6rem;
  box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  padding: 4% 6%;
}
@media (max-width: 1200px) {
  .page_job_message .job_message_popup {
    width: 90%;
    padding: 6% 4%;
  }
}
@media (max-width: 1024px) {
  .page_job_message .job_message_popup {
    padding-bottom: 4.8rem;
  }
}
.page_job_message .job_message_popup .job_message_popup_item {
  margin-bottom: 4rem;
}
.page_job_message .job_message_popup .job_message_popup_item:last-child {
  margin-bottom: 0;
}
.page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_img {
  width: 49%;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_img {
    width: 100%;
  }
}
.page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_img img {
  border-radius: 1.6rem;
  margin-top: 2rem;
}
.page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_img .job_message_popup_name {
  font-weight: 500;
}
.page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_img .job_message_popup_cate li {
  padding: 0.2rem 0.8rem;
  background-color: #fff;
  margin-right: 0.8rem;
  border-radius: 0.4rem;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_img .job_message_popup_cate li {
    font-size: 1.4rem;
    padding: 0.2rem 1rem;
  }
}
.page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_textarea {
  width: 49%;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_textarea {
    width: 100%;
  }
}
.page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_textarea .job_message_popup_item_ttl {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_textarea .job_message_popup_item_ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_textarea .job_message_popup_item_q {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_textarea .job_message_popup_item_q {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}
.page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_textarea .job_message_popup_item_text {
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .page_job_message .job_message_popup .job_message_popup_item .job_message_popup_item_textarea .job_message_popup_item_text {
    font-size: 1.4rem;
  }
}
.page_job_message.page_job_message_guide {
  padding-bottom: 0;
}
.page_job_message.page_job_message_guide .job_message_guide_ttl_wrap {
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .page_job_message.page_job_message_guide .job_message_guide_ttl_wrap {
    margin-bottom: 2.4rem;
  }
}
.page_job_message.page_job_message_guide .job_message_guide_ttl_wrap .job_message_guide_name_row .job_message_guide_name {
  margin-right: 0.8rem;
}
@media (max-width: 1024px) {
  .page_job_message.page_job_message_guide .job_message_guide_ttl_wrap .job_message_guide_name_row .job_message_guide_name {
    font-size: 1.4rem;
  }
}
.page_job_message.page_job_message_guide .job_message_guide_ttl_wrap .job_message_guide_name_row .job_message_popup_cate li {
  margin-right: 1rem;
  border-radius: 0.8rem;
  padding: 0.2rem 1.6rem;
}
.page_job_message.page_job_message_guide .job_message_guide_ttl_wrap .job_message_guide_name_row .job_message_popup_cate li.bg_pink {
  background-color: #FFD8DA;
}
.page_job_message.page_job_message_guide .job_message_guide_ttl_wrap .job_message_guide_name_row .job_message_popup_cate li.bg_yellow {
  background-color: #FFF3C1;
}
@media (max-width: 1024px) {
  .page_job_message.page_job_message_guide .job_message_guide_ttl_wrap .job_message_guide_name_row .job_message_popup_cate li {
    padding: 0.2rem 1rem;
    font-size: 1.4rem;
  }
}
.page_job_message.page_job_message_guide .job_message_guide_ttl_wrap .job_message_guide_ttl {
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  .page_job_message.page_job_message_guide .job_message_guide_ttl_wrap .job_message_guide_ttl {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.page_job_message.page_job_message_guide .job_message_guide_cont .job_message_guide_row {
  margin-bottom: 6.4rem;
}
.page_job_message.page_job_message_guide .job_message_guide_cont .job_message_guide_row .job_message_guide_img {
  width: 48%;
}
@media (max-width: 1024px) {
  .page_job_message.page_job_message_guide .job_message_guide_cont .job_message_guide_row .job_message_guide_img {
    width: 100%;
    margin-bottom: 1.6rem;
  }
}
.page_job_message.page_job_message_guide .job_message_guide_cont .job_message_guide_row .job_message_guide_img img {
  border-radius: 1.6rem;
}
.page_job_message.page_job_message_guide .job_message_guide_cont .job_message_guide_row .job_message_guide_textarea {
  width: 48%;
}
@media (max-width: 1024px) {
  .page_job_message.page_job_message_guide .job_message_guide_cont .job_message_guide_row .job_message_guide_textarea {
    width: 100%;
  }
}
.page_job_message.page_job_message_guide .job_message_guide_cont .job_message_guide_row .job_message_guide_textarea .job_message_guide_subttl {
  font-size: 1.8rem;
  color: #E50012;
  margin-bottom: 1rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .page_job_message.page_job_message_guide .job_message_guide_cont .job_message_guide_row .job_message_guide_textarea .job_message_guide_text {
    font-size: 1.4rem;
  }
}

.page_job_workstyle {
  background-color: #F1F1EF;
  padding: 12rem 0;
}
@media (max-width: 1024px) {
  .page_job_workstyle {
    padding: 7rem 0;
  }
}
.page_job_workstyle .job_workstyle_table {
  margin-top: 6rem;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table {
    margin-top: 3.2rem;
  }
}
.page_job_workstyle .job_workstyle_table table {
  border-collapse: separate;
  width: 100%;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table table {
    width: 120rem;
  }
}
.page_job_workstyle .job_workstyle_table table .text_bg_red {
  background-color: #EB3746;
  color: #fff;
}
.page_job_workstyle .job_workstyle_table table .text_bg_gray {
  background-color: #D9D9D9;
}
.page_job_workstyle .job_workstyle_table table tr {
  display: flex;
  margin-bottom: 0.8rem;
}
.page_job_workstyle .job_workstyle_table table tr th {
  padding: 0.6rem 0;
  border-radius: 1.2rem 1.2rem 0 0;
  margin-right: 2rem;
  display: block;
}
.page_job_workstyle .job_workstyle_table table tr th:nth-child(1) {
  width: 14%;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table table tr th:nth-child(1) {
    width: 11%;
  }
}
.page_job_workstyle .job_workstyle_table table tr th:nth-child(2) {
  width: 25%;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table table tr th:nth-child(2) {
    width: 26%;
  }
}
.page_job_workstyle .job_workstyle_table table tr th:nth-child(3) {
  width: 18%;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table table tr th:nth-child(3) {
    width: 19%;
  }
}
.page_job_workstyle .job_workstyle_table table tr th:nth-child(4) {
  width: 40%;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table table tr th:nth-child(4) {
    width: 41%;
  }
}
.page_job_workstyle .job_workstyle_table table tr td {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-left: 1.6rem;
  border: 0;
}
.page_job_workstyle .job_workstyle_table table tr td:nth-child(1) {
  width: 14%;
  padding: 2.4rem 0;
  border-radius: 1.2rem 0 0 1.2rem;
  text-align: center;
  justify-content: center;
  padding-left: 0;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table table tr td:nth-child(1) {
    width: 11%;
  }
}
.page_job_workstyle .job_workstyle_table table tr td:nth-child(1) p {
  padding: 0;
  border-right: none;
}
.page_job_workstyle .job_workstyle_table table tr td:nth-child(2) {
  width: 26%;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table table tr td:nth-child(2) {
    width: 27%;
  }
}
.page_job_workstyle .job_workstyle_table table tr td:nth-child(3) {
  width: 19%;
  justify-content: center;
  padding-left: 0;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table table tr td:nth-child(3) {
    width: 20%;
  }
}
.page_job_workstyle .job_workstyle_table table tr td:nth-child(3) p {
  text-align: center;
}
.page_job_workstyle .job_workstyle_table table tr td:nth-child(4) {
  width: 41%;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_table table tr td:nth-child(4) {
    width: 42%;
  }
}
.page_job_workstyle .job_workstyle_table table tr td:nth-child(4) p {
  border-right: none;
}
.page_job_workstyle .job_workstyle_table table tr td p {
  padding: 1.5rem 0;
  border-right: 0.1rem solid #333;
  display: block;
  width: 100%;
}
.page_job_workstyle .job_workstyle_caption_wrap {
  width: 37%;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .page_job_workstyle .job_workstyle_caption_wrap {
    width: 100%;
  }
}
.page_job_workstyle .job_workstyle_caption_wrap .job_workstyle_caption {
  font-size: 1.2rem;
}

.page_job_step {
  padding: 12rem 0 9.6rem;
  background-color: #EB3746;
}
@media (max-width: 1024px) {
  .page_job_step {
    padding: 8rem 0 3.2rem;
  }
}
.page_job_step .job_step_read {
  text-align: center;
  color: #fff;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_read {
    text-align: left;
  }
}
.page_job_step .job_step_ttl_wrap {
  text-align: center;
}
.page_job_step .job_step_ttl_wrap .common_subttl {
  color: #fff;
  display: inline;
}
.page_job_step .job_step_ttl_wrap .common_subttl::before {
  background: url(../images/icon_common_ttl_white.png) center/cover no-repeat;
}
.page_job_step .job_step_ttl_wrap .common_ttl {
  color: #fff;
}
.page_job_step .job_step_flow {
  padding: 4rem 0;
  width: 100rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow {
    width: 100%;
  }
}
.page_job_step .job_step_flow .job_step_item {
  width: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 2rem;
  margin-bottom: 4rem;
  max-width: 100%;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1200px) {
  .page_job_step .job_step_flow .job_step_item {
    width: 100%;
    padding: 2rem 1.6rem;
  }
}
.page_job_step .job_step_flow .job_step_item .step_item_number {
  width: 4rem;
  height: 4rem;
  background-color: #EB3746;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 1.6rem;
  font-weight: bold;
  padding-left: 0.2rem;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow .job_step_item .step_item_number {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
    margin-right: 1.2rem;
  }
  .page_job_step .job_step_flow .job_step_item .step_item_number.sp_dn {
    display: none;
  }
}
.page_job_step .job_step_flow .job_step_item .step_item_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  position: relative;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow .job_step_item .step_item_ttl {
    letter-spacing: 0;
  }
}
.page_job_step .job_step_flow .job_step_item .step_item_ttl .step_item_number {
  display: none;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow .job_step_item .step_item_ttl .step_item_number {
    display: inline-flex;
    margin-right: 0;
  }
}
.page_job_step .job_step_flow .job_step_item .step_item_ttl .text_normal {
  font-weight: normal;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow .job_step_item .step_item_ttl .text_normal {
    font-size: 1.3rem;
  }
}
.page_job_step .job_step_flow .job_step_item .fa-arrow-down {
  font-size: 2.4rem;
  position: absolute;
  bottom: -3.2rem;
  left: 2.95rem;
  color: #fff;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow .job_step_item .fa-arrow-down {
    left: 2.1rem;
  }
}
.page_job_step .job_step_flow .job_step_item:last-child {
  margin-bottom: 0;
}
.page_job_step .job_step_flow .job_step_item:last-child .fa-arrow-down {
  display: none;
}
.page_job_step .job_step_flow::after {
  content: "";
  display: block;
  clear: both;
}
.page_job_step .job_step_flow .job_step_item_wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}
.page_job_step .job_step_flow .job_step_item_wrap .row {
  width: 100%;
  max-width: 120rem;
  gap: 2rem;
}
.page_job_step .job_step_flow .job_step_item_wrap .row .job_step_item {
  width: 48%;
  margin-bottom: 0;
}
.page_job_step .job_step_flow .job_step_item_wrap .fa-arrow-down {
  margin-top: 2rem;
  color: #E50012;
  font-size: 2.4rem;
}
.page_job_step .job_step_flow .job_step_item_wrap .fa-arrow-down.arrow_02 {
  position: relative;
  bottom: auto;
  right: auto;
  transform: none;
}
.page_job_step .job_step_flow .job_step_item_05 .arrow_01 {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow .job_step_item_05 .arrow_01 {
    left: 65%;
  }
}
.page_job_step .job_step_flow .job_step_item_06 {
  width: 90%;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow .job_step_item_06 {
    width: 70%;
  }
}
.page_job_step .job_step_flow .job_step_item_06 .arrow_01 {
  left: 44.29%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow .job_step_item_06 .arrow_01 {
    left: 49%;
  }
}
.page_job_step .job_step_flow .job_step_item_06 .arrow_02 {
  left: -7.05rem;
}
.page_job_step .job_step_flow .job_step_item_06 .arrow_02::after {
  content: "";
  height: 24rem;
  border-radius: 0.2rem 0.2rem 0 0;
  width: 0.48rem;
  background-color: #fff;
  position: absolute;
  bottom: 0.4rem;
  left: 49%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .page_job_step .job_step_flow .job_step_item_06 .arrow_02::after {
    height: 26.5rem;
    width: 0.43rem;
    left: 47%;
  }
}
@media (max-width: 768px) {
  .page_job_step .job_step_flow .job_step_item_06 .arrow_02::after {
    height: 37.5rem;
  }
}
.page_job_step .job_step_guide_box {
  padding: 3rem;
  background-color: #FF9500;
  border-radius: 1.6rem;
  width: 76.8rem;
  margin: 4rem auto 5rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_guide_box {
    width: 100%;
    margin-bottom: 3.2rem;
    padding: 2rem 1.6rem;
    text-align: left;
  }
}
.page_job_step .job_step_guide_box .job_step_guide_box_text {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_guide_box .job_step_guide_box_text {
    font-size: 1.6rem;
  }
}
.page_job_step .job_step_guide_box .job_step_guide_box_link {
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_guide_box .job_step_guide_box_link {
    font-size: 1.6rem;
    text-align: left;
    text-align: left;
  }
}
.page_job_step .job_step_guide_box .job_step_guide_box_link::before {
  background-color: #333;
  border: 0.1rem solid #333;
}
@media (max-width: 1024px) {
  .page_job_step .job_step_guide_box .job_step_guide_box_link::before {
    width: 4rem;
    height: 4rem;
    right: -6rem;
  }
}
@media (max-width: 1024px) {
  .page_job_step .job_step_guide_box .job_step_guide_box_link::after {
    width: 1rem;
    height: 1rem;
    right: -4.4rem;
  }
}
.page_job_step .job_step_guide_box .job_step_guide_box_link:hover::before {
  background-color: #fff;
}
.page_job_step .job_step_guide_box .job_step_guide_box_link:hover::after {
  background: url(../images/arrow_right_black.png) center/cover no-repeat;
}

.job_step_guide_box_closed {
  background: #E50012;
  font-weight: bold;
  color: #fff;
  padding: 2em 5em;
  border-radius: 20px;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .job_step_guide_box_closed {
    font-size: 1.6rem;
    padding: 1em 2.5em;
  }
}

.page_job_requirements {
  position: relative;
  padding: 0;
}
.page_job_requirements .job_requirements_bg {
  background-color: #EB3746;
  height: 250px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page_job_requirements .job_requirements_bg_02 {
  height: 36rem;
  width: 100%;
  position: absolute;
  top: 250px;
  left: 0;
  background-color: #F1F1EF;
}
.page_job_requirements .job_requirements_bg_02.job_requirements_bg_02_guide {
  top: 160px;
}
.page_job_requirements .job_requirements_box {
  background-color: #fff;
  position: relative;
  z-index: 100;
  width: 120rem;
  margin: 0 auto;
  padding: 9rem;
  border-radius: 1.6rem;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.15);
}
@media (max-width: 1200px) {
  .page_job_requirements .job_requirements_box {
    width: 100%;
    padding: 3.2rem 1.6rem;
  }
}
.page_job_requirements .job_requirements_box .common_ttl_wrap {
  text-align: center;
}
.page_job_requirements .job_requirements_box .common_ttl_wrap .common_subttl {
  display: inline;
}
.page_job_requirements .job_requirements_box .job_requirements_text {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_box .job_requirements_text {
    margin-bottom: 1.8rem;
    text-align: left;
  }
}
.page_job_requirements .job_requirements_box .job_requirements_row {
  justify-content: center;
  gap: 3rem 16rem;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_box .job_requirements_row {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_box .job_requirements_row.flex_center .job_requirements_link_01 {
    margin-right: 0;
  }
}
.page_job_requirements .job_requirements_box .job_requirements_row.job_requirements_row_guide {
  margin-right: 0;
}
.page_job_requirements .job_requirements_box .job_requirements_row.job_requirements_row_guide .job_requirements_link_01 {
  margin-right: 0;
}
.page_job_requirements .job_requirements_box .job_requirements_row .common_btn_01 {
  position: relative;
  line-height: 1.2;
  padding-left: 3.2rem;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_box .job_requirements_row .common_btn_01 {
    width: 100%;
    margin-bottom: 1.6rem;
    padding-left: 1.6rem;
  }
  .page_job_requirements .job_requirements_box .job_requirements_row .common_btn_01::before {
    width: 4rem;
    height: 4rem;
    right: -0.8rem;
  }
  .page_job_requirements .job_requirements_box .job_requirements_row .common_btn_01::after {
    right: 0.6rem;
  }
}
.page_job_requirements .job_requirements_box .job_requirements_row .text_small {
  font-size: 1.4rem;
  background-color: #FFD8DA;
  border-radius: 0.6rem;
  padding: 0.2rem 0.6rem;
  margin-top: 0.4rem;
  display: inline-block;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_box .job_requirements_row .text_small {
    font-size: 1.2rem;
  }
}
.page_job_requirements .job_requirements_box .job_requirements_row img {
  width: 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_box .job_requirements_row img {
    left: -1rem;
  }
}
.page_job_requirements .job_requirements_welcome {
  background-color: #F1F1EF;
  position: relative;
  z-index: 100;
  margin-top: 9rem;
  padding-bottom: 13rem;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_welcome {
    margin-top: 6rem;
    padding-bottom: 0;
  }
}
.page_job_requirements .job_requirements_welcome .job_requirements_row {
  align-items: flex-end;
}
.page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_textarea {
  width: 45%;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_textarea {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_textarea .job_requirements_ttl {
  font-size: 3.2rem;
  margin-bottom: 2.4rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_textarea .job_requirements_ttl {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
  }
}
.page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_textarea .job_requirements_list {
  margin-bottom: 4.6rem;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_textarea .job_requirements_list {
    margin-bottom: 2.4rem;
  }
}
.page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_textarea .job_requirements_list li {
  margin-bottom: 0.8rem;
  text-indent: -1.7rem;
  padding-left: 1.7rem;
}
.page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_img {
  width: 50%;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_img {
    width: 100%;
  }
}
.page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_img img {
  height: 51.4rem;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_welcome .job_requirements_row .job_requirements_img img {
    height: 29rem;
  }
}
.page_job_requirements .job_requirements_popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}
.page_job_requirements .job_requirements_popup {
  width: 120rem;
  height: 90%;
  overflow: scroll;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1.6rem;
  box-shadow: 4px 4px 4px rgba(51, 51, 51, 0.3);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  padding: 4% 6%;
}
@media (max-width: 1200px) {
  .page_job_requirements .job_requirements_popup {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_popup {
    padding-bottom: 5rem;
  }
}
.page_job_requirements .job_requirements_popup .job_requirements_popup_cont {
  position: relative;
}
.page_job_requirements .job_requirements_popup .job_requirements_popup_subttl {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2.4rem;
  background-color: #EB3746;
  padding: 0.5rem 2rem;
  display: inline-block;
  border-radius: 6.4rem;
}
.page_job_requirements .job_requirements_popup .job_requirements_popup_ttl {
  font-size: 3.5rem;
  color: #E50012;
  margin-bottom: 3rem;
}
.page_job_requirements .job_requirements_popup .job_requirements_popup_text {
  margin-bottom: 3.2rem;
}
.page_job_requirements .job_requirements_popup .job_requirements_popup_table .requirements_popup_table_row {
  margin-bottom: 1.2rem;
}
.page_job_requirements .job_requirements_popup .job_requirements_popup_table .requirements_popup_table_row:last-child {
  margin-bottom: 0;
}
.page_job_requirements .job_requirements_popup .job_requirements_popup_table .requirements_popup_table_row .requirements_popup_table_name {
  width: 32%;
  background-color: #F1F1EF;
  display: flex;
  align-items: center;
  padding-left: 2.4rem;
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_popup .job_requirements_popup_table .requirements_popup_table_row .requirements_popup_table_name {
    font-size: 1.6rem;
    padding-left: 1.6rem;
  }
}
.page_job_requirements .job_requirements_popup .job_requirements_popup_table .requirements_popup_table_row .requirements_popup_table_text {
  width: 66%;
}
@media (max-width: 1024px) {
  .page_job_requirements .job_requirements_popup .job_requirements_popup_table .requirements_popup_table_row .requirements_popup_table_text {
    font-size: 1.4rem;
  }
}

.page_job_session {
  padding: 13rem 0;
  background-color: #EB3746;
}
@media (max-width: 1024px) {
  .page_job_session {
    padding: 4.8rem 0;
  }
  .page_job_session .inner {
    width: 100%;
  }
}
.page_job_session .common_ttl_wrap {
  text-align: center;
}
.page_job_session .common_ttl_wrap .common_subttl {
  color: #fff;
  display: inline;
}
.page_job_session .common_ttl_wrap .common_subttl::before {
  background: url(../images/icon_common_ttl_white.png) center/cover no-repeat;
}
.page_job_session .common_ttl_wrap .common_ttl {
  color: #fff;
}
.page_job_session .job_session_read {
  text-align: center;
  color: #fff;
  margin-bottom: 3.2rem;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_read {
    width: 90%;
    margin: 0 auto 3.2rem;
    text-align: left;
  }
}
.page_job_session .job_session_text_wrap {
  margin-bottom: 1.6rem;
}
.page_job_session .job_session_text_wrap .job_session_text {
  color: #fff;
  text-align: center;
}
.page_job_session .job_session_btn {
  background-color: #333;
  border-radius: 6.4rem;
  color: #fff;
  padding: 1.6rem 3.2rem;
  padding-right: 0;
  position: relative;
  display: block;
  width: 32rem;
  margin: 0 auto 4.8rem;
}
.page_job_session .job_session_btn i {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
}
.page_job_session .job_session_tabarea {
  width: 100rem;
  margin: 0 auto;
  padding-bottom: 6rem;
}
@media (max-width: 1200px) {
  .page_job_session .job_session_tabarea {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .page_job_session .job_session_tabarea {
    padding-bottom: 3rem;
  }
}
.page_job_session .job_session_tabarea .job_session_tab_row {
  border-bottom: 0.1rem dashed #fff;
  padding-bottom: 3.2rem;
  margin-bottom: 3.2rem;
}
.page_job_session .job_session_tabarea .job_session_tab_row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.page_job_session .job_session_tabarea .job_session_tab_row:last-child .session_tab_list li {
  margin-bottom: 0;
}
.page_job_session .job_session_tabarea .job_session_tab_row:last-child .session_tab_list.flex_center li {
  margin-right: 1.6rem;
}
.page_job_session .job_session_tabarea .job_session_tab_row:last-child .session_tab_list.flex_center li:last-child {
  margin-right: 0;
}
.page_job_session .job_session_tabarea .job_session_tab_row .session_tab_text {
  width: 13%;
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
  text-align: right;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_tabarea .job_session_tab_row .session_tab_text {
    width: 100%;
    text-align: center;
    margin-bottom: 2.8rem;
  }
}
.page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list_wrap {
  width: 85%;
  overflow: hidden !important;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list_wrap {
    width: 100%;
    overflow-x: scroll !important;
  }
}
@media (max-width: 1024px) {
  .page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list {
    width: 84.7rem;
    padding: 0 1.6rem 1.6rem;
    justify-content: flex-start;
  }
  .page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list.last {
    width: 57rem;
  }
  .page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list.last::after {
    content: none;
  }
}
.page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list::after {
  content: "";
  width: 32%;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list::after {
    width: 26rem;
  }
}
.page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list li {
  width: 32%;
  margin-bottom: 1.2rem;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list li {
    width: 26rem;
    margin-right: 0.8rem;
  }
  .page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list li:nth-child(3n) {
    margin-right: 0;
  }
}
.page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list li.active a {
  color: #E50012;
  background-color: #fff;
}
.page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list li a {
  background-color: #D9D9D9;
  border-radius: 6.4rem;
  padding: 0.8rem;
  font-weight: bold;
  color: #737373;
  width: 100%;
  display: block;
  text-align: center;
}
.page_job_session .job_session_tabarea .job_session_tab_row .session_tab_list li a:hover {
  background-color: #fff;
  color: #E50012;
  opacity: 1;
}
.page_job_session .job_session_box {
  background-color: #fff;
  padding: 6.4rem;
  box-shadow: 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.15), inset 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
  border-radius: 1.6rem;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_box {
    width: 90%;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
}
.page_job_session .job_session_box .session_box_ttl_wrap {
  position: relative;
  margin-bottom: 4rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_box .session_box_ttl_wrap {
    margin-bottom: 1.8rem;
  }
}
.page_job_session .job_session_box .session_box_ttl_wrap::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #E50012;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_box .session_box_ttl_wrap::before {
    display: none;
  }
}
.page_job_session .job_session_box .session_box_ttl_wrap .session_box_ttl {
  display: inline;
  font-size: 3.5rem;
  color: #E50012;
  font-weight: 900;
  padding: 0 3.2rem;
  display: inline-block;
  z-index: 100;
  background-color: #fff;
  position: relative;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_box .session_box_ttl_wrap .session_box_ttl {
    font-size: 2.2rem;
    padding: 0;
  }
}
.page_job_session .job_session_box .session_box_ttl_wrap .session_box_ttl .text_small {
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  .page_job_session .job_session_box .session_box_ttl_wrap .session_box_ttl .text_small {
    font-size: 1.6rem;
  }
}
.page_job_session.page_job_session_guide {
  background-color: #F1F1EF;
}
.page_job_session.page_job_session_guide .inner {
  position: relative;
  z-index: 1000;
}
.page_job_session.page_job_session_guide .common_ttl_wrap .common_subttl {
  color: #EB3746;
}
.page_job_session.page_job_session_guide .common_ttl_wrap .common_subttl::before {
  background: url(../images/icon_common_ttl_red.png) center/cover no-repeat;
}
.page_job_session.page_job_session_guide .common_ttl_wrap .common_ttl {
  color: #EB3746;
}
.page_job_session.page_job_session_guide .job_session_read {
  color: #333;
}
.page_job_session.page_job_session_guide .job_session_guide_row {
  width: 76.8rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page_job_session.page_job_session_guide .job_session_guide_row {
    width: 90%;
  }
}
.page_job_session.page_job_session_guide .job_session_guide_row .job_session_guide_item {
  width: 32rem;
}
@media (max-width: 1024px) {
  .page_job_session.page_job_session_guide .job_session_guide_row .job_session_guide_item {
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .page_job_session.page_job_session_guide .job_session_guide_row .job_session_guide_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .page_job_session.page_job_session_guide .job_session_guide_row .job_session_guide_item .job_session_text_wrap {
    margin-bottom: 0.8rem;
  }
}
.page_job_session.page_job_session_guide .job_session_guide_row .job_session_guide_item .job_session_text_wrap .job_session_text {
  color: #333;
}
@media (max-width: 1024px) {
  .page_job_session.page_job_session_guide .job_session_guide_row .job_session_guide_item .job_session_text_wrap .job_session_text {
    font-size: 1.4rem;
  }
}
.page_job_session.page_job_session_guide .job_session_guide_row .job_session_guide_item .mynav {
  text-align: center;
  margin-top: 0.6rem;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .page_job_session.page_job_session_guide .job_session_guide_row .job_session_guide_item .mynav {
    font-size: 1.6rem;
  }
}

.session_box_row .session_box_imgs {
  width: 30%;
}
@media (max-width: 1024px) {
  .session_box_row .session_box_imgs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
  }
  .session_box_row .session_box_imgs.session_box_imgs_01 {
    justify-content: center;
  }
}
.session_box_row .session_box_imgs .session_box_img {
  margin-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  .session_box_row .session_box_imgs .session_box_img {
    width: 48%;
  }
}
.session_box_row .session_box_imgs .session_box_img:last-child {
  margin-bottom: 0;
}
.session_box_row .session_box_imgs .session_box_img img {
  border-radius: 1.6rem;
}
.session_box_row .session_box_textarea {
  width: 66%;
}
@media (max-width: 1024px) {
  .session_box_row .session_box_textarea {
    width: 100%;
  }
}
.session_box_row .session_box_textarea .session_box_info {
  margin-bottom: 4rem;
}
.session_box_row .session_box_textarea .session_box_info .session_box_info_row .session_box_info_label {
  width: 13%;
  border-right: 0.1rem solid #333;
  padding-bottom: 1rem;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .session_box_row .session_box_textarea .session_box_info .session_box_info_row .session_box_info_label {
    width: 27%;
    font-size: 1.4rem;
  }
}
.session_box_row .session_box_textarea .session_box_info .session_box_info_row .session_box_info_text {
  width: 87%;
  padding-bottom: 1rem;
  padding-left: 2rem;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .session_box_row .session_box_textarea .session_box_info .session_box_info_row .session_box_info_text {
    width: 73%;
    padding-left: 1rem;
    font-size: 1.4rem;
    font-weight: 300;
  }
}
@media (max-width: 1024px) {
  .session_box_row .session_box_textarea .session_box_info_label {
    font-size: 1.4rem;
  }
}
.session_box_row .session_box_textarea .session_box_info_text {
  font-weight: 300;
}
@media (max-width: 1024px) {
  .session_box_row .session_box_textarea .session_box_info_text {
    font-size: 1.4rem;
  }
}
.session_box_row .session_box_textarea .session_box_info_wrap {
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .session_box_row .session_box_textarea .session_box_info_wrap {
    margin-bottom: 2rem;
  }
}
.session_box_row .session_box_textarea .session_box_info_wrap .session_box_info_item {
  margin-bottom: 2.4rem;
}
.session_box_row .session_box_textarea .session_box_info_wrap .session_box_info_item:last-child {
  margin-bottom: 0;
}
.session_box_row .session_box_textarea .session_box_btns::after {
  content: "";
  width: 30%;
}
.session_box_row .session_box_textarea .session_box_btns .session_box_item {
  width: 30%;
}
@media (max-width: 1024px) {
  .session_box_row .session_box_textarea .session_box_btns .session_box_item {
    width: 100%;
  }
}
.session_box_row .session_box_textarea .session_box_btns .session_box_item .mynav {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  letter-spacing: 0;
}
.session_box_row .session_box_textarea .session_box_btns .session_box_item .mynav i {
  right: 1.4rem;
  font-size: 1.4rem;
}
.session_box_row .session_box_textarea .session_box_btns .session_box_item .session_box_text {
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1.2rem;
}
.session_box_row .session_box_textarea .session_box_btns .session_box_item .session_box_text::before {
  content: "";
  background: url(../images/icon_calendar.png) center/cover no-repeat;
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.session_box_row .session_box_textarea .session_box_btns .session_box_item .session_box_btn {
  background-color: #E50012;
  color: #fff;
  padding: 0.8rem 1.3rem;
  padding-right: 1rem;
  border-radius: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: bold;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  position: relative;
  border: 0.1rem solid #E50012;
}
@media (max-width: 1200px) {
  .session_box_row .session_box_textarea .session_box_btns .session_box_item .session_box_btn {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
    letter-spacing: 0;
  }
}
@media (max-width: 1024px) {
  .session_box_row .session_box_textarea .session_box_btns .session_box_item .session_box_btn {
    width: 21rem;
    margin: 0 auto;
  }
}
.session_box_row .session_box_textarea .session_box_btns .session_box_item .session_box_btn i {
  margin-left: 0.8rem;
  font-size: 1.6rem;
}
.session_box_row .session_box_textarea .session_box_btns .session_box_item .session_box_btn:hover {
  background-color: #fff;
  color: #E50012;
  border: 0.1rem solid #E50012;
  opacity: 1;
}
.session_box_row .session_box_textarea .clipboard {
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  .session_box_row .session_box_textarea .clipboard {
    font-size: 1.2rem;
  }
}
.session_box_row .session_box_textarea .clipboard #clipboard_btn {
  background-color: #E53145;
  border: solid 0 #E53145;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding: 1rem 4rem;
  border-radius: 3rem;
  cursor: pointer;
}
.session_box_row .session_box_textarea .clipboard #clipboard_btn:hover {
  opacity: 0.7;
}

.page_job_cta {
  padding-top: 0;
}
@media (max-width: 1024px) {
  .page_job_cta {
    padding: 0;
  }
}
.page_job_cta .job_cta_row .job_cta_item {
  width: 50%;
  height: 34rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .page_job_cta .job_cta_row .job_cta_item {
    width: 100%;
    height: auto;
    padding: 2.4rem;
  }
}
.page_job_cta .job_cta_row .job_cta_item.job_cta_item_tel {
  background-color: #D1EDE5;
}
.page_job_cta .job_cta_row .job_cta_item.job_cta_item_tel .job_cta_ttl {
  color: #25AB82;
}
.page_job_cta .job_cta_row .job_cta_item.job_cta_item_tel .job_cta_tel {
  color: #25AB82;
  line-height: 1;
}
.page_job_cta .job_cta_row .job_cta_item.job_cta_item_mail {
  background-color: #FFF3C1;
}
.page_job_cta .job_cta_row .job_cta_item.job_cta_item_mail .job_cta_ttl {
  color: #F86F2B;
}
.page_job_cta .job_cta_row .job_cta_item.job_cta_item_mail .job_cta_btn {
  background-color: #FF9500;
  color: #fff;
  padding: 1.8rem 1.3rem;
  padding-left: 4rem;
  border-radius: 6.4rem;
  display: block;
  width: 32rem;
  margin: 0 auto;
  position: relative;
  border: 0.1rem solid #FF9500;
}
@media (max-width: 1024px) {
  .page_job_cta .job_cta_row .job_cta_item.job_cta_item_mail .job_cta_btn {
    width: 100%;
    padding-left: 4rem;
  }
}
.page_job_cta .job_cta_row .job_cta_item.job_cta_item_mail .job_cta_btn .fa-chevron-right {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.page_job_cta .job_cta_row .job_cta_item.job_cta_item_mail .job_cta_btn:hover {
  background-color: #fff;
  color: #FF9500;
  opacity: 1;
}
.page_job_cta .job_cta_row .job_cta_item.job_cta_item_mail .job_cta_btn:hover .fa-chevron-right {
  background: url(../images/arrow_right_orange.png) center/cover no-repeat;
}
.page_job_cta .job_cta_row .job_cta_item .job_cta_ttl {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_cta .job_cta_row .job_cta_item .job_cta_ttl {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
}
.page_job_cta .job_cta_row .job_cta_item .job_cta_text {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .page_job_cta .job_cta_row .job_cta_item .job_cta_text {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0;
  }
}
.page_job_cta .job_cta_row .job_cta_item .job_cta_tel {
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.8rem;
}
@media (max-width: 1024px) {
  .page_job_cta .job_cta_row .job_cta_item .job_cta_tel {
    font-size: 3.2rem;
    margin-bottom: 0.6rem;
  }
}
.page_job_cta .job_cta_row .job_cta_item .job_cta_time {
  text-align: center;
  margin-bottom: 1.6rem;
}
.page_job_cta .job_cta_row .job_cta_item .job_cta_caption {
  font-size: 1.2rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_job_cta .job_cta_row .job_cta_item .job_cta_caption {
    text-align: left;
  }
}

.page_job_type {
  padding-bottom: 10rem;
}
.page_job_type .job_type_row .job_type_item {
  width: 49%;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .page_job_type .job_type_row .job_type_item {
    width: 100%;
  }
}
.page_job_type .job_type_row .job_type_item .job_type_name_wrap {
  padding-left: 4.2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .page_job_type .job_type_row .job_type_item .job_type_name_wrap {
    padding-left: 3.2rem;
  }
}
.page_job_type .job_type_row .job_type_item .job_type_name_wrap::before {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .page_job_type .job_type_row .job_type_item .job_type_name_wrap::before {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.page_job_type .job_type_row .job_type_item.job_type_item_01 .job_type_name_wrap::before {
  background: url(../images/icon_bus_white.png) center/cover no-repeat;
}
.page_job_type .job_type_row .job_type_item.job_type_item_01 .job_type_textarea {
  background-color: #EB3746;
}
.page_job_type .job_type_row .job_type_item.job_type_item_01 .job_type_textarea::before {
  background-color: #fff;
}
.page_job_type .job_type_row .job_type_item.job_type_item_01 .job_type_textarea::after {
  background: url(../images/arrow_right_red.png) center/cover no-repeat;
}
.page_job_type .job_type_row .job_type_item.job_type_item_01 .job_type_textarea .job_type_name {
  background-color: #fff;
  color: #E50012;
}
.page_job_type .job_type_row .job_type_item.job_type_item_01 .job_type_textarea .job_type_ttl {
  color: #fff;
}
.page_job_type .job_type_row .job_type_item.job_type_item_02 .job_type_name_wrap::before {
  background: url(../images/icon_bus_red.png) center/cover no-repeat;
}
.page_job_type .job_type_row .job_type_item.job_type_item_03 .job_type_name_wrap::before {
  background: url(../images/icon_pc_red.png) center/cover no-repeat;
  height: 2.2rem;
}
@media (max-width: 1024px) {
  .page_job_type .job_type_row .job_type_item.job_type_item_03 .job_type_name_wrap::before {
    height: 1.6rem !important;
  }
}
.page_job_type .job_type_row .job_type_item.job_type_item_04 .job_type_name_wrap::before {
  background: url(../images/icon_flag_red.png) center/cover no-repeat;
}
.page_job_type .job_type_row .job_type_item .job_type_img {
  width: 50%;
}
@media (max-width: 1024px) {
  .page_job_type .job_type_row .job_type_item .job_type_img {
    height: 16rem;
  }
  .page_job_type .job_type_row .job_type_item .job_type_img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page_job_type .job_type_row .job_type_item .job_type_img img {
  border-radius: 1.6rem 0 0 1.6rem;
}
.page_job_type .job_type_row .job_type_item .job_type_textarea {
  width: 50%;
  border-radius: 0 1.6rem 1.6rem 0;
  background-color: #FFF3C1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s;
}
.page_job_type .job_type_row .job_type_item .job_type_textarea::before {
  content: "";
  background-color: #EB3746;
  width: 4rem;
  height: 4rem;
  position: absolute;
  right: 2.4rem;
  bottom: 2rem;
  border-radius: 50%;
  border: 1px solid #EB3746;
  transition: background-color 0.3s, border-color 0.3s;
}
@media (max-width: 1024px) {
  .page_job_type .job_type_row .job_type_item .job_type_textarea::before {
    width: 2.4rem;
    height: 2.4rem;
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
.page_job_type .job_type_row .job_type_item .job_type_textarea::after {
  content: "";
  background: url(../images/arrow_right_white.png) center/cover no-repeat;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 4rem;
  bottom: 2.3em;
  transition: background 0.3s;
}
@media (max-width: 1024px) {
  .page_job_type .job_type_row .job_type_item .job_type_textarea::after {
    width: 0.8rem;
    height: 0.8rem;
    right: 2.4rem;
    bottom: 2.4rem;
  }
}
.page_job_type .job_type_row .job_type_item .job_type_textarea .job_type_name {
  font-size: 2.4rem;
  color: #FFF3C1;
  font-weight: bold;
  padding: 0 0.6rem;
  border-radius: 0.8rem;
  background-color: #E50012;
  line-height: 1.4;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .page_job_type .job_type_row .job_type_item .job_type_textarea .job_type_name {
    font-size: 2rem;
  }
}
.page_job_type .job_type_row .job_type_item .job_type_textarea .job_type_ttl {
  font-size: 2.4rem;
  color: #E50012;
  transition: color 0.3s;
}
@media (max-width: 1024px) {
  .page_job_type .job_type_row .job_type_item .job_type_textarea .job_type_ttl {
    font-size: 2rem;
  }
}
@media (hover: hover) {
  .page_job_type .job_type_row .job_type_item:hover {
    opacity: 1;
  }
  .page_job_type .job_type_row .job_type_item:hover .job_type_textarea {
    background-color: #EB3746;
  }
  .page_job_type .job_type_row .job_type_item:hover .job_type_textarea::before {
    background-color: #fff;
  }
  .page_job_type .job_type_row .job_type_item:hover .job_type_textarea::after {
    background: url(../images/arrow_right_red.png) center/cover no-repeat;
  }
  .page_job_type .job_type_row .job_type_item:hover .job_type_textarea .job_type_name {
    background-color: #fff;
    color: #EB3746;
  }
  .page_job_type .job_type_row .job_type_item:hover .job_type_textarea .job_type_ttl {
    color: #fff;
  }
  .page_job_type .job_type_row .job_type_item:hover.job_type_item_01 .job_type_name_wrap::before {
    background: url(../images/icon_bus_red.png) center/cover no-repeat;
  }
  .page_job_type .job_type_row .job_type_item:hover.job_type_item_01 .job_type_textarea {
    background-color: #EB3746;
  }
  .page_job_type .job_type_row .job_type_item:hover.job_type_item_01 .job_type_textarea .job_type_name {
    background-color: #fff;
    color: #E50012;
  }
  .page_job_type .job_type_row .job_type_item:hover.job_type_item_01 .job_type_textarea .job_type_ttl {
    color: #fff;
  }
  .page_job_type .job_type_row .job_type_item:hover.job_type_item_02 .job_type_name_wrap::before {
    background: url(../images/icon_bus_white.png) center/cover no-repeat;
  }
  .page_job_type .job_type_row .job_type_item:hover.job_type_item_03 .job_type_name_wrap::before {
    background: url(../images/icon_pc_white.png) center/cover no-repeat;
    height: 2.2rem;
  }
  .page_job_type .job_type_row .job_type_item:hover.job_type_item_04 .job_type_name_wrap::before {
    background: url(../images/icon_flag_white.png) center/cover no-repeat;
  }
}
.page_job_type .job_type_row .job_type_item.job_type_item_01 .job_type_textarea {
  background-color: #EB3746;
}
.page_job_type .job_type_row .job_type_item.job_type_item_01 .job_type_textarea .job_type_ttl {
  color: #fff;
}
@media (hover: hover) {
  .page_job_type .job_type_row .job_type_item.job_type_item_01:hover .job_type_textarea {
    background-color: #FFF3C1;
  }
  .page_job_type .job_type_row .job_type_item.job_type_item_01:hover .job_type_textarea::before {
    background-color: #EB3746;
    border-color: #EB3746;
  }
  .page_job_type .job_type_row .job_type_item.job_type_item_01:hover .job_type_textarea::after {
    background: url(../images/arrow_right_white.png) center/cover no-repeat;
  }
  .page_job_type .job_type_row .job_type_item.job_type_item_01:hover .job_type_textarea .job_type_ttl {
    color: #E50012;
  }
}

.page_schedule {
  padding-bottom: 8rem;
}
@media (max-width: 1024px) {
  .page_schedule {
    padding-bottom: 6rem;
  }
}

.page_schedule_back {
  background-color: #F1F1EF;
  padding: 4rem 0;
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .page_schedule_back {
    padding: 3rem 0;
    margin-bottom: 4rem;
  }
}
.page_schedule_back .page_schedule_back_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3.2rem;
  color: #E50012;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_schedule_back .page_schedule_back_ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.page_schedule_form .page_schedule_form_ttl {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
  color: #333;
}
@media (max-width: 1024px) {
  .page_schedule_form .page_schedule_form_ttl {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}

.entry_form {
  max-width: 800px;
  margin: 0 auto;
}

.form_section {
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .form_section {
    margin-bottom: 4rem;
  }
}
.form_section .form_section_ttl {
  font-size: 2.2rem;
  font-weight: bold;
  color: #E50012;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E50012;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .form_section .form_section_ttl {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }
}

.form_row {
  margin-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  .form_row {
    margin-bottom: 2rem;
  }
}
.form_row .form_label {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}
@media (max-width: 1024px) {
  .form_row .form_label {
    font-size: 1.4rem;
  }
}
.form_row .form_label.required::after {
  content: "必須";
  display: inline-block;
  background-color: #E50012;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.2rem 0.8rem;
  border-radius: 0.4rem;
  margin-left: 1rem;
  font-weight: normal;
}

.form_input {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  transition: border-color 0.3s;
  font-family: inherit;
}
@media (max-width: 1024px) {
  .form_input {
    font-size: 1.6rem;
    padding: 1rem 1.2rem;
  }
}
.form_input:focus {
  outline: none;
  border-color: #E50012;
}
.form_input::-moz-placeholder {
  color: #999;
}
.form_input::placeholder {
  color: #999;
}
.form_input.form_input_half {
  width: calc(50% - 0.5rem);
}
@media (max-width: 1024px) {
  .form_input.form_input_half {
    width: calc(50% - 0.5rem);
  }
}
.form_input.form_input_small {
  width: 200px;
}
@media (max-width: 1024px) {
  .form_input.form_input_small {
    width: 100%;
  }
}

.form_input_group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form_select {
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  background-color: #fff;
  cursor: pointer;
  transition: border-color 0.3s;
  font-family: inherit;
}
@media (max-width: 1024px) {
  .form_select {
    font-size: 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.form_select:focus {
  outline: none;
  border-color: #E50012;
}

.form_radio_group,
.form_checkbox_group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
}
@media (max-width: 1024px) {
  .form_radio_group,
  .form_checkbox_group {
    gap: 1.2rem 1.6rem;
  }
}

.form_radio_label,
.form_checkbox_label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .form_radio_label,
  .form_checkbox_label {
    font-size: 1.4rem;
  }
}
.form_radio_label input[type=radio],
.form_radio_label input[type=checkbox],
.form_checkbox_label input[type=radio],
.form_checkbox_label input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
  cursor: pointer;
  accent-color: #E50012;
}
@media (max-width: 1024px) {
  .form_radio_label input[type=radio],
  .form_radio_label input[type=checkbox],
  .form_checkbox_label input[type=radio],
  .form_checkbox_label input[type=checkbox] {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.form_radio_label:hover,
.form_checkbox_label:hover {
  opacity: 0.7;
}

.form_textarea {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  transition: border-color 0.3s;
  resize: vertical;
  font-family: inherit;
}
@media (max-width: 1024px) {
  .form_textarea {
    font-size: 1.6rem;
    padding: 1rem 1.2rem;
  }
}
.form_textarea:focus {
  outline: none;
  border-color: #E50012;
}
.form_textarea::-moz-placeholder {
  color: #999;
}
.form_textarea::placeholder {
  color: #999;
}

.form_note {
  font-size: 1.4rem;
  color: #666;
  margin-top: 0.6rem;
}
@media (max-width: 1024px) {
  .form_note {
    font-size: 1.2rem;
  }
}

.form_note_box {
  background-color: #f9f9f9;
  padding: 1.6rem;
  border-radius: 0.4rem;
  margin-top: 1.2rem;
}
@media (max-width: 1024px) {
  .form_note_box {
    padding: 1.2rem;
  }
}
.form_note_box .form_note {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: bold;
}
.form_note_box .form_note_list {
  padding-left: 1.6rem;
}
.form_note_box .form_note_list li {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.2em;
  list-style: none;
}
@media (max-width: 1024px) {
  .form_note_box .form_note_list li {
    font-size: 1.2rem;
  }
}
.form_note_box .form_note_list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.form_privacy .form_privacy_checkbox {
  display: flex;
  align-items: center;
  padding: 1.6rem;
  background-color: #f9f9f9;
  border-radius: 0.4rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .form_privacy .form_privacy_checkbox {
    padding: 1.2rem;
  }
}
.form_privacy .form_privacy_checkbox input[type=checkbox] {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 1rem;
}
@media (max-width: 1024px) {
  .form_privacy .form_privacy_checkbox input[type=checkbox] {
    width: 2rem;
    height: 2rem;
  }
}
.form_privacy .form_privacy_checkbox span {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .form_privacy .form_privacy_checkbox span {
    font-size: 1.6rem;
  }
}
.form_privacy .form_privacy_text {
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
}
@media (max-width: 1024px) {
  .form_privacy .form_privacy_text {
    padding: 1.6rem;
  }
}
.form_privacy .form_privacy_text p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .form_privacy .form_privacy_text p {
    font-size: 1.3rem;
  }
}
.form_privacy .form_privacy_text p:last-child {
  margin-bottom: 0;
}
.form_privacy .form_privacy_text .form_privacy_link {
  color: #E50012;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.form_privacy .form_privacy_text .form_privacy_link:hover {
  opacity: 0.7;
}

.form_submit_wrap {
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .form_submit_wrap {
    margin-top: 3rem;
  }
}
.form_submit_wrap .form_submit_btn {
  min-width: 300px;
  padding: 1.8rem 4rem;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #E50012;
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .form_submit_wrap .form_submit_btn {
    min-width: 100%;
    max-width: 100%;
    font-size: 1.6rem;
    padding: 1.6rem 3rem;
  }
}
.form_submit_wrap .form_submit_btn:hover {
  background-color: #bc000f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.form_submit_wrap .form_submit_btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.form_submit_wrap .form_submit_btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.form_submit_wrap .form_submit_btn:disabled:hover {
  background-color: #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page_schedule_confirm {
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  .page_schedule_confirm {
    padding: 4rem 0;
  }
}
.page_schedule_confirm .page_schedule_confirm_ttl {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}
@media (max-width: 1024px) {
  .page_schedule_confirm .page_schedule_confirm_ttl {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.page_schedule_confirm .page_schedule_confirm_text {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .page_schedule_confirm .page_schedule_confirm_text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}

.confirm_form {
  max-width: 800px;
  margin: 0 auto;
}

.confirm_section {
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .confirm_section {
    margin-bottom: 3rem;
  }
}
.confirm_section .confirm_section_ttl {
  font-size: 2.2rem;
  font-weight: bold;
  color: #E50012;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E50012;
  margin-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  .confirm_section .confirm_section_ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.confirm_row {
  display: flex;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .confirm_row {
    flex-direction: column;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.confirm_row:last-child {
  border-bottom: none;
}
.confirm_row .confirm_label {
  width: 200px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .confirm_row .confirm_label {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}
.confirm_row .confirm_value {
  flex: 1;
  font-size: 1.6rem;
  color: #333;
}
@media (max-width: 1024px) {
  .confirm_row .confirm_value {
    font-size: 1.4rem;
  }
}
.confirm_row .confirm_value.confirm_value_message {
  line-height: 1.8;
}

.confirm_btn_wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .confirm_btn_wrap {
    flex-direction: column-reverse;
    gap: 1.6rem;
    margin-top: 4rem;
  }
}
.confirm_btn_wrap .confirm_back_btn {
  min-width: 200px;
  padding: 1.8rem 4rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border: 2px solid #ddd;
  color: #666;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
@media (max-width: 1024px) {
  .confirm_btn_wrap .confirm_back_btn {
    min-width: 100%;
    font-size: 1.6rem;
    padding: 1.6rem 3rem;
  }
}
.confirm_btn_wrap .confirm_back_btn:hover {
  background-color: #F1F1EF;
  border-color: #999;
}
.confirm_btn_wrap .confirm_back_btn:active {
  transform: translateY(1px);
}
.confirm_btn_wrap .confirm_submit_btn {
  min-width: 200px;
  padding: 1.8rem 4rem;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #E50012;
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .confirm_btn_wrap .confirm_submit_btn {
    min-width: 100%;
    font-size: 1.6rem;
    padding: 1.6rem 3rem;
  }
}
.confirm_btn_wrap .confirm_submit_btn:hover {
  background-color: #bc000f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.confirm_btn_wrap .confirm_submit_btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.page_schedule_thanks {
  padding: 8rem 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_schedule_thanks {
    padding: 6rem 0;
  }
}
.page_schedule_thanks .thanks_icon {
  margin-bottom: 2rem;
}
.page_schedule_thanks .thanks_icon i {
  font-size: 8rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_icon i {
    font-size: 6rem;
  }
}
.page_schedule_thanks .thanks_ttl {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
  color: #333;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_ttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.page_schedule_thanks .thanks_text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  color: #666;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}
.page_schedule_thanks .thanks_message_box {
  max-width: 700px;
  margin: 0 auto 3rem;
  background-color: #f9f9f9;
  padding: 3rem;
  border-radius: 0.8rem;
  text-align: left;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_message_box {
    padding: 2rem;
    margin-bottom: 2.4rem;
  }
}
.page_schedule_thanks .thanks_message_box .thanks_message_ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
  color: #E50012;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_message_box .thanks_message_ttl {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}
.page_schedule_thanks .thanks_message_box .thanks_message_list li {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.8em;
  position: relative;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_message_box .thanks_message_list li {
    font-size: 1.4rem;
  }
}
.page_schedule_thanks .thanks_message_box .thanks_message_list li::before {
  content: "・";
  position: absolute;
  left: 0.5em;
}
.page_schedule_thanks .thanks_message_box .thanks_message_list li:last-child {
  margin-bottom: 0;
}
.page_schedule_thanks .thanks_note_box {
  max-width: 700px;
  margin: 0 auto 4rem;
  background-color: #fff9e6;
  padding: 2.4rem;
  border-radius: 0.8rem;
  border: 1px solid #ffe680;
  text-align: left;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_note_box {
    padding: 2rem;
    margin-bottom: 3rem;
  }
}
.page_schedule_thanks .thanks_note_box .thanks_note_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  color: #e67e00;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_note_box .thanks_note_ttl {
    font-size: 1.6rem;
  }
}
.page_schedule_thanks .thanks_note_box .thanks_note_list li {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  padding-left: 1.8em;
  position: relative;
  color: #666;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_note_box .thanks_note_list li {
    font-size: 1.3rem;
  }
}
.page_schedule_thanks .thanks_note_box .thanks_note_list li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #e67e00;
}
.page_schedule_thanks .thanks_note_box .thanks_note_list li:last-child {
  margin-bottom: 0;
}
.page_schedule_thanks .thanks_contact_box {
  max-width: 700px;
  margin: 0 auto 5rem;
  background-color: #fff;
  padding: 3rem;
  border-radius: 0.8rem;
  border: 2px solid #E50012;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_contact_box {
    padding: 2rem;
    margin-bottom: 4rem;
  }
}
.page_schedule_thanks .thanks_contact_box .thanks_contact_ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
  color: #E50012;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_contact_box .thanks_contact_ttl {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
}
.page_schedule_thanks .thanks_contact_box .thanks_contact_info {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_contact_box .thanks_contact_info {
    font-size: 1.4rem;
  }
}
.page_schedule_thanks .thanks_contact_box .thanks_contact_info .thanks_contact_company {
  font-weight: bold;
  display: block;
}
.page_schedule_thanks .thanks_contact_box .thanks_contact_info .thanks_contact_tel {
  display: block;
}
.page_schedule_thanks .thanks_contact_box .thanks_contact_info .thanks_contact_tel a {
  color: #E50012;
  text-decoration: none;
  font-weight: bold;
}
.page_schedule_thanks .thanks_contact_box .thanks_contact_info .thanks_contact_tel a:hover {
  text-decoration: underline;
}
.page_schedule_thanks .thanks_contact_box .thanks_contact_info .thanks_contact_time {
  display: block;
  color: #666;
}
.page_schedule_thanks .thanks_btn_wrap {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_btn_wrap {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.page_schedule_thanks .thanks_btn_wrap .thanks_top_btn {
  min-width: 250px;
  padding: 1.8rem 4rem;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #E50012;
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  text-align: center;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_btn_wrap .thanks_top_btn {
    min-width: 100%;
    font-size: 1.6rem;
    padding: 1.6rem 3rem;
  }
}
.page_schedule_thanks .thanks_btn_wrap .thanks_top_btn:hover {
  background-color: #bc000f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.page_schedule_thanks .thanks_btn_wrap .thanks_top_btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.page_schedule_thanks .thanks_btn_wrap .thanks_back_btn {
  min-width: 250px;
  padding: 1.8rem 4rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border: 2px solid #ddd;
  color: #666;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
@media (max-width: 1024px) {
  .page_schedule_thanks .thanks_btn_wrap .thanks_back_btn {
    min-width: 100%;
    font-size: 1.6rem;
    padding: 1.6rem 3rem;
  }
}
.page_schedule_thanks .thanks_btn_wrap .thanks_back_btn:hover {
  background-color: #F1F1EF;
  border-color: #999;
}
.page_schedule_thanks .thanks_btn_wrap .thanks_back_btn:active {
  transform: translateY(1px);
}

.page_topics {
  padding-bottom: 8rem;
}
@media (max-width: 1024px) {
  .page_topics {
    padding-bottom: 6rem;
  }
}

.page_topics_cont {
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  .page_topics_cont {
    padding: 4rem 0;
  }
}

.topics_layout {
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .topics_layout {
    flex-direction: column;
  }
}

.topics_main {
  width: calc(100% - 320px);
  padding-top: 3.2rem;
}
@media (max-width: 1024px) {
  .topics_main {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.topics_main .common_news_list li {
  padding-bottom: 3.2rem;
  margin-bottom: 3.2rem;
}

.topics_news_list .topics_news_item {
  margin-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  .topics_news_list .topics_news_item {
    margin-bottom: 2rem;
  }
}
.topics_news_list .topics_news_item:last-child {
  margin-bottom: 0;
}
.topics_news_list .topics_news_link {
  display: block;
  padding: 2.4rem;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.8rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .topics_news_list .topics_news_link {
    padding: 1.6rem;
  }
}
.topics_news_list .topics_news_link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.topics_news_list .topics_news_link .common_news_info {
  margin-bottom: 1.2rem;
}
@media (max-width: 1024px) {
  .topics_news_list .topics_news_link .common_news_info {
    flex-wrap: wrap;
  }
}
.topics_news_list .topics_news_link .common_news_info .common_news_date {
  font-size: 1.4rem;
  color: #999;
  margin-right: 1.6rem;
}
@media (max-width: 1024px) {
  .topics_news_list .topics_news_link .common_news_info .common_news_date {
    font-size: 1.2rem;
    margin-right: 1rem;
  }
}
.topics_news_list .topics_news_link .common_news_info .common_news_cate {
  font-size: 1.4rem;
  padding: 0.4rem 1.2rem;
  background-color: #EB3746;
  color: #fff;
  border-radius: 0.4rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .topics_news_list .topics_news_link .common_news_info .common_news_cate {
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
  }
}
.topics_news_list .topics_news_link .common_news_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .topics_news_list .topics_news_link .common_news_ttl {
    font-size: 1.6rem;
  }
}

.topics_pagination {
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .topics_pagination {
    margin-top: 4rem;
  }
}
.topics_pagination .pagination_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .topics_pagination .pagination_list {
    gap: 0.6rem;
  }
}
.topics_pagination .pagination_item a,
.topics_pagination .pagination_item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  height: 4.4rem;
  padding: 0 1.2rem;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  border-radius: 0.4rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .topics_pagination .pagination_item a,
  .topics_pagination .pagination_item span {
    min-width: 3.6rem;
    height: 3.6rem;
    padding: 0 1rem;
    font-size: 1.4rem;
  }
}
.topics_pagination .pagination_item a:hover,
.topics_pagination .pagination_item span:hover {
  background-color: #E50012;
  border-color: #E50012;
  color: #fff;
}
.topics_pagination .pagination_item.active a {
  background-color: #E50012;
  border-color: #E50012;
  color: #fff;
  font-weight: bold;
}
.topics_pagination .pagination_item.disabled span {
  background-color: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}
.topics_pagination .pagination_item.disabled span:hover {
  background-color: #f5f5f5;
  border-color: #ddd;
  color: #ccc;
}
.topics_pagination .pagination_item.pagination_prev a i,
.topics_pagination .pagination_item.pagination_prev span i, .topics_pagination .pagination_item.pagination_next a i,
.topics_pagination .pagination_item.pagination_next span i {
  font-size: 1.4rem;
}

.topics_sidebar {
  width: 280px;
}
@media (max-width: 1024px) {
  .topics_sidebar {
    width: 100%;
  }
}

.sidebar_widget {
  margin-bottom: 3.6rem;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.8rem;
  padding: 2.4rem;
}
@media (max-width: 1024px) {
  .sidebar_widget {
    padding: 2rem;
    margin-bottom: 2.4rem;
  }
}
.sidebar_widget:last-child {
  margin-bottom: 0;
}
.sidebar_widget .sidebar_widget_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #E50012;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E50012;
}
@media (max-width: 1024px) {
  .sidebar_widget .sidebar_widget_ttl {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.sidebar_category_list .sidebar_category_item {
  border-bottom: 1px solid #f0f0f0;
}
.sidebar_category_list .sidebar_category_item:last-child {
  border-bottom: none;
}
.sidebar_category_list .sidebar_category_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0.8rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .sidebar_category_list .sidebar_category_link {
    padding: 1rem 0.6rem;
  }
}
.sidebar_category_list .sidebar_category_link:hover {
  background-color: #f9f9f9;
  padding-left: 1.6rem;
}
.sidebar_category_list .sidebar_category_link .category_name {
  font-size: 1.6rem;
  color: #333;
}
@media (max-width: 1024px) {
  .sidebar_category_list .sidebar_category_link .category_name {
    font-size: 1.4rem;
  }
}
.sidebar_category_list .sidebar_category_link .category_count {
  font-size: 1.4rem;
  color: #999;
}
@media (max-width: 1024px) {
  .sidebar_category_list .sidebar_category_link .category_count {
    font-size: 1.2rem;
  }
}

.sidebar_archive_list .sidebar_archive_item {
  border-bottom: 1px solid #f0f0f0;
}
.sidebar_archive_list .sidebar_archive_item:last-child {
  border-bottom: none;
}
.sidebar_archive_list .sidebar_archive_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0.8rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .sidebar_archive_list .sidebar_archive_link {
    padding: 1rem 0.6rem;
  }
}
.sidebar_archive_list .sidebar_archive_link:hover {
  background-color: #f9f9f9;
  padding-left: 1.6rem;
}
.sidebar_archive_list .sidebar_archive_link .archive_date {
  font-size: 1.6rem;
  color: #333;
}
@media (max-width: 1024px) {
  .sidebar_archive_list .sidebar_archive_link .archive_date {
    font-size: 1.4rem;
  }
}
.sidebar_archive_list .sidebar_archive_link .archive_count {
  font-size: 1.4rem;
  color: #999;
}
@media (max-width: 1024px) {
  .sidebar_archive_list .sidebar_archive_link .archive_count {
    font-size: 1.2rem;
  }
}

.topics_detail_main {
  width: calc(100% - 320px);
}
@media (max-width: 1024px) {
  .topics_detail_main {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.detail_header {
  padding: 3.2rem 0;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 3.2rem;
}
@media (max-width: 1024px) {
  .detail_header {
    padding: 2.4rem 0;
    margin-bottom: 2.4rem;
  }
}
.detail_header .common_news_info {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .detail_header .common_news_info {
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
  }
}
.detail_header .common_news_info .common_news_date {
  font-size: 1.6rem;
  color: #999;
  margin-right: 1.6rem;
}
@media (max-width: 1024px) {
  .detail_header .common_news_info .common_news_date {
    font-size: 1.4rem;
    margin-right: 1.2rem;
  }
}
.detail_header .common_news_info .common_news_cate {
  font-size: 1.4rem;
  padding: 0.4rem 1.2rem;
  background-color: #EB3746;
  color: #fff;
  border-radius: 0.4rem;
  font-weight: bold;
  margin-right: 1.6rem;
}
@media (max-width: 1024px) {
  .detail_header .common_news_info .common_news_cate {
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
  }
}
.detail_header .detail_ttl {
  font-size: 2.8rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .detail_header .detail_ttl {
    font-size: 2rem;
  }
}

.detail_content {
  padding: 0 0 4rem;
}
@media (max-width: 1024px) {
  .detail_content {
    padding: 0 0 3rem;
  }
}
.detail_content .detail_text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2.4rem;
  color: #333;
}
@media (max-width: 1024px) {
  .detail_content .detail_text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.detail_content img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.detail_content .detail_subttl {
  font-size: 2.2rem;
  font-weight: bold;
  color: #E50012;
  margin: 4rem 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E50012;
}
@media (max-width: 1024px) {
  .detail_content .detail_subttl {
    font-size: 1.8rem;
    margin: 3rem 0 1.6rem;
  }
}
.detail_content .detail_subttl:first-child {
  margin-top: 0;
}
.detail_content .detail_list {
  margin-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  .detail_content .detail_list {
    margin-bottom: 2rem;
  }
}
.detail_content .detail_list li {
  font-size: 1.6rem;
  line-height: 1.8;
  padding-left: 2em;
  margin-bottom: 1rem;
  position: relative;
  color: #333;
}
@media (max-width: 1024px) {
  .detail_content .detail_list li {
    font-size: 1.4rem;
  }
}
.detail_content .detail_list li::before {
  content: "・";
  position: absolute;
  left: 0.5em;
  color: #E50012;
  font-weight: bold;
}
.detail_content .detail_list li:last-child {
  margin-bottom: 0;
}
.detail_content .detail_table_wrap {
  margin: 2.4rem 0;
  overflow-x: auto;
}
@media (max-width: 1024px) {
  .detail_content .detail_table_wrap {
    margin: 2rem 0;
  }
}
.detail_content .detail_table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.detail_content .detail_table th,
.detail_content .detail_table td {
  padding: 1.6rem;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .detail_content .detail_table th,
  .detail_content .detail_table td {
    padding: 1.2rem;
    font-size: 1.4rem;
  }
}
.detail_content .detail_table th {
  background-color: #EB3746;
  color: #fff;
  font-weight: bold;
}
.detail_content .detail_table td {
  color: #333;
}
.detail_content .detail_contact {
  background-color: #f9f9f9;
  padding: 2.4rem;
  border-radius: 0.8rem;
  border-left: 4px solid #E50012;
  margin: 3.2rem 0;
}
@media (max-width: 1024px) {
  .detail_content .detail_contact {
    padding: 2rem;
    margin: 2.4rem 0;
  }
}
.detail_content .detail_contact .detail_contact_text {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
}
@media (max-width: 1024px) {
  .detail_content .detail_contact .detail_contact_text {
    font-size: 1.4rem;
  }
}
.detail_content .detail_contact .detail_contact_text strong {
  font-size: 1.8rem;
  color: #E50012;
  display: block;
  margin-bottom: 0.8rem;
}
@media (max-width: 1024px) {
  .detail_content .detail_contact .detail_contact_text strong {
    font-size: 1.6rem;
  }
}
.detail_content .detail_contact .detail_contact_text a {
  color: #E50012;
  font-weight: bold;
  text-decoration: none;
}
.detail_content .detail_contact .detail_contact_text a:hover {
  text-decoration: underline;
}

.detail_nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.2rem 0;
  border-top: 2px solid #e5e5e5;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 3.2rem;
}
@media (max-width: 1024px) {
  .detail_nav {
    flex-direction: column;
    gap: 1.6rem;
    padding: 2.4rem 0;
    margin-bottom: 2.4rem;
  }
}
.detail_nav .detail_nav_prev,
.detail_nav .detail_nav_next {
  flex: 1;
  padding: 1.6rem;
  background-color: #f9f9f9;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .detail_nav .detail_nav_prev,
  .detail_nav .detail_nav_next {
    padding: 1.2rem;
  }
}
.detail_nav .detail_nav_prev:hover,
.detail_nav .detail_nav_next:hover {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.detail_nav .detail_nav_prev i,
.detail_nav .detail_nav_next i {
  font-size: 1.6rem;
  color: #E50012;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .detail_nav .detail_nav_prev i,
  .detail_nav .detail_nav_next i {
    font-size: 1.4rem;
  }
}
.detail_nav .detail_nav_prev .detail_nav_text,
.detail_nav .detail_nav_next .detail_nav_text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.detail_nav .detail_nav_prev .detail_nav_label,
.detail_nav .detail_nav_next .detail_nav_label {
  font-size: 1.2rem;
  color: #999;
}
@media (max-width: 1024px) {
  .detail_nav .detail_nav_prev .detail_nav_label,
  .detail_nav .detail_nav_next .detail_nav_label {
    font-size: 1.1rem;
  }
}
.detail_nav .detail_nav_prev .detail_nav_ttl,
.detail_nav .detail_nav_next .detail_nav_ttl {
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .detail_nav .detail_nav_prev .detail_nav_ttl,
  .detail_nav .detail_nav_next .detail_nav_ttl {
    font-size: 1.3rem;
  }
}
.detail_nav .detail_nav_prev .detail_nav_text {
  align-items: flex-start;
}
.detail_nav .detail_nav_next .detail_nav_text {
  align-items: flex-end;
}

.detail_back_wrap {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .detail_back_wrap {
    margin-bottom: 3rem;
  }
}
.detail_back_wrap .detail_back_btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #ddd;
  color: #666;
  border-radius: 0.8rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .detail_back_wrap .detail_back_btn {
    font-size: 1.4rem;
    padding: 1.4rem 2.4rem;
  }
}
.detail_back_wrap .detail_back_btn i {
  font-size: 1.4rem;
}
.detail_back_wrap .detail_back_btn:hover {
  background-color: #F1F1EF;
  border-color: #999;
}
.detail_back_wrap .detail_back_btn:active {
  transform: translateY(1px);
}

.page_column {
  padding-bottom: 8rem;
}
@media (max-width: 1024px) {
  .page_column {
    padding-bottom: 6rem;
  }
}

.page_column_cont {
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  .page_column_cont {
    padding: 4rem 0;
  }
}

.column_layout {
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .column_layout {
    flex-direction: column;
  }
}

.column_main {
  width: calc(100% - 320px);
}
@media (max-width: 1024px) {
  .column_main {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.column_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 1024px) {
  .column_list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.column_list .column_item {
  display: block;
  background-color: #fff;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.column_list .column_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.column_list .column_item .column_item_img {
  position: relative;
}
.column_list .column_item .column_item_img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .column_list .column_item .column_item_img img {
    height: 180px;
  }
}
.column_list .column_item .column_item_img .column_item_cate {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.4rem 1.2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  border-radius: 0.4rem;
}
@media (max-width: 1024px) {
  .column_list .column_item .column_item_img .column_item_cate {
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
  }
}
.column_list .column_item .column_item_img .column_item_cate.column_item_cate_red {
  background-color: #E50012;
}
.column_list .column_item .column_item_img .column_item_cate.column_item_cate_yellow {
  background-color: #f5a623;
}
.column_list .column_item .column_item_img .column_item_cate.column_item_cate_blue {
  background-color: #4a90e2;
}
.column_list .column_item .column_item_img .column_item_cate.column_item_cate_green {
  background-color: #7ed321;
}
.column_list .column_item .column_item_box {
  padding: 1.6rem;
}
@media (max-width: 1024px) {
  .column_list .column_item .column_item_box {
    padding: 1.2rem;
  }
}
.column_list .column_item .column_item_box .column_item_date {
  font-size: 1.3rem;
  color: #999;
  margin-bottom: 0.8rem;
}
@media (max-width: 1024px) {
  .column_list .column_item .column_item_box .column_item_date {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }
}
.column_list .column_item .column_item_box .column_item_text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.2rem;
}
@media (max-width: 1024px) {
  .column_list .column_item .column_item_box .column_item_text {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.column_list .column_item .column_item_box .column_item_tagarea {
  padding-top: 1.2rem;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 1024px) {
  .column_list .column_item .column_item_box .column_item_tagarea {
    padding-top: 1rem;
  }
}
.column_list .column_item .column_item_box .column_item_tagarea .column_item_tag {
  font-size: 1.2rem;
  color: #999;
}
@media (max-width: 1024px) {
  .column_list .column_item .column_item_box .column_item_tagarea .column_item_tag {
    font-size: 1.1rem;
  }
}
.column_list .column_item .column_item_box .column_item_tagarea .column_item_tag span {
  display: inline-block;
  margin-right: 0.8rem;
}
@media (max-width: 1024px) {
  .column_list .column_item .column_item_box .column_item_tagarea .column_item_tag span {
    margin-right: 0.6rem;
  }
}

.column_pagination {
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .column_pagination {
    margin-top: 4rem;
  }
}
.column_pagination .pagination_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .column_pagination .pagination_list {
    gap: 0.6rem;
  }
}
.column_pagination .pagination_item a,
.column_pagination .pagination_item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  height: 4.4rem;
  padding: 0 1.2rem;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  border-radius: 0.4rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .column_pagination .pagination_item a,
  .column_pagination .pagination_item span {
    min-width: 3.6rem;
    height: 3.6rem;
    padding: 0 1rem;
    font-size: 1.4rem;
  }
}
.column_pagination .pagination_item a:hover,
.column_pagination .pagination_item span:hover {
  background-color: #E50012;
  border-color: #E50012;
  color: #fff;
}
.column_pagination .pagination_item.active a {
  background-color: #E50012;
  border-color: #E50012;
  color: #fff;
  font-weight: bold;
}
.column_pagination .pagination_item.disabled span {
  background-color: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}
.column_pagination .pagination_item.disabled span:hover {
  background-color: #f5f5f5;
  border-color: #ddd;
  color: #ccc;
}
.column_pagination .pagination_item.pagination_prev a i,
.column_pagination .pagination_item.pagination_prev span i, .column_pagination .pagination_item.pagination_next a i,
.column_pagination .pagination_item.pagination_next span i {
  font-size: 1.4rem;
}

.column_sidebar {
  width: 280px;
}
@media (max-width: 1024px) {
  .column_sidebar {
    width: 100%;
  }
}

.column_detail_main {
  width: calc(100% - 320px);
}
@media (max-width: 1024px) {
  .column_detail_main {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.column_detail_header {
  margin-bottom: 3.2rem;
}
@media (max-width: 1024px) {
  .column_detail_header {
    margin-bottom: 2.4rem;
  }
}
.column_detail_header .column_detail_img {
  margin-bottom: 2rem;
  border-radius: 0.8rem;
  overflow: hidden;
  width: 60%;
}
@media (max-width: 1024px) {
  .column_detail_header .column_detail_img {
    margin-bottom: 1.6rem;
  }
}
.column_detail_header .column_detail_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.column_detail_header .column_detail_info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .column_detail_header .column_detail_info {
    margin-bottom: 1.2rem;
  }
}
.column_detail_header .column_detail_info .column_item_date {
  font-size: 1.6rem;
  color: #999;
}
@media (max-width: 1024px) {
  .column_detail_header .column_detail_info .column_item_date {
    font-size: 1.4rem;
  }
}
.column_detail_header .column_detail_info .column_item_cate {
  padding: 0.4rem 1.2rem;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  border-radius: 0.4rem;
}
@media (max-width: 1024px) {
  .column_detail_header .column_detail_info .column_item_cate {
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
  }
}
.column_detail_header .column_detail_info .column_item_cate.column_item_cate_red {
  background-color: #E50012;
}
.column_detail_header .column_detail_info .column_item_cate.column_item_cate_yellow {
  background-color: #f5a623;
}
.column_detail_header .column_detail_info .column_item_cate.column_item_cate_blue {
  background-color: #4a90e2;
}
.column_detail_header .column_detail_info .column_item_cate.column_item_cate_green {
  background-color: #7ed321;
}
.column_detail_header .column_detail_ttl {
  font-size: 2.8rem;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .column_detail_header .column_detail_ttl {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}
.column_detail_header .column_item_tagarea .column_item_tag {
  font-size: 1.3rem;
  color: #999;
}
@media (max-width: 1024px) {
  .column_detail_header .column_item_tagarea .column_item_tag {
    font-size: 1.2rem;
  }
}
.column_detail_header .column_item_tagarea .column_item_tag span {
  display: inline-block;
  margin-right: 1rem;
}
@media (max-width: 1024px) {
  .column_detail_header .column_item_tagarea .column_item_tag span {
    margin-right: 0.8rem;
  }
}

.column_detail_content {
  padding: 3.2rem 0 4rem;
  border-top: 2px solid #e5e5e5;
}
@media (max-width: 1024px) {
  .column_detail_content {
    padding: 2.4rem 0 3rem;
  }
}
.column_detail_content .column_detail_text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 1024px) {
  .column_detail_content .column_detail_text {
    font-size: 1.4rem;
  }
}

.column_detail_nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.2rem 0;
  border-top: 2px solid #e5e5e5;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 3.2rem;
}
@media (max-width: 1024px) {
  .column_detail_nav {
    flex-direction: column;
    gap: 1.6rem;
    padding: 2.4rem 0;
    margin-bottom: 2.4rem;
  }
}
.column_detail_nav .column_nav_prev,
.column_detail_nav .column_nav_next {
  flex: 1;
  padding: 1.6rem;
  background-color: #f9f9f9;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .column_detail_nav .column_nav_prev,
  .column_detail_nav .column_nav_next {
    padding: 1.2rem;
  }
}
.column_detail_nav .column_nav_prev:hover,
.column_detail_nav .column_nav_next:hover {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.column_detail_nav .column_nav_prev i,
.column_detail_nav .column_nav_next i {
  font-size: 1.6rem;
  color: #E50012;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .column_detail_nav .column_nav_prev i,
  .column_detail_nav .column_nav_next i {
    font-size: 1.4rem;
  }
}
.column_detail_nav .column_nav_prev .column_nav_text,
.column_detail_nav .column_nav_next .column_nav_text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.column_detail_nav .column_nav_prev .column_nav_label,
.column_detail_nav .column_nav_next .column_nav_label {
  font-size: 1.2rem;
  color: #999;
}
@media (max-width: 1024px) {
  .column_detail_nav .column_nav_prev .column_nav_label,
  .column_detail_nav .column_nav_next .column_nav_label {
    font-size: 1.1rem;
  }
}
.column_detail_nav .column_nav_prev .column_nav_ttl,
.column_detail_nav .column_nav_next .column_nav_ttl {
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .column_detail_nav .column_nav_prev .column_nav_ttl,
  .column_detail_nav .column_nav_next .column_nav_ttl {
    font-size: 1.3rem;
  }
}
.column_detail_nav .column_nav_prev .column_nav_text {
  align-items: flex-start;
}
.column_detail_nav .column_nav_next .column_nav_text {
  align-items: flex-end;
}

.column_back_wrap {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .column_back_wrap {
    margin-bottom: 3rem;
  }
}
.column_back_wrap .column_back_btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #ddd;
  color: #666;
  border-radius: 0.8rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .column_back_wrap .column_back_btn {
    font-size: 1.4rem;
    padding: 1.4rem 2.4rem;
  }
}
.column_back_wrap .column_back_btn i {
  font-size: 1.4rem;
}
.column_back_wrap .column_back_btn:hover {
  background-color: #F1F1EF;
  border-color: #999;
}
.column_back_wrap .column_back_btn:active {
  transform: translateY(1px);
}

.page_about_numbers {
  padding: 8rem 0;
  background: #f5f5f5;
}
@media (max-width: 1024px) {
  .page_about_numbers {
    padding: 6rem 0;
  }
}
.page_about_numbers .common_ttl_wrap {
  margin-bottom: 6rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_about_numbers .common_ttl_wrap {
    margin-bottom: 4rem;
  }
}
.page_about_numbers .common_ttl_wrap .common_subttl {
  display: inline-block;
}
.page_about_numbers .page_about_numbers_text {
  text-align: center;
  margin-bottom: 4.8rem;
}
.page_about_numbers .page_about_numbers_caption {
  text-align: right;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.numbers_layout_wrap {
  position: relative;
}
@media (max-width: 1024px) {
  .numbers_layout_wrap .numbers_layout {
    position: relative;
    max-height: 60rem;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }
  .numbers_layout_wrap .numbers_layout::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32rem;
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, rgba(245, 245, 245, 0.3) 20%, rgba(245, 245, 245, 0.7) 60%, rgb(245, 245, 245) 100%);
    pointer-events: none;
  }
  .numbers_layout_wrap.is-open .numbers_layout {
    max-height: none;
  }
  .numbers_layout_wrap.is-open .numbers_layout::after {
    display: none;
  }
  .numbers_layout_wrap.is-open .numbers_more_btn_open {
    display: none;
  }
  .numbers_layout_wrap.is-open .numbers_more_btn_close {
    display: block;
    margin: 0 auto;
  }
  .numbers_layout_wrap.is-open .numbers_more_btn_wrap {
    position: initial;
    transform: translateX(0%);
    text-align: center;
    margin-top: 2rem;
  }
  .numbers_layout_wrap .numbers_more_btn_wrap {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  .numbers_layout_wrap .numbers_more_btn {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    background-color: #EB3746;
    width: 20.7rem;
    padding: 0.8rem 0;
    border-radius: 6.4rem;
    border: none;
  }
  .numbers_layout_wrap .numbers_more_btn_close {
    display: none;
  }
}

.numbers_layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .numbers_layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.numbers_column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.numbers_box {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) {
  .numbers_box {
    padding: 2.5rem 2rem;
  }
}

.numbers_box_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #E50012;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .numbers_box_ttl {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.numbers_box_ttl .text_small {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .numbers_box_ttl .text_small {
    font-size: 1.4rem;
  }
}

.gender_ratio {
  text-align: center;
}

.gender_icons {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .gender_icons {
    gap: 3rem;
  }
}

.gender_icon {
  text-align: center;
  width: 9.5rem;
}

.person_icon {
  width: 80px;
  height: 160px;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .person_icon {
    width: 60px;
    height: 120px;
  }
}

.gender_label {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1;
  margin-top: 1.2em;
}
@media (max-width: 1024px) {
  .gender_label {
    font-size: 1.6rem;
  }
}

.gender_female .gender_label {
  color: #EB3746;
}

.gender_male .gender_label {
  color: #1779AE;
}

.gender_value {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1024px) {
  .gender_value {
    font-size: 2.6rem;
  }
}

.gender_unit {
  font-size: 1.8rem;
  margin-left: 0.3rem;
}
@media (max-width: 1024px) {
  .gender_unit {
    font-size: 1.5rem;
  }
}

.gender_note {
  font-size: 1.3rem;
  margin-top: 1rem;
}

.donut_chart_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.donut_svg_wrap {
  position: relative;
}

.donut_svg {
  width: 100%;
  height: 100%;
}

.donut_percent_text {
  font-size: 1.8rem;
  font-weight: bold;
  fill: #333;
}
@media (max-width: 1024px) {
  .donut_percent_text {
    font-size: 1.6rem;
  }
}

.donut_labels {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.5rem;
}
@media (max-width: 1024px) {
  .donut_labels {
    gap: 0.6rem 1rem;
  }
}

.donut_label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .donut_label {
    font-size: 1.4rem;
    gap: 0.6rem;
  }
}

.donut_dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .donut_dot {
    width: 14px;
    height: 14px;
  }
}

.donut_label_driver .donut_dot {
  background-color: #e74c3c;
}

.donut_label_general .donut_dot {
  background-color: #ff9966;
}

.donut_label_guide .donut_dot {
  background-color: #66bb6a;
}

.donut_label_other .donut_dot {
  background-color: #9966ff;
}

.donut_text {
  flex: 1;
}

.childcare_wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.childcare_items {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .childcare_items {
    gap: 2rem;
  }
}

.childcare_item {
  text-align: center;
}

.childcare_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.childcare_icon img {
  height: 12rem;
  width: auto;
}

.childcare_label {
  font-size: 1.6rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .childcare_label {
    font-size: 1.4rem;
  }
}
.childcare_label.childcare_label_kids {
  color: #E50012;
}
.childcare_label.childcare_label_kaigo {
  color: #1779AE;
}

.childcare_value {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 1024px) {
  .childcare_value {
    font-size: 2.6rem;
  }
}

.childcare_unit {
  font-size: 1.8rem;
  margin-left: 0.3rem;
}
@media (max-width: 1024px) {
  .childcare_unit {
    font-size: 1.5rem;
  }
}

.childcare_note {
  text-align: center;
  line-height: 1.6;
}

.age_range {
  display: flex;
  justify-content: center;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .age_range {
    gap: 3rem;
  }
}

.age_person {
  text-align: center;
}

.age_person_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.age_person_icon img {
  height: 11.4rem;
  width: auto;
}

.age_label {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .age_label {
    font-size: 1.4rem;
  }
}
.age_label.age_label_18 {
  color: #25AB82;
}
.age_label.age_label_59 {
  color: #9E40D9;
}

.age_value {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1024px) {
  .age_value {
    font-size: 2.6rem;
  }
}

.age_unit {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 1024px) {
  .age_unit {
    font-size: 1.6rem;
  }
}

.big_number_wrap {
  text-align: center;
}

.big_person_icon {
  margin: 0 auto 2rem;
}
.big_person_icon img {
  height: 12.8rem;
  width: auto;
}

.big_number_value {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1024px) {
  .big_number_value {
    font-size: 2.6rem;
  }
}

.big_number_unit {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}

.job_tenure {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .job_tenure {
    flex-direction: column;
    align-items: center;
  }
}

.job_tenure_item {
  text-align: center;
  flex: 1;
}

.job_tenure_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.job_tenure_icon img {
  height: 11.5rem;
  width: auto;
}

.job_tenure_label {
  font-weight: bold;
}
@media (max-width: 1024px) {
  .job_tenure_label {
    font-size: 1.3rem;
  }
}
.job_tenure_label.job_tenure_label_driver {
  color: #9E40D9;
}
.job_tenure_label.job_tenure_label_general {
  color: #25AB82;
}
.job_tenure_label.job_tenure_label_guide {
  color: #FF6017;
}

.job_tenure_value {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1024px) {
  .job_tenure_value {
    font-size: 2.6rem;
  }
}

.job_tenure_unit {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 1024px) {
  .job_tenure_unit {
    font-size: 1.4rem;
  }
}

.license_chart_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.license_labels {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.license_label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 1024px) {
  .license_label {
    font-size: 1.3rem;
  }
}

.license_dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .license_dot {
    width: 12px;
    height: 12px;
  }
}

.license_percent {
  margin-left: auto;
  font-weight: bold;
  color: #E50012;
}

.license_note {
  text-align: center;
  margin-top: 0.5rem;
}
@media (max-width: 1024px) {
  .license_note {
    font-size: 1.3rem;
  }
}

.license_note_sub {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  margin-top: 3rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .license_note_sub {
    font-size: 1.6rem;
  }
}

.age_chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.age_main {
  font-size: 3.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 1024px) {
  .age_main {
    font-size: 2.6rem;
  }
}

.age_main_unit {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 1024px) {
  .age_main_unit {
    font-size: 1.3rem;
  }
}

.age_bar_value {
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (max-width: 1024px) {
  .age_bar_value {
    font-size: 1.1rem;
  }
}

.age_bar_label {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-top: 0.8rem;
}
@media (max-width: 1024px) {
  .age_bar_label {
    font-size: 1.2rem;
  }
}

.page_about_support {
  text-align: center;
  padding: 10.4rem 0;
}
@media (max-width: 1024px) {
  .page_about_support {
    text-align: left;
    padding: 6.4rem 0;
  }
}
.page_about_support .common_subttl {
  display: inline-block;
}
.page_about_support .about_support_text {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .page_about_support .about_support_text {
    font-size: 1.6rem;
  }
}

.page_about_message {
  padding: 14rem 0;
  background-color: #F1F1EF;
}
@media (max-width: 1024px) {
  .page_about_message {
    padding: 8rem 0 4rem;
  }
}
.page_about_message .about_message_group {
  margin-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  .page_about_message .about_message_group {
    margin-bottom: 1rem;
  }
}
@media (max-width: 1024px) {
  .page_about_message .about_message_row {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
}
.page_about_message .about_message_row .about_message_textarea {
  width: 66%;
}
@media (max-width: 1024px) {
  .page_about_message .about_message_row .about_message_textarea {
    width: 100%;
  }
}
.page_about_message .about_message_row .about_message_img {
  width: 32%;
}
@media (max-width: 1024px) {
  .page_about_message .about_message_row .about_message_img {
    width: 100%;
    margin-bottom: 2.4rem;
    margin-top: 1.6rem;
  }
}
.page_about_message .about_message_row .about_message_img img {
  border-radius: 1.6rem;
  margin-bottom: 0.8rem;
}
.page_about_message .about_message_row .about_message_name {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_about_message .about_message_row .about_message_name {
    font-size: 1.6rem;
  }
}
.page_about_message .about_message_ttl {
  font-size: 2.4rem;
  color: #EB3746;
  margin-bottom: 0.8rem;
}
.page_about_message .about_message_group_more {
  position: relative;
}
@media (max-width: 1024px) {
  .page_about_message .about_message_group_more .about_message_group {
    position: relative;
  }
  .page_about_message .about_message_group_more .about_message_group:not(:first-child) {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  }
  .page_about_message .about_message_group_more .about_message_group:first-child .about_message_textarea {
    position: relative;
  }
  .page_about_message .about_message_group_more .about_message_group:first-child .about_message_textarea::after {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0;
    right: 0;
    height: 32rem;
    background: linear-gradient(to bottom, rgba(241, 241, 239, 0) 0%, rgba(241, 241, 239, 0.3) 20%, rgba(241, 241, 239, 0.7) 60%, rgb(241, 241, 239) 100%);
    pointer-events: none;
  }
  .page_about_message .about_message_group_more.is-open .about_message_group {
    max-height: none;
    opacity: 1;
  }
  .page_about_message .about_message_group_more.is-open .about_message_group:first-child .about_message_textarea::after {
    display: none;
  }
  .page_about_message .about_message_group_more.is-open .about_message_more_btn_open {
    display: none;
  }
  .page_about_message .about_message_group_more.is-open .about_message_more_btn_close {
    display: block;
    margin: 0 auto;
  }
  .page_about_message .about_message_group_more.is-open .about_message_more_btn_wrap {
    position: initial;
    transform: translateX(0%);
    text-align: center;
    margin-top: 2rem;
  }
  .page_about_message .about_message_group_more .about_message_more_btn_close {
    display: none;
  }
}
.page_about_message .about_message_group_more .about_message_more_btn_wrap {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.page_about_message .about_message_group_more .about_message_more_btn {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  background-color: #EB3746;
  width: 20.7rem;
  padding: 0.8rem 0;
  border-radius: 6.4rem;
  border: none;
}

.page_about_reason {
  background-color: #E50012;
  padding: 13rem 0;
  color: #fff;
}
@media (max-width: 1024px) {
  .page_about_reason {
    padding: 8rem 0;
  }
}
.page_about_reason .common_ttl_wrap {
  text-align: center;
}
.page_about_reason .common_ttl_wrap .common_subttl {
  color: #fff;
  display: inline;
}
.page_about_reason .common_ttl_wrap .common_subttl::before {
  background: url(../images/icon_common_ttl_white.png) center/cover no-repeat;
}
.page_about_reason .common_ttl_wrap .common_ttl {
  color: #fff;
}
.page_about_reason .page_about_reason_text {
  text-align: center;
  margin-bottom: 4.8rem;
}
@media (max-width: 1024px) {
  .page_about_reason .page_about_reason_text {
    margin-bottom: 3.2rem;
  }
}
.page_about_reason .page_about_reason_cont .page_about_reason_item {
  width: 46%;
  margin-bottom: 6.4rem;
}
@media (max-width: 1024px) {
  .page_about_reason .page_about_reason_cont .page_about_reason_item {
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .page_about_reason .page_about_reason_cont .page_about_reason_item:last-child {
    margin-bottom: 0;
  }
}

.page_about_business_ttl {
  text-align: center;
  margin-bottom: 3.2rem;
  color: #EB3746;
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
  .page_about_business_ttl {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}

.page_about_business {
  padding: 14rem 0;
}
@media (max-width: 1024px) {
  .page_about_business {
    padding: 6.4rem 0;
  }
}
.page_about_business .common_ttl_wrap {
  margin-bottom: 6rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_about_business .common_ttl_wrap {
    margin-bottom: 3.2rem;
  }
}
.page_about_business .common_ttl_wrap .common_subttl {
  display: inline-block;
}
.page_about_business .page_about_business_text {
  margin-bottom: 4.8rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_text {
    margin-bottom: 3.2rem;
  }
}
.page_about_business .page_about_business_cont .page_about_business_group {
  margin-bottom: 6.4rem;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_cont .page_about_business_group {
    margin-bottom: 3.2rem;
  }
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 1.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_item {
    padding: 2rem;
  }
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_1col .page_about_business_item img {
  width: 40%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_1col .page_about_business_item img {
    width: 100%;
  }
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_2col .page_about_business_item {
  width: 46%;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_2col .page_about_business_item {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col {
  margin-bottom: 6.4rem;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col {
    margin-bottom: 3.2rem;
  }
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col::after {
  content: "";
  width: 30%;
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col .page_about_business_item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 1.6rem;
  padding: 2.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 30%;
  margin-bottom: 6.4rem;
  transition: box-shadow 0.3s ease;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col .page_about_business_item {
    margin: 0 1.2rem;
    padding: 2rem;
  }
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col .page_about_business_item img {
  margin-bottom: 2.4rem;
  border-radius: 0.8rem;
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col .page_about_business_item .page_about_business_item_name {
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col .page_about_business_item .page_about_business_item_name {
    font-size: 1.6rem;
  }
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col .page_about_business_item .page_about_business_item_text {
  text-align: center;
  margin-bottom: 1.6rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col .page_about_business_item .page_about_business_item_text {
    font-size: 1.3rem;
  }
}
.page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col .page_about_business_item .page_about_business_item_btn {
  background-color: #FFD8DA;
  width: 20.7rem;
  text-align: center;
  font-weight: bold;
  padding: 0.8rem;
  border-radius: 6.4rem;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide::after {
    display: none;
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .page_about_business_item {
    width: 100%;
    margin-bottom: 0;
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .slick-arrow {
    z-index: 10;
    width: 4rem;
    height: 4rem;
    background-color: #8E8E93;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 22%;
    transform: translateY(-50%);
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .slick-arrow::before {
    display: none;
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .slick-arrow::after {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .slick-arrow:hover {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .slick-arrow:hover::after {
    color: #fff;
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .slick-prev {
    left: -1rem;
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .slick-prev::after {
    content: "\f053";
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .slick-next {
    right: -1rem;
  }
  .page_about_business .page_about_business_cont .page_about_business_group .page_about_business_row_3col.page_about_business_row_3col_slide .slick-next::after {
    content: "\f054";
  }
}
.page_about_business .page_about_business_table {
  width: 100rem;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .page_about_business .page_about_business_table {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .page_about_business .page_about_business_table {
    padding: 0 5%;
    width: 100%;
  }
  .page_about_business .page_about_business_table img {
    width: 79rem;
    padding-left: 7rem;
  }
}

.page_about_attitude {
  padding: 12rem 0 5.6rem;
  background-color: #F1F1EF;
}
@media (max-width: 1024px) {
  .page_about_attitude {
    padding: 6.4rem 0 1rem;
  }
  .page_about_attitude .inner {
    width: 100%;
  }
  .page_about_attitude .page_about_attitude_group {
    width: 90%;
    margin: 0 auto 4rem;
  }
  .page_about_attitude .page_about_attitude_group:nth-child(3) {
    width: 100%;
  }
  .page_about_attitude .page_about_attitude_group:nth-child(3) .page_about_attitude_ttl,
  .page_about_attitude .page_about_attitude_group:nth-child(3) .page_about_attitude_text,
  .page_about_attitude .page_about_attitude_group:nth-child(3) .page_about_attitude_row_2col {
    width: 90%;
    margin: 0 auto;
  }
}
.page_about_attitude .common_ttl_wrap {
  margin-bottom: 6rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_about_attitude .common_ttl_wrap {
    margin-bottom: 4rem;
  }
}
.page_about_attitude .common_ttl_wrap .common_subttl {
  display: inline-block;
}
.page_about_attitude .page_about_attitude_text {
  margin-bottom: 6.4rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_text {
    margin-bottom: 3.2rem;
  }
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group {
  margin-bottom: 4.8rem;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group {
    margin-bottom: 4rem;
  }
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_ttl {
  font-size: 2.4rem;
  color: #EB3746;
  margin-bottom: 1.6rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_ttl {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_text {
  margin-bottom: 3.2rem;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_text {
    margin-bottom: 2.4rem;
  }
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col .page_about_attitude_item {
  width: 46%;
  margin-bottom: 6.4rem;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col .page_about_attitude_item {
    margin-bottom: 2.4rem;
    width: 100%;
  }
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col .page_about_attitude_item img {
  height: 27.2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col .page_about_attitude_item img {
    height: 16.4rem;
  }
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .page_about_attitude_item {
    width: 100%;
    margin: 0 1.2rem;
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .slick-arrow {
    z-index: 10;
    width: 4rem;
    height: 4rem;
    background-color: #8E8E93;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 22%;
    transform: translateY(-50%);
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .slick-arrow::before {
    display: none;
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .slick-arrow::after {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .slick-arrow:hover {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .slick-arrow:hover::after {
    color: #EB3746;
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .slick-prev {
    left: -1rem;
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .slick-prev::after {
    content: "\f053";
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .slick-next {
    right: -1rem;
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_2col.page_about_attitude_row_2col_slide .slick-next::after {
    content: "\f054";
  }
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_3col {
  margin-bottom: 6.4rem;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_3col {
    margin-bottom: 3.2rem;
  }
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_3col .page_about_attitude_item {
  width: 32%;
  border-radius: 1.6rem;
  overflow: hidden;
  margin-bottom: 3.2rem;
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_3col .page_about_attitude_item img {
  height: 28rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_3col .page_about_attitude_item img {
    height: 11rem;
  }
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_3col.page_about_attitude_row_3col_slide {
    display: block;
  }
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row_3col.page_about_attitude_row_3col_slide .page_about_attitude_item {
    width: 100%;
    margin: 0 1.2rem;
  }
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row .page_about_attitude_textarea {
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row .page_about_attitude_textarea {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
.page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row .page_about_attitude_img {
  width: 31%;
}
@media (max-width: 1024px) {
  .page_about_attitude .page_about_attitude_cont .page_about_attitude_group .page_about_attitude_row .page_about_attitude_img {
    width: 90%;
    margin: 0 auto;
  }
}

.page_about_business_table_wrap {
  position: relative;
}

.page_about_business_table_03 {
  width: 6.3rem;
  position: absolute;
  top: 10.1rem;
  left: 1rem;
}

.page_beauty .page_beauty_maemuki {
  text-align: center;
  padding: 10.4rem 0;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_maemuki {
    text-align: left;
    padding: 6.4rem 0;
  }
}
.page_beauty .page_beauty_maemuki .common_subttl {
  display: inline-block;
}
.page_beauty .page_beauty_maemuki .beauty_maemuki_text {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_maemuki .beauty_maemuki_text {
    font-size: 1.6rem;
  }
}
.page_beauty .page_beauty_area {
  padding: 13rem 0;
  background-color: #F1F1EF;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_area {
    padding: 6.4rem 0;
  }
}
.page_beauty .page_beauty_area .common_ttl_wrap {
  text-align: center;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_area .common_ttl_wrap {
    text-align: left;
  }
}
.page_beauty .page_beauty_area .common_subttl {
  display: inline-block;
}
.page_beauty .page_beauty_area .beauty_area_text {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 4.8rem;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_area .beauty_area_text {
    font-size: 1.6rem;
    margin-bottom: 3.2rem;
    text-align: left;
  }
}
.page_beauty .page_beauty_area .beauty_area_cont .beauty_area_item {
  width: 46%;
  margin-bottom: 6.4rem;
  border-radius: 1.6rem;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s;
  position: relative;
}
.page_beauty .page_beauty_area .beauty_area_cont .beauty_area_item::before, .page_beauty .page_beauty_area .beauty_area_cont .beauty_area_item::after {
  content: none;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_area .beauty_area_cont .beauty_area_item {
    width: 100%;
    margin-bottom: 3.2rem;
  }
}
.page_beauty .page_beauty_area .beauty_area_cont .beauty_area_item .beauty_area_item_ttl {
  color: #EB3746;
  padding: 1rem 0 0;
  text-align: center;
}
.page_beauty .page_beauty_area .beauty_area_cont .beauty_area_item p {
  padding: 1rem;
}
.page_beauty .page_beauty_area .beauty_area_cont .beauty_area_item img {
  height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_area .beauty_area_cont .beauty_area_item img {
    height: 20rem;
  }
}
.page_beauty .page_beauty_living {
  padding: 13rem 0;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living {
    padding: 6.4rem 0;
  }
}
.page_beauty .page_beauty_living .beauty_living_ttlarea {
  text-align: center;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_ttlarea {
    text-align: left;
  }
}
.page_beauty .page_beauty_living .common_ttl_wrap {
  text-align: center;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .common_ttl_wrap {
    text-align: left;
  }
}
.page_beauty .page_beauty_living .common_subttl {
  display: inline-block;
}
.page_beauty .page_beauty_living .beauty_living_text {
  font-size: 1.8rem;
  margin-bottom: 4.8rem;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_text {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group {
    margin-bottom: 2rem;
  }
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group:last-child .beauty_living_ttl {
    text-align: center;
  }
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group:last-child .beauty_living_row_3col {
    margin-bottom: 0;
  }
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group:last-child .beauty_living_row_3col .beauty_living_item {
    width: 100%;
    margin-bottom: 3.2rem;
  }
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group:last-child .beauty_living_row_3col .beauty_living_item:last-child {
    margin-bottom: 0;
  }
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group:last-child .beauty_living_text {
    text-align: center;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_ttl {
  font-size: 2.4rem;
  color: #EB3746;
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_ttl {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_01 {
  margin-bottom: 4.8rem;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_01 {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_01 .beauty_living_textarea {
  width: 63%;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_01 .beauty_living_textarea {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_01 .beauty_living_img {
  width: 35%;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_01 .beauty_living_img {
    width: 100%;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table {
  margin-bottom: 6.4rem;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table {
    margin-bottom: 2rem;
    width: 110%;
    margin-left: -5%;
    padding: 0 5%;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table {
    width: 68rem;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table tr {
  display: flex;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table th, .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table td {
  text-align: center;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table th {
  width: 30%;
  background-color: #EB3746;
  color: #fff;
  margin-right: 1.3rem;
  margin-bottom: 1.2rem;
  display: block;
  border-radius: 1.2rem 1.2rem 0 0;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table th {
    width: 27%;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table th:nth-child(1) {
  width: 10%;
  background-color: transparent;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table th:nth-child(1) {
    width: 19%;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table th:last-child {
  margin-right: 0;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table th p {
  padding: 0.6rem 0;
  text-align: center;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table td {
  width: 30%;
  background-color: #F1F1EF;
  display: block;
  margin-bottom: 1.2rem;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table td {
    width: 27%;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table td:nth-child(1) {
  width: 10%;
  background-color: #8E8E93;
  color: #fff;
  font-weight: bold;
  margin-right: 1.2rem;
  font-size: 1.8rem;
  line-height: 1.2;
  border-radius: 1.2rem 0 0 1.2rem;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table td:nth-child(1) {
    width: 19%;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table td:last-child p {
  border-right: none;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_table table td p {
  border-right: 0.1rem solid #333;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col {
  margin-bottom: 4.8rem;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col.beauty_living_row_3col_01 {
    width: 110%;
    margin-left: -5%;
    margin-top: 2rem;
  }
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col.beauty_living_row_3col_01.beauty_living_row_3col_01_slide {
    display: block;
    margin-bottom: 2rem;
  }
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col.beauty_living_row_3col_01.beauty_living_row_3col_01_slide .beauty_living_img {
    width: 100%;
    margin: 0 1.2rem;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col .beauty_living_img {
  width: 32%;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col .beauty_living_img img {
  border-radius: 1.6rem;
  height: 26rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col .beauty_living_img img {
    height: 12rem;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col .beauty_living_item {
  width: 32%;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col .beauty_living_item img {
  border-radius: 1.6rem;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_3col .beauty_living_item .beauty_living_item_text {
  margin-top: 1.6rem;
  text-align: center;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_02 {
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_02 {
    flex-direction: column-reverse;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_02 .beauty_living_textarea {
  width: 48%;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_02 .beauty_living_textarea {
    width: 100%;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_02 .beauty_living_textarea .beauty_living_item .beauty_living_item_ttl {
  font-size: 1.8rem;
  color: #EB3746;
  margin-top: 1.6rem;
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_02 .beauty_living_img {
  width: 50%;
}
@media (max-width: 1024px) {
  .page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_02 .beauty_living_img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.page_beauty .page_beauty_living .beauty_living_cont .beauty_living_group .beauty_living_row_02 .beauty_living_img img {
  width: 48%;
  border-radius: 1.6rem;
}

.page_contact {
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  .page_contact {
    padding: 4rem 0;
  }
}/*# sourceMappingURL=style.css.map */