@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html {
  font-size: 62.5%;
}
body {
  overflow-x: hidden;
  background-color: #fff;
  color: #222222;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.8;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
a:hover {
  opacity: .7;
}
button {
  cursor: pointer;
  transition: opacity .2s;
}
button:hover {
  opacity: .7;
}
/* 共通 */
/* タイトル */
.headline02_wh {
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
  text-align: center;
}
.headline02_bl {
  font-size: 3.4rem;
  font-weight: 700;
  color: #2580c3;
  margin-bottom: 50px;
  text-align: center;
}
.headline02_wh span , .headline02_bl span {
  font-size: 1.2rem;
  opacity: 0.5;
  display: block;
  font-family: 'Montserrat', sans-serif;
}
.headline3 {
  color: #2580c3;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .headline02_wh , .headline02_bl {
    font-size: 4rem;
  }
}

/* その他 */
.section {
  padding: 100px 0;
}
.section_top {
  text-align: center;
  margin-bottom: 70px;
}
.bg_bl {
  background: #F2F8FC;
}
.bg_gy {
  background: #F8F8F8;
}
.text_blue {
  color: #2580c3;
  font-weight: 700;
}
.lead_text {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.text_S {
  font-size: 1.2rem;
}
.mbS {
  margin-bottom: 20px;
}
.mrM {
  margin-right: 30px;
}
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}
.sp_br {
  display: none;
}
.sp_block {
  display: none;
}
@media screen and (max-width: 1024px) {
  .section_top {
    max-width: 100%;
    width: 90%;
    margin: 0 auto 50px;
  }
  .sp_br {
    display: block;
  }
  .pc_br {
    display: none;
  }
  .sp_block {
    display: block;
  }
  .pc_block {
    display: none;
  }
}

/* リスト */
.dotted_list {
  margin-bottom: 10px;
}
.dotted_list li {
  padding-left: 20px;
  margin-bottom: 4px;
  position: relative;
}
.dotted_list li::before{
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border: 3px solid #2580c3;
  border-radius: 50%;
  top: 7px;
  left: 0;
}

/* インナー */
.max_inner {
  padding: 0 50px;
}
.inner1000 {
  width: 1000px;
  margin: auto;
}
.inner800 {
  width: 800px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .inner1000 {
    max-width: 100%;
    width: 800px;
    margin: auto;
  }
}
@media screen and (max-width: 747px) {
  .max_inner {
    max-width: 100%;
  }
  .inner1000 {
    max-width: 100%;
  }
  .inner800 {
    width: 100%;
  }
}

/* ナビゲーション詳細 */
.grobal_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}
.nav_details {
  display: flex;
}
.nav_details .nav_details_list {
  display: flex;
}
.nav_details .nav_details_list li{
  color: #fff;
  font-weight: 700;
  margin: 0 15px;
  letter-spacing: 0.5px;
}
.nav_details .nav_details_list .nav_btn_recruit a {
  border: 2px solid #fff;
  padding: 10px 20px;
}
.nav_details .nav_details_list .nav_btn_contact a {
  border: 2px solid #2580C3;
  color: #2580C3;
  background-color: #fff;
  padding: 10px 20px;
}
.nav_details .nav_details_list .nav_btn_contact {
  margin: 0;
}
.header_nav_sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header_nav_sp {
    display: block;
  }
  .header_nav_pc {
    display: none;
  }
/* ハンバーガーボタン */
  .hamburger {
    display: block;
    position: fixed;
    z-index: 9999;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px ;
    left: 6px;
    background: #fff;
    transition: 0.3s ease-in-out;
    border-radius: 3px;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background:#fff;
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background:#fff;
    transform: rotate(45deg);
  }
  .globalMenuSp {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    color: #fff;
    background: #2580c3;
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
    visibility: hidden;
  }
  .globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    padding: 150px 0;
  }
  .globalMenuSp ul li {
    padding: 0 0 20px;
  }
  .globalMenuSp ul li a {
    font-size: 2rem;
  }

  .globalMenuSp ul .nav_btn_recruit {
    margin-top: 30px;
  }

  .globalMenuSp ul .nav_btn_recruit a {
    border: 2px solid #fff;
    padding: 10px 20px;
    width: 280px;
    display: block;
    margin: auto;
  }
  .globalMenuSp ul .nav_btn_contact a {
    border: 2px solid #2580C3;
    color: #2580C3;
    background-color: #fff;
    padding: 10px 20px;
    width: 280px;
    display: block;
    margin: auto;
  }

  /* このクラスを、jQueryで付与・削除する */
  .globalMenuSp.active {
    opacity: 100;
    visibility: visible;
  }

  .header_nav_sp .headline01 {
    padding: 8px 16px;
  }
}
/* トップイメージ */
.header_img {
  background: url(../image/top_bgimg.png)center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 980px;
  color: #fff;
  display: table;
  align-items: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
@media screen and (min-width: 768px) {
  .header_img {
    background-attachment: fixed;
  }
}
.headline01 {
  color: #fff;
}
.headline01 .page_title {
  font-size: 2rem;
  font-weight: 700;
}
.headline01 .pate_sub_title {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.main_copy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 160px 0;
}
.main_copy_text {
  color: #fff;
  font-weight: 700;
  font-size: 5rem;
  background-color: #2580C3;
  display: inline;
}

/* スライド */
/* .bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.bg.is-animated .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #2580c3;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg .bg-wrap .inn {
  color: #fff;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  padding: 5px 15px;
  position: relative;
  z-index: 1;
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
} */
/* スライド */

.main_copy_sub_text {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .header_img {
    background: url(../image/top_bgimg_sp.png)center center no-repeat;
    width: 100%;
    height: 840px;
    background-size: cover;
  }
  .main_copy_text {
    font-size: 3.4rem;
  }
}

/* ABOUT US */
.about_section {
  padding-bottom: 500px;
}
.top_section {
  background: url(../image/about_bg.png)center center no-repeat;
  background-size: cover;
  text-align: center;
  padding: 150px 0;
}
.top_section p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.top_section_text {
  margin-bottom: 30px;
}
.about_section_top {
  background: url(../image/about_bg01.png)left no-repeat;
  background-size: 96%;
  padding: 230px 0;
  position: relative;
  margin-bottom: 240px;
}
.about_section_top_wh {
  background: #fff;
  width: 50%;
  position: absolute;
  top: 150px;
  left: 0;
  padding: 60px 0;
  display: block;
  border-radius: 0 10px 10px 0;
}
.about_section_bottom {
  background: url(../image/about_bg02.png)right top no-repeat;
  background-size: 96%;
  padding: 50px 0;
  position: relative;
  margin-bottom: 240px;
}
.about_section_bottom_wh {
  background: #fff;
  width: 50%;
  position: absolute;
  top: 150px;
  right: 0;
  padding: 60px 0;
  border-radius: 10px 0 0 10px;
}
.about_section_bottom_wrap {
  color: #fff;
  display: flex;
  justify-content: flex-start;
}
.about_saport {
  display: flex;
  align-items: center;
}
.dotted_list_bottom {
  display: flex;
  flex-wrap: wrap;
}
.about_saport .about_saport_title {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode:vertical-rl;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 3rem;
  margin-right: 40px;
}
.about_saport .about_saport_title .fas {
  padding-bottom: 8px;
  writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  -webkit-writing-mode: horizontal-tb;
}
.about_list_box {
  border: #fff dotted 2px;
  border-radius: 10px;
  padding: 50px 40px 10px;
  position: relative;
}
.about_list_box .about_list_title {
  position: absolute;
  text-align: center;
  width: 210px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #2580c3;
  background: #fff;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 4px;
}
.about_list_box::before {
  content: "";
  position: absolute;
  border-top: 20px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about_section_bottom_wrap .about_list_box .about_saport .dotted_list li::before {
  background: #2580c3;
  border: 3px solid #fff;
}
.about_section_bottom_wrap .about_list_box .about_saport .dotted_list_last li:last-child {
  padding-left: 0;
}
.about_section_bottom_wrap .about_list_box .about_saport .dotted_list_last li:last-child::before {
  content: none;
}

@media screen and (max-width: 1024px) {
  .about_section {
    padding-bottom: 600px;
  }
  .top_section {
    padding: 120px 16px;
  }
  .about_section_top {
    background: url(../image/about_bg01_sp.png)center no-repeat;
    background-size: cover;
    padding: 230px 0;
    margin-bottom: 240px;
  }
  .about_section_top_wh {
    width: 96%;
    top: 380px;
    padding: 0;
    border-radius: 0 10px 10px 0;
    margin-bottom: 400px;
  }
  .about_section_bottom {
    background: #2580c3;
    background-size: 96%;
    padding: 80px 16px;
    margin: 200px 0 200px;
  }
  .about_section_bottom_wh {
    background: #fff;
    width: 96%;
    position: absolute;
    top: 450px;
    right: 0;
    padding: 0;
    border-radius: 10px 0 0 10px;
  }
  .about_section_top_wh .max_inner , .about_section_bottom_wh .max_inner {
    padding: 40px;
  }
  .about_list_box {
    width: 100%;
  }
}
@media screen and (max-width: 747px) {
  .about_section {
    padding-bottom: 700px;
  }
  .top_section {
    padding: 120px 16px;
  }
  .about_section_top {
    background: url(../image/about_bg01_sp.png)center no-repeat;
    background-size: cover;
    padding: 230px 0;
    margin-bottom: 240px;
  }
  .about_section_top_wh {
    width: 96%;
    top: 380px;
    padding: 0;
    border-radius: 0 10px 10px 0;
    margin-bottom: 400px;
  }
  .about_section_bottom {
    background: #2580c3;
    background-size: 96%;
    padding: 80px 16px;
    margin: 500px 0 500px;
  }
  .about_section_bottom_wh {
    background: #fff;
    width: 96%;
    position: absolute;
    top: 600px;
    right: 0;
    padding: 0;
    border-radius: 10px 0 0 10px;
  }
  .about_section_top_wh .max_inner , .about_section_bottom_wh .max_inner {
    padding: 40px;
  }
  .about_saport .about_saport_title {
    height: 340px;
  }
}

/* FLOW */
.flow_section_bg {
  background: url(../image/flow_bg.png)#F8F8F8 bottom right no-repeat;
  background-size: 60%;
}
.flow_table {
  background: #2580c3;
  color: #fff;
  border-radius: 10px;
}
.flow_table tr {
  border-bottom: 2px solid #fff;
  margin: 50px 0;
  padding: 0;
}
/* .flow_table .table_row_line {
  border-bottom: 2px dotted #fff;
} */
.flow_table .table_row_line {
  border-bottom: none;
}
.flow_table .table_row_line th {
  border-bottom: 2px dotted #fff;
  display: inline-block;
  padding: 50px 150px 50px 0;
  margin-left: 150px;
}
.flow_table .table_row_line td {
  border-bottom: 2px dotted #fff;
}
.flow_table .table_headline {
  padding: 50px 0  50px 150px;
  width: 45%;
}
.flow_table td {
  padding: 10px 0;
  width: 55%;
}
.flow_table td p {
  font-weight: 700;
}
.flow_table td p span {
  font-weight: 400;
}
.flow_item {
  display: flex;
  align-items: center;
}
.flow_item p {
  margin-left: 30px;
}
.table_headline {
  font-size: 2rem;
  font-weight: 700;
}
.table_headline .table_h_sub {
  font-size: 1.2rem;
  opacity: 0.5;
  display: block;
}
.flow_table .table_headline_tips {
  position: relative;
}
.flow_table .table_headline_tips::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #2580c3;
  border: 10px solid #0D5183;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: -75px;
}
.table_headline_tips_line {
  position: relative;
}
.table_headline_tips_line::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 170px;
  background: #0D5183;
  top: 190px;
  transform: translate(-50%, -50%);
  left: -75px;
  z-index: 0;
}
.flow_table .table_headline_tips .flow_tips_wrap {
  position: absolute;
  bottom: -80px;
  left: 30px;
}
.flow_tips_wrap .flow_tips {
  background: #fff;
  color: #222222;
  width: 470px;
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 10px 10px rgba(0,0,0,0.16);
  font-size: 1.4rem;
  font-weight: 400;
}
.flow_tips_wrap .flow_tips .tips_title {
  font-size: 2.4rem;
  padding: 20px;
  color: #2580c3;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
.flow_tips_wrap .flow_tips .tips_title::before {
  content: "";
  position: absolute;
  border-bottom: 24px solid #fff;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  top: -32px;
  right: 20px;
}
.flow_tips .tips_text {
  font-weight: 400;
}
.flow_tips .tips_text span {
  font-weight: 700;
}
.table_headline_icon {
  position: relative;
}
.table_headline_icon::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #2580c3;
  border: 10px solid #0D5183;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75px;
}
.table_headline_line {
  position: relative;
}
.table_headline_line::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 170px;
  background: #0D5183;
  top: 180px;
  transform: translate(-50%, -50%);
  left: 75px;
  z-index: 0;
}
.table_headline_icon_time8 {
  position: relative;
}
.table_headline_icon_time8::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(../image/table_headline_icon_time8.svg);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75px;
  z-index: 1;
}
.table_headline_icon_time10 {
  position: relative;
}
.table_headline_icon_time10::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(../image/table_headline_icon_time10.svg);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75px;
  z-index: 1;
}
.table_headline_icon_time12 {
  position: relative;
}
.table_headline_icon_time12::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(../image/table_headline_icon_time12.svg);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75px;
  z-index: 1;
}
.table_headline_icon_time15 {
  position: relative;
}
.table_headline_icon_time15::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(../image/table_headline_icon_time15.svg);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75px;
  z-index: 1;
}
.table_headline_icon_time17 {
  position: relative;
}
.table_headline_icon_time17::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(../image/table_headline_icon_time17.svg);
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 75px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .flow_table {
    border-radius: 10px;
    margin-top: 50px;
  }
  .flow_section_bg .headline02_bl {
    font-size: 3.4rem;
  }
  .flow_table .table_headline {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: block;
    padding: 24px 16px 24px 120px;
    font-size: 1.8rem;
    box-sizing: border-box;
  }
  .flow_table td {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: block;
    padding: 0 16px 24px 120px;
    box-sizing: border-box;
  }
  .flow_table .table_row_line th {
    padding: 24px 16px 24px 120px;
    margin: 0;
  }
  .flow_table .sp_tips {
    padding: 0;
  }
  .flow_table .sp_tips .flow_tips_wrap .flow_tips {
    width: 88%;
    margin: auto;
    z-index: 9;
  }
  .flow_table .sp_tips .flow_tips_wrap .flow_tips .tips_title::before {
    top: -32px;
  }
  .flow_table .table_row_line th {
    border: none;
  }
  .flow_table .table_row_line td {
    border-bottom: none;
}
  .flow_table .table_headline_tips .flow_tips_wrap {
    max-width: 100%;
  }
  .flow_item {
    display: block;
  }
  .flow_item img {
    margin-bottom: 10px;
  }
  .flow_table .table_headline_tips::before {
    left: 60px;
  }
  .table_headline_tips_line::after {
    left: 60px;
  }
  .table_headline_icon::before {
    left: 60px;
  }
  .table_headline_icon_time8::before {
    left: 60px;
  }
  .table_headline_icon_time10::before {
    left: 60px;
  }
  .table_headline_icon_time12::before {
    left: 60px;
  }
  .table_headline_icon_time15::before {
    left: 60px;
  }
  .table_headline_icon_time17::before {
    left: 60px;
  }
  .flow_table .table_none_line .table_headline {
    padding: 0;
  }
  .flow_table .table_none_line td {
    padding: 0;
  }
  .flow_item p {
    margin-left: 0;
  }
  .table_headline_line::after {
    content: none;
  }
  .table_headline_tips_line::after {
    content: none;
  }
  .flow_table .flow_line01 {
    position: relative;
  }
  .flow_table .flow_line01::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 300px;
    background: #0D5183;
    bottom: 0px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
  .flow_table .flow_line02 {
    position: relative;
  }
  .flow_table .flow_line02::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 300px;
    background: #0D5183;
    bottom: 0px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
  .flow_table .flow_line03 {
    position: relative;
  }
  .flow_table .flow_line03::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 450px;
    background: #0D5183;
    top: 300px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
  .flow_table .flow_line04 {
    position: relative;
  }
  .flow_table .flow_line04::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 300px;
    background: #0D5183;
    top: 100px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
  .flow_table .flow_line05 {
    position: relative;
  }
  .flow_table .flow_line05::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 790px;
    background: #0D5183;
    top: 470px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
  .flow_table .flow_line06 {
    position: relative;
  }
  .flow_table .flow_line06::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 400px;
    background: #0D5183;
    bottom: 0px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
  .flow_table .flow_line07 {
    position: relative;
  }
  .flow_table .flow_line07::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 300px;
    background: #0D5183;
    bottom: 0px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
  .flow_table .flow_line08 {
    position: relative;
  }
  .flow_table .flow_line08::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 300px;
    background: #0D5183;
    bottom: 0px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
  .flow_table .flow_line09 {
    position: relative;
  }
  .flow_table .flow_line09::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 400px;
    background: #0D5183;
    bottom: 0px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
  .flow_table .flow_line10 {
    position: relative;
  }
  .flow_table .flow_line10::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 640px;
    background: #0D5183;
    bottom: 0px;
    transform: translate(-50%, -50%);
    left: 60px;
    z-index: -1;
  }
}
@media screen and (max-width: 747px) {
  .flow_table {
    border-radius: 0;
  }
  .flow_table .flow_line10::after {
    height: 800px;
  }
}
@media screen and (max-width: 454px) {
  .flow_table .sp_tips .flow_tips_wrap .flow_tips .tips_title::before {
    top: -50px;
  }
}
@media screen and (max-width: 390px) {
  .flow_table .sp_tips .flow_tips_wrap .flow_tips .tips_title::before {
    top: -60px;
  }
}

/* RECRUIT */
.recruit_section_bg {
  background: url(../image/recruit_bg.png)#fff bottom left no-repeat;
  background-size: 90%;
}
.recruit_table {
  margin-bottom: 40px;
}
.recruit_table tr {
  border-top: 1px solid #EEEEEE;
}
.recruit_table tr:last-child {
  border-bottom: 1px solid #EEEEEE;
}
.recruit_table th {
  font-weight: 700;
  width: 25%;
  padding: 20px 0;
  vertical-align: top;
}
.recruit_table td {
  width: 85%;
  padding: 20px 0;
}
.recruit_table tr td .recruit_list {
  margin-bottom: 20px;
}
.recruit_table tr td .recruit_list .recruit_list_title {
  color: #2580c3;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.recruit_table tr td .recruit_list li span{
  color: #2580c3;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 800px) {
  .recruit_table {
    max-width: 100%;
    width: 95%;
  }
  .recruit_table th {
    box-sizing: border-box;
  }
  .recruit_table td {
    box-sizing: border-box;
  }
}

@media screen and (max-width: 747px) {
  .recruit_table th {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 20px 16px 10px;
  }
  .recruit_table td {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0 16px 20px;
  }
}

/* COMPANY */
.company_section_bg {
  background: url(../image/company_bg.png)#F2F8FC bottom right no-repeat;
  background-size: 90%;
}
.company_table {
  margin-bottom: 40px;
}
.company_table tr {
  border-top: 1px solid #D3E6F4;
}
.company_table tr:last-child {
  border-bottom: 1px solid #D3E6F4;
}
.company_table th {
  font-weight: 700;
  width: 25%;
  padding: 20px 0;
  vertical-align: top;
}
.company_table td {
  width: 85%;
  padding: 20px 0;
}
@media screen and (max-width: 800px) {
  .company_table {
    max-width: 100%;
    width: 95%;
  }
  .company_table th {
    box-sizing: border-box;
  }
  .company_table td {
    box-sizing: border-box;
  }
}
@media screen and (max-width: 747px) {
  .company_table th {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 20px 16px 10px;
  }
  .company_table td {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0 16px 20px;
  }
}

/* CONTACT */
.contact_section_bg {
  background: url(../image/contact_bg.png)#2580c3 center center no-repeat;
  background-size: 60%;
}
.contact_btn_area {
  text-align: center;
}
.contact_btn {
  padding: 16px 24px;
  margin: 0 10px;
  border: 2px solid #fff;
  background: none;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.contact_btn .fas {
  padding-right: 8px;
}
.contact_LINE_btn {
  padding: 16px 24px;
  margin: 0 10px;
  border: 2px solid #2DEB53;
  background: none;
  color: #2DEB53;
  font-size: 1.8rem;
  font-weight: 700;
}
.contact_LINE_btn .fab {
  padding-right: 8px;
}
@media screen and (max-width: 1024px) {
  .contact_section_bg .headline02_wh {
    font-size: 3.4rem;
  }
  .contact_btn {
    width: 300px;
    margin-bottom: 10px;
  }
  .contact_LINE_btn {
    width: 300px;
  }
}

/* FOOTER */
footer {
  background: #333333;
}
footer .copyright {
  color: #fff;
  padding: 30px 0;
  text-align: center;
}
.footer_top_btn {
  content: "";
  position: absolute;
  right: 60px;
  bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .footer_top_btn {
    right: 16px;
    bottom: 16px;
  }
}