@charset "UTF-8";
header {
  background-color: transparent;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
header .logo path {
  -webkit-transition: fill 0.2s linear;
  transition: fill 0.2s linear;
}
header.bg {
  background-color: #fff;
}
header.bg #gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header.bg .logo #name path {
  fill: #00347A;
}
header.bg #gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header #gnav {
  display: none;
}

/* 基本の動き */
.slide-in {
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s; /* 不透明度と移動のアニメーション */
  display: block;
}

/* 方向のバリエーション */
.from-bottom {
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
}

.from-top {
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
}

.from-left {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.from-right {
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
}

/* === 実行時の状態 === */
/* パターンA用: 要素自体に .is-active がついた場合
  パターンB,C用: 親に .is-active がついた時の、子要素(.slide-in)
*/
.slide-in.is-active,
.js-trigger.is-active .slide-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* === 順番に表示させる設定 (stagger) === */
/* 親に .stagger がある場合、2番目〜5番目の要素を遅らせる */
/* 必要であれば数を増やしてください */
.js-trigger.stagger.is-active .slide-in:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.js-trigger.stagger.is-active .slide-in:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js-trigger.stagger.is-active .slide-in:nth-child(3) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.js-trigger.stagger.is-active .slide-in:nth-child(4) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.js-trigger.stagger.is-active .slide-in:nth-child(5) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.container {
  padding: 0 50px;
}

.top_pagination {
  z-index: 10;
  position: relative;
  position: fixed;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 14px;
  overflow: hidden;
}
.top_pagination li {
  width: 14px;
  height: 14px;
}
.top_pagination li:not(:last-child) {
  margin: 0 0 14px;
}
.top_pagination li a {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ccc;
}
.top_pagination li.active a {
  background-color: #0E4642;
}

#main {
  padding: 0 0 100px;
  margin-top: 0;
}
#main .mv {
  width: 100%;
  height: 800px;
  position: relative;
}
#main .mv .main-visual-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  position: relative;
  width: 100%;
  height: 800px; /* 以前の高さ指定を維持 */
  overflow: hidden; /* 万が一のはみ出し防止 */
  z-index: 0;
}
#main .mv .main-visual-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .mv .main_catch {
  width: calc(100% - 250px);
  position: absolute;
  left: 113px;
  top: 214px;
  color: #fff;
  font-weight: 500;
  font-size: 82px;
  line-height: 1.6;
  z-index: 10;
}
#main .message_wrap {
  background-color: #62B5AF;
  padding: 10px 0 20px;
  color: #fff;
  overflow: hidden;
}
#main .message_wrap .main_message {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 30px;
}
#main .message_wrap .read {
  font-size: 18px;
  line-height: 1.7;
}
#main .section_wrap {
  padding: 0;
  background-color: #F8F7EA;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}
#main .section_wrap section {
  padding: 100px 0;
  color: #fff;
  font-size: 18px;
  position: relative;
}
#main .section_wrap section .sec_container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
#main .section_wrap section .sec_container .sec_title_bottom {
  font-size: 76px;
  line-height: 1.2;
  padding: 10px 20px;
  color: #ccc;
  background-color: #fff;
  display: inline-block;
  position: relative;
  z-index: 10;
}
#main .section_wrap section .sec_container .sec_title_left {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 英数字も上を向かせる */
  text-orientation: upright;
  white-space: nowrap;
  font-size: 50px;
  line-height: 1.4;
  padding: 20px 5px;
  color: #ccc;
  background-color: #fff;
  position: absolute;
  top: -60px;
  left: 20px;
  z-index: 10;
}
#main .section_wrap section.sec1 {
  background-color: #349FD1;
}
#main .section_wrap section.sec1 .sec_container .sec_title_left, #main .section_wrap section.sec1 .sec_container .sec_title_bottom {
  color: #349FD1;
}
#main .section_wrap section.sec2 .sec_container .sec_title_left, #main .section_wrap section.sec2 .sec_container .sec_title_bottom {
  background-color: #00347A;
  color: #fff;
}
#main .section_wrap section.sec3 {
  background-color: #62B5AF;
}
#main .section_wrap section.sec3 .sec_container .sec_title_left, #main .section_wrap section.sec3 .sec_container .sec_title_bottom {
  background-color: #fff;
  color: #0E4642;
}
#main .section_wrap section.sec3 .sec_container .sec_title_left {
  left: 80px;
}
#main .section_wrap section.sec4 {
  background-color: #00347A;
}
#main .section_wrap section.sec4 .sec_container .sec_title_left, #main .section_wrap section.sec4 .sec_container .sec_title_bottom {
  background-color: #fff;
  color: #00347A;
}
#main .section_wrap section.sec4 .sec_container .sec_title_left {
  left: 80px;
}
#main .section_wrap section.sec5 .sec_container .sec_title_left, #main .section_wrap section.sec5 .sec_container .sec_title_bottom {
  background-color: #62B5AF;
  color: #fff;
}
#main .section_wrap section.sec6 {
  background-color: #349FD1;
}
#main .section_wrap section.sec6 .sec_container .sec_title_left, #main .section_wrap section.sec6 .sec_container .sec_title_bottom {
  background-color: #fff;
  color: #349FD1;
}
#main .section_wrap section.no_bg {
  padding: 0;
  color: #333;
}
#main .section_wrap section.no_bg .section_main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  padding-right: 0;
}
#main .section_wrap section.no_bg .container {
  padding-left: 0;
}
#main .section_wrap section .section_main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
}
#main .section_wrap section .container {
  padding-left: 50px;
  text-align: justify;
}
#main .section_wrap section .section_detail .construction {
  width: 900px;
}
#main .section_wrap section .section_detail .construction + .construction {
  margin: 30px 0 0;
}
#main .section_wrap section .section_detail .construction dt {
  font-size: 20px;
  border-bottom: 1px solid #fff;
  margin: 0 0 10px;
}
#main .section_wrap section .section_detail .construction dt span {
  font-size: 14px;
}
#main .section_wrap section .btn_sm {
  margin: 40px 0 0 auto;
  width: 300px;
}
#main .section_wrap section .btn_sm a {
  position: relative;
  display: block;
  width: 100%;
  height: 54px;
  border: 1px solid #fff;
  text-align: center;
  line-height: 52px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}
#main .section_wrap section .btn_sm a::after {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: " ";
  display: inline-block;
  width: 20px;
  height: 5px;
  background: url(../img/top/arrow_wh.svg);
  background-size: contain;
  vertical-align: middle;
}
#main .company_info {
  background-color: #F6A429;
  padding: 100px 0;
}
#main .company_info .company_info_inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#main .company_info .company_info_inner .image {
  width: 54%;
  max-width: 800px;
  position: relative;
}
#main .company_info .company_info_inner .image > h2 {
  position: absolute;
  left: 40px;
  top: 40px;
  padding: 20px 30px;
  background-color: #F6A429;
  color: #fff;
  font-size: 60px;
  line-height: 1.2;
}
#main .company_info .company_info_inner .info_text {
  width: 40%;
  color: #fff;
  font-size: 18px;
}
#main .company_info .company_info_inner .info_text > div {
  text-align: justify;
}
#main .company_info .company_info_inner .btn_company_info {
  margin: 90px 0 0;
}
#main .company_info .company_info_inner .btn_company_info a {
  font-size: 32px;
  color: #fff;
  text-decoration: none;
}
#main .company_info .company_info_inner .btn_company_info a::after {
  margin: 0 0 0 20px;
  content: " ";
  display: inline-block;
  width: 42px;
  height: 10px;
  background: url(../img/top/arrow_wh.svg);
  background-size: contain;
  vertical-align: middle;
}
#main .interview {
  margin: 100px 0 0;
}
#main .interview h2 {
  font-size: 60px;
  font-weight: 600;
  height: 106px;
  padding: 0 40px;
  background-color: #0E4642;
  color: #fff;
  line-height: 106px;
  display: inline-block;
}
#main .interview .senior_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#main .interview .senior_list .senior {
  position: relative;
  width: 33.3333333333%;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
#main .interview .senior_list .senior:hover {
  opacity: 0.6;
}
#main .interview .senior_list .senior:not(:last-child) .senior_detail {
  border-right: 1px solid #0E4642;
}
#main .interview .senior_list .senior .image {
  width: 100%;
  max-height: 600px;
  aspect-ratio: 533/600;
  position: relative;
}
#main .interview .senior_list .senior .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
#main .interview .senior_list .senior .image .catch {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 30px;
  line-height: 1.2;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
}
#main .interview .senior_list .senior .senior_detail {
  background-color: #E5EBEB;
  padding: 25px;
  font-size: 16px;
  line-height: 1.2;
}
#main .interview .senior_list .senior .senior_detail .name {
  font-size: 20px;
  margin: 0 0 15px;
}
#main .interview .senior_list .senior .senior_detail .name a {
  text-decoration: none;
  color: inherit;
}
#main .interview .senior_list .senior .senior_detail .name a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* =====================================

▼▼▼ max-width: 1024px

===================================== */
@media screen and (max-width: 1024px) {
  header {
    background-color: transparent;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
  }
  header .logo svg {
    width: 220px;
  }
  header .logo path {
    -webkit-transition: fill 0.2s linear;
    transition: fill 0.2s linear;
  }
  header .hamburger_menu_wrap {
    display: none;
  }
  header.bg {
    background-color: #fff;
  }
  header.bg .hamburger_menu_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header.bg #gnav {
    display: block;
  }
  header #gnav {
    display: block;
  }
  .top_pagination {
    z-index: 100;
    position: relative;
    position: fixed;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 14px;
    overflow: hidden;
  }
  .top_pagination li {
    width: 14px;
    height: 14px;
  }
  .top_pagination li:not(:last-child) {
    margin: 0 0 14px;
  }
  .top_pagination li a {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ccc;
  }
  .top_pagination li.active a {
    background-color: #0E4642;
  }
  #main {
    padding: 0 0 70px;
    margin-top: 0;
  }
  #main .mv {
    width: 100%;
    height: 800px;
    background: #000 url(../img/top/main_tab_yoko.jpg) no-repeat scroll center top;
    background-size: cover;
    position: relative;
  }
  #main .mv .main-visual-wrapper {
    height: 800px; /* 以前の高さ指定を維持 */
  }
  #main .mv .main_catch {
    left: 30px;
    top: 214px;
    font-size: 62px;
  }
  #main .message_wrap {
    background-color: #62B5AF;
    padding: 10px 0 20px;
    color: #fff;
    overflow: hidden;
  }
  #main .message_wrap .main_message {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 20px;
  }
  #main .message_wrap .read {
    font-size: 16px;
    line-height: 1.6;
  }
  #main .section_wrap {
    padding: 0;
    background-color: #F8F7EA;
    position: relative;
    overflow: hidden;
  }
  #main .section_wrap section {
    padding: 50px 0;
    color: #fff;
    font-size: 14px;
    position: relative;
    width: 100%;
  }
  #main .section_wrap section .sec_container {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
    position: static;
  }
  #main .section_wrap section .sec_container .sec_title_bottom {
    font-size: 40px;
    padding: 5px 10px;
  }
  #main .section_wrap section .sec_container .sec_title_left {
    font-size: 36px;
    line-height: 1.4;
    padding: 20px 5px;
    color: #ccc;
    background-color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    min-height: 10px;
  }
  #main .section_wrap section.sec3 .section_main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 30px;
    padding-right: 40px;
    padding-left: 40px;
  }
  #main .section_wrap section.sec6 .section_main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 30px;
    padding-right: 50px;
    padding-left: 50px;
  }
  #main .section_wrap section.sec6 .container {
    padding-left: 50px;
    padding-right: 50px;
  }
  #main .section_wrap section.no_bg {
    padding: 0;
    color: #333;
  }
  #main .section_wrap section.no_bg .section_main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    padding-right: 50px;
  }
  #main .section_wrap section.no_bg .container {
    padding-left: 50px;
  }
  #main .section_wrap section .section_main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 30px;
    padding-right: 40px;
    padding-left: 40px;
  }
  #main .section_wrap section .container {
    padding-left: 30px;
  }
  #main .section_wrap section .section_detail .construction {
    width: 100%;
  }
  #main .section_wrap section .section_detail .construction + .construction {
    margin: 30px 0 0;
  }
  #main .section_wrap section .section_detail .construction dt {
    font-size: 20px;
    border-bottom: 1px solid #fff;
    margin: 0 0 10px;
  }
  #main .section_wrap section .section_detail .construction dt span {
    font-size: 14px;
  }
  #main .section_wrap section .btn_sm {
    margin: 40px 0 0 auto;
    width: 300px;
  }
  #main .section_wrap section .btn_sm a {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 52px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
  }
  #main .section_wrap section .btn_sm a::after {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: " ";
    display: inline-block;
    width: 20px;
    height: 5px;
    background: url(../img/top/arrow_wh.svg);
    background-size: contain;
    vertical-align: middle;
  }
  #main .company_info {
    background-color: #F6A429;
    padding: 50px 50px;
  }
  #main .company_info .company_info_inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #main .company_info .company_info_inner .image {
    width: 54%;
    max-width: 800px;
  }
  #main .company_info .company_info_inner .image > h2 {
    left: 30px;
    top: 30px;
    padding: 20px 30px;
    font-size: 30px;
  }
  #main .company_info .company_info_inner .info_text {
    width: 40%;
    color: #fff;
    font-size: 16px;
  }
  #main .company_info .company_info_inner .btn_company_info {
    margin: 30px 0 0;
  }
  #main .company_info .company_info_inner .btn_company_info a {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
  }
  #main .company_info .company_info_inner .btn_company_info a::after {
    margin: 0 0 0 20px;
    content: " ";
    display: inline-block;
    width: 42px;
    height: 10px;
    background: url(../img/top/arrow_wh.svg);
    background-size: contain;
    vertical-align: middle;
  }
  #main .interview {
    margin: 70px 0 0;
  }
  #main .interview h2 {
    font-size: 30px;
    font-weight: 600;
    height: 80px;
    padding: 0 40px;
    background-color: #0E4642;
    color: #fff;
    line-height: 80px;
    display: inline-block;
  }
  #main .interview .senior_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #main .interview .senior_list .senior {
    width: 33.3333333333%;
  }
  #main .interview .senior_list .senior .image {
    width: 100%;
    position: relative;
  }
  #main .interview .senior_list .senior .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  #main .interview .senior_list .senior .image .catch {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 18px;
    padding: 10px 15px;
  }
  #main .interview .senior_list .senior .senior_detail {
    background-color: #E5EBEB;
    padding: 15px;
    font-size: 16px;
    line-height: 1.2;
  }
  #main .interview .senior_list .senior .senior_detail .name {
    font-size: 18px;
    margin: 0 0 10px;
  }
} /* @media screen and (max-width: 1024px) */
/* =====================================

▼▼▼ max-width: 768px

===================================== */
@media screen and (max-width: 768px) {
  header {
    background-color: transparent;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
  }
  header .logo svg {
    width: 220px;
  }
  header .logo path {
    -webkit-transition: fill 0.2s linear;
    transition: fill 0.2s linear;
  }
  header .hamburger_menu_wrap {
    display: none;
  }
  header.bg {
    background-color: #fff;
  }
  header.bg .hamburger_menu_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header.bg #gnav {
    display: block;
  }
  header #gnav {
    display: block;
  }
  body.is_nav_open header {
    background-color: #fff;
  }
  body.is_nav_open header .hamburger_menu_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body.is_nav_open header .logo #name path {
    fill: #00347A;
  }
  #main {
    margin-top: 0;
    padding: 0 0 50px;
  }
  #main .mv {
    width: 100%;
    height: 600px;
  }
  #main .mv .main-visual-wrapper {
    height: 600px; /* 以前の高さ指定を維持 */
  }
  #main .mv::after {
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #62B5AF;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
  #main .mv .main_catch {
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    font-size: 42px;
  }
  #main .message_wrap {
    padding: 20px 0 20px;
  }
  #main .message_wrap .main_message {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 20px;
  }
  #main .message_wrap .read {
    font-size: 14px;
    line-height: 1.6;
  }
  #main .section_wrap {
    padding: 50px 0 50px;
  }
  #main .section_wrap::before {
    width: 100%;
    height: 100px;
    background-color: #62B5AF;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 10;
  }
  #main .section_wrap section {
    padding: 50px 0;
  }
  #main .section_wrap section .sec_container {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
    position: static;
  }
  #main .section_wrap section .sec_container .sec_title_bottom {
    font-size: 32px;
    padding: 5px 10px;
  }
  #main .section_wrap section .sec_container .sec_title_left {
    font-size: 26px;
    line-height: 1.4;
    padding: 20px 5px;
    color: #ccc;
    background-color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    min-height: 10px;
  }
  #main .section_wrap section .section_main {
    position: relative;
    width: 100%;
    margin: 0 auto 10px;
  }
  #main .section_wrap section.sec3 .section_main {
    margin-bottom: 10px;
  }
  #main .section_wrap section.sec3 .sec_container .sec_title_left {
    left: 10px;
  }
  #main .company_info {
    padding: 50px 50px;
  }
  #main .company_info .company_info_inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #main .company_info .company_info_inner .image {
    width: 54%;
    max-width: 800px;
  }
  #main .company_info .company_info_inner .image > h2 {
    left: 20px;
    top: 20px;
    padding: 15px 25px;
    font-size: 30px;
  }
  #main .company_info .company_info_inner .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  #main .company_info .company_info_inner .info_text {
    width: 40%;
    color: #fff;
    font-size: 14px;
  }
  #main .company_info .company_info_inner .info_text > div {
    font-size: 14px;
  }
  #main .company_info .company_info_inner .btn_company_info {
    margin: 20px 0 0;
  }
  #main .company_info .company_info_inner .btn_company_info a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
  }
  #main .company_info .company_info_inner .btn_company_info a::after {
    margin: 0 0 0 20px;
    content: " ";
    display: inline-block;
    width: 42px;
    height: 10px;
    background: url(../img/top/arrow_wh.svg);
    background-size: contain;
    vertical-align: middle;
  }
  #recruitment_link .btn_wrap .btn {
    margin: 0 auto !important;
  }
}
/* =====================================

▼▼▼ max-width: 500px

===================================== */
@media screen and (max-width: 500px) {
  .top_pagination {
    display: none;
  }
  .container {
    padding: 0 20px;
  }
  #main {
    padding: 0 0 50px;
    margin-top: 0;
  }
  #main .mv {
    width: 100%;
    height: 400px;
  }
  #main .mv .main-visual-wrapper {
    height: 400px; /* 以前の高さ指定を維持 */
  }
  #main .mv::after {
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #62B5AF;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
  #main .mv .main_catch {
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
    font-size: 30px;
    width: 90%;
  }
  #main .message_wrap {
    padding: 20px 0 20px;
  }
  #main .message_wrap .main_message {
    font-size: 16px;
    margin: 0 0 20px;
  }
  #main .message_wrap .read {
    font-size: 14px;
    line-height: 1.6;
  }
  #main .section_wrap {
    padding: 50px 0 70px;
  }
  #main .section_wrap::before {
    width: 100%;
    height: 60px;
    z-index: 10;
  }
  #main .section_wrap section {
    padding: 40px 0;
  }
  #main .section_wrap section .sec_container {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
    position: static;
  }
  #main .section_wrap section .sec_container .sec_title_bottom {
    font-size: 20px;
    padding: 5px 5px;
  }
  #main .section_wrap section .sec_container .sec_title_left {
    font-size: 16px;
    line-height: 1.4;
    padding: 5px 5px;
    color: #ccc;
    background-color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    min-height: 10px;
  }
  #main .section_wrap section .section_main {
    position: relative;
    width: 100%;
    margin: 0 auto 10px;
    padding-right: 40px;
    padding-left: 40px;
  }
  #main .section_wrap section.sec3 .section_main {
    margin-bottom: 10px;
  }
  #main .section_wrap section.sec3 .sec_container .sec_title_left {
    left: 20px;
  }
  #main .section_wrap section.sec4 .sec_container .sec_title_left {
    left: 20px;
  }
  #main .section_wrap section.sec6 .section_main {
    margin: 0 auto 10px;
  }
  #main .company_info {
    padding: 40px 20px;
  }
  #main .company_info .company_info_inner {
    width: 100%;
    max-width: 1400px;
    display: block;
  }
  #main .company_info .company_info_inner .image {
    width: 100%;
    max-width: 100%;
  }
  #main .company_info .company_info_inner .image > h2 {
    left: 10px;
    top: 10px;
    padding: 10px 40px;
    font-size: 24px;
  }
  #main .company_info .company_info_inner .info_text {
    width: 100%;
    font-size: 14px;
    margin-top: 20px;
  }
  #main .company_info .company_info_inner .btn_company_info {
    margin: 30px 0 0;
    text-align: right !important;
  }
  #main .company_info .company_info_inner .btn_company_info a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
  }
  #main .company_info .company_info_inner .btn_company_info a::after {
    margin: 0 0 0 10px;
    content: " ";
    display: inline-block;
    width: 21px;
    height: 5px;
    background: url(../img/top/arrow_wh.svg);
    background-size: contain;
    vertical-align: middle;
  }
  #main .interview {
    margin: 50px 0 0;
  }
  #main .interview h2 {
    font-size: 24px;
    height: 50px;
    padding: 0 40px;
    line-height: 50px;
    display: inline-block;
  }
  #main .interview .senior_list {
    display: block;
  }
  #main .interview .senior_list .senior {
    width: 100%;
  }
  #main .interview .senior_list .senior:not(:last-child) {
    border: none;
    margin-bottom: 30px;
  }
  #main .interview .senior_list .senior .image {
    width: 100%;
    aspect-ratio: 390/400;
    position: relative;
  }
  #main .interview .senior_list .senior .image img {
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
  }
  #main .interview .senior_list .senior .image .catch {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 16px;
    padding: 10px 15px;
  }
  #main .interview .senior_list .senior .senior_detail {
    padding: 15px;
    font-size: 14px;
    line-height: 1.2;
  }
  #main .interview .senior_list .senior .senior_detail .name {
    font-size: 16px;
    margin: 0 0 10px;
  }
}/*# sourceMappingURL=top.css.map */