@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

:where(html) {
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

.row {
  width: 100%;
  position: relative;
}
.row h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3rem;
}
.row div.alphabet_catch {
  font-size: 2rem;
  font-weight: bold;
  color: #ea6666;
  letter-spacing: 1px;
}

h2.row_outer {
  text-align: center;
  margin: 60px auto 0 auto;
  padding: 120px 0;
  font-size: 2.5rem;
  color: #ea6666;
  background: #e6e6e6;
}
h2.row_outer a {
  text-decoration: none;
}
h2.row_outer a:hover {
  color: #505050;
  text-decoration: underline;
}

.row_top_wide {
  width: 80%;
  margin: 60px auto auto auto;
}
.row_top_wide h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #ea6666;
}

.contact_row {
  width: 100%;
  margin-top: 0;
  padding: 0 0;
  background: #f5f4f2;
}

.contact_content {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1.3fr;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
}

.contact_address {
  position: relative;
}

.address_inner {
  width: 100%;
  padding: 40px 10px 40px 60px;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.address_inner h3 {
  font-size: 1.2rem;
  font-weight: bold;
}
.address_inner p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: bold;
}

.footer_content {
  width: 100%;
  padding: 40px 60px;
}
.footer_content h2 {
  width: 240px;
  margin: 0 auto 40px auto;
}
.footer_content h2 a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_content ul {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_content li {
  text-align: center;
  border-right: 1px solid #555;
}
.footer_content li a {
  display: block;
  padding: 2px 20px;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  color: #555;
}
.footer_content li a:hover {
  color: #000;
}
.footer_content li a::after {
  display: block;
  content: "";
  width: 60px;
  height: 1px;
  background: #ea6666;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer_content li a:hover::after {
  bottom: -8px;
  opacity: 1;
}
.footer_content li:last-child {
  border-right: none;
}
.footer_content p {
  padding: 40px 0;
  text-align: center;
}

.link_banner ul {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.link_banner li {
  width: 150px;
  margin: auto;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 15px;
  bottom: 30px;
  background: #fff;
  border: solid 3px #d70146;
  border-radius: 50%;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 777;
  cursor: pointer;
}

.pagetop:hover {
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pagetop_arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #d70146;
  border-right: 3px solid #d70146;
  -webkit-transform: translateY(20%) rotate(-45deg);
          transform: translateY(20%) rotate(-45deg);
}

body {
  overflow-x: hidden;
}

.recruit_header,
.recruit_header_body {
  width: 100%;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 777;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 1px solid #b4b4b4;
}
.recruit_header h1.main_logo,
.recruit_header h1.main_logo_top,
.recruit_header_body h1.main_logo,
.recruit_header_body h1.main_logo_top {
  width: 35%;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: bold;
  color: #555;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.recruit_header h1.main_logo a,
.recruit_header h1.main_logo_top a,
.recruit_header_body h1.main_logo a,
.recruit_header_body h1.main_logo_top a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: auto;
  text-decoration: none;
}
.recruit_header h1.main_logo a img,
.recruit_header h1.main_logo_top a img,
.recruit_header_body h1.main_logo a img,
.recruit_header_body h1.main_logo_top a img {
  width: 160px;
  margin-right: 15px;
}
.recruit_header h1.main_logo a span,
.recruit_header h1.main_logo_top a span,
.recruit_header_body h1.main_logo a span,
.recruit_header_body h1.main_logo_top a span {
  display: block;
  width: auto;
}
.recruit_header nav,
.recruit_header_body nav {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.recruit_header ul.head_button,
.recruit_header_body ul.head_button {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.recruit_header ul.head_button li,
.recruit_header_body ul.head_button li {
  width: 180px;
  margin-right: 10px;
}
.recruit_header ul.head_button li a,
.recruit_header ul.head_button li span,
.recruit_header_body ul.head_button li a,
.recruit_header_body ul.head_button li span {
  display: block;
  width: 100%;
  padding: 10px 5px;
  background: #ccc;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
}
.recruit_header ul.head_button li i,
.recruit_header_body ul.head_button li i {
  display: inline-block;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-right: 1px;
}
.recruit_header ul.head_button li a.intern_btn,
.recruit_header_body ul.head_button li a.intern_btn {
  background: -webkit-gradient(linear, left top, right top, from(#ffa852), to(#fd7e00));
  background: linear-gradient(90deg, #ffa852, #fd7e00);
}
.recruit_header ul.head_button li span.entry_btn,
.recruit_header_body ul.head_button li span.entry_btn {
  background: -webkit-gradient(linear, left top, right top, from(#ffe52f), to(#ffc314));
  background: linear-gradient(90deg, #ffe52f, #ffc314);
}
.recruit_header ul.head_button li span.entry_btn:hover,
.recruit_header_body ul.head_button li span.entry_btn:hover {
  background: #ea6666;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.recruit_header ul.head_button li a.mypage_btn,
.recruit_header_body ul.head_button li a.mypage_btn {
  background: -webkit-gradient(linear, left top, right top, from(rgb(22, 135, 237)), to(rgb(0, 80, 159)));
  background: linear-gradient(90deg, rgb(22, 135, 237), rgb(0, 80, 159));
  color: #fff;
}
.recruit_header ul.head_button li a:hover,
.recruit_header_body ul.head_button li a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ea6666;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.recruit_header ul.head_button li a.dropdown_nav,
.recruit_header_body ul.head_button li a.dropdown_nav {
  position: relative;
}
.recruit_header ul.sub_btn,
.recruit_header_body ul.sub_btn {
  display: none;
  width: auto;
  height: auto;
  position: absolute;
}
.recruit_header ul.sub_btn li,
.recruit_header_body ul.sub_btn li {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
.recruit_header ul.sub_btn li a,
.recruit_header_body ul.sub_btn li a {
  border-radius: 0;
  font-size: 0.8rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffe52f), to(#ffc314));
  background: linear-gradient(90deg, #ffe52f, #ffc314);
}
.recruit_header button.hamburger_bars,
.recruit_header_body button.hamburger_bars {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #ea6666;
  position: relative;
  z-index: 333;
  overflow: hidden;
}
.recruit_header button.hamburger_bars i,
.recruit_header_body button.hamburger_bars i {
  display: block;
  -webkit-transform: scale(2);
          transform: scale(2);
  color: #fff;
}

.recruit_header {
  border-bottom-color: #fff;
}

.recruiting_nav_container {
  width: 100%;
  position: fixed;
  top: 97px;
  z-index: 666;
}

.recruit_nav_btn {
  width: 160px;
  margin: 0 auto;
  padding: 4px 0 3px 0;
  background: white;
  border-radius: 0 0 10px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid #b4b4b4;
  border-top-color: #fff;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
}
.recruit_nav_btn i {
  display: block;
  width: 160px;
  -webkit-transform: scale(2);
          transform: scale(2);
}
.recruit_nav_btn span {
  display: block;
}

.top_nav_btn {
  background: rgba(255, 255, 255, 0.9);
  border-color: #fff;
}

.recruiting_nav {
  display: none;
  width: 100%;
  background: #e0e0e0;
}
.recruiting_nav ul {
  width: 95%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruiting_nav li {
  width: auto;
}
.recruiting_nav li a {
  display: block;
  width: 100%;
  padding: 12px 15px 10px 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.recruiting_nav li a:hover {
  background: #ea6666;
  color: #fff;
}

.site_nav {
  width: 35%;
  height: 100vh;
  padding: 60px;
  position: absolute;
  top: 0;
  right: -40%;
  background: #e0e0e0;
  z-index: 222;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow-y: auto;
}
.site_nav ul.nav_inner {
  width: 100%;
  margin-top: 40px;
  border-bottom: 1px solid #444;
}
.site_nav ul.nav_inner li {
  width: 100%;
  border-top: 1px solid #444;
}
.site_nav ul.nav_inner li a {
  display: block;
  width: 100%;
  padding: 10px 5px;
  text-decoration: none;
  color: #000;
  font-size: 0.8rem;
  line-height: 1.2rem;
}
.site_nav ul.nav_inner li a:hover {
  background: rgba(234, 102, 102, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.site_nav ul.nav_inner li div {
  font-weight: bold;
  font-size: 1rem;
  color: #555;
}
.site_nav ul.nav_inner li.parallel_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.site_nav ul.nav_inner li.parallel_link a {
  width: 50%;
}
.site_nav ul.nav_inner li.parallel_link a:nth-child(2) {
  padding-left: 10px;
}
.site_nav ul.sns_link_recruit {
  width: 50%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site_nav ul.sns_link_recruit li {
  width: 22%;
}

.active_nav {
  display: block;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.toppage_logo {
  background: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.toppage_logo h1.top_main_logo {
  color: #fff;
}

.top_img_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: 444;
}
.top_img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.top_img_box p {
  position: absolute;
  top: 155px;
  left: 140px;
  z-index: 555;
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}

.rec_information_box {
  width: 100%;
  margin-top: 78vh;
  position: relative;
  z-index: 555;
}

.rec_info_wrap {
  width: 75%;
  margin: auto;
  padding: 40px 50px;
  background: #3794ff;
  color: #fff;
}
.rec_info_wrap h2 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.rec_info_wrap ul {
  width: 100%;
}
.rec_info_wrap li {
  width: 100%;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rec_info_wrap li div.rec_info_date {
  width: 110px;
  padding-left: 5px;
  font-size: 0.9rem;
}
.rec_info_wrap li div.rec_info_ctg {
  width: 120px;
  margin-right: 40px;
}
.rec_info_wrap li div.rec_info_ctg a {
  display: block;
  width: 100%;
  padding: 3px 5px;
  background: #fff;
  color: #505050;
  font-size: 0.8rem;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}
.rec_info_wrap li h3.rec_info_title {
  width: calc(100% - 240px);
  font-size: 1rem;
  font-weight: normal;
}
.rec_info_wrap li h3.rec_info_title a {
  text-decoration: none;
}
.rec_info_wrap li h3.rec_info_title a:hover {
  text-decoration: underline;
}

.rec_row {
  width: 100%;
}
.rec_row p,
.rec_row li,
.rec_row dt,
.rec_row dd {
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
}

.rec_narrow_row {
  width: 75%;
  margin: auto;
}

.gray_row {
  background: #f5f4f2;
}

.rec_message_col {
  padding: 80px 0 0 0;
}
.rec_message_col h2 {
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #ea6666;
}
.rec_message_col h2.movie_linup_title {
  margin-bottom: -20px;
  padding-bottom: 5px;
  margin-top: 60px;
  font-size: 1.8rem;
  text-align: center;
  color: #555;
  border-bottom: 1px solid #999;
}
.rec_message_col p {
  line-height: 1.8rem;
  margin-top: 15px;
}

.rec_philosophy_col {
  width: 100%;
  height: auto;
  padding: 40px 0;
  background-image: url(../img-recruit/philosophy_photo.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}

.rec_philo_left {
  width: 56%;
  padding: 30px 0 30px 12.5%;
  background: #fff;
}
.rec_philo_left h2 {
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rec_philo_left h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin-right: 7px;
  background: #000;
}
.rec_philo_left h3 {
  margin-bottom: 40px;
  font-size: 1.7rem;
  line-height: 2.5rem;
  font-weight: bold;
  color: #ea6666;
}
.rec_philo_left p {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: bold;
  text-align: center;
}

.rec_more_btn {
  width: auto;
  margin-top: 30px;
}
.rec_more_btn a {
  display: block;
  width: 260px;
  margin: auto;
  padding: 12px 5px;
  text-align: center;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  border: 1px solid #444;
  border-radius: 5px;
  background: #fff;
}
.rec_more_btn a i {
  display: inline-block;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  margin-right: 3px;
}
.rec_more_btn a:hover {
  background: #ea6666;
  border-color: #ea6666;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.margin_top_add {
  margin-top: 50px;
}

.rec_interview_col {
  margin-top: 40px;
}
.rec_interview_col h2 {
  font-size: 2rem;
}
.rec_interview_col h2 span {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ea6666;
}

.interview_list {
  width: 100%;
  margin-top: 40px;
}
.interview_list ul {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.interview_list ul li h3 {
  width: 100%;
  height: 5em;
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 2rem;
}
.interview_list ul li a img:hover {
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.interview_list ul li .read_more {
  width: 100%;
  margin-top: 15px;
}
.interview_list ul li .read_more p {
  margin-top: 0;
}
.interview_list ul li .read_more p a {
  display: block;
  width: 100%;
  margin: auto;
  padding: 8px 5px;
  background: #555;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}
.interview_list ul li .read_more p a i {
  display: inline-block;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  margin-left: 5px;
}
.interview_list ul li .read_more p a:hover {
  background: #ea6666;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.rec_vision_col,
.rec_support_col,
.rec_job_col {
  width: 87.5%;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rec_support_col {
  margin-top: 120px;
}

.rec_job_col {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: 12.5%;
}

.rec_vision_left,
.rec_support_left,
.rec_job_left {
  width: 50%;
}

.rec_vision_right,
.rec_support_right,
.rec_job_right {
  width: 45%;
}
.rec_vision_right h2,
.rec_support_right h2,
.rec_job_right h2 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ea6666;
}
.rec_vision_right h3,
.rec_support_right h3,
.rec_job_right h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 15px 0;
}
.rec_vision_right p,
.rec_support_right p,
.rec_job_right p {
  line-height: 1.8rem;
  margin-bottom: 10px;
}

.rec_support_menu {
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid #555;
}

.support_wrap {
  width: 100%;
  padding-left: 5px;
  border-bottom: 1px solid #555;
}
.support_wrap a {
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
}
.support_wrap a i {
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(3);
          transform: translateY(-50%) scale(3);
  color: #b4b4b4;
  margin-top: -5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.support_wrap a:hover h4,
.support_wrap a:hover p,
.support_wrap a:hover i {
  color: #ea6666;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.support_wrap a:hover i {
  right: -30px;
}
.support_wrap h4 {
  margin: 15px 0 0 0;
  font-size: 1.2rem;
  font-weight: bold;
}
.support_wrap p {
  font-size: 0.9rem;
}

.rec_oppotunity_col {
  margin-top: 120px;
}
.rec_oppotunity_col h2 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.rec_oppotunity_col ul {
  width: 100%;
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.rec_oppotunity_col ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 8px;
}
.rec_oppotunity_col ul li p {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
}

.rec_entry_btn {
  width: 100%;
  margin: 30px auto;
}
.rec_entry_btn a {
  display: block;
  display: block;
  width: 320px;
  margin: auto;
  padding: 12px 5px;
  background: #555;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}
.rec_entry_btn a i {
  display: inline-block;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  margin-right: 5px;
}
.rec_entry_btn a:hover {
  background: #ea6666;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.rec_entry_btn p {
  margin-top: 8px;
  text-align: center;
  font-size: 0.9rem;
}
.rec_entry_btn p i {
  display: inline-block;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin-right: 3px;
  color: #3794ff;
  position: relative;
  bottom: 1px;
}

.rec_event_col {
  width: 75%;
  margin: 60px auto auto auto;
  padding: 60px 0;
}
.rec_event_col h2 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.rec_event_col ul {
  width: 100%;
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}
.rec_event_col li {
  width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 2px 2px 6px #999;
          box-shadow: 2px 2px 6px #999;
}
.rec_event_col li h3 {
  font-size: 1.3rem;
  text-align: center;
}
.rec_event_col li h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 15px auto 0 auto;
  background: #d73e3e;
}
.rec_event_col li p {
  margin-top: 15px;
  text-align: center;
}
.rec_event_col li p.event_notice {
  font-size: 0.9rem;
  line-height: 1.5rem;
  font-weight: bold;
}
.rec_event_col li p.event_notice::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto 15px auto;
  background: #d73e3e;
}

.infobox_event {
  width: 100%;
  margin-top: 0;
  padding: 20px 0 0 0;
}
.infobox_event h3,
.infobox_event p {
  color: #000;
}
.infobox_event p {
  font-size: 0.9rem;
}
.infobox_event ul {
  margin-top: 0;
  gap: 30px;
}
.infobox_event li {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.rec_reserve {
  margin: auto auto 0 auto;
  padding-top: 20px;
}
.rec_reserve a {
  width: 200px;
  padding: 10px 5px;
  font-size: 0.9rem;
}
.rec_reserve a.seminar {
  background: -webkit-gradient(linear, left top, right top, from(#ffe52f), to(#ffc314));
  background: linear-gradient(90deg, #ffe52f, #ffc314);
  color: #000;
}
.rec_reserve a.internship {
  background: -webkit-gradient(linear, left top, right top, from(#ffa852), to(#fd7e00));
  background: linear-gradient(90deg, #ffa852, #fd7e00);
  color: #000;
}
.rec_reserve a.president {
  background: -webkit-gradient(linear, left top, right top, from(rgb(22, 135, 237)), to(rgb(0, 80, 159)));
  background: linear-gradient(90deg, rgb(22, 135, 237), rgb(0, 80, 159));
}
.rec_reserve a:hover {
  background: #ea6666;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.rec_faq_col {
  width: 80%;
  margin: auto;
  padding: 60px 0;
}
.rec_faq_col h2 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.rec_faq_col dl {
  margin: 50px auto 0 auto;
  padding: 0;
  border-top: 1px solid #444;
}
.rec_faq_col dt {
  width: 100%;
  padding: 20px 0 20px 20px;
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: bold;
  border-bottom: 1px solid #444;
  cursor: pointer;
  position: relative;
  background: none;
}
.rec_faq_col dt i {
  display: inline-block;
  -webkit-transform: scale(1.8);
          transform: scale(1.8);
  color: #555;
  position: absolute;
  right: 20px;
}
.rec_faq_col dt::before {
  content: "Q";
  margin-right: 10px;
  font-size: 1.3rem;
  font-weight: bold;
}
.rec_faq_col dt:hover {
  background: #ea6666;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.rec_faq_col dt:hover i {
  color: #fff;
}
.rec_faq_col dt.faq_active {
  background: #ea6666;
  color: #fff;
}
.rec_faq_col dt.faq_active i {
  color: #fff;
  -webkit-transform: rotate(45deg) scale(1.8);
          transform: rotate(45deg) scale(1.8);
}
.rec_faq_col dd {
  display: none;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #444;
}
.rec_faq_col dd div.faq_inner {
  width: 100%;
  padding: 40px;
  background: rgba(230, 230, 230, 0.3);
  border-radius: 0 0 10px 10px;
}
.rec_faq_col dd p {
  line-height: 1.8rem;
  margin-top: 10px;
}
.rec_faq_col dd p:nth-child(1) {
  margin-top: 0;
}
.rec_faq_col dd.faq_hide {
  display: none;
}

aside {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 0;
  border-top: 1px solid #999;
}

h2.rec_body_outer {
  margin-top: 0;
}

.rec_body_page {
  margin-top: 60px;
  display: block;
}
.rec_body_page h1 {
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin: 0;
}

.interview_content {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #999;
}

.interview_content:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.intervie_content_head {
  width: 100%;
  height: auto;
  position: relative;
}
.intervie_content_head img {
  width: 100%;
  height: auto;
}

.prof_box {
  width: auto;
  position: absolute;
  top: 20%;
  left: 60px;
}
.prof_box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.prof_box p.prof_name {
  font-weight: bold;
}
.prof_box p.prof_joined {
  font-size: 0.9rem;
  margin-top: 3px;
}

.interview_body_wrap {
  width: 100%;
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.first_content {
  margin-top: 60px;
}

.reverse_content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.interview_img {
  width: 55%;
}
.interview_img img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.interview_text {
  width: 41%;
}
.interview_text h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  margin: 15px 0;
  font-weight: bold;
  color: #555;
}
.interview_text p {
  line-height: 2rem;
}

.rec_message_col {
  width: 100%;
}
.rec_message_col p.message_lead {
  padding-top: 40px;
  font-size: 2.2rem;
  line-height: 3.3rem;
  font-weight: bold;
}

.rec_body_adjust {
  margin-top: -40px;
}

.divide_content {
  width: 100%;
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.divide_content img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.divide_content h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: bold;
  text-align: left;
  color: #555;
}
.divide_content p.top_name {
  font-size: 1rem;
  font-weight: bold;
}

.first_divide {
  margin-top: 60px;
}

.divide_left {
  width: 48%;
}

.divide_movie {
  width: 48%;
  aspect-ratio: 16/9;
}
.divide_movie iframe {
  width: 100%;
  height: 100%;
}

.divide_right {
  width: 48%;
}
.divide_right i.uil-youtube {
  display: inline-block;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  margin-right: 3px;
  color: red;
}
.divide_right a.yutube_channel {
  text-decoration: none;
}
.divide_right a.yutube_channel:hover {
  text-decoration: underline;
}

.vision_header {
  width: 100%;
  margin-top: 0;
  position: relative;
}

.vision_head_img {
  width: 100%;
  height: auto;
}
.vision_head_img img {
  width: 100%;
  height: 82vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.vision_catch {
  position: absolute;
  top: 40px;
  left: 12.5%;
}
.vision_catch p {
  display: none;
}

.rec_vision_col_body {
  display: block;
  width: 75%;
  margin: 40px auto 0 auto;
}
.rec_vision_col_body h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.rec_vision_col_body h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.rec_vision_col_body p {
  font-size: 1rem;
  line-height: 1.8rem;
  margin-top: 10px;
}

.vision_catch_lead {
  width: 75%;
}

.vision_biz_domain {
  width: 100%;
  margin-top: 60px;
}
.vision_biz_domain h2 {
  width: 75%;
  margin: auto auto 5px auto;
}

.biz_domain_head {
  width: 100%;
  position: relative;
}

.domain_img {
  width: 100%;
}
.domain_img img {
  width: 100%;
  height: auto;
}

.domain_text {
  width: 75%;
  margin: auto;
  position: absolute;
  top: 60px;
  left: 12.5%;
}
.domain_text h3 {
  color: #3b6ca6;
}

.biz_service_case {
  width: 75%;
  margin: 80px auto 0 auto;
}
.biz_service_case ul {
  width: 100%;
  margin-bottom: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.biz_service_case p {
  margin-top: 5px;
  font-size: 1rem;
  font-weight: bold;
}

.vision_biz_partner {
  margin-top: 100px;
}

.body_common_head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.body_common_left {
  width: 37.5%;
  margin-left: 12.5%;
  padding: 30px 30px 0 0;
}
.body_common_left h1 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.body_common_left h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 30px;
}
.body_common_left p {
  line-height: 1.8rem;
}

.body_common_right {
  width: 48%;
}
.body_common_right img {
  width: 100%;
  height: 72vh;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.body_common_content {
  width: 75%;
  margin: 120px auto 0 auto;
}
.body_common_content h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 30px;
}
.body_common_content table {
  width: 100%;
  border-spacing: 0;
  border-top: 1px solid #999;
}
.body_common_content th,
.body_common_content td {
  padding: 15px 0;
  border-bottom: 1px solid #999;
  text-align: left;
}
.body_common_content th {
  width: 25%;
  padding-left: 10px;
}
.body_common_content th span.table_num {
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-weight: bold;
  color: red;
}
.body_common_content th h3 {
  font-size: 1.1rem;
  font-weight: bold;
}
.body_common_content td {
  width: 75%;
  padding-right: 10px;
}
.body_common_content td p,
.body_common_content td li {
  line-height: 1.8rem;
}

p.margin_add {
  margin-top: 15px;
}

.wide_common_flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wide_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.wide_common_img {
  width: 50%;
}
.wide_common_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.wide_common_text {
  width: 50%;
  padding: 15px 12.5%;
}
.wide_common_text h3 {
  font-size: 1.3rem;
  line-height: 2rem;
  margin-bottom: 15px;
}
.wide_common_text p {
  line-height: 1.8rem;
}

.support_list_col ul {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.support_list_col li img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.support_list_col li h3 {
  margin: 15px 0;
  font-size: 1.1rem;
  font-weight: bold;
}
.support_list_col li p {
  line-height: 1.8rem;
}

.information_row {
  position: relative;
  z-index: 111;
}

.information_bg {
  width: 100%;
  height: 87vh;
  background: #3794ff;
  border-bottom: 80px solid #8fbcf2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 222;
}

.info_container {
  width: 100%;
  padding-top: 30px;
  position: relative;
  z-index: 333;
}
.info_container h1 {
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  margin: 15px auto 30px auto;
}
.info_container h1 span.title_alphabet {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.breadcrumbs_menu ul {
  width: 75%;
  margin: 0 auto;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.breadcrumbs_menu li {
  width: auto;
}
.breadcrumbs_menu li a {
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.breadcrumbs_menu li a:hover {
  text-decoration: underline;
}
.breadcrumbs_menu li::after {
  content: "＞";
  margin: auto 5px;
  font-size: 0.8rem;
  color: #fff;
}
.breadcrumbs_menu li:last-child::after {
  content: "";
  margin: auto 0;
}

.information_article_box {
  width: 75%;
  height: auto;
  margin: auto;
  padding: 60px 100px;
  background: #fff;
  position: relative;
  z-index: 333;
}
.information_article_box h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 30px;
}
.information_article_box p {
  line-height: 1.8rem;
  margin-top: 10px;
}
.information_article_box img {
  width: 100%;
  height: auto;
  margin: 30px auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.article_spec {
  width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article_spec p.information_date {
  width: 200px;
  color: #3b6ca6;
  font-size: 0.9rem;
  font-weight: bold;
}
.article_spec p.info_category {
  width: 160px;
}
.article_spec p.info_category a {
  display: block;
  width: 100%;
  padding: 5px 15px;
  background: #555;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 25px;
}

.article_control {
  width: 100%;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #999;
}
.article_control ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article_control li {
  width: auto;
  padding: 0 10px;
}
.article_control li span {
  display: inline-block;
  width: 300px;
  margin-top: -2px;
  padding: 7px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #555;
  border-radius: 3px;
}
.article_control li a {
  width: auto;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.article_control li a i {
  display: inline-block;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  margin: auto 3px;
  color: #555;
}
.article_control li span.all_article_link {
  width: auto;
  margin-top: -3px;
  padding: 0;
  border: none;
}
.article_control li span.all_article_link a.to_all {
  display: block;
  padding: 10px 15px;
  background: #555;
  color: #fff;
}

.info_article_list ul {
  width: 100%;
  border-top: 1px solid #ccc;
}
.info_article_list li {
  width: 100%;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info_article_list li div.rec_info_date {
  width: 110px;
  padding-left: 5px;
  font-size: 0.9rem;
}
.info_article_list li div.rec_info_ctg {
  width: 120px;
  margin-right: 40px;
}
.info_article_list li div.rec_info_ctg a {
  display: block;
  width: 100%;
  padding: 3px 5px;
  background: #fff;
  color: #505050;
  font-size: 0.8rem;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
}
.info_article_list li h3.rec_info_title {
  width: calc(100% - 240px);
  font-size: 1rem;
  font-weight: normal;
}
.info_article_list li h3.rec_info_title a {
  text-decoration: none;
}
.info_article_list li h3.rec_info_title a:hover {
  text-decoration: underline;
}

.relation_info_row,
.news_spec {
  width: 61.5%;
  margin: 60px auto 0 auto;
  padding-top: 30px;
  border-top: 1px solid #999;
}
.relation_info_row h2,
.relation_info_row p,
.news_spec h2,
.news_spec p {
  text-align: center;
}
.relation_info_row button,
.news_spec button {
  width: auto;
  margin: auto 10px;
  padding: 7px 40px;
  font-size: 0.8rem;
  font-weight: bold;
  border: 1px solid #777;
  background: #777;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 6px #999;
          box-shadow: 2px 2px 6px #999;
}
.relation_info_row button.news_all,
.news_spec button.news_all {
  background: #fff;
}
.relation_info_row button.news_info,
.news_spec button.news_info {
  border-color: #555;
  background: #555;
  color: #fff;
}
.relation_info_row button.news_recruit,
.news_spec button.news_recruit {
  padding: 7px 60px;
  border-color: #008ea2;
  background: #008ea2;
  color: #fff;
}
.relation_info_row button.news_product,
.news_spec button.news_product {
  border-color: #0f6363;
  background: #0f6363;
  color: #fff;
}
.relation_info_row button.news_others,
.news_spec button.news_others {
  color: #fff;
}
.relation_info_row button:hover,
.news_spec button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ea6666;
  border-color: #ea6666;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #fff;
}

.relation_info_row {
  width: 75%;
  position: relative;
  z-index: 333;
  padding: 40px 40px 0 40px;
  background: #fff;
}

.news_spec {
  width: 100%;
}
.news_spec button {
  margin: 0;
  padding: 3px 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.news_spec button.news_recruit {
  padding: 3px 30px;
}

.news_category_btn {
  width: 100%;
  margin: 30px auto auto auto;
}
.news_category_btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news_category_btn li {
  text-align: center;
}

.news_content_grid {
  width: 100%;
  margin: 40px auto auto auto;
  padding-bottom: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
}

.news_card {
  width: auto;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 6px #999;
          box-shadow: 2px 2px 6px #999;
  border-radius: 5px;
}
.news_card a img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_card a img:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news_card .news_spec {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news_card .news_spec p.news_page_date {
  font-size: 0.9rem;
  color: #0f6363;
}
.news_card .news_text_col {
  margin-top: 30px;
}
.news_card .news_text_col h4 {
  margin-bottom: 50px;
}
.news_card .news_text_col h4 a {
  text-decoration: none;
}
.news_card .news_text_col h4 a:hover {
  text-decoration: underline;
}
.news_card .news_text_col p {
  text-align: right;
}
.news_card .news_text_col p a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  color: #0f6363;
}
.news_card .news_text_col p a::after {
  content: ">";
  margin-left: 5px;
}
.news_card .news_text_col p a:hover {
  border-bottom: 1px solid #ea6666;
  color: #ea6666;
}
.news_card .news_text_col p.temp_news_body {
  text-align: left;
  margin-top: -35px;
  font-size: 0.9rem;
}

.news_list_content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.news_list_content h4 {
  margin: 10px 0;
  font-size: 1rem;
  font-weight: bold;
}
.news_list_content h4 a {
  text-decoration: none;
}
.news_list_content h4 a:hover {
  text-decoration: underline;
}
.news_list_content p {
  text-align: left;
  font-size: 0.9rem;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
}
.news_list_content p br {
  display: none;
}

.single_cat li {
  display: inline-block;
}
.single_cat a {
  padding: 5px 20px;
  background: #555;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
}
.single_cat a:hover {
  background: #b4b4b4;
  color: #000;
}

p.more_notice {
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
}
p.more_notice i {
  display: inline-block;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  margin-right: 3px;
  color: #3794ff;
  position: relative;
  bottom: 1px;
}

.info_article_wrap h3 {
  margin-top: 15px;
}

@media only screen and (max-width: 595px) {
  .recruit_header,
  .recruit_header_body {
    width: 100%;
    display: block;
  }
  .recruit_header h1.main_logo,
  .recruit_header h1.main_logo_top,
  .recruit_header_body h1.main_logo,
  .recruit_header_body h1.main_logo_top {
    width: 100%;
  }
  .recruit_header h1.main_logo a,
  .recruit_header h1.main_logo_top a,
  .recruit_header_body h1.main_logo a,
  .recruit_header_body h1.main_logo_top a {
    display: block;
  }
  .recruit_header h1.main_logo a img,
  .recruit_header h1.main_logo_top a img,
  .recruit_header_body h1.main_logo a img,
  .recruit_header_body h1.main_logo_top a img {
    margin-left: auto;
    margin-right: auto;
  }
  .recruit_header h1.main_logo a span,
  .recruit_header h1.main_logo_top a span,
  .recruit_header_body h1.main_logo a span,
  .recruit_header_body h1.main_logo_top a span {
    width: 100%;
    text-align: center;
    margin: 10px auto;
    color: #505050;
  }
  .recruit_header nav,
  .recruit_header_body nav {
    width: 100%;
    display: block;
  }
  .recruit_header ul.head_button,
  .recruit_header_body ul.head_button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .recruit_header ul.head_button li,
  .recruit_header_body ul.head_button li {
    width: 45%;
  }
  .recruit_header ul.head_button li a.mypage_btn,
  .recruit_header_body ul.head_button li a.mypage_btn {
    margin-top: 5px;
  }
  .recruit_header ul.sub_btn,
  .recruit_header_body ul.sub_btn {
    width: 100%;
    z-index: 111;
  }
  .recruit_header button.hamburger_bars,
  .recruit_header_body button.hamburger_bars {
    position: fixed;
    top: 15px;
    right: 15px;
  }
  .recruiting_nav_container {
    position: absolute;
    top: 33.5vh;
  }
  .recruiting_nav ul {
    display: block;
  }
  .site_nav {
    width: 98%;
    right: -98%;
  }
  .active_nav {
    position: fixed;
    right: 0;
  }
  .top_img_box {
    height: 45vh;
    top: 33.5vh;
  }
  .top_img_box p {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.8rem;
    top: 200px;
    left: 0;
    text-align: center;
  }
  .rec_information_box {
    margin-top: 42vh;
  }
  .rec_info_wrap {
    width: 95%;
    padding: 20px 30px;
  }
  .rec_info_wrap li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .rec_info_wrap li h3.rec_info_title {
    width: 100%;
    margin-top: 10px;
    line-height: 1.4rem;
  }
  .infobox_event {
    display: none;
  }
  .rec_row,
  .rec_narrow_row {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .rec_full_row {
    width: 100%;
  }
  .rec_message_col h2 {
    font-size: 2rem;
  }
  .rec_philosophy_col {
    width: 100%;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 180%;
  }
  .rec_philo_left {
    width: 100%;
    margin-top: 200px;
    padding: 30px 0 30px 0;
    background: none;
  }
  .rec_philo_left h3 {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .rec_philo_left h3 br.sp_none_br {
    display: none;
  }
  .rec_interview_col h2 span {
    font-size: 1.2rem;
  }
  .interview_list ul {
    display: block;
  }
  .interview_list li {
    margin-bottom: 50px;
  }
  .rec_vision_col,
  .rec_support_col,
  .rec_job_col {
    display: block;
    width: 100%;
  }
  .rec_job_col {
    display: block;
    margin-left: 0;
  }
  .rec_vision_left,
  .rec_support_left,
  .rec_job_left {
    width: 100%;
    margin-bottom: 15px;
  }
  .rec_vision_right,
  .rec_support_right,
  .rec_job_right {
    width: 100%;
  }
  .support_wrap a p {
    width: 90%;
    line-height: 1.4rem;
  }
  .support_wrap a:hover i {
    right: -20px;
  }
  .rec_oppotunity_col ul {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .rec_event_col {
    width: 90%;
  }
  .rec_event_col ul {
    display: block;
  }
  .rec_event_col li {
    margin-bottom: 30px;
  }
  .rec_faq_col {
    width: 100%;
  }
  .contact_content {
    display: block;
  }
  .address_inner {
    padding: 20px;
    position: relative;
  }
  .contact_map {
    margin-top: -60px;
  }
  .footer_content ul {
    display: block;
    border: none;
    border-top: 1px solid #ccc;
  }
  .footer_content li {
    border: none;
    border-bottom: 1px solid #ccc;
  }
  .footer_content li a {
    padding: 5px 0;
  }
  .footer_content li a:hover::after {
    bottom: -8px;
    opacity: 0;
  }
  .link_banner ul {
    padding-top: 15px;
  }
  .rec_body_page {
    margin-top: 15px;
  }
  .rec_body_page h2.movie_linup_title {
    margin-bottom: 0;
  }
  .rec_message_col p.message_lead {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }
  .divide_content {
    display: block;
  }
  .divide_content h2 {
    font-size: 1.5rem;
  }
  .movie_divide_content {
    margin-top: 30px;
  }
  .first_divide {
    margin-top: 60px;
  }
  .divide_left,
  .divide_right,
  .divide_movie {
    width: 100%;
  }
  .divide_left {
    margin-bottom: 15px;
  }
  .vision_header {
    margin-top: 0;
  }
  .vision_head_img img {
    height: 45vh;
  }
  .vision_catch {
    top: 55px;
    left: 0;
    right: 0;
  }
  .vision_catch h1 {
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 0 #fff;
  }
  .rec_vision_col_body {
    width: 90%;
  }
  .rec_vision_col_body h2 {
    width: 90%;
  }
  .vision_catch_lead {
    width: 90%;
  }
  .vision_biz_domain {
    width: 100%;
  }
  .domain_text {
    width: 90%;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 30px;
  }
  .domain_text h3 {
    font-size: 1.2rem;
  }
  .biz_service_case {
    width: 90%;
    margin-top: 40px;
  }
  .biz_service_case ul {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .biz_service_case p {
    line-height: 1.4rem;
  }
  .body_common_head {
    display: block;
  }
  .body_common_left {
    width: 100%;
    margin-left: auto;
    padding-right: 0;
  }
  .body_common_left h1 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  .body_common_left h2 {
    font-size: 1.5rem;
    line-height: 2.2rem;
    margin-bottom: 15px;
  }
  .body_common_right {
    width: 100%;
    margin-top: 15px;
  }
  .body_common_right img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .body_common_content {
    width: 100%;
    margin-top: 60px;
  }
  .body_common_content th,
  .body_common_content td {
    display: block;
    width: 100%;
  }
  .body_common_content th {
    padding-left: 0;
    border-bottom: 1px dotted #ccc;
  }
  .wide_common_flex {
    display: block;
  }
  .wide_common_img {
    width: 100%;
  }
  .wide_common_text {
    width: 100%;
    padding: 15px 0;
  }
  .bodypage_interview_col h1 {
    padding-top: 60px;
  }
  .intervie_content_head {
    width: 100%;
  }
  .prof_box {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
  .prof_box h2 {
    margin-top: 15px;
    font-size: 1.2rem;
  }
  .interview_body_wrap {
    display: block;
    margin-top: 60px;
  }
  .interview_img {
    width: 100%;
  }
  .interview_text {
    width: 100%;
  }
  .interview_text h3 {
    font-size: 1.2rem;
  }
  .benefits_header h1 {
    padding-top: 30px;
  }
  .support_list_col ul {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .information_bg {
    height: 90vh;
  }
  .breadcrumbs_menu {
    width: 90%;
  }
  .information_article_box {
    width: 90%;
    padding: 30px 20px;
  }
  .info_article_list li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .info_article_list li div.rec_info_date {
    width: 70px;
    padding-left: 0;
  }
  .info_article_list li h3.rec_info_title {
    width: 100%;
  }
  .relation_info_row {
    width: 90%;
    background: #f5f4f2;
  }
  .news_content_grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .article_crumbs {
    width: 100%;
  }
  .article_crumbs ul {
    width: 95%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .article_crumbs li:last-child {
    width: 100%;
  }
  .article_control ul {
    display: block;
  }
  .article_control ul li a {
    margin: 10px auto 0 auto;
  }
}
/*# sourceMappingURL=style-recruit.css.map */