/*----------------------------------------------------------------*/
/* HTML initialization */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}

/*----------------------------------------------------------------*/
/* body initialization */
body {
  font-size: 1.6rem;
  font-family: source-han-serif-japanese, serif;
  font-weight: 600;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
  color: #000000;
}

@media (max-width: 768px) {
  body {
    max-width: 100%;
    min-width: 320px;
    overflow: hidden;
    font-size: 1.5rem;
  }
}
/*----------------------------------------------------------------*/
/*------------------------------------------------------------
header
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.header_wrap {
  position: relative;
  background: #ffffff;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  line-height: 1;
}

.header_container {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 1201px) {
  .header_wrap {
    z-index: 999;
  }
}
.header_box {
  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;
  width: 100%;
  height: 100%;
  padding: 0 2.5rem;
}

.header_logo {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header_logo:hover {
  opacity: 0.5;
}
.header_logo .ja_logo {
  display: block;
  line-height: 0;
}
.header_logo .ja_logo img {
  width: 20rem;
}

@media screen and (max-width: 1200px) {
  .header_box {
    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;
    width: 100%;
    height: 6rem;
  }
  .header_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header_logo .ja_logo img {
    width: auto;
    height: 2.5rem;
  }
}
.header_year .year {
  font-family: baskerville-display-pt, serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-top: 0.5rem;
  padding-right: 6rem;
}

@media screen and (max-width: 1200px) {
  .header_year {
    padding-left: 2rem;
  }
  .header_year .year {
    font-size: 1.4rem;
    padding-right: 3.6rem;
  }
}
@media screen and (max-width: 1500px) {
  .header_year .year {
    font-size: 1.4rem;
    font-family: baskerville-display-pt, serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding-top: 0.5rem;
    padding-right: 3.6rem;
  }
}
@media screen and (max-width: 1500px) {
  .header_year .year {
    padding-top: 0.6rem;
  }
}
.header_nav {
  padding: 2rem 0;
  font-size: 1.4rem;
  font-weight: 400;
}
.header_nav .header_nav_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  letter-spacing: 0.08em;
}
.header_nav .header_nav_box .header_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 2rem;
}
.header_nav .header_nav_box .header_items li {
  padding: 0 1.6rem;
}
.header_nav .header_nav_box .header_items li:last-child {
  padding: 0 0 0 1.6rem;
}
.header_nav .header_nav_box .header_items li > a {
  display: block;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.header_nav .header_nav_box .header_items li > a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #e50012;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header_nav .header_nav_box .header_items li > a:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.header_nav .header_nav_box .header_items .no-link {
  color: #cccccc;
  pointer-events: none;
}
.header_nav .header_nav_box .header_items .no-link:after {
  display: none;
}
.header_nav .header_nav_box .header_entryArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header_nav .header_nav_box .header_entryArea__list {
  margin-left: 1rem;
}
.header_nav .header_nav_box .header_entryArea__list .header_btn_red {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  background-color: #e50012;
  color: #ffffff;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}
.header_nav .header_nav_box .header_entryArea__list .header_btn_red:hover {
  color: #ffffff;
  background-color: #000000;
}
.header_nav .header_nav_box .header_entryArea__list .header_btn_red.no-link {
  opacity: 0.1;
  pointer-events: none;
  background-color: #000000;
}

@media screen and (max-width: 1200px) {
  .header_nav {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: rgba(0, 0, 0, 0.8);
    overflow-y: scroll;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 10;
    pointer-events: none;
  }
  .header_nav.opened {
    opacity: 1;
    pointer-events: all;
  }
  .header_nav .header_nav_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    text-align: center;
  }
  .header_nav .header_nav_box .header_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
  }
  .header_nav .header_nav_box .header_items li {
    padding: 3vh 0;
  }
  .header_nav .header_nav_box .header_items li:last-child {
    padding: 3vh 0 0 0;
  }
  .header_nav .header_nav_box .header_items li > a {
    text-align: center;
    font-size: 2rem;
  }
  .header_nav .header_entryArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50%;
    margin: 0 auto;
  }
  .header_nav .header_entryArea__list {
    width: 100%;
    margin: 5vh 0 0 0 !important;
  }
  .header_nav .header_entryArea__list .header_btn_red {
    width: 100%;
    height: 5vw;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header_nav .header_entryArea__list .header_btn_red.no-link {
    opacity: 0.5 !important;
    pointer-events: none;
    background-color: #b2b2b2 !important;
  }
}
@media screen and (min-width: 1201px) {
  .header_nav .header_items li.is-action > a::after {
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: -32px;
    position: absolute;
  }
  .header_nav .header_items li.is-action > a::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
            transform: translate(-50%, -50%) rotate(45deg) scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_items li {
    float: none;
    padding: 3vh 0;
    opacity: 0;
  }
  .header_nav .header_items li:nth-child(1) {
    -webkit-animation: example 0.5s ease 1.2s 1 forwards;
            animation: example 0.5s ease 1.2s 1 forwards;
  }
  .header_nav .header_items li:nth-child(2) {
    -webkit-animation: example 0.5s ease 1.3s 1 forwards;
            animation: example 0.5s ease 1.3s 1 forwards;
  }
  .header_nav .header_items li:nth-child(3) {
    -webkit-animation: example 0.5s ease 1.4s 1 forwards;
            animation: example 0.5s ease 1.4s 1 forwards;
  }
  .header_nav .header_items li:nth-child(4) {
    -webkit-animation: example 0.5s ease 1.5s 1 forwards;
            animation: example 0.5s ease 1.5s 1 forwards;
  }
  .header_nav .header_items li:nth-child(5) {
    -webkit-animation: example 0.5s ease 1.6s 1 forwards;
            animation: example 0.5s ease 1.6s 1 forwards;
  }
  .header_nav .header_items li:nth-child(6) {
    -webkit-animation: example 0.5s ease 1.7s 1 forwards;
            animation: example 0.5s ease 1.7s 1 forwards;
  }
  .header_nav .header_items li:nth-child(7) {
    -webkit-animation: example 0.5s ease 1.8s 1 forwards;
            animation: example 0.5s ease 1.8s 1 forwards;
  }
  @-webkit-keyframes example {
    100% {
      opacity: 1;
    }
  }
  @keyframes example {
    100% {
      opacity: 1;
    }
  }
}
@media all and (-ms-high-contrast: none) {
  .header_nav .header_items li {
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_items li > a {
    color: #fff;
    display: inline-block;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_items li > a::before {
    height: 65px;
  }
}
@media screen and (min-width: 1201px) {
  .header_nav .header_items li > a:hover::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
            transform: translate(-50%, -50%) rotate(45deg) scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_btn_box {
    width: 100%;
    margin-top: 8vw;
    float: none;
    margin-left: 0;
  }
  .header_nav .header_btn_box .header_btn_red {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    height: 2vw;
    font-size: 2rem;
    float: none;
    margin: 0 auto;
  }
  .header_nav .header_btn_box .header_btn_red_no-link {
    padding: 1.5rem 4rem;
    float: none;
  }
}
@media screen and (min-width: 1201px) {
  .header_nav .header_btn_red:hover:before {
    top: 0;
    left: 0;
  }
  .header_nav .header_btn_red:hover::after {
    bottom: 0;
    right: 0;
  }
  .header_nav .header_btn_red_no-link:hover:before {
    top: 0;
    left: 0;
  }
  .header_nav .header_btn_red_no-link:hover::after {
    bottom: 0;
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .header_nav .header_btn_red a {
    width: 100%;
  }
  .header_nav .header_btn_red_no-link a {
    width: 100%;
  }
}
.header_menu {
  display: none;
  width: 8rem;
  height: 8rem;
  background: #000000;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
  top: 0;
  right: 0;
}
.header_menu p {
  background: #ffffff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: background ease 0.2s, top ease 0.2s 0.2s, -webkit-transform ease 0.2s;
  -webkit-transition: background ease 0.2s, top ease 0.2s 0.2s, -webkit-transform ease 0.2s;
  transition: background ease 0.2s, top ease 0.2s 0.2s, transform ease 0.2s;
  transition: background ease 0.2s, top ease 0.2s 0.2s, transform ease 0.2s, -webkit-transform ease 0.2s;
  text-indent: -999999px;
  left: 25%;
  top: 37.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header_menu p::before, .header_menu p::after {
  background: #ffffff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: background ease 0.2s, top ease 0.2s 0.2s, -webkit-transform ease 0.2s;
  -webkit-transition: background ease 0.2s, top ease 0.2s 0.2s, -webkit-transform ease 0.2s;
  transition: background ease 0.2s, top ease 0.2s 0.2s, transform ease 0.2s;
  transition: background ease 0.2s, top ease 0.2s 0.2s, transform ease 0.2s, -webkit-transform ease 0.2s;
  width: 40px;
}
.header_menu p::before {
  top: -6px;
}
.header_menu p::after {
  top: 6px;
}
.header_menu.opened {
  background: #e50012;
}
.header_menu.opened p {
  background: transparent;
}
.header_menu.opened p::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header_menu.opened p::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header_menu.opened p::before, .header_menu.opened p::after {
  background: #fff;
  top: 0;
  transition: top ease 0.2s, -webkit-transform ease 0.2s 0.2s;
  -webkit-transition: top ease 0.2s, -webkit-transform ease 0.2s 0.2s;
  transition: top ease 0.2s, transform ease 0.2s 0.2s;
  transition: top ease 0.2s, transform ease 0.2s 0.2s, -webkit-transform ease 0.2s 0.2s;
}
.header_menu::after {
  content: "MENU";
  position: relative;
  top: 64%;
  font-size: 1.4rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 700;
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .header_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 6rem;
    height: 6rem;
  }
  .header_menu p::before, .header_menu p::after {
    width: 30px;
  }
  .header_menu p::before {
    top: -2px;
  }
  .header_menu p::after {
    top: 6px;
  }
}
.cur {
  position: relative;
}
.cur::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #e50012;
  -webkit-transform: initial !important;
          transform: initial !important;
  -webkit-transform-origin: initial !important;
          transform-origin: initial !important;
  -webkit-transition: -webkit-transform initial !important;
  transition: -webkit-transform initial !important;
  transition: transform initial !important;
  transition: transform initial, -webkit-transform initial !important;
}

.fixed {
  position: fixed;
}

@media all and (-ms-high-contrast: none) {
  .cur {
    border-bottom: 2px solid #e50012;
    padding-bottom: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .header_logo .ja_logo img {
    width: auto;
    height: 2.5rem;
  }
  .header_nav .header_nav_box .header_items li {
    padding: 2vh 0;
  }
  .header_nav .header_nav_box .header_items li > a::after {
    display: none;
  }
  .header_nav .header_nav_box .header_entryArea {
    width: 90%;
    margin: 7.5vw auto 0;
  }
  .header_nav .header_nav_box .header_entryArea__list {
    margin: 7.5vw 0 0 0 !important;
  }
  .header_nav .header_nav_box .header_entryArea__list .header_btn_red {
    height: 15vw;
  }
}
/*---------------------------------------*/
/*recruit*/
/*---------------------------------------*/
/*---------------------------------------*/
/*font*/
/*---------------------------------------*/
.L_font_recruit {
  font-size: 9.6rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  letter-spacing: 0.048em;
  color: #000000;
  position: relative;
  line-height: 0.8;
}
.L_font_recruit::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.7rem;
  display: inline-block;
  width: 16rem;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}

.ttl_01_recruit {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-top: 5rem;
  color: #000000;
}

.M_font_recruit {
  font-size: 4.8rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  color: #000000;
  position: relative;
}
.M_font_recruit::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: -2rem;
  display: inline-block;
  width: 8rem;
  height: 4px;
  background-color: #e50012;
}

.ttl_02_recruit {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #000000;
}

.ttl_txt_recruit {
  font-size: 1.6rem;
  font-weight: 400;
  color: #000000;
}

@media all and (max-width: 768px) {
  .L_font_recruit {
    font-size: 4.8rem;
  }
  .L_font_recruit::after {
    bottom: -1.2rem;
    width: 8rem;
  }
  .ttl_01_recruit {
    font-size: 2rem;
    padding-top: 2.5rem;
  }
  .M_font_recruit {
    font-size: 3.2rem;
  }
  .M_font_recruit::after {
    width: 4rem;
    bottom: -1.2rem;
  }
}
/*---------------------------------------*/
/*btn*/
/*---------------------------------------*/
.h_btn {
  position: relative;
  display: inline-block;
  font-family: baskerville-display-pt, serif;
  font-weight: 700;
  letter-spacing: 0.048em;
  width: 30rem;
  padding: 2rem 39% 2rem 23%;
  background-color: #e50012;
  border: 1px solid #e50012;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.h_btn::before {
  content: "";
  position: absolute;
  top: 34%;
  width: 33.333%;
  height: 33.333%;
  right: 0;
  background: url(../images/common/arrow_white_right.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.h_btn:hover {
  background-color: #ffffff;
  color: #e50012;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.h_btn:hover::before {
  background: url(../images/common/arrow_red.svg) no-repeat;
  right: -4%;
}

@media all and (max-width: 768px) {
  .h_btn {
    width: 100%;
    padding: 2rem 39% 2rem 23%;
  }
  .h_btn:hover::before {
    right: -4%;
  }
}
/*---------------------------------------*/
/*main_recruit_wrap*/
/*---------------------------------------*/
.main_recruit_wrap .textBox {
  max-width: 120rem;
  margin: 20rem auto 12rem;
  text-align: center;
}
.main_recruit_wrap .form_area_recruit {
  width: 100%;
  margin-top: 12rem;
}
.main_recruit_wrap .form_area_recruit .bg_area_recruit {
  width: 100%;
  height: 0;
  margin-top: 12rem;
  padding-top: 30%;
  background: url(../images/recruit/images_recruit01.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.main_recruit_wrap .form_area_recruit .form_wrap_recruit {
  max-width: 120rem;
  margin: 4rem auto 0;
  position: relative;
}
.main_recruit_wrap .form_area_recruit .form_wrap_recruit .sectxt {
  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;
}
.main_recruit_wrap .form_area_recruit .form_wrap_recruit .sectxt .ttl_item_recruit {
  width: 33.33%;
  padding-right: 3.33%;
  border-right: 1px solid #000000;
}
.main_recruit_wrap .form_area_recruit .form_wrap_recruit .sectxt .ttl_item_recruit .ttl_02_recruit {
  padding-top: 4rem;
  line-height: 2;
}
.main_recruit_wrap .form_area_recruit .form_wrap_recruit .sectxt .ttl_txt_recruit {
  line-height: 2;
  width: 66.67%;
  padding-left: 5%;
}
.main_recruit_wrap .form_area_recruit .form_wrap_recruit .form_link_recruit {
  position: absolute;
  top: -2rem;
  right: 0;
  z-index: 1;
  margin-top: -5rem;
}
.main_recruit_wrap .air_plane_area {
  width: 100%;
  margin-top: 3rem;
  padding-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_recruit_wrap .air_plane_area .air_line {
  width: 82.5%;
}
.main_recruit_wrap .air_plane_area .air_line .air_line_item {
  width: 100%;
  height: 1px;
}
.main_recruit_wrap .air_plane_area .air_group {
  width: 12.5%;
}
.main_recruit_wrap .air_plane_area .air_group .air_item {
  width: 100%;
}
.main_recruit_wrap .animate2 {
  -webkit-animation: animation2 6s ease-out;
          animation: animation2 6s ease-out;
}
@-webkit-keyframes animation2 {
  0% {
    position: relative;
    left: -120%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
@keyframes animation2 {
  0% {
    position: relative;
    left: -120%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.main_recruit_wrap .animate3 {
  -webkit-animation: animation3 6s ease-out;
          animation: animation3 6s ease-out;
}
@-webkit-keyframes animation3 {
  0% {
    position: relative;
    left: -800%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
@keyframes animation3 {
  0% {
    position: relative;
    left: -800%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.main_recruit_wrap .box_area {
  max-width: 120rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 8rem;
  margin-left: auto;
  margin-right: auto;
}
.main_recruit_wrap .box_area .box_ini {
  display: block;
  width: 50%;
}
.main_recruit_wrap .box_area .box_ini .img_area {
  position: relative;
  line-height: 0;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.main_recruit_wrap .box_area .box_ini .img_area::before {
  content: url(../images/common/arrow_black_right.svg);
  position: absolute;
  background-color: #ffffff;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 16px;
  padding: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1;
}
.main_recruit_wrap .box_area .box_ini .img_area:hover::before {
  content: url(../images/common/arrow_white_right.svg);
  background-color: #e50012;
}
.main_recruit_wrap .box_area .box_ini .img_area .recruit_pic {
  line-height: 0;
  width: 100%;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.main_recruit_wrap .box_area .box_ini .img_area .recruit_pic:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.main_recruit_wrap .box_area .box_ini .text_area {
  text-align: left;
}
.main_recruit_wrap .box_area .box_ini .M_font_recruit {
  margin-top: 2.9rem;
  font-size: 4rem;
}
.main_recruit_wrap .box_area .box_ini .M_font_recruit::after {
  bottom: -1.5rem;
}
.main_recruit_wrap .box_area .box_ini .ttl_02_recruit {
  padding-top: 3.5rem;
  line-height: 1;
}
.main_recruit_wrap .box_area .no_link_pre {
  pointer-events: none;
}
.main_recruit_wrap .box_area .no_link_pre .img_area::before {
  display: none;
}

@media all and (max-width: 1334px) {
  .main_recruit_wrap .textBox {
    width: 90%;
  }
  .main_recruit_wrap .form_area_recruit .form_wrap_recruit {
    width: 90%;
  }
  .main_recruit_wrap .box_area {
    width: 90%;
  }
}
@media all and (max-width: 768px) {
  .main_recruit_wrap .textBox {
    width: 90%;
    margin: 10rem auto 6rem;
  }
  .main_recruit_wrap .form_area_recruit {
    margin-top: 6rem;
  }
  .main_recruit_wrap .form_area_recruit .bg_area_recruit {
    margin-top: 6rem;
    padding-top: 60%;
    background: url(../images/recruit/images_recruit01_sp.jpg) no-repeat;
    background-size: cover;
  }
  .main_recruit_wrap .form_area_recruit .form_wrap_recruit {
    margin: 2rem auto 0;
    position: initial;
  }
  .main_recruit_wrap .form_area_recruit .form_wrap_recruit .sectxt {
    display: block;
  }
  .main_recruit_wrap .form_area_recruit .form_wrap_recruit .sectxt .ttl_item_recruit {
    width: 100%;
    padding-right: 0;
    border-right: 0;
  }
  .main_recruit_wrap .form_area_recruit .form_wrap_recruit .sectxt .ttl_item_recruit .ttl_02_recruit {
    padding-top: 2rem;
    line-height: 1.6;
  }
  .main_recruit_wrap .form_area_recruit .form_wrap_recruit .sectxt .ttl_txt_recruit {
    line-height: 1.6;
    width: 100%;
    padding-left: 0;
    margin-top: 2rem;
  }
  .main_recruit_wrap .form_area_recruit .form_wrap_recruit .form_link_recruit {
    position: initial;
    z-index: initial;
    margin-top: 2rem;
  }
  .main_recruit_wrap .air_plane_area {
    margin-top: 4rem;
  }
  .main_recruit_wrap .air_plane_area .air_group {
    width: 25%;
  }
  @-webkit-keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  @keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  .main_recruit_wrap .box_area {
    display: block;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    margin-top: 4rem;
  }
  .main_recruit_wrap .box_area .box_ini {
    width: 100%;
  }
  .main_recruit_wrap .box_area .box_ini .M_font_recruit {
    font-size: 2.4rem;
    margin-top: 2rem;
  }
  .main_recruit_wrap .box_area .box_ini .M_font_recruit::after {
    bottom: -1.5rem;
    width: 4rem;
  }
  .main_recruit_wrap .box_area .box_ini .ttl_02_recruit {
    padding-top: 3rem;
    line-height: 1.6;
  }
  .main_recruit_wrap .box_area .box02 {
    margin-top: 4rem;
  }
}
/*---------------------------------------*/
/*outline*/
/*---------------------------------------*/
/*---------------------------------------*/
/*font*/
/*---------------------------------------*/
.L_font_out {
  font-size: 4.8rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  color: #000000;
  position: relative;
  line-height: 0.8;
}
.L_font_out::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.5rem;
  display: inline-block;
  width: 8rem;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}

.info_text {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  color: #000000;
}

.ttl_01_out {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  padding-top: 5rem;
  color: #000000;
}

.ttl_02_out {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #000000;
  margin-top: 6rem;
}

.ttl_03_out {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  color: #000000;
}

.ttl_03_gy_out {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  color: #333333;
}

.link_info {
  color: #e50012;
  text-decoration: underline;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.link_info:hover {
  text-decoration: none;
}

.ttl_sml_gy_out {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  color: #333333;
}

.info_font_out {
  font-size: 3.2rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info_font_out::before, .info_font_out::after {
  border-top: 1px solid;
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.info_font_out::before {
  margin-right: 4rem;
}
.info_font_out::after {
  margin-left: 4rem;
}

@media all and (max-width: 768px) {
  .L_font_out {
    font-size: 3.2rem;
  }
  .L_font_out::after {
    bottom: -1.5rem;
    width: 4rem;
  }
  .info_text {
    font-size: 1.6rem;
  }
  .ttl_01_out {
    font-size: 1.6rem;
    padding-top: 2.5rem;
    line-height: 1.6;
  }
  .ttl_02_out {
    font-size: 2rem;
  }
  .ttl_03_out {
    font-size: 1.6rem;
  }
  .ttl_03_gy_out {
    font-size: 1.6rem;
  }
  .info_font_out {
    font-size: 2.4rem;
  }
  .info_font_out::before {
    margin-right: 2rem;
  }
  .info_font_out::after {
    margin-left: 2rem;
  }
}
/*---------------------------------------*/
/*btn*/
/*---------------------------------------*/
.per_link_init {
  width: 100%;
  margin-top: 7.5rem;
}
.per_link_init .air_plane_area {
  padding-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.per_link_init .air_plane_area .air_line {
  width: 82.5%;
}
.per_link_init .air_plane_area .air_line .air_line_item {
  width: 100%;
  height: 1px;
}
.per_link_init .air_plane_area .air_group {
  width: 12.5%;
}
.per_link_init .air_plane_area .air_group .air_item {
  width: 100%;
}
.per_link_init .animate2 {
  -webkit-animation: animation2 6s ease-out;
          animation: animation2 6s ease-out;
}
@keyframes animation2 {
  0% {
    position: relative;
    left: -120%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.per_link_init .animate3 {
  -webkit-animation: animation3 6s ease-out;
          animation: animation3 6s ease-out;
}
@keyframes animation3 {
  0% {
    position: relative;
    left: -800%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.per_link_init .per_link_area {
  max-width: 80rem;
  margin: 8rem auto 0;
}
.per_link_init .per_link_area .per_link_item {
  text-align: center;
}
.per_link_init .per_link_area .per_link_item .per_textBox .ttl_en {
  font-size: 4.8rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  position: relative;
}
.per_link_init .per_link_area .per_link_item .per_textBox .ttl_en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  display: inline-block;
  width: 8rem;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}
.per_link_init .per_link_area .per_link_item .per_textBox .ttl_ja {
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  margin-top: 3rem;
}
.per_link_init .per_link_area .per_link_item .btn_in_per {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link {
  position: relative;
  display: inline-block;
  width: 50%;
  padding: 2rem 10%;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link::before {
  content: "";
  position: absolute;
  top: 37%;
  width: 1.6rem;
  height: 1.6rem;
  background-size: contain;
  display: inline-block;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link:hover {
  background-color: #e50012;
  color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03 {
  margin-right: 5%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03::before {
  background: url(../images/common/arrow_black_left.svg) no-repeat;
  left: 24%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03:hover::before {
  background: url(../images/common/arrow_white_left.svg) no-repeat;
  left: 20%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02 {
  margin-left: 0 !important;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02::before {
  background: url(../images/common/arrow_black_right.svg) no-repeat;
  right: 24%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02:hover::before {
  background: url(../images/common/arrow_white_right.svg) no-repeat;
  right: 20%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_mis {
  margin-top: 0 !important;
}

@media all and (max-width: 768px) {
  .per_link_init {
    margin-top: 3.75rem;
  }
  .per_link_init .air_plane_area .air_group {
    width: 25%;
  }
  @-webkit-keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  @keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  .per_link_init .per_link_area {
    width: 90%;
    margin: 4rem auto 0;
  }
  .per_link_init .per_link_area .per_link_item .per_textBox .ttl_en {
    font-size: 3.2rem;
  }
  .per_link_init .per_link_area .per_link_item .per_textBox .ttl_en::after {
    bottom: -0.7rem;
    width: 4rem;
    height: 4px;
  }
  .per_link_init .per_link_area .per_link_item .per_textBox .ttl_ja {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per {
    margin-top: 3rem;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link {
    padding: 4vw 2vw;
    font-size: 3vw;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link::before {
    top: 38%;
    width: 3vw;
    height: 3vw;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03 {
    margin-right: 5%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03::before {
    left: 12%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03:hover::before {
    left: 8%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02 {
    width: 65%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02::before {
    right: 12%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02:hover::before {
    right: 8%;
  }
}
/*---------------------------------------*/
/*main_outline_wrap*/
/*---------------------------------------*/
.main_outline_wrap .textBox {
  max-width: 120rem;
  margin: 20rem auto 0;
  padding-bottom: 11rem;
  text-align: center;
}
.main_outline_wrap .section_all {
  max-width: 120rem;
  margin: 0rem auto 10rem;
}
.main_outline_wrap .section_all .info_font_out {
  text-align: center;
}
.main_outline_wrap .section_all .ct01_out {
  margin-top: 11rem;
}
.main_outline_wrap .section_all .ct01_out:first-of-type {
  margin-top: 0;
}
.main_outline_wrap .section_all .ttl_02_out {
  position: relative;
  line-height: 1.6;
  padding-left: 6rem;
}
.main_outline_wrap .section_all .ttl_02_out::before {
  position: absolute;
  content: "";
  background: url(../images/common/square_red.jpg);
  width: 4rem;
  height: 4px;
  top: 50%;
  left: 0;
}
.main_outline_wrap .section_all .flow-wrap {
  width: 50vw;
  margin: 0 auto;
}
.main_outline_wrap .section_all .flow-wrap .flow-txt {
  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;
  width: 100%;
  margin-top: 6rem;
  line-height: 1.6;
  font-size: 2.4rem;
  font-weight: 600;
}
.main_outline_wrap .section_all .flow-wrap .flow-txt .num {
  display: inline-block;
  width: 5%;
  color: #e50012;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
}
.main_outline_wrap .section_all .flow-wrap .flow-txt .num + span {
  width: 90%;
}
.main_outline_wrap .section_all .flow-wrap .flow-note {
  display: block;
  padding-left: 10%;
  margin-top: 1rem;
  line-height: 1.6;
}
.main_outline_wrap .section_all .info_text {
  line-height: 2;
  margin-top: 4.5rem;
}
.main_outline_wrap .section_all .list_all_out {
  margin-top: 6rem;
}
.main_outline_wrap .section_all .list_all_out .border_red_out {
  border-top: 2px solid #e50012;
}
.main_outline_wrap .section_all .list_all_out .bg_grey {
  background-color: #e6e9e8;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out {
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .list_ttl_out {
  width: 16.66%;
  padding-left: 3.33%;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .ttl_03_gy_out {
  line-height: 1.75;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .ttl_03_out {
  line-height: 1.75;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .ttl_sml_gy_out {
  line-height: 2;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .list_cont_out {
  width: 83.33%;
  padding-right: 3.33%;
  padding-left: 3.33%;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .info_magn {
  margin-top: 2rem;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .list_wrap {
  width: 83.33%;
  padding-right: 3.33%;
  padding-left: 3.33%;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .list_wrap .list_response_wrap_out {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .list_wrap .list_response_wrap_out .list_response_list_out01 {
  width: 11rem;
}
.main_outline_wrap .section_all .list_all_out .list_wrap_out .list_wrap .list_response_wrap_out .list_response_list_out02 {
  width: 88.5%;
}
.main_outline_wrap .section_all .list_all_out .rec-image {
  width: 50%;
  margin: 4.5rem auto 0;
}
.main_outline_wrap .section_all .list_all_out .rec-image img {
  width: 100%;
}
.main_outline_wrap .section_all .list_all_out .rec-image > figcaption {
  display: block;
  margin-top: 2rem;
  line-height: 1.4;
  text-align: center;
  font-family: source-han-sans-japanese, sans-serif;
}

@media all and (max-width: 1334px) {
  .main_outline_wrap .textBox {
    width: 90%;
  }
  .main_outline_wrap .section_all {
    width: 90%;
  }
  .main_outline_wrap .section_all .flow-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .main_outline_wrap .section_all .flow-wrap .flow-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-top: 6rem;
    line-height: 1.6;
    font-size: 2.4rem;
    font-weight: 600;
  }
  .main_outline_wrap .section_all .flow-wrap .flow-txt .num {
    display: inline-block;
    width: auto;
    margin: 0 auto;
    font-size: 4rem;
  }
  .main_outline_wrap .section_all .flow-wrap .flow-txt .num + span {
    width: 100%;
    text-align: center;
  }
  .main_outline_wrap .section_all .flow-wrap .flow-note {
    padding-left: 0;
    margin-top: 2rem;
    text-align: center;
  }
}
@media all and (max-width: 768px) {
  .main_outline_wrap .textBox {
    margin: 10rem auto 0;
    padding-bottom: 5.5rem;
  }
  .main_outline_wrap .section_all {
    margin: 0 auto 5rem;
  }
  .main_outline_wrap .section_all .ct01_out {
    margin-top: 5.5rem;
  }
  .main_outline_wrap .section_all .ttl_02_out {
    padding-left: 3rem;
  }
  .main_outline_wrap .section_all .ttl_02_out::before {
    width: 2rem;
  }
  .main_outline_wrap .section_all .info_text {
    line-height: 1.6;
    margin-top: 2.25rem;
  }
  .main_outline_wrap .section_all .list_all_out {
    margin-top: 3rem;
  }
  .main_outline_wrap .section_all .list_all_out .list_wrap_out {
    padding: 1.5rem 0;
    display: block;
  }
  .main_outline_wrap .section_all .list_all_out .list_wrap_out .list_ttl_out {
    width: 100%;
  }
  .main_outline_wrap .section_all .list_all_out .list_wrap_out .ttl_03_gy_out {
    line-height: 1.6;
  }
  .main_outline_wrap .section_all .list_all_out .list_wrap_out .ttl_03_out {
    line-height: 1.6;
  }
  .main_outline_wrap .section_all .list_all_out .list_wrap_out .ttl_sml_gy_out {
    line-height: 1.75;
  }
  .main_outline_wrap .section_all .list_all_out .list_wrap_out .list_cont_out {
    width: 100%;
    margin-top: 0.75rem;
  }
  .main_outline_wrap .section_all .list_all_out .list_wrap_out .info_magn {
    margin-top: 1rem;
  }
  .main_outline_wrap .section_all .list_all_out .list_wrap_out .list_wrap {
    width: 100%;
    margin-top: 0.75rem;
  }
  .main_outline_wrap .section_all .list_all_out .list_wrap_out .list_wrap .list_response_wrap_out .list_response_list_out01 {
    width: 16rem;
  }
  .main_outline_wrap .section_all .rec-image {
    width: 100% !important;
    margin: 4.5rem auto 0;
  }
  .main_outline_wrap .section_all .rec-image > figcaption {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}
/*---------------------------------------*/
/*faq*/
/*---------------------------------------*/
/*---------------------------------------*/
/*font*/
/*---------------------------------------*/
.L_font_faq {
  font-size: 4.8rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  color: #000000;
  position: relative;
  line-height: 0.8;
}
.L_font_faq::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.5rem;
  display: inline-block;
  width: 8rem;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}

.ttl_01_faq {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  padding-top: 5rem;
  color: #000000;
}

.ttl_02_faq {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #000000;
}

.ttl_03_faq {
  font-size: 2rem;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
}

.ttl_03_gy_faq {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  color: #333333;
}

@media all and (max-width: 768px) {
  .L_font_faq {
    font-size: 3.2rem;
  }
  .L_font_faq::after {
    bottom: -1.5rem;
    width: 4rem;
  }
  .ttl_01_faq {
    font-size: 1.6rem;
    padding-top: 2.5rem;
  }
  .ttl_02_faq {
    font-size: 2rem;
  }
  .ttl_03_faq {
    font-size: 1.8rem;
  }
  .ttl_03_gy_faq {
    font-size: 1.6rem;
  }
}
/*---------------------------------------*/
/*btn*/
/*---------------------------------------*/
.per_link_init {
  width: 100%;
  margin-top: 7.5rem;
}
.per_link_init .air_plane_area {
  padding-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.per_link_init .air_plane_area .air_line {
  width: 82.5%;
}
.per_link_init .air_plane_area .air_line .air_line_item {
  width: 100%;
  height: 1px;
}
.per_link_init .air_plane_area .air_group {
  width: 12.5%;
}
.per_link_init .air_plane_area .air_group .air_item {
  width: 100%;
}
.per_link_init .animate2 {
  -webkit-animation: animation2 6s ease-out;
          animation: animation2 6s ease-out;
}
@keyframes animation2 {
  0% {
    position: relative;
    left: -120%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.per_link_init .animate3 {
  -webkit-animation: animation3 6s ease-out;
          animation: animation3 6s ease-out;
}
@keyframes animation3 {
  0% {
    position: relative;
    left: -800%;
  }
  100% {
    position: relative;
    left: 0;
  }
}
.per_link_init .per_link_area {
  max-width: 80rem;
  margin: 8rem auto 0;
}
.per_link_init .per_link_area .per_link_item {
  text-align: center;
}
.per_link_init .per_link_area .per_link_item .per_textBox .ttl_en {
  font-size: 4.8rem;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  position: relative;
}
.per_link_init .per_link_area .per_link_item .per_textBox .ttl_en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  display: inline-block;
  width: 8rem;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}
.per_link_init .per_link_area .per_link_item .per_textBox .ttl_ja {
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  margin-top: 3rem;
}
.per_link_init .per_link_area .per_link_item .btn_in_per {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link {
  position: relative;
  display: inline-block;
  width: 50%;
  padding: 2rem 10%;
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link::before {
  content: "";
  position: absolute;
  top: 37%;
  width: 1.6rem;
  height: 1.6rem;
  background-size: contain;
  display: inline-block;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link:hover {
  background-color: #e50012;
  color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03 {
  margin-right: 5%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03::before {
  background: url(../images/common/arrow_black_left.svg) no-repeat;
  left: 24%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03:hover::before {
  background: url(../images/common/arrow_white_left.svg) no-repeat;
  left: 20%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02 {
  margin-left: 5%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02::before {
  background: url(../images/common/arrow_black_right.svg) no-repeat;
  right: 24%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02:hover::before {
  background: url(../images/common/arrow_white_right.svg) no-repeat;
  right: 20%;
}
.per_link_init .per_link_area .per_link_item .btn_in_per .per_mis {
  margin-top: 0 !important;
}

@media all and (max-width: 768px) {
  .per_link_init {
    margin-top: 3.75rem;
  }
  .per_link_init .air_plane_area .air_group {
    width: 25%;
  }
  @-webkit-keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  @keyframes animation2 {
    0% {
      position: relative;
      left: -210%;
    }
    100% {
      position: relative;
      left: 0;
    }
  }
  .per_link_init .per_link_area {
    width: 90%;
    margin: 4rem auto 0;
  }
  .per_link_init .per_link_area .per_link_item .per_textBox .ttl_en {
    font-size: 3.2rem;
  }
  .per_link_init .per_link_area .per_link_item .per_textBox .ttl_en::after {
    bottom: -0.7rem;
    width: 4rem;
    height: 4px;
  }
  .per_link_init .per_link_area .per_link_item .per_textBox .ttl_ja {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per {
    margin-top: 3rem;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link {
    padding: 4vw 2vw;
    font-size: 3vw;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link::before {
    top: 38%;
    width: 3vw;
    height: 3vw;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03 {
    margin-right: 5%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03::before {
    left: 12%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli03:hover::before {
    left: 8%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02 {
    margin-left: 5%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02::before {
    right: 12%;
  }
  .per_link_init .per_link_area .per_link_item .btn_in_per .per_link.pli02:hover::before {
    right: 8%;
  }
}
/*---------------------------------------*/
/*main_faq_wrap*/
/*---------------------------------------*/
.main_faq_wrap .textBox {
  max-width: 120rem;
  margin: 20rem auto 0;
  padding-bottom: 12rem;
  text-align: center;
  border-bottom: 1px solid #000000;
}
.main_faq_wrap .section_all {
  max-width: 120rem;
  margin: 12rem auto 10rem;
}
.main_faq_wrap .section_all .ct01_faq {
  margin-top: 12rem;
}
.main_faq_wrap .section_all .ttl_02_faq {
  position: relative;
  line-height: 1;
  padding-left: 6rem;
}
.main_faq_wrap .section_all .ttl_02_faq::before {
  position: absolute;
  content: "";
  background: url(../images/common/square_red.jpg);
  width: 4rem;
  height: 4px;
  top: 50%;
  left: 0;
}
.main_faq_wrap .section_all .list_all_faq {
  border: 1px solid #000000;
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq {
  width: 100%;
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq .ttl_03_faq {
  line-height: 1.75;
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq .ttl_03_gy_faq {
  border-top: 1px solid #000000;
  line-height: 1.75;
  padding: 2rem 4rem 2rem 4rem;
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont {
  padding: 2.25rem 8rem 2.25rem 10rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont::before, .main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4rem;
  width: 20px;
  height: 2px;
  background: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont:hover {
  background: rgba(245, 245, 245, 0.7);
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont.open::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont.open::after {
  opacity: 0;
}
.main_faq_wrap .section_all .list_all_faq .list_wrap_faq .subMenu {
  display: none;
}
.main_faq_wrap .section_all .num_all_faq {
  position: relative;
}
.main_faq_wrap .section_all .num_all_faq::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 4rem;
  left: 4rem;
  top: 2rem;
  z-index: 1;
}
.main_faq_wrap .section_all .num01_faq {
  margin-top: 6rem;
  position: relative;
}
.main_faq_wrap .section_all .num01_faq::before {
  background: url(../images/recruit/faq/num01.png);
  background-size: cover;
}
.main_faq_wrap .section_all .num02_faq {
  margin-top: 2rem;
  position: relative;
}
.main_faq_wrap .section_all .num02_faq::before {
  background: url(../images/recruit/faq/num02.png);
  background-size: cover;
}
.main_faq_wrap .section_all .num03_faq {
  margin-top: 2rem;
  position: relative;
}
.main_faq_wrap .section_all .num03_faq::before {
  background: url(../images/recruit/faq/num03.png);
  background-size: cover;
}
.main_faq_wrap .section_all .num04_faq {
  margin-top: 2rem;
  position: relative;
}
.main_faq_wrap .section_all .num04_faq::before {
  background: url(../images/recruit/faq/num04.png);
  background-size: cover;
}
.main_faq_wrap .section_all .num05_faq {
  margin-top: 2rem;
  position: relative;
}
.main_faq_wrap .section_all .num05_faq::before {
  background: url(../images/recruit/faq/num05.png);
  background-size: cover;
}
.main_faq_wrap .section_all .num06_faq {
  margin-top: 2rem;
  position: relative;
}
.main_faq_wrap .section_all .num06_faq::before {
  background: url(../images/recruit/faq/num06.png);
  background-size: cover;
}
.main_faq_wrap .section_all .num07_faq {
  margin-top: 2rem;
  position: relative;
}
.main_faq_wrap .section_all .num07_faq::before {
  background: url(../images/recruit/faq/num07.png);
  background-size: cover;
}
.main_faq_wrap .section_all .num08_faq {
  margin-top: 2rem;
  position: relative;
}
.main_faq_wrap .section_all .num08_faq::before {
  background: url(../images/recruit/faq/num08.png);
  background-size: cover;
}
.main_faq_wrap .section_all .num09_faq {
  margin-top: 2rem;
  position: relative;
}
.main_faq_wrap .section_all .num09_faq::before {
  background: url(../images/recruit/faq/num09.png);
  background-size: cover;
}

@media all and (max-width: 1334px) {
  .main_faq_wrap .textBox {
    width: 90%;
  }
  .main_faq_wrap .section_all {
    width: 90%;
  }
}
@media all and (max-width: 768px) {
  .main_faq_wrap .textBox {
    margin: 10rem auto 0;
    padding-bottom: 6rem;
  }
  .main_faq_wrap .section_all {
    margin: 6rem auto 5rem;
  }
  .main_faq_wrap .section_all .ct01_faq {
    margin-top: 6rem;
  }
  .main_faq_wrap .section_all .ttl_02_faq {
    line-height: 1.6;
    padding-left: 3rem;
  }
  .main_faq_wrap .section_all .ttl_02_faq::before {
    width: 2rem;
    top: 1.5rem;
  }
  .main_faq_wrap .section_all .list_all_faq .list_wrap_faq .ttl_03_faq {
    line-height: 1.6;
  }
  .main_faq_wrap .section_all .list_all_faq .list_wrap_faq .ttl_03_gy_faq {
    line-height: 1.6;
    padding: 1rem 2rem 1rem 2rem;
  }
  .main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont {
    padding: 5rem 5rem 2rem 2rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont::before, .main_faq_wrap .section_all .list_all_faq .list_wrap_faq .menu_cont::after {
    right: 2rem;
  }
  .main_faq_wrap .section_all .num_all_faq::before {
    width: 3rem;
    height: 3rem;
    left: 46%;
    top: 1.2rem;
  }
  .main_faq_wrap .section_all .num01_faq {
    margin-top: 3rem;
  }
  .main_faq_wrap .section_all .num02_faq {
    margin-top: 1rem;
  }
  .main_faq_wrap .section_all .num03_faq {
    margin-top: 1rem;
  }
  .main_faq_wrap .section_all .num04_faq {
    margin-top: 1rem;
  }
  .main_faq_wrap .section_all .num05_faq {
    margin-top: 1rem;
  }
  .main_faq_wrap .section_all .num06_faq {
    margin-top: 1rem;
  }
  .main_faq_wrap .section_all .num07_faq {
    margin-top: 1rem;
  }
  .main_faq_wrap .section_all .num08_faq {
    margin-top: 1rem;
  }
  .main_faq_wrap .section_all .num09_faq {
    margin-top: 1rem;
  }
}
/*---------------------------------------*/
/*ideal*/
/*---------------------------------------*/
/*---------------------------------------*/
/*font*/
/*---------------------------------------*/
.L_font_idl {
  font-size: 3vw;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  color: #000000;
  position: relative;
  line-height: 1.71;
}
.L_font_idl::after {
  content: "";
  position: absolute;
  left: 2.5vw;
  bottom: -0.5vh;
  display: inline-block;
  width: 5vw;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #e50012;
}

.ttl_01_idl {
  font-size: 1vw;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-top: 2rem;
  line-height: 2;
}

.sub_font {
  text-align: left;
}

.sub_font.to {
  font-size: 0.875vw;
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1.4;
}

.sub_font.fr {
  font-size: 1.5vw;
  letter-spacing: 0.08em;
  font-weight: 400;
  padding-top: 1rem;
  line-height: 1.33;
}

.ttl_02_idl {
  font-family: source-han-sans-japanese, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ttl_03_idl {
  font-size: 2.4rem;
  font-weight: 600;
}

.txt_idl {
  font-family: source-han-sans-japanese, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.txt_red_idl {
  font-family: source-han-sans-japanese, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #e50012;
}

@media all and (max-width: 768px) {
  .L_font_idl {
    font-size: 6vw;
  }
  .L_font_idl::after {
    left: 4vw;
    bottom: -0.5vh;
    width: 8vw;
  }
  .ttl_01_idl {
    font-size: 3vw;
    padding-top: 1rem;
  }
  .sub_font.to {
    font-size: 2vw;
  }
  .sub_font.fr {
    font-size: 2vw;
  }
  .ttl_02_idl {
    font-size: 2rem;
  }
  .ttl_03_idl {
    font-size: 2rem;
  }
  .txt_idl {
    font-size: 1.6rem;
  }
  .txt_red_idl {
    font-size: 1.6rem;
  }
}
/*---------------------------------------*/
/*main_ideal_wrap*/
/*---------------------------------------*/
.pc {
  display: none;
}

.main_ideal_wrap .ct01 {
  width: 75%;
  height: 0;
  margin-left: 25%;
  margin-top: 8rem;
  padding-top: 37.5%;
  background: url(../images/recruit/ideal/images_ideal01.jpg) no-repeat;
  background-size: cover;
  position: relative;
}
.main_ideal_wrap .ct01 .main_txt_area .textBox {
  position: absolute;
  top: 39%;
  left: -16.8%;
  z-index: 1;
}
.main_ideal_wrap .ct01 .main_txt_area .sub_txt {
  position: absolute;
  top: 80%;
  left: -16.8%;
  z-index: 1;
}
.main_ideal_wrap .ct01 .main_ttl_area {
  position: absolute;
  left: 63%;
  top: 13.35%;
  z-index: 1;
}
.main_ideal_wrap .ct01 .main_ttl_area .main_txt {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 2.5vw;
  line-height: 1.41;
  text-align: left;
}
.main_ideal_wrap .ct01 .main_ttl_area .main_txt > span {
  display: inline-block;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.main_ideal_wrap .ct01 .main_ttl_area .main_txt .h1_font.up {
  background: #ffffff;
  padding: 0.943vw 0.5vw 1.25vw;
  height: 35vw;
}
.main_ideal_wrap .ct01 .main_ttl_area .main_txt .h1_font.mid {
  background: #ffffff;
  padding: 0.943vw 0.5vw 1.25vw;
  height: 32.5vw;
}
.main_ideal_wrap .ct01 .main_ttl_area .main_txt .h1_font.down {
  background: #ffffff;
  padding: 0.943vw 0.5vw 1.25vw;
}
.main_ideal_wrap .se_all {
  max-width: 120rem;
  margin: 6rem auto 0;
}
.main_ideal_wrap .se_all .se_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main_ideal_wrap .se_all .se_area .se_group01 {
  display: block;
  text-align: center;
  width: 9.66%;
  margin: 0 auto;
}
.main_ideal_wrap .se_all .se_area .se_group01 .se_en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.4rem;
  font-family: baskerville-display-pt, serif;
  color: #e50012;
}
.main_ideal_wrap .se_all .se_area .se_group01 .se_red {
  font-size: 9.6rem;
  font-family: baskerville-display-pt, serif;
  font-style: italic;
  color: #e50012;
  padding-top: 2rem;
  line-height: 1.25;
  padding-right: 5%;
}
.main_ideal_wrap .se_all .se_area .se_group02 {
  border-top: 1px solid #000000;
  margin-top: 6rem;
  padding-left: 9.4%;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .ttl_02_idl {
  padding: 4rem 0;
  border-bottom: 1px solid #000000;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .main_item_idl {
  margin-top: 7rem;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_red_idl {
  line-height: 3;
  padding-left: 4rem;
  position: relative;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_red_idl::before {
  content: "Q";
  position: absolute;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1;
  color: #e50012;
  top: 1rem;
  left: 0;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .ttl_03_idl {
  line-height: 1.6;
  margin-top: 2rem;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_idl {
  line-height: 2;
  margin-top: 2.5rem;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_item_separate_idl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_item_separate_idl .sep_item_idl {
  width: 48%;
  margin-top: 6rem;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_item_separate_idl .sep_item_se_idl {
  width: 48%;
  margin-top: 11rem;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_idl {
  margin-top: 11rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_idl .idl_img {
  width: 48%;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_idl .idl_img .idl_pic {
  width: 100%;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_single_idl {
  margin-top: 11rem;
  display: block;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_single_idl .idl_img {
  width: 100%;
}
.main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_single_idl .idl_img .idl_pic {
  width: 100%;
}
.main_ideal_wrap .se_all .ct03, .main_ideal_wrap .se_all .ct04, .main_ideal_wrap .se_all .ct05 {
  margin-top: 6rem;
}
.main_ideal_wrap .se_all .profile {
  width: 100%;
  margin: 10rem auto 0;
}
.main_ideal_wrap .se_all .profile .profile_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group01 {
  width: 36.667%;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group01 .pro {
  font-size: 9.6rem;
  font-weight: 400;
  font-family: baskerville-display-pt, serif;
  color: #e9ecec;
  margin-top: -1rem;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 36.36%;
  margin-top: 4.5rem;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group .profile_vt {
  width: 11%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 2;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group .profile_main_name .profile_img {
  width: 100%;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group .profile_main_name .profile_img .pro_pic {
  width: 100%;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group .profile_main_name .profile_item01 {
  margin-top: 2rem;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  letter-spacing: 0.24em;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group .profile_main_name .profile_item01 .profile_txt {
  font-size: 1.4rem;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group .profile_main_name .profile_item01 .profile_pre {
  margin-top: 1rem;
  font-size: 2.4rem;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group02 {
  width: 60%;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table {
  border-top: 1px solid #cccccc;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table .tabel_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cccccc;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000000;
  line-height: 2;
  letter-spacing: 0.04em;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table .tabel_group .table_ttl {
  width: 25%;
  background: #e6e9e8;
  padding: 0.7rem 2rem 0.7rem 2rem;
  font-family: source-han-sans-japanese, sans-serif;
}
.main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table .tabel_group .table_txt {
  width: 75%;
  padding: 0.7rem 2rem 0.7rem 2rem;
  font-family: source-han-sans-japanese, sans-serif;
}

@media all and (max-width: 1334px) {
  .main_ideal_wrap .se_all {
    width: 90%;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group01 .pro {
    font-size: 7.2vw;
  }
}
@media all and (max-width: 1200px) {
  .main_ideal_wrap .ct01 {
    margin-top: 6rem;
  }
}
@media all and (max-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .main_ideal_wrap .ct01 {
    width: 80%;
    margin-left: 20%;
    margin-top: 6rem;
    padding-top: 75%;
  }
  .main_ideal_wrap .ct01 .main_txt_area .textBox {
    top: 32%;
  }
  .main_ideal_wrap .ct01 .main_txt_area .sub_txt {
    top: 56%;
  }
  .main_ideal_wrap .ct01 .main_ttl_area {
    left: -18%;
    bottom: 0%;
    top: initial;
  }
  .main_ideal_wrap .ct01 .main_ttl_area .main_txt {
    font-size: 4.16vw;
    -webkit-writing-mode: rl-tb;
        -ms-writing-mode: rl-tb;
            writing-mode: rl-tb;
    text-orientation: initial;
    line-height: 1.6;
  }
  .main_ideal_wrap .ct01 .main_ttl_area .main_txt .h1_font.up {
    padding: 0.5vw 1vw;
    height: auto;
  }
  .main_ideal_wrap .ct01 .main_ttl_area .main_txt .h1_font.mid {
    padding: 0.5vw 1vw;
    height: auto;
  }
  .main_ideal_wrap .ct01 .main_ttl_area .main_txt .h1_font.down {
    padding: 0.5vw 1vw;
    height: auto;
  }
  .main_ideal_wrap .se_all {
    margin: 3rem auto;
  }
  .main_ideal_wrap .se_all .se_area {
    display: block;
  }
  .main_ideal_wrap .se_all .se_area .se_group01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .main_ideal_wrap .se_all .se_area .se_group01 .se_en {
    font-size: 2rem;
    -webkit-writing-mode: rl-tb;
        -ms-writing-mode: rl-tb;
            writing-mode: rl-tb;
  }
  .main_ideal_wrap .se_all .se_area .se_group01 .se_red {
    font-size: 4.8rem;
    padding-top: 0;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 {
    margin-top: 0;
    padding-left: 0;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .ttl_02_idl {
    padding: 2rem 0;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .main_item_idl {
    margin-top: 3.5rem;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_red_idl {
    line-height: 1.5;
    padding-left: 3rem;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_red_idl::before {
    font-size: 2.4rem;
    top: 0;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .ttl_03_idl {
    margin-top: 1rem;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_idl {
    line-height: 1.6;
    margin-top: 1.25rem;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_item_separate_idl {
    display: block;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_item_separate_idl .sep_item_idl {
    width: 100%;
    margin-top: 3rem;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .txt_item_separate_idl .sep_item_se_idl {
    width: 100%;
    margin-top: 3rem;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_idl {
    margin-top: 5.5rem;
    display: block;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_idl .idl_img {
    width: 100%;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_idl .pic_sp {
    display: none;
  }
  .main_ideal_wrap .se_all .se_area .se_group02 .item_area .se_area_idl .idl_item .img_area_single_idl {
    margin-top: 5.5rem;
  }
  .main_ideal_wrap .se_all .ct03, .main_ideal_wrap .se_all .ct04, .main_ideal_wrap .se_all .ct05 {
    margin-top: 3rem;
  }
  .main_ideal_wrap .se_all .profile {
    width: 90%;
    margin: 5rem auto 0;
  }
  .main_ideal_wrap .se_all .profile .profile_group {
    display: block;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group01 {
    width: 100%;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group01 .pro {
    font-size: 4.8rem;
    margin-top: 0;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    margin-top: 2rem;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group .profile_vt {
    width: 10%;
    font-size: 2rem;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group .profile_main_name .profile_item01 {
    margin-top: 1rem;
    text-align: center;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group01 .profile_image_group .profile_main_name .profile_item01 .profile_pre {
    margin-top: 0.5rem;
    font-size: 2rem;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group02 {
    width: 100%;
    margin-top: 2.5rem;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table {
    border-top: 0;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table .tabel_group {
    border-bottom: 0;
    display: block;
    line-height: 1.6;
    text-align: center;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table .tabel_group .table_ttl {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 1rem;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table .tabel_group .table_txt {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 1rem;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table .tabel_group .sp_txt_left {
    text-align: left;
  }
  .main_ideal_wrap .se_all .profile .profile_group .profile_group02 .profile_table .tabel_group .table_last_border {
    border-bottom: 1px solid #cccccc;
  }
}
/*---------------------------------------*/
/*ie*/
/*---------------------------------------*/
@media all and (-ms-high-contrast: none) {
  .item_area {
    max-width: 100rem;
    margin: 0 auto;
  }
  .main_ideal_wrap .se_all .se_area .se_group01 {
    width: 45% !important;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 768px) {
  .main_ideal_wrap .ct01 .main_ttl_area {
    top: 82%;
    text-align: left;
  }
  .main_ideal_wrap .se_all .se_area .se_group01 {
    width: 100% !important;
  }
}
.footer_wrap {
  margin-top: 12rem;
  padding-top: 1rem;
  background-color: #f5f5f5;
}
.footer_wrap .footer_entry {
  background: url(../images/common/footer_image.jpg) no-repeat center;
  background-size: cover;
}
.footer_wrap .footer_entry .footer_entry_wrap {
  max-width: 120rem;
  margin: 0 auto;
  text-align: center;
  padding: 8rem 0 12rem;
}
.footer_wrap .footer_entry .footer_entry_wrap .footer_logo {
  width: 20rem;
  margin: 0 auto;
}
.footer_wrap .footer_entry .footer_entry_wrap .footer_ttl {
  font-family: baskerville-display-pt, serif;
  font-weight: 400;
  font-size: 4.8rem;
  letter-spacing: 0.048em;
  color: #ffffff;
  padding-top: 4rem;
}
.footer_wrap .footer_entry .footer_entry_wrap .footer_txt {
  line-height: 2;
  text-align: center;
  color: #ffffff;
  margin-top: 6rem;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side {
  width: 66.66%;
  margin: 6rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link {
  color: #ffffff;
  width: 40%;
  font-weight: 600;
  padding: 2.4rem 0;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link.rd {
  background-color: #e50012;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link.rd:hover {
  color: #ffffff;
  background-color: #000000;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link_no-link.rd_no-link {
  background-color: #e50012;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
  opacity: 0.6;
  pointer-events: none;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01 {
  width: 40% !important;
  pointer-events: initial !important;
  background-color: #ffffff !important;
  color: #e50012 !important;
  opacity: 1 !important;
  -webkit-transition: all 0.4s !important;
  transition: all 0.4s !important;
  position: relative !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01::before, .footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01::after {
  position: absolute !important;
  z-index: 2 !important;
  content: "" !important;
  width: 0 !important;
  height: 0 !important;
  border: 1px solid transparent !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01::before {
  top: -1px !important;
  left: -1px !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01::after {
  bottom: -1px !important;
  right: -1px !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover {
  color: #ffffff !important;
  background-color: #e50012 !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover::before, .footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover::after {
  width: 100% !important;
  height: 100% !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover::before {
  border-bottom-color: #ffffff !important;
  border-left-color: #ffffff !important;
  -webkit-transition: height 0.3s, width 0.3s 0.3s !important;
  transition: height 0.3s, width 0.3s 0.3s !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01:hover::after {
  border-top-color: #ffffff !important;
  border-right-color: #ffffff !important;
  -webkit-transition: height 0.3s, width 0.3s 0.3s !important;
  transition: height 0.3s, width 0.3s 0.3s !important;
}
.footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl02 {
  width: 40% !important;
  border: 1px solid transparent !important;
}
.footer_wrap .video_area {
  width: 100%;
  padding: 2.5vw 0;
  background-color: #f5f5f5;
}
.footer_wrap .video_area .footer_news_head {
  margin-bottom: 2.5vw;
  color: #e50012;
  text-align: center;
  font-size: 1.5vw;
  letter-spacing: 8px;
}
.footer_wrap .video_area .footer_news_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 65%;
  margin: 0 auto;
}
.footer_wrap .video_area .footer_news_wrap .footer_news_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30vw;
  padding: 1.5625vw 0;
  background-color: #ffffff;
  color: #e50012;
  border: 2px solid #e50012;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link:hover {
  color: white;
  background-color: #e50012;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link > p {
  font-size: 1.25vw;
  font-family: source-han-sans-japanese, sans-serif;
}
.footer_wrap .footer_news {
  width: 100%;
  padding: 2.5vw 0;
  background-color: #f5f5f5;
}
.footer_wrap .footer_news .footer_news_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 46vw;
  margin: 0 auto;
}
.footer_wrap .footer_news .footer_news_wrap .news-link, .footer_wrap .footer_news .footer_news_wrap .video-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1.5625vw 0;
  background-color: #ffffff;
  color: #e50012;
  border: 2px solid #e50012;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.footer_wrap .footer_news .footer_news_wrap .news-link:before, .footer_wrap .footer_news .footer_news_wrap .video-link:before {
  content: "";
  display: inline-block;
  width: 6.25vw;
  height: 6.3125vw;
  background: url(../images/common/banner_anniversary_01.png) no-repeat;
  background-size: 100%;
  background-position: center;
}
.footer_wrap .footer_news .footer_news_wrap .news-link:hover, .footer_wrap .footer_news .footer_news_wrap .video-link:hover {
  color: white;
  background-color: #e50012;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.footer_wrap .footer_news .footer_news_wrap .news-link:hover:before, .footer_wrap .footer_news .footer_news_wrap .video-link:hover:before {
  background: url(../images/common/banner_anniversary_02.png) no-repeat;
  background-size: 100%;
  background-position: center;
}
.footer_wrap .footer_news .footer_news_wrap .news-link > p, .footer_wrap .footer_news .footer_news_wrap .video-link > p {
  margin-left: 2.5vw;
  font-size: 1.5vw;
  font-family: source-han-sans-japanese, sans-serif;
}
.footer_wrap .footer_news .footer_news_wrap .video-link:before {
  display: none;
}
.footer_wrap .detail_wrap {
  margin: 12rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
.footer_wrap .detail_wrap .detail_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 47.5%;
}
.footer_wrap .detail_wrap .detail_group .detail_box01 {
  width: 37.5%;
}
.footer_wrap .detail_wrap .detail_group .detail_box02 {
  width: 57.5%;
}
.footer_wrap .detail_wrap .detail_group .detail_box03 {
  width: 57.14%;
}
.footer_wrap .detail_wrap .detail_group .detail_box04 {
  width: 32.5%;
}
.footer_wrap .detail_wrap .detail_group .ttl_04 {
  color: #e50012;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2;
  pointer-events: none;
}
.footer_wrap .detail_wrap .detail_group .detail_item02 {
  margin-top: 5rem;
}
.footer_wrap .detail_wrap .detail_group .detail {
  margin-top: 1.8rem;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list + .d_list {
  margin-top: 0.5em;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list::before {
  content: "";
  width: 0;
  height: 0;
  padding: 3px;
  display: inline-block;
  background-color: #e50012;
  border-radius: 50%;
  position: relative;
  top: 13px;
  margin-right: 5px;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list .num {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  line-height: 2.28;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list .f_link {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  line-height: 2.28;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer_wrap .detail_wrap .detail_group .detail .d_list .f_link:hover {
  color: #e50012;
}
.footer_wrap .detail_wrap .d_02 {
  width: 50%;
}
.footer_wrap .footer_bg {
  background-color: #ffffff;
}
.footer_wrap .footer_bg .footer_pall {
  margin: 0 4rem;
  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;
  padding: 4rem 0;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../images/common/footer_icon.png) no-repeat;
  background-size: contain;
  display: inline-block;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area + .footer_area {
  margin-left: 2em;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area .footer_link {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: source-han-sans-japanese, sans-serif;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2rem;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group02 {
  width: 23.333%;
  text-align: right;
}
.footer_wrap .footer_bg .footer_pall .footer_icon_group02 .copy {
  font-size: 400;
  font-family: baskerville-display-pt, serif;
  font-size: 1.2rem;
}
.footer_wrap .no-link_ft {
  opacity: 0.4;
  pointer-events: none;
}
.footer_wrap .no-link_ft:hover {
  color: initial;
}

@media all and (max-width: 1334px) {
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side {
    width: 90%;
  }
}
@media all and (max-width: 1200px) {
  .sp {
    display: none;
  }
  .footer_wrap {
    margin-top: 6rem;
    padding-top: 0;
  }
  .footer_wrap .footer_entry .footer_entry_wrap {
    width: 90%;
    margin: 0 auto;
    padding: 4rem 0 7.5rem;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .footer_ttl {
    font-size: 4rem;
    padding-top: 2rem;
    line-height: 1.2;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .footer_txt {
    margin-top: 3rem;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side {
    display: block;
    width: 65%;
    margin: 5rem auto 0;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side .footer_common_link {
    display: block;
    width: 100% !important;
    padding: 2rem 0%;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl01 {
    width: 100% !important;
  }
  .footer_wrap .footer_entry .footer_entry_wrap .btn_side .fl02 {
    width: 100% !important;
    margin-top: 3.5rem;
  }
  .footer_wrap .video_area {
    padding: 5vw 0;
  }
  .footer_wrap .video_area .footer_news_head {
    margin-bottom: 5vw;
    font-size: 2vw;
    letter-spacing: 8px;
  }
  .footer_wrap .video_area .footer_news_wrap {
    width: 57.5vw;
  }
  .footer_wrap .video_area .footer_news_wrap .footer_news_group {
    display: block;
  }
  .footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link {
    padding: 4vw 0;
    margin: 0 auto;
    width: 100%;
  }
  .footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link > p {
    font-size: 2vw;
  }
  .footer_wrap .video_area .footer_news_wrap .footer_news_group .video-link:nth-child(n+2) {
    margin-top: 5vw;
  }
  .footer_wrap .footer_news .footer_news_wrap {
    width: 57.5vw;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link {
    padding: 2.5vw 0;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link > p {
    font-size: 2vw;
  }
  .footer_wrap .detail_wrap {
    margin: 0 auto;
    width: 100%;
    display: block;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  .footer_wrap .detail_wrap .detail_group {
    display: block;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    width: 100%;
  }
  .footer_wrap .detail_wrap .detail_group .detail_box01 {
    width: 100%;
    padding-right: initial;
  }
  .footer_wrap .detail_wrap .detail_group .detail_box02 {
    width: 100%;
  }
  .footer_wrap .detail_wrap .detail_group .detail_box03 {
    width: 100%;
  }
  .footer_wrap .detail_wrap .detail_group .detail_box04 {
    width: 100%;
  }
  .footer_wrap .detail_wrap .detail_group .ttl_04 {
    color: #e50012;
    font-size: 1.4rem;
    line-height: 2;
    border-top: 1px solid #b2b2b2;
    padding: 1.5rem 5%;
    cursor: pointer;
    pointer-events: all;
  }
  .footer_wrap .detail_wrap .detail_group .ttl_04:hover {
    background: #e50012;
    color: #ffffff;
  }
  .footer_wrap .detail_wrap .detail_group .ttl_04:focus {
    background-color: #e50012;
    color: #ffffff;
  }
  .footer_wrap .detail_wrap .detail_group .ttl_04.menu::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .footer_wrap .detail_wrap .detail_group .detail_item02 {
    margin-top: 0;
  }
  .footer_wrap .detail_wrap .detail_group .detail {
    margin-top: 0;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu {
    display: none;
    padding: 0;
    background: #fff;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu .d_list {
    padding: 1rem 0;
    color: #567867;
    border-top: 1px solid #b2b2b2;
    padding-left: 7.5%;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu .d_list + .d_list {
    margin-top: 0;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu .d_list .num {
    color: #000000;
  }
  .footer_wrap .detail_wrap .detail_group .subMenu .d_list .f_link {
    display: block;
    width: 100%;
  }
  .footer_wrap .footer_bg .footer_pall {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 2rem 0;
    border-top: 1px solid #b2b2b2;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group01 {
    width: 100%;
    padding-bottom: 2rem;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: url(../images/common/footer_icon.png) no-repeat;
    background-size: contain;
    display: inline-block;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area .footer_link {
    font-size: 1.2rem;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group01 .footer_area:hover {
    text-decoration: underline;
    opacity: 0.7;
  }
  .footer_wrap .footer_bg .footer_pall .footer_icon_group02 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #b2b2b2;
  }
  .footer_wrap .footer_bg .footer_pall .item01 {
    padding-left: 5%;
  }
  .footer_wrap .footer_bg .footer_pall .item02 {
    padding-right: 5%;
  }
  .f_bgy {
    border-bottom: 1px solid #b2b2b2;
  }
  .f_bgy_none {
    border-top: initial !important;
  }
}
@media all and (max-width: 768px) {
  .footer_wrap .footer_news, .footer_wrap .video_area {
    padding: 10vw;
  }
  .footer_wrap .footer_news .footer_news_head, .footer_wrap .video_area .footer_news_head {
    margin-bottom: 5vw;
    font-size: 4vw;
    letter-spacing: 8px;
  }
  .footer_wrap .footer_news .footer_news_wrap, .footer_wrap .video_area .footer_news_wrap {
    width: 57.5vw;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link, .footer_wrap .footer_news .footer_news_wrap .video-link, .footer_wrap .video_area .footer_news_wrap .news-link, .footer_wrap .video_area .footer_news_wrap .video-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5vw 0;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link:before, .footer_wrap .footer_news .footer_news_wrap .video-link:before, .footer_wrap .video_area .footer_news_wrap .news-link:before, .footer_wrap .video_area .footer_news_wrap .video-link:before {
    width: 15.625vw;
    height: 15.78125vw;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link:hover, .footer_wrap .footer_news .footer_news_wrap .video-link:hover, .footer_wrap .video_area .footer_news_wrap .news-link:hover, .footer_wrap .video_area .footer_news_wrap .video-link:hover {
    color: #e50012;
    background-color: #ffffff;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link:hover:before, .footer_wrap .footer_news .footer_news_wrap .video-link:hover:before, .footer_wrap .video_area .footer_news_wrap .news-link:hover:before, .footer_wrap .video_area .footer_news_wrap .video-link:hover:before {
    background: url(../images/common/banner_anniversary_01.png) no-repeat;
    width: 15.625vw;
    height: 15.78125vw;
    background-size: 100%;
  }
  .footer_wrap .footer_news .footer_news_wrap .news-link > p, .footer_wrap .footer_news .footer_news_wrap .video-link > p, .footer_wrap .video_area .footer_news_wrap .news-link > p, .footer_wrap .video_area .footer_news_wrap .video-link > p {
    margin-left: 0;
    margin-top: 2.5vw;
    font-size: 2vw;
    text-align: center;
  }
  .footer_wrap .footer_news .footer_news_wrap .video-link > p, .footer_wrap .video_area .footer_news_wrap .video-link > p {
    margin-top: 0;
  }
}
/*# sourceMappingURL=recruit.css.map */