@charset "UTF-8";
/* ★★このcssはscssをコンパイルしたcssです。cssを記述する場合は、こちらに記述せず、merge.cssに記述してください。★★ */
/* ==============================================
CSS information

file name  : style.css
style info : style.scssコンパイルしたファイル。

このスタイルシートの構成
style.scss参照
=============================================== */
/* ------------------------------------
  reset
------------------------------------ */
html {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  /* 10px */
}

body {
  margin: 0;
  padding: 0;
  /* 英数の改行 */
  word-break: break-all;
  word-wrap: break-word;
  line-height: 2.0;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p,
header, hgroup, section, article, aside, hgroup, footer, figure, figcaption, nav {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

pre, form, fieldset, input, textarea,
div, blockquote, th, td {
  margin: 0;
  padding: 0;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, em, b {
  font-weight: normal;
}

ul, ol {
  list-style: none;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  /* 印刷時の要素内での改ページをしない */
  page-break-inside: avoid;
  empty-cells: show;
}

td {
  vertical-align: top;
}

a {
  text-decoration: none;
}

caption {
  text-align: left;
}

q:before, q:after {
  content: '';
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

img, abbr, acronym, fieldset {
  border: none;
  vertical-align: bottom;
  /* listにて隙間ができるのを防ぐ kunihro*/
}

/* clearfix */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

@media screen and (max-width: 896px) {
  .wrap {
    overflow: hidden;
  }
}

/* フォーム */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #FFF;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100%;
}

select::-ms-expand {
  display: none;
}

select:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

/*=================================================
 * ＜全ページ共通＞ スタイル
 * ================================================ */
/* ------------------------------------
  default
------------------------------------ */
html {
  max-width: 2560px;
}

a {
  color: #1A1311;
  outline: none;
}

a:hover {
  opacity: 0.8;
}

p {
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  line-height: 2.8rem;
}

td,
th {
  vertical-align: top;
  text-align: left;
}

body {
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  /* 14px */
  color: #1A1311;
  line-height: 1.7;
  margin: 0 auto !important;
  text-align: center;
}

/* SPメニューのCSS上書き
--------------- */
body [off-canvas] {
  background-color: #FFF;
}

#overlayShadow {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100vw;
  z-index: 9999;
}

#Frame {
  text-align: left;
  /* PC */
}

@media screen and (min-width: 897px) {
  #Frame {
    margin: 0 auto;
    /* 横幅100%表示
    --------------- */
  }
  #Frame.frame_max {
    width: 100vw;
    min-width: inherit;
  }
  #Frame.frame_max .cont_inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
  }
  #Frame.frame_max .header_info_box .header_left_box {
    width: 120px;
  }
  #Frame.frame_max .header_info_box .header_left_box .logo_sub_txt {
    font-size: 1.2rem;
  }
  #Frame.frame_max .header_info_box .header_left_box .logo img {
    width: 120px;
  }
  #Frame.frame_max .page_tl .page_tl_box {
    width: 100vw;
  }
}

#content {
  padding-top: 165px;
  /* SP */
}

@media screen and (max-width: 896px) {
  #content {
    padding-top: 60px;
  }
}

#container .cont_inner {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#container .cont_inner__top {
  width: 100%;
  max-width: 1190px;
  padding: 0 50px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* SP */
}

@media screen and (max-width: 896px) {
  #container .cont_inner__top {
    padding: 0 30px;
  }
}

.cont_inner_min {
  padding: 100px 100px;
  background-color: #FFF;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_inner_min {
    padding: 40px 20px;
    margin: 0 -20px;
  }
}

/* レスポンシブ対応
--------------- */
@media screen and (max-width: 896px) {
  .sp_none {
    display: none !important;
  }
}

@media screen and (min-width: 897px) {
  .pc_none {
    display: none !important;
  }
}

@media screen and (max-width: 896px) {
  .sp_i-block {
    display: inline-block !important;
  }
}

@media screen and (max-width: 896px) {
  .sp_block {
    display: block !important;
  }
}

/* 電話リンクをスマホのみにする
--------------- */
/* PC */
@media screen and (min-width: 897px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* 内部リンク ダミーターゲット
--------------- */
.dummyTarget {
  position: relative;
}

.dummyTarget > * {
  visibility: hidden;
  position: absolute;
  top: -70px;
  left: 0;
}

.fixedHeader {
  position: fixed;
  width: 100%;
  background-color: #FFF;
  z-index: 100;
}

/* ------------------------------------
/* ＜全ページ共通＞ コンテンツ
------------------------------------ */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ ヘッダー
 * ================================================ */
.header_cmn {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background-color: #FFF;
  /* SP */
}

@media screen and (max-width: 896px) {
  .header_cmn {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header_cmn .header_inner {
  padding: 0 80px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .header_cmn .header_inner {
    padding: 0 30px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.header_cmn .header_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header_cmn .header_top .link_header_top {
  display: inline-block;
  width: 170px;
  height: 55px;
  font-size: 1.8rem;
  color: #FFF;
  text-align: center;
  line-height: 55px;
}

.header_cmn .header_top .link_header_top.link_01 {
  background-color: #DC000C;
}

.header_cmn .header_top .link_header_top.link_02 {
  background-color: #00267F;
}

.header_cmn .header_top .link_header_top.no_color {
  background-color: #FFF;
  color: #1A1311;
  width: unset;
  margin-right: 50px;
}

.header_cmn .header_main {
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  /* SP */
}

@media screen and (max-width: 896px) {
  .header_cmn .header_main {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding-bottom: 0;
  }
}

.header_cmn .header_main .tl_header {
  width: 280px;
  height: 80px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .header_cmn .header_main .tl_header {
    width: 125px;
    height: auto;
  }
}

.header_cmn .header_main .tl_header .img_tl_header {
  width: 100%;
  height: auto;
}

.header_cmn .header_main .header_gnav {
  padding-bottom: 5px;
}

.header_cmn .header_main .header_gnav .list_header_gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 2px solid #1A1311;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 28px;
}

.header_cmn .header_main .header_gnav .list_header_gnav .item_header_gnav {
  width: 105px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 2px solid #1A1311;
}

.header_cmn .header_main .header_gnav .list_header_gnav .item_header_gnav .link_item {
  display: block;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  line-height: 28px;
}

.header_cmn .header_main .sp_menu_box {
  width: 20px;
}

.header_cmn .header_main .sp_menu_box .line_hamburger {
  margin-top: 5px;
  display: block;
  width: 100%;
  height: 5px;
  background-color: #1A1311;
}

.header_cmn .header_main .sp_menu_box .line_hamburger:first-child {
  margin-top: 0;
}

/* ------------------------------------
/* SPメニュー
------------------------------------ */
.sidemenu_box .sidemenu_head {
  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: 5px 5px 0 20px;
}

.sidemenu_box .sidemenu_head .logo_sidemenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidemenu_box .sidemenu_head .logo_sidemenu .img_logo_sidemenu {
  width: 124px;
  height: auto;
}

.sidemenu_box .sidemenu_head .btn_close {
  display: block;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sidemenu_box .sidemenu_head .btn_close .hamburger_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.sidemenu_box .sidemenu_head .btn_close .hamburger_cont .line_hamburger_box {
  width: 20px;
  margin: 0 auto;
}

.sidemenu_box .sidemenu_head .btn_close .hamburger_cont .line_hamburger_box .line_hamburger {
  display: block;
  height: 3px;
  background-color: #1A1311;
  position: relative;
}

.sidemenu_box .sidemenu_head .btn_close .hamburger_cont .line_hamburger_box .line_hamburger:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -9px;
}

.sidemenu_box .sidemenu_head .btn_close .hamburger_cont .line_hamburger_box .line_hamburger:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -12px;
}

.sidemenu_box .sidemenu_head .btn_close .txt_hamburger {
  font-size: 1rem;
  line-height: 15px;
  color: #1A1311;
  display: block;
  width: 100%;
}

.sidemenu_box .sidemenu_body {
  padding: 20px 25px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sidemenu_box .sidemenu_body .list_sidemenu .item_01 {
  border-bottom: 1px solid #ACACAC;
}

.sidemenu_box .sidemenu_body .list_sidemenu .item_01 .link_01 {
  display: block;
  padding: 20px 20px 20px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  text-align: left;
  position: relative;
}

.sidemenu_box .sidemenu_body .list_sidemenu .item_01 .link_01::before {
  content: '';
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 2px solid #7A7A7A;
  border-right: 2px solid #7A7A7A;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ＜共通＞ フッター
 * ================================================ */
.footer_cmn .footer_company_info {
  padding: 115px 0;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info {
    padding: 0 0 50px;
  }
}

.footer_cmn .footer_company_info .box_info_tl {
  margin-bottom: 45px;
}

.footer_cmn .footer_company_info .box_info_tl .box_img {
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_info_tl .box_img {
    margin: 0 -20px;
  }
}

.footer_cmn .footer_company_info .box_info_tl .img_info_tl {
  width: 100%;
  height: auto;
}

.footer_cmn .footer_company_info .box_info_tl .tl_info {
  width: 450px;
  margin: 25px auto 0;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_info_tl .tl_info {
    width: 176px;
    margin-top: 30px;
  }
}

.footer_cmn .footer_company_info .box_info_tl .tl_info .img_tl_info {
  width: 100%;
  height: auto;
}

.footer_cmn .footer_company_info .box_info_tl .txt_info_tl {
  margin-top: 35px;
  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;
  font-size: 2.4rem;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_info_tl .txt_info_tl {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

.footer_cmn .footer_company_info .box_info_tl .txt_info_tl .txt_code {
  font-size: 2rem;
  margin-right: 35px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_info_tl .txt_info_tl .txt_code {
    font-size: 1.2rem;
    margin-right: 5px;
  }
}

.footer_cmn .footer_company_info .box_info_tl .txt_info_tl .img_ico_floor {
  width: 30px;
  height: 30px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_info_tl .txt_info_tl .img_ico_floor {
    width: 16px;
    height: 16px;
  }
}

.footer_cmn .footer_company_info .list_floor_map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map {
  width: calc((100% - 135px) / 4);
  margin-right: 45px;
  margin-bottom: 45px;
  /* SP */
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map {
    width: calc(100% * 95 / 315);
    margin-right: calc(100% * 15 / 315);
    margin-bottom: calc(100% * 15 / 315);
  }
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map:nth-child(4n) {
    margin-right: calc(100% * 15 / 315);
  }
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map:nth-child(3n) {
    margin-right: 0;
  }
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map .img_item {
  width: 100%;
  height: auto;
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map .tl_item {
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map .tl_item {
    margin-top: 0;
    padding-top: 30px;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map .tl_item.tl_group_home {
    padding-top: 10px;
  }
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map .tl_item .wrap_ico {
  position: absolute;
  left: 50%;
  top: 7px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  line-height: 1;
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map .tl_item .img_ico_tl {
  width: 30px;
  height: 30px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map .tl_item .img_ico_tl {
    width: 16px;
    height: 16px;
  }
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map .txt_subtl {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map .txt_subtl {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: left;
  }
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map .txt_tel {
  margin-top: 30px;
  font-size: 1.7rem;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map .txt_tel {
    margin-top: 0;
    font-size: 1.4rem;
    letter-spacing: 0em;
    line-height: 1.5;
  }
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map .txt_tel.under_subtl {
  margin-top: 2px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map .txt_tel.under_subtl {
    margin-top: 0;
  }
}

.footer_cmn .footer_company_info .list_floor_map .item_floor_map .txt_tel .num {
  font-size: 1.8rem;
  font-weight: bold;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .list_floor_map .item_floor_map .txt_tel .num {
    font-size: 1.4rem;
  }
}

.footer_cmn .footer_company_info .box_bnr {
  margin-top: 60px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_bnr {
    margin-top: 40px;
  }
}

.footer_cmn .footer_company_info .box_bnr .bnr_upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_bnr .bnr_upper {
    display: block;
  }
}

.footer_cmn .footer_company_info .box_bnr .bnr_upper .bnr_inquiry {
  width: 48%;
  margin-right: 4%;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_bnr .bnr_upper .bnr_inquiry {
    width: 100%;
    margin-right: 0;
  }
}

.footer_cmn .footer_company_info .box_bnr .bnr_upper .box_bnr_small {
  width: 48%;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_bnr .bnr_upper .box_bnr_small {
    width: 100%;
    margin-top: 15px;
  }
}

.footer_cmn .footer_company_info .box_bnr .bnr_upper .box_bnr_small .link_bnr:first-child {
  margin-bottom: 6.5%;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_bnr .bnr_upper .box_bnr_small .link_bnr:first-child {
    margin-bottom: 15px;
  }
}

.footer_cmn .footer_company_info .box_bnr .bnr_recruit {
  margin-top: 45px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_company_info .box_bnr .bnr_recruit {
    margin-top: 15px;
  }
}

.footer_cmn .footer_company_info .box_bnr .link_bnr {
  display: inline-block;
}

.footer_cmn .footer_company_info .box_bnr .link_bnr .img_bnr {
  width: 100%;
  height: auto;
}

.footer_cmn .footer_nav_area {
  padding: 55px 0 70px;
  background-color: #F1F1F2;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area {
    padding: 30px 0;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top {
    display: block;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top.inner_footer_nav {
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top.inner_footer_nav {
    text-align: center;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .nav_info .tl_nav_info {
  width: 280px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .nav_info .tl_nav_info {
    width: 176px;
    margin: 0 auto;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .nav_info .tl_nav_info .img_tl {
  width: 100%;
  height: auto;
}

.footer_cmn .footer_nav_area .cont_inner__top .nav_info .txt_nav_info {
  margin-top: 35px;
  font-size: 1.4rem;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .nav_info .txt_nav_info {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav {
    display: inline-block;
    text-align: left;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list {
  margin-left: 50px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list {
    margin-left: 0;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list.main_nav_list {
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list.main_nav_list {
    margin: 25px 0;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .tl_nav_list {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_nav {
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_nav .item_footer_nav {
  margin-top: 10px;
  font-size: 1.3rem;
  /* SP */
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_nav .item_footer_nav:first-child {
  margin-top: 0;
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_nav .item_footer_nav {
    margin-top: 0;
    padding-left: 10px;
    position: relative;
  }
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_nav .item_footer_nav::before {
    content: '/';
    position: absolute;
    left: 2px;
    top: 0;
  }
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_nav .item_footer_nav:first-child {
    padding-left: 0;
  }
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_nav .item_footer_nav:first-child::before {
    display: none;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 {
  margin-top: 15px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 {
    margin-top: 0;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 .item_footer_01 {
  margin-top: 15px;
  /* SP */
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 .item_footer_01:first-child {
  margin-top: 0;
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 .item_footer_01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 .item_footer_01 .tl_item_01 {
  font-size: 1.4rem;
  font-weight: bold;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 .item_footer_01 .tl_item_01 {
    width: 70px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 .item_footer_01 .list_footer_02 .item_footer_02 {
  margin-top: 10px;
  line-height: 1;
  /* SP */
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 .item_footer_01 .list_footer_02 .item_footer_02:first-child {
  margin-top: 0;
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 .item_footer_01 .list_footer_02 .item_footer_02 {
    margin-top: 5px;
  }
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list .list_footer_01 .item_footer_01 .list_footer_02 .item_footer_02 .link_item {
  font-size: 1.2rem;
}

.footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list.nav_list_second {
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list.nav_list_second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 15px;
  }
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list.nav_list_second .tl_nav_list {
    margin-bottom: 0;
    font-size: 1.3rem;
    width: 70px;
    line-height: 1.5;
  }
  .footer_cmn .footer_nav_area .cont_inner__top .box_footer_nav .box_nav_list.nav_list_second .list_footer_nav .item_footer_nav .link_item {
    font-size: 1.2rem;
  }
}

.footer_cmn .copyright {
  margin-top: 75px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  /* SP */
}

@media screen and (max-width: 896px) {
  .footer_cmn .copyright {
    margin-top: 30px;
    font-size: 1.2rem;
  }
}

/*=================================================
  * お知らせ <共通>
  * ================================================ */
.list_news .item_news {
  border-bottom: 1px solid #3E3E3E;
}

.list_news .item_news:first-child {
  border-top: 1px solid #3E3E3E;
}

.list_news .item_news .link_item {
  padding: 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  /* SP */
}

@media screen and (max-width: 896px) {
  .list_news .item_news .link_item {
    display: block;
    padding: 8px 0;
  }
}

.list_news .item_news .link_item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #8E8E8F;
  border-radius: 50%;
  /* SP */
}

@media screen and (max-width: 896px) {
  .list_news .item_news .link_item::before {
    width: 16px;
    height: 16px;
  }
}

.list_news .item_news .link_item::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  /* SP */
}

@media screen and (max-width: 896px) {
  .list_news .item_news .link_item::after {
    right: 6px;
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
}

.list_news .item_news .link_item .box_ico {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list_news .item_news .link_item .box_ico .ico_date {
  font-size: 2.1rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .list_news .item_news .link_item .box_ico .ico_date {
    font-size: 1.2rem;
  }
}

.list_news .item_news .link_item .box_ico .ico_cat {
  margin-left: 25px;
  border: 1px solid #ACACAC;
  padding: 0 20px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #ACACAC;
  /* SP */
}

@media screen and (max-width: 896px) {
  .list_news .item_news .link_item .box_ico .ico_cat {
    font-size: 1.2rem;
    margin-left: 10px;
  }
}

.list_news .item_news .link_item .box_ico .ico_cat.color_navy {
  color: #002368;
  border-color: #002368;
}

.list_news .item_news .link_item .box_ico .ico_cat.color_red {
  color: #CA174C;
  border-color: #CA174C;
}

.list_news .item_news .link_item .box_ico .ico_cat.color_orange {
  color: #E77E00;
  border-color: #E77E00;
}

.list_news .item_news .link_item .box_ico .ico_cat.color_rightblue {
  color: #84C5D1;
  border-color: #84C5D1;
}

.list_news .item_news .link_item .box_ico .ico_cat.color_pink {
  color: #DC7A93;
  border-color: #DC7A93;
}

.list_news .item_news .link_item .box_ico .ico_cat.color_yellowgreen {
  color: #D4CE04;
  border-color: #D4CE04;
}

.list_news .item_news .link_item .tl_item {
  margin-left: 30px;
  font-size: 2.4rem;
  padding-right: 40px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /* SP */
}

@media screen and (max-width: 896px) {
  .list_news .item_news .link_item .tl_item {
    margin-left: 0;
    margin-top: 5px;
    font-size: 1.4rem;
    line-height: 1.8rem;
    padding-right: 20px;
  }
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
  * よくあるご質問 <共通>
  * ================================================ */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
  * ブログ <共通>
  * ================================================ */
.list_blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  /* SP */
}

@media screen and (max-width: 896px) {
  .list_blog {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.list_blog .item_blog {
  width: calc(100% * 250 / 1150);
  margin-right: calc(100% * 50 / 1150);
  /* SP */
}

.list_blog .item_blog:last-child {
  margin-right: 0;
}

@media screen and (max-width: 896px) {
  .list_blog .item_blog {
    width: calc(100% * 95 / 315);
    margin-right: calc(100% * 15 / 315);
  }
  .list_blog .item_blog:nth-child(3n) {
    margin-right: 0;
  }
}

.list_blog .item_blog .link_item {
  display: block;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.list_blog .item_blog .link_item .wrap_img {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.list_blog .item_blog .link_item .wrap_img .img_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.list_blog .item_blog .link_item .ico_cat {
  display: inline-block;
  margin-top: 45px;
  border: 1px solid #ACACAC;
  padding: 0 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #ACACAC;
  /* SP */
}

@media screen and (max-width: 896px) {
  .list_blog .item_blog .link_item .ico_cat {
    margin-top: 10px;
    font-size: 1.2rem;
    /* SP */
  }
}

@media screen and (max-width: 896px) and (max-width: 896px) {
  .list_blog .item_blog .link_item .ico_cat {
    padding: 0 5px;
  }
}

.list_blog .item_blog .link_item .ico_cat.color_navy {
  color: #002368;
  border-color: #002368;
}

.list_blog .item_blog .link_item .ico_cat.color_red {
  color: #CA174C;
  border-color: #CA174C;
}

.list_blog .item_blog .link_item .ico_cat.color_orange {
  color: #E77E00;
  border-color: #E77E00;
}

.list_blog .item_blog .link_item .ico_cat.color_rightblue {
  color: #84C5D1;
  border-color: #84C5D1;
}

.list_blog .item_blog .link_item .ico_cat.color_pink {
  color: #DC7A93;
  border-color: #DC7A93;
}

.list_blog .item_blog .link_item .ico_cat.color_yellowgreen {
  color: #D4CE04;
  border-color: #D4CE04;
}

.list_blog .item_blog .link_item .tl_item {
  margin-top: 25px;
  font-size: 1.6rem;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /* SP */
}

@media screen and (max-width: 896px) {
  .list_blog .item_blog .link_item .tl_item {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * トップページ
 * ================================================ */
.cont_top {
  /* ------------------------------------
  /* 共通パーツ
  ------------------------------------ */
}

.cont_top .tl_top_02 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #474645;
  text-align: center;
  letter-spacing: 0.2em;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .tl_top_02 {
    font-size: 1.8rem;
  }
}

.cont_top .link_btn {
  display: inline-block;
  padding: 10px 50px;
  border-radius: 35px;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: bold;
  background-color: #ACACAC;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .link_btn {
    padding: 5px 20px;
    font-size: 1.4rem;
  }
}

.cont_top .link_btn.color_navy {
  background-color: #002368;
}

.cont_top .link_btn.color_red {
  background-color: #CA174C;
}

.cont_top .link_btn.color_orange {
  background-color: #E77E00;
}

.cont_top .link_btn.color_rightblue {
  background-color: #84C5D1;
}

.cont_top .link_btn.color_pink {
  background-color: #DC7A93;
}

.cont_top .link_btn.color_yellowgreen {
  background-color: #D4CE04;
}

.cont_top .link_btn .txt_btn {
  color: #FFF;
  font-size: 2.4rem;
  font-weight: bold;
}

.cont_top .area_main_visual {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual {
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.cont_top .area_main_visual .box_main_visual {
  height: 700px;
  position: relative;
  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;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .box_main_visual {
    display: block;
    height: unset;
    text-align: center;
    padding-top: 20px;
  }
}

.cont_top .area_main_visual .box_main_visual .img_main_visual {
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .box_main_visual .img_main_visual {
    width: calc(100% * 210 / 375);
    min-width: 210px;
  }
}

.cont_top .area_main_visual .box_main_visual .tl_main_visual {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-indent: -7.5em;
  padding-top: 7.5em;
  position: absolute;
  top: 150px;
  right: 55px;
  font-size: 3.3rem;
  letter-spacing: 0.5em;
  font-weight: bold;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .box_main_visual .tl_main_visual {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 1.8rem;
    text-indent: unset;
    padding-top: 0;
    position: static;
    margin-top: 50px;
    text-align: center;
  }
}

.cont_top .area_main_visual .box_lead {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .box_lead {
    margin-top: 30px;
    display: block;
  }
}

.cont_top .area_main_visual .box_lead .box_txt .tl_lead {
  width: 100%;
  max-width: 510px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .box_lead .box_txt .tl_lead {
    width: 185px;
  }
}

.cont_top .area_main_visual .box_lead .box_txt .tl_lead .img_tl {
  width: 100%;
  height: auto;
}

.cont_top .area_main_visual .box_lead .box_txt .txt_lead {
  margin-top: 50px;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .box_lead .box_txt .txt_lead {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

.cont_top .area_main_visual .box_lead .list_business {
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .box_lead .list_business {
    margin-top: 30px;
    position: relative;
  }
  .cont_top .area_main_visual .box_lead .list_business::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    right: 20px;
    top: -20px;
    width: 130px;
    height: 63px;
    background-image: url(../img_top/ico_people_01_sp.svg);
  }
  .cont_top .area_main_visual .box_lead .list_business::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 110px;
    background-image: url(../img_top/ico_people_02_sp.svg);
  }
}

.cont_top .area_main_visual .box_lead .list_business .item_business {
  font-size: 1.5rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding-left: 1em;
  position: relative;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .box_lead .list_business .item_business {
    font-size: 1.4rem;
    margin-top: 15px;
  }
}

.cont_top .area_main_visual .box_lead .list_business .item_business::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.cont_top .area_main_visual .wrap_list_photo {
  margin-top: 100px;
  position: relative;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .wrap_list_photo {
    margin: 50px -30px 0;
  }
}

.cont_top .area_main_visual .wrap_list_photo .link_document {
  display: block;
  position: absolute;
  top: -180px;
  right: 120px;
  width: 268px;
  height: 268px;
  z-index: 1;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .wrap_list_photo .link_document {
    top: -95px;
    right: unset;
    left: 100px;
    width: 125px;
    height: 125px;
  }
}

.cont_top .area_main_visual .wrap_list_photo .link_document .img_link_document {
  width: 100%;
  height: 100%;
}

.cont_top .area_main_visual .list_photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cont_top .area_main_visual .list_photo .item_photo {
  width: 25%;
  padding-top: 25%;
  position: relative;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_main_visual .list_photo .item_photo {
    width: 50%;
    padding-top: 50%;
  }
}

.cont_top .area_main_visual .list_photo .item_photo .img_item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.cont_top .area_news {
  margin-top: 100px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_news {
    margin-top: 50px;
  }
}

.cont_top .area_news .list_news {
  margin-top: 45px;
  margin-top: 20px;
}

.cont_top .area_news .wrap_btn {
  margin-top: 45px;
  text-align: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_news .wrap_btn {
    margin-top: 20px;
  }
}

.cont_top .area_blog {
  margin-top: 160px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_blog {
    margin-top: 50px;
  }
}

.cont_top .area_blog .list_blog {
  margin-top: 45px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_blog .list_blog {
    margin-top: 20px;
  }
}

.cont_top .area_blog .wrap_btn {
  margin-top: 45px;
  text-align: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_blog .wrap_btn {
    margin-top: 20px;
  }
}

.cont_top .area_strength {
  margin-top: 115px;
  padding: 115px 0;
  background-color: #F1F1F2;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength {
    margin-top: 50px;
    padding: 50px 0 30px;
  }
}

.cont_top .area_strength .block_support {
  margin-top: 75px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support {
    margin-top: 30px;
  }
}

.cont_top .area_strength .block_support .box_tl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cont_top .area_strength .block_support .box_tl .tl_strength_03 {
  width: 314px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_tl .tl_strength_03 {
    width: 100px;
  }
}

.cont_top .area_strength .block_support .box_tl .tl_strength_03 .img_tl {
  width: 100%;
  height: auto;
}

.cont_top .area_strength .block_support .box_tl .txt_tl {
  margin-left: 60px;
  font-size: 1.6rem;
  line-height: 2;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_tl .txt_tl {
    width: calc(100% - 110px);
    margin-left: 10px;
    font-size: 1.4rem;
  }
}

.cont_top .area_strength .block_support .box_support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cont_top .area_strength .block_support .box_support .box_img .img_support {
  width: 100%;
  height: auto;
}

.cont_top .area_strength .block_support .box_support .box_content .txt_content {
  margin-top: 35px;
  font-size: 1.6rem;
  line-height: 2;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support .box_content .txt_content {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility {
  margin-top: 65px;
  width: calc(100% - 30px);
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support .box_content .list_facility {
    margin-top: 20px;
    width: 100%;
  }
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility {
  margin-top: 20px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility {
    margin-top: 10px;
  }
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility:first-child {
  margin-top: 0;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item {
  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;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .txt_link {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.2;
  /* SP */
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .txt_link.txt_r {
  display: block;
  text-align: right;
  width: 335px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .txt_link.txt_r {
    width: unset;
    text-align: left;
  }
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .txt_link {
    font-size: 1.5rem;
  }
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  padding: 3px 15px 3px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFF;
  border-radius: 15px;
  text-align: center;
  background-color: #8E8E8F;
  position: relative;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 4px solid #FFF;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_navy {
  background-color: #002368;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_red {
  background-color: #CA174C;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_orange {
  background-color: #E77E00;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_rightblue {
  background-color: #84C5D1;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_pink {
  background-color: #DC7A93;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_yellowgreen {
  background-color: #D4CE04;
}

.cont_top .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_yellow {
  background-color: #FFE900;
}

.cont_top .area_strength .block_support .box_support.support_01 {
  margin-top: 110px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_01 {
    margin-top: 30px;
  }
}

.cont_top .area_strength .block_support .box_support.support_01 .box_img {
  width: calc(100% * 600 / 1150);
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_01 .box_img {
    width: calc(100% * 100 / 320);
  }
}

.cont_top .area_strength .block_support .box_support.support_01 .box_content {
  width: calc(100% * 500 / 1150);
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_01 .box_content {
    width: calc(100% * 210 / 320);
  }
}

.cont_top .area_strength .block_support .box_support.support_01 .box_content .img_tl_content {
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_01 .box_content .img_tl_content {
    width: 66px;
    height: auto;
  }
}

.cont_top .area_strength .block_support .box_support.support_02 {
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_02 {
    margin-top: 30px;
  }
}

.cont_top .area_strength .block_support .box_support.support_02 .box_img {
  width: calc(100% * 705 / 1150);
  margin-top: 70px;
  margin-left: -70px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_02 .box_img {
    width: calc(100% * 90 / 320);
  }
}

.cont_top .area_strength .block_support .box_support.support_02 .box_content {
  width: calc(100% * 585 / 1150);
  position: relative;
  z-index: 1;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_02 .box_content {
    width: calc(100% * 220 / 320);
  }
}

.cont_top .area_strength .block_support .box_support.support_03 {
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_03 {
    margin-top: 30px;
  }
}

.cont_top .area_strength .block_support .box_support.support_03 .box_img {
  margin-top: 100px;
  width: calc(100% * 585 / 1150);
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_03 .box_img {
    width: calc(100% * 100 / 320);
  }
}

.cont_top .area_strength .block_support .box_support.support_03 .box_content {
  width: calc(100% * 500 / 1150);
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_support .box_support.support_03 .box_content {
    width: calc(100% * 210 / 320);
  }
}

.cont_top .area_strength .block_support .box_support.support_03 .box_content .list_facility {
  width: 100%;
}

.cont_top .area_strength .block_marche {
  margin: 150px auto 0;
  width: 100%;
  max-width: 1420px;
  padding: 0 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche {
    margin-top: 60px;
    padding: 0 30px;
  }
}

.cont_top .area_strength .block_marche .box_tl {
  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;
  margin-bottom: 20px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_tl {
    display: block;
    margin-bottom: 35px;
  }
}

.cont_top .area_strength .block_marche .box_tl .tl_strength_03 {
  width: 430px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_tl .tl_strength_03 {
    width: 190px;
  }
}

.cont_top .area_strength .block_marche .box_tl .tl_strength_03 .img_tl {
  width: 100%;
  height: auto;
}

.cont_top .area_strength .block_marche .box_tl .txt_tl {
  margin-left: 110px;
  font-size: 1.6rem;
  line-height: 2;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_tl .txt_tl {
    margin: 10px auto 0;
    width: 280px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.cont_top .area_strength .block_marche .box_marche {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche {
    display: block;
    margin: 0 -30px;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_content {
  width: 50%;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_content {
    width: 100%;
    padding: 0 30px;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_content .tl_marche {
  text-align: center;
}

.cont_top .area_strength .block_marche .box_marche .box_content .tl_marche .img_tl_content {
  width: 100%;
  height: auto;
}

.cont_top .area_strength .block_marche .box_marche .box_content .tl_content {
  margin-top: 35px;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_content .tl_content {
    margin-top: 45px;
    font-size: 2.6rem;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_content .txt_content {
  margin-top: 15px;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_content .txt_content {
    margin-top: 25px;
    font-size: 1.4rem;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe {
  max-width: 300px;
  margin: 60px 0 60px auto;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe {
    margin: 55px auto 30px;
    text-align: center;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .tl_content {
  margin-top: 0;
}

.cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .txt_map {
  margin-top: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .txt_map {
    text-align: center;
    font-size: 1.4rem;
    font-weight: normal;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe {
  margin-top: 40px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe {
    margin-top: 25px;
    display: inline-block;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe {
  margin-top: 15px;
  /* SP */
}

.cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe:first-child {
  margin-top: 0;
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe {
    margin-top: 10px;
    line-height: 1.5;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe .dl_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe .dl_item .dt_item {
  border-radius: 20px;
  width: 135px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #FFF;
  background-color: #474645;
}

.cont_top .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe .dl_item .dd_item {
  margin-left: 15px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.cont_top .area_strength .block_marche .box_marche .box_content .wrap_btn {
  margin-top: 10px;
  text-align: right;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_content .wrap_btn {
    margin-top: 35px;
    text-align: center;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_content .link_more {
  display: inline-block;
  padding: 3px 15px 3px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFF;
  border-radius: 15px;
  text-align: center;
  background-color: #8E8E8F;
  position: relative;
}

.cont_top .area_strength .block_marche .box_marche .box_content .link_more::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 4px solid #FFF;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.cont_top .area_strength .block_marche .box_marche .box_content .link_more.color_navy {
  background-color: #002368;
}

.cont_top .area_strength .block_marche .box_marche .box_content .link_more.color_red {
  background-color: #CA174C;
}

.cont_top .area_strength .block_marche .box_marche .box_content .link_more.color_orange {
  background-color: #E77E00;
}

.cont_top .area_strength .block_marche .box_marche .box_content .link_more.color_rightblue {
  background-color: #84C5D1;
}

.cont_top .area_strength .block_marche .box_marche .box_content .link_more.color_pink {
  background-color: #DC7A93;
}

.cont_top .area_strength .block_marche .box_marche .box_content .link_more.color_yellowgreen {
  background-color: #D4CE04;
}

.cont_top .area_strength .block_marche .box_marche .box_content .link_more.color_yellow {
  background-color: #FFE900;
}

.cont_top .area_strength .block_marche .box_marche .box_img {
  width: 50%;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_img {
    width: 100%;
    /* SP */
  }
}

@media screen and (max-width: 896px) and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche .box_img {
    margin-top: 40px;
  }
}

.cont_top .area_strength .block_marche .box_marche .box_img .img_marche {
  width: 100%;
  height: auto;
}

.cont_top .area_strength .block_marche .box_marche.marche_01 .tl_marche {
  margin-top: -40px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche.marche_01 .tl_marche {
    margin-top: 35px;
  }
}

.cont_top .area_strength .block_marche .box_marche.marche_01 .tl_marche .img_tl_content {
  max-width: 480px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche.marche_01 .tl_marche .img_tl_content {
    max-width: 264px;
  }
}

.cont_top .area_strength .block_marche .box_marche.marche_02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche.marche_02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.cont_top .area_strength .block_marche .box_marche.marche_02 .tl_marche {
  margin-top: 10px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche.marche_02 .tl_marche {
    margin-top: 35px;
  }
}

.cont_top .area_strength .block_marche .box_marche.marche_02 .tl_marche .img_tl_content {
  max-width: 435px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche.marche_02 .tl_marche .img_tl_content {
    max-width: 308px;
  }
}

.cont_top .area_strength .block_marche .box_marche.marche_02 .tl_content {
  margin-top: 10px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche.marche_02 .tl_content {
    margin-top: 45px;
  }
}

.cont_top .area_strength .block_marche .box_marche.marche_03 .tl_marche {
  margin-top: 20px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche.marche_03 .tl_marche {
    margin-top: 35px;
  }
}

.cont_top .area_strength .block_marche .box_marche.marche_03 .tl_marche .img_tl_content {
  max-width: 475px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche.marche_03 .tl_marche .img_tl_content {
    max-width: 308px;
  }
}

.cont_top .area_strength .block_marche .box_marche.marche_03 .tl_content {
  margin-top: 10px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_strength .block_marche .box_marche.marche_03 .tl_content {
    margin-top: 45px;
  }
}

.cont_top .area_achievement {
  padding-top: 115px;
  margin-bottom: 235px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_achievement {
    padding-top: 50px;
    margin-bottom: 30px;
  }
}

.cont_top .area_achievement .lead_box {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_achievement .lead_box {
    display: block;
    margin-top: 25px;
  }
}

.cont_top .area_achievement .lead_box .box_img {
  width: calc(100% * 405 / 1150);
  max-width: 405px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_achievement .lead_box .box_img {
    width: 210px;
  }
}

.cont_top .area_achievement .lead_box .box_img .img_lead {
  width: 100%;
  height: auto;
}

.cont_top .area_achievement .lead_box .txt_lead {
  margin-left: 65px;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_achievement .lead_box .txt_lead {
    margin-left: 0;
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

.cont_top .area_achievement .list_achievement {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_achievement .list_achievement {
    margin-top: 20px;
  }
}

.cont_top .area_achievement .list_achievement .item_achievement {
  width: calc(100% * 350 / 1150);
  margin-right: calc(100% * 50 / 1150);
  margin-bottom: 45px;
  /* SP */
}

.cont_top .area_achievement .list_achievement .item_achievement:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 896px) {
  .cont_top .area_achievement .list_achievement .item_achievement {
    width: calc(100% * 95 / 315);
    margin-right: calc(100% * 15 / 315);
    margin-bottom: calc(100% * 15 / 315);
  }
}

.cont_top .area_achievement .list_achievement .item_achievement .box_img {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.cont_top .area_achievement .list_achievement .item_achievement .box_img .img_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cont_top .area_achievement .list_achievement .item_achievement .ico_cat {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid #ACACAC;
  padding: 0 20px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  color: #ACACAC;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_achievement .list_achievement .item_achievement .ico_cat {
    margin-top: 10px;
    padding: 0 5px;
    font-size: 1.3rem;
  }
}

.cont_top .area_achievement .list_achievement .item_achievement .ico_cat.color_navy {
  color: #002368;
  border-color: #002368;
}

.cont_top .area_achievement .list_achievement .item_achievement .ico_cat.color_red {
  color: #CA174C;
  border-color: #CA174C;
}

.cont_top .area_achievement .list_achievement .item_achievement .ico_cat.color_orange {
  color: #E77E00;
  border-color: #E77E00;
}

.cont_top .area_achievement .list_achievement .item_achievement .ico_cat.color_rightblue {
  color: #84C5D1;
  border-color: #84C5D1;
}

.cont_top .area_achievement .list_achievement .item_achievement .ico_cat.color_pink {
  color: #DC7A93;
  border-color: #DC7A93;
}

.cont_top .area_achievement .list_achievement .item_achievement .ico_cat.color_yellowgreen {
  color: #D4CE04;
  border-color: #D4CE04;
}

.cont_top .area_achievement .list_achievement .item_achievement .tl_item {
  margin-top: 35px;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_achievement .list_achievement .item_achievement .tl_item {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

.cont_top .area_faq {
  padding: 115px 0;
  background-color: #F1F1F2;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_faq {
    padding-top: 0;
    padding-bottom: 30px;
    background-color: #FFF;
  }
}

.cont_top .area_faq .list_faq {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_faq .list_faq {
    margin-top: 20px;
    display: block;
  }
}

.cont_top .area_faq .list_faq .item_faq {
  width: calc(100% * 550 / 1150);
  background-image: linear-gradient(to right, #3E3E3E, #3E3E3E 12px, transparent 12px, transparent 24px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 24px 1px;
  position: relative;
  /* SP */
}

.cont_top .area_faq .list_faq .item_faq:nth-child(1), .cont_top .area_faq .list_faq .item_faq:nth-child(2) {
  border-top: 1px solid #3E3E3E;
}

.cont_top .area_faq .list_faq .item_faq:nth-last-child(1), .cont_top .area_faq .list_faq .item_faq:nth-last-child(2) {
  border-bottom: 1px solid #3E3E3E;
  background: none;
}

@media screen and (max-width: 896px) {
  .cont_top .area_faq .list_faq .item_faq {
    width: 100%;
    background: none;
    border-bottom: 1px solid #3E3E3E;
  }
  .cont_top .area_faq .list_faq .item_faq:nth-child(2) {
    border-top: none;
  }
}

.cont_top .area_faq .list_faq .item_faq::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #DC7A93;
  border-radius: 50%;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_faq .list_faq .item_faq::before {
    width: 16px;
    height: 16px;
  }
}

.cont_top .area_faq .list_faq .item_faq::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_faq .list_faq .item_faq::after {
    width: 6px;
    height: 6px;
    border-width: 1px;
    right: 6px;
  }
}

.cont_top .area_faq .list_faq .item_faq .link_item {
  display: block;
  padding: 35px 45px;
  position: relative;
  font-size: 2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_faq .list_faq .item_faq .link_item {
    font-size: 1.4rem;
    padding: 10px 20px 10px 30px;
  }
}

.cont_top .area_faq .list_faq .item_faq .link_item::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  top: 32;
  left: 0;
  width: 20px;
  height: 30px;
  background-image: url(../img_cont/ico_q.svg);
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_faq .list_faq .item_faq .link_item::before {
    width: 12px;
    height: 18px;
    top: 13px;
  }
}

.cont_top .area_faq .wrap_btn {
  margin-top: 45px;
  text-align: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .area_faq .wrap_btn {
    margin-top: 20px;
  }
}

.cont_top .list_side_link {
  position: fixed;
  right: 0;
  top: 180px;
  width: 50px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .list_side_link {
    top: 90px;
    width: 30px;
  }
}

.cont_top .list_side_link .item_side_link {
  line-height: 50px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .list_side_link .item_side_link {
    line-height: 30px;
  }
}

.cont_top .list_side_link .item_side_link .link_item {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFF;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 20px 0;
  /* SP */
}

@media screen and (max-width: 896px) {
  .cont_top .list_side_link .item_side_link .link_item {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}

.cont_top .list_side_link .item_side_link .link_item.link_01 {
  background-color: #DC000C;
}

.cont_top .list_side_link .item_side_link .link_item.link_02 {
  background-color: #00267F;
}

.cont_top .list_side_link .item_side_link .link_item.link_03 {
  background-color: #399D26;
}

.cont_top .list_side_link .item_side_link .link_item.link_04 {
  background-color: #002368;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * リクルートサイト用ヘッダー
 * ================================================ */
.page_recruit {
  overflow-x: hidden;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  /*=================================================
   * リクルートサイト　トップページ
   * ================================================ */
  /*=================================================
   * 最大括り
   * ================================================ */
  /* ------------------------------------
  /* 大括り
  ------------------------------------ */
  /* 中括り
  ------------------------------------ */
  /* 小括り
  --------------- */
  /* 最小括り */
}

.page_recruit .header_cmn {
  height: 100px;
  background-color: #86BECE;
}

@media screen and (max-width: 896px) {
  .page_recruit .header_cmn {
    height: 50px;
  }
}

.page_recruit .header_cmn .header_inner {
  height: 100%;
}

.page_recruit .header_cmn .header_inner .header_main {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.page_recruit .header_cmn .header_inner .header_main .tl_header {
  width: auto;
  height: auto;
}

.page_recruit .header_cmn .header_inner .header_main .tl_header img {
  width: auto;
  height: 100%;
}

.page_recruit .header_cmn .header_inner .header_main .header_gnav {
  padding: 0px;
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}

@media screen and (max-width: 896px) {
  .page_recruit .header_cmn .header_inner .header_main .header_gnav {
    padding-bottom: 5px;
  }
}

.page_recruit .header_cmn .header_inner .header_main .header_gnav .list_header_gnav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-left: none;
}

.page_recruit .header_cmn .header_inner .header_main .header_gnav .list_header_gnav .item_header_gnav {
  width: auto;
  border-right: none;
}

.page_recruit .header_cmn .header_inner .header_main .header_gnav .list_header_gnav .item_header_gnav .link_item {
  color: #FFFFFF;
  font-weight: bold;
}

.page_recruit .header_cmn .header_inner .header_main .header_gnav .btn_header_recruit {
  height: auto;
  width: 160px;
  margin-top: 80px;
}

.page_recruit .cont_recruit {
  padding-top: 0 !important;
  background-image: url(../img_cont/800_recruit/recruit_bg_dot.png);
  /* ------------------------------------
    /* 共通パーツ
    ------------------------------------ */
  /* #about
  ------------------------------------ */
  /* #environment
  ------------------------------------ */
}

.page_recruit .cont_recruit p {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.page_recruit .cont_recruit .main .area_main_visual .box_main_visual img {
  width: 100%;
}

.page_recruit .cont_recruit .main .area_main_visual .box_main_visual img:nth-child(1) {
  width: 122vw;
}

.page_recruit .cont_recruit .area_recruit {
  position: relative;
  /* box_entry------------------------------------ */
}

.page_recruit .cont_recruit .area_recruit .cont_inner__recruit {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 134px 50px 0;
  position: relative;
}

.page_recruit .cont_recruit .area_recruit .cont_inner__recruit .recruit_bg_grass {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page_recruit .cont_recruit .area_recruit .tl_recruit_sec_title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 60px;
  color: #1F5EAF;
  text-align: center;
  letter-spacing: 0em;
  position: relative;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_recruit .tl_recruit_sec_title {
    font-size: 1.8rem;
  }
}

.page_recruit .cont_recruit .area_recruit .tl_recruit_sec_title img {
  width: auto;
  height: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 28px;
}

.page_recruit .cont_recruit .area_recruit .box_entry {
  width: 100%;
  margin-top: 76px;
  border: solid 1px #A18F7F;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  position: relative;
}

.page_recruit .cont_recruit .area_recruit .box_entry::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  left: -20px;
  top: -80px;
  width: 300px;
  height: 103px;
  background-image: url(../img_cont/800_recruit/img_recruit_entry_bg_1.png);
}

.page_recruit .cont_recruit .area_recruit .box_entry .recruit_table {
  width: calc(100% - 100px);
  margin: 50px auto;
  padding: 50px 112px;
}

.page_recruit .cont_recruit .area_recruit .box_entry .recruit_table .entry_tr {
  font-size: 1.8rem;
}

.page_recruit .cont_recruit .area_recruit .box_entry .recruit_table .entry_tr:not(:first-child) {
  border-bottom: dashed 1px #3E3E3E;
}

.page_recruit .cont_recruit .area_recruit .box_entry .recruit_table .entry_tr:nth-child(odd) {
  background-color: #F3F9FA;
}

.page_recruit .cont_recruit .area_recruit .box_entry .recruit_table .entry_tr:first-child {
  background-color: #86BECE;
}

.page_recruit .cont_recruit .area_recruit .box_entry .recruit_table .entry_tr .entry_th {
  color: #FFF;
  padding: 16px 0 16px 68px;
}

.page_recruit .cont_recruit .area_recruit .box_entry .recruit_table .entry_tr .entry_th:first-child {
  padding: 16px 0 16px 40px;
}

.page_recruit .cont_recruit .area_recruit .box_entry .recruit_table .entry_tr .entry_td {
  font-size: 1.6rem;
  padding: 16px 0 16px 68px;
}

.page_recruit .cont_recruit .area_recruit .box_entry .recruit_table .entry_tr .entry_td:first-child {
  font-size: 1.8rem;
  padding: 16px 0 16px 40px;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .small_head {
  font-size: 3rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 43px 0 46px 0;
  color: #FF9C24;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box p {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_btn_wrap {
  width: calc(100% - 156px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0 auto;
  margin-top: 50px;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn {
  width: calc((100% - 30px) / 2);
  max-width: 380px;
  height: 105px;
  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;
  background-color: #FF9C24;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn:nth-child(2) {
  background-color: #85725F;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn a {
  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%;
  height: 100%;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn a .btn_txt_box {
  color: #fff;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn a .btn_txt_box p {
  font-size: 1.8rem;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn a .btn_txt_box p:nth-child(2) {
  font-size: 2.7rem;
  display: block;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn a .btn_txt_box p .ico_arrow {
  vertical-align: text-bottom;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn a .btn_txt_box .entry_btn_txt01 {
  position: relative;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn a .btn_txt_box .entry_btn_txt01 .ico_contact {
  margin-left: 8px;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn a .btn_txt_box .entry_btn_txt02 {
  position: relative;
  margin-right: 0;
}

.page_recruit .cont_recruit .area_recruit .entry_form_link_box .entry_form_btn:nth-child(1) p {
  display: block;
}

.page_recruit .cont_recruit #about {
  background-color: #FAF6DB;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding-bottom: 120px;
}

.page_recruit .cont_recruit #about .about_box {
  width: calc(1920px - 360px * 2 - 260px);
  margin: 0 auto;
  padding: 77px 160px 132px;
  position: relative;
  background-color: #FFF;
  border-top: solid 30px #F7DD7B;
  border-bottom: solid 30px #F7DD7B;
  border-left: solid 26px #F2E3CE;
  border-right: solid 26px #F2E3CE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.page_recruit .cont_recruit #about .about_box .about_logo_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  margin-bottom: 54px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.page_recruit .cont_recruit #about .about_box .about_logo_col .about_logo_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}

.page_recruit .cont_recruit #about .about_box .about_logo_col .about_logo {
  width: 74px;
  height: 100%;
  margin: 0 auto;
}

.page_recruit .cont_recruit #about .about_box .about_logo_col h4 {
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.page_recruit .cont_recruit #about .about_box .about_txtbox {
  margin-bottom: 56px;
}

.page_recruit .cont_recruit #about .about_box .about_txtbox p {
  font-size: 1.8rem;
  line-height: 2.2em;
  letter-spacing: 0.02em;
}

.page_recruit .cont_recruit #about .about_box .about_ceo {
  font-size: 2rem;
  float: right;
}

.page_recruit .cont_recruit #about .about_box .about_tree {
  position: absolute;
  bottom: 0;
  left: -44px;
}

.page_recruit .cont_recruit #about .about_box .about_triangle {
  position: absolute;
  bottom: -30px;
  right: -26px;
}

.page_recruit .cont_recruit #about .about_box .about_speech_box {
  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;
  position: absolute;
  bottom: -142px;
  right: -26px;
}

.page_recruit .cont_recruit #about .about_box .about_speech_box p {
  font-size: 2rem;
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page_recruit .cont_recruit #environment {
  background-image: url(../img_cont/800_recruit/environment_bg.png);
  background-position: center;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding-bottom: 120px;
}

.page_recruit .cont_recruit #environment #environment_title {
  position: relative;
}

.page_recruit .cont_recruit #environment #environment_title::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  left: 86px;
  top: -64px;
  width: 90px;
  height: 90px;
  background-image: url(../img_cont/800_recruit/img_environment_heading_before.png);
}

.page_recruit .cont_recruit #environment #environment_title::after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  right: 67px;
  top: -10px;
  width: 74px;
  height: 104px;
  background-image: url(../img_cont/800_recruit/img_environment_heading_after.png);
}

.page_recruit .cont_recruit #environment .environment_option {
  width: calc(1920px - 1000px);
  margin: 0 auto;
  margin-top: 60px;
  padding: 42px 0 43px 50px;
  background-color: #fff;
}

.page_recruit .cont_recruit #environment .environment_option .environment_option_head {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding-bottom: 33px;
}

.page_recruit .cont_recruit #environment .environment_option .environment_option_head p {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}

.page_recruit .cont_recruit #environment .environment_option .environment_option_head p::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #AACFD8;
}

.page_recruit .cont_recruit #environment .environment_option_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page_recruit .cont_recruit #environment .environment_option_column ul {
  width: calc(100% / 2);
}

.page_recruit .cont_recruit #environment .environment_option_column ul:first-child {
  border-right: dotted 1px #ACACAC;
  padding-right: 20px;
}

.page_recruit .cont_recruit #environment .environment_option_column ul:last-child {
  padding-left: 40px;
}

.page_recruit .cont_recruit #environment .environment_option_column ul li p {
  font-size: 1.7rem;
}

.page_recruit .cont_recruit #environment .environment_option_column ul li:not(:last-child) {
  margin-bottom: 20px;
}

.page_recruit .cont_recruit #environment .environment_bg_tree {
  position: absolute;
  bottom: -12px;
  right: 26px;
}

.page_recruit .cont_recruit .link_btn {
  display: inline-block;
  padding: 10px 50px;
  border-radius: 35px;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: bold;
  background-color: #ACACAC;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .link_btn {
    padding: 5px 20px;
    font-size: 1.4rem;
  }
}

.page_recruit .cont_recruit .link_btn.color_navy {
  background-color: #002368;
}

.page_recruit .cont_recruit .link_btn.color_red {
  background-color: #CA174C;
}

.page_recruit .cont_recruit .link_btn.color_orange {
  background-color: #E77E00;
}

.page_recruit .cont_recruit .link_btn.color_rightblue {
  background-color: #84C5D1;
}

.page_recruit .cont_recruit .link_btn.color_pink {
  background-color: #DC7A93;
}

.page_recruit .cont_recruit .link_btn.color_yellowgreen {
  background-color: #D4CE04;
}

.page_recruit .cont_recruit .link_btn .txt_btn {
  color: #FFF;
  font-size: 2.4rem;
  font-weight: bold;
}

.page_recruit .cont_recruit .area_main_visual {
  width: 100%;
  margin: 0 auto;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual {
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.page_recruit .cont_recruit .area_main_visual .box_main_visual {
  width: 100%;
  height: 100vh;
  position: relative;
  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;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .box_main_visual {
    width: 100%;
    height: 550px;
    margin-top: 50px;
  }
}

.page_recruit .cont_recruit .area_main_visual .box_main_visual .img_main_visual {
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .box_main_visual .img_main_visual {
    width: calc(100% * 210 / 375);
    min-width: 210px;
  }
}

.page_recruit .cont_recruit .area_main_visual .box_main_visual .tl_main_visual {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img_cont/800_recruit/img_recruit_mainvisual.svg);
  background-size: cover;
  background-position: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .box_main_visual .tl_main_visual {
    width: 375px;
    height: 550px;
    background-image: url(../img_cont/800_recruit/img_recruit_mainvisual_sp.svg);
  }
}

.page_recruit .cont_recruit .area_main_visual .box_main_visual .tl_main_visual .main_float_ground {
  width: 100%;
  height: 100%;
  position: relative;
}

.page_recruit .cont_recruit .area_main_visual .box_main_visual .tl_main_visual .main_float_ground .img_recruit_main_catch {
  width: 50%;
  min-width: 480px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.page_recruit .cont_recruit .area_main_visual .box_main_visual .tl_main_visual .main_float_ground img:nth-child(2) {
  position: absolute;
  /* height: 100%; */
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .box_main_visual .tl_main_visual {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 1.8rem;
    text-indent: unset;
    padding-top: 0;
    position: static;
    text-align: center;
  }
}

.page_recruit .cont_recruit .area_main_visual .box_lead {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .box_lead {
    margin-top: 30px;
    display: block;
  }
}

.page_recruit .cont_recruit .area_main_visual .box_lead .box_txt .tl_lead {
  width: 100%;
  max-width: 510px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .box_lead .box_txt .tl_lead {
    width: 185px;
  }
}

.page_recruit .cont_recruit .area_main_visual .box_lead .box_txt .tl_lead .img_tl {
  width: 100%;
  height: auto;
}

.page_recruit .cont_recruit .area_main_visual .box_lead .box_txt .txt_lead {
  margin-top: 50px;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .box_lead .box_txt .txt_lead {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

.page_recruit .cont_recruit .area_main_visual .box_lead .list_business {
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .box_lead .list_business {
    margin-top: 30px;
    position: relative;
  }
  .page_recruit .cont_recruit .area_main_visual .box_lead .list_business::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    right: 20px;
    top: -20px;
    width: 130px;
    height: 63px;
    background-image: url(../img_top/ico_people_01_sp.svg);
  }
  .page_recruit .cont_recruit .area_main_visual .box_lead .list_business::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 110px;
    background-image: url(../img_top/ico_people_02_sp.svg);
  }
}

.page_recruit .cont_recruit .area_main_visual .box_lead .list_business .item_business {
  font-size: 1.5rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  padding-left: 1em;
  position: relative;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .box_lead .list_business .item_business {
    font-size: 1.4rem;
    margin-top: 15px;
  }
}

.page_recruit .cont_recruit .area_main_visual .box_lead .list_business .item_business::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.page_recruit .cont_recruit .area_main_visual .wrap_list_photo {
  margin-top: 100px;
  position: relative;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .wrap_list_photo {
    margin: 50px -30px 0;
  }
}

.page_recruit .cont_recruit .area_main_visual .wrap_list_photo .link_document {
  display: block;
  position: absolute;
  top: -180px;
  right: 120px;
  width: 268px;
  height: 268px;
  z-index: 1;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .wrap_list_photo .link_document {
    top: -95px;
    right: unset;
    left: 100px;
    width: 125px;
    height: 125px;
  }
}

.page_recruit .cont_recruit .area_main_visual .wrap_list_photo .link_document .img_link_document {
  width: 100%;
  height: 100%;
}

.page_recruit .cont_recruit .area_main_visual .list_photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page_recruit .cont_recruit .area_main_visual .list_photo .item_photo {
  width: 25%;
  padding-top: 25%;
  position: relative;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_main_visual .list_photo .item_photo {
    width: 50%;
    padding-top: 50%;
  }
}

.page_recruit .cont_recruit .area_main_visual .list_photo .item_photo .img_item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.page_recruit .cont_recruit .area_news {
  margin-top: 100px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_news {
    margin-top: 50px;
  }
}

.page_recruit .cont_recruit .area_news .list_news {
  margin-top: 45px;
  margin-top: 20px;
}

.page_recruit .cont_recruit .area_news .wrap_btn {
  margin-top: 45px;
  text-align: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_news .wrap_btn {
    margin-top: 20px;
  }
}

.page_recruit .cont_recruit .area_entry {
  margin-top: 120px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_entry {
    margin-top: 50px;
  }
}

.page_recruit .cont_recruit .area_entry .list_blog {
  margin-top: 45px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_entry .list_blog {
    margin-top: 20px;
  }
}

.page_recruit .cont_recruit .area_entry .wrap_btn {
  margin-top: 45px;
  text-align: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_entry .wrap_btn {
    margin-top: 20px;
  }
}

.page_recruit .cont_recruit .area_strength {
  margin-top: 115px;
  padding: 115px 0;
  background-color: #F1F1F2;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength {
    margin-top: 50px;
    padding: 50px 0 30px;
  }
}

.page_recruit .cont_recruit .area_strength .block_support {
  margin-top: 75px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support {
    margin-top: 30px;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_tl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page_recruit .cont_recruit .area_strength .block_support .box_tl .tl_strength_03 {
  width: 314px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_tl .tl_strength_03 {
    width: 100px;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_tl .tl_strength_03 .img_tl {
  width: 100%;
  height: auto;
}

.page_recruit .cont_recruit .area_strength .block_support .box_tl .txt_tl {
  margin-left: 60px;
  font-size: 1.6rem;
  line-height: 2;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_tl .txt_tl {
    width: calc(100% - 110px);
    margin-left: 10px;
    font-size: 1.4rem;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_img .img_support {
  width: 100%;
  height: auto;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .txt_content {
  margin-top: 35px;
  font-size: 1.6rem;
  line-height: 2;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .txt_content {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility {
  margin-top: 65px;
  width: calc(100% - 30px);
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility {
    margin-top: 20px;
    width: 100%;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility {
  margin-top: 20px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility {
    margin-top: 10px;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility:first-child {
  margin-top: 0;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item {
  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;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .txt_link {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.2;
  /* SP */
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .txt_link.txt_r {
  display: block;
  text-align: right;
  width: 335px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .txt_link.txt_r {
    width: unset;
    text-align: left;
  }
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .txt_link {
    font-size: 1.5rem;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  padding: 3px 15px 3px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFF;
  border-radius: 15px;
  text-align: center;
  background-color: #8E8E8F;
  position: relative;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 4px solid #FFF;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_navy {
  background-color: #002368;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_red {
  background-color: #CA174C;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_orange {
  background-color: #E77E00;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_rightblue {
  background-color: #84C5D1;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_pink {
  background-color: #DC7A93;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_yellowgreen {
  background-color: #D4CE04;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support .box_content .list_facility .item_facility .link_item .ico_more.color_yellow {
  background-color: #FFE900;
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_01 {
  margin-top: 110px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_01 {
    margin-top: 30px;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_01 .box_img {
  width: calc(100% * 600 / 1150);
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_01 .box_img {
    width: calc(100% * 100 / 320);
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_01 .box_content {
  width: calc(100% * 500 / 1150);
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_01 .box_content {
    width: calc(100% * 210 / 320);
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_01 .box_content .img_tl_content {
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_01 .box_content .img_tl_content {
    width: 66px;
    height: auto;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_02 {
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_02 {
    margin-top: 30px;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_02 .box_img {
  width: calc(100% * 705 / 1150);
  margin-top: 70px;
  margin-left: -70px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_02 .box_img {
    width: calc(100% * 90 / 320);
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_02 .box_content {
  width: calc(100% * 585 / 1150);
  position: relative;
  z-index: 1;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_02 .box_content {
    width: calc(100% * 220 / 320);
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_03 {
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_03 {
    margin-top: 30px;
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_03 .box_img {
  margin-top: 100px;
  width: calc(100% * 585 / 1150);
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_03 .box_img {
    width: calc(100% * 100 / 320);
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_03 .box_content {
  width: calc(100% * 500 / 1150);
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_support .box_support.support_03 .box_content {
    width: calc(100% * 210 / 320);
  }
}

.page_recruit .cont_recruit .area_strength .block_support .box_support.support_03 .box_content .list_facility {
  width: 100%;
}

.page_recruit .cont_recruit .area_strength .block_marche {
  margin: 150px auto 0;
  width: 100%;
  max-width: 1420px;
  padding: 0 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche {
    margin-top: 60px;
    padding: 0 30px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_tl {
  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;
  margin-bottom: 20px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_tl {
    display: block;
    margin-bottom: 35px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_tl .tl_strength_03 {
  width: 430px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_tl .tl_strength_03 {
    width: 190px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_tl .tl_strength_03 .img_tl {
  width: 100%;
  height: auto;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_tl .txt_tl {
  margin-left: 110px;
  font-size: 1.6rem;
  line-height: 2;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_tl .txt_tl {
    margin: 10px auto 0;
    width: 280px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche {
    display: block;
    margin: 0 -30px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content {
  width: 50%;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content {
    width: 100%;
    padding: 0 30px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .tl_marche {
  text-align: center;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .tl_marche .img_tl_content {
  width: 100%;
  height: auto;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .tl_content {
  margin-top: 35px;
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .tl_content {
    margin-top: 45px;
    font-size: 2.6rem;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .txt_content {
  margin-top: 15px;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .txt_content {
    margin-top: 25px;
    font-size: 1.4rem;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe {
  max-width: 300px;
  margin: 60px 0 60px auto;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe {
    margin: 55px auto 30px;
    text-align: center;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .tl_content {
  margin-top: 0;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .txt_map {
  margin-top: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .txt_map {
    text-align: center;
    font-size: 1.4rem;
    font-weight: normal;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe {
  margin-top: 40px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe {
    margin-top: 25px;
    display: inline-block;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe {
  margin-top: 15px;
  /* SP */
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe:first-child {
  margin-top: 0;
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe {
    margin-top: 10px;
    line-height: 1.5;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe .dl_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe .dl_item .dt_item {
  border-radius: 20px;
  width: 135px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  color: #FFF;
  background-color: #474645;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .box_ai_cafe .list_cafe .item_cafe .dl_item .dd_item {
  margin-left: 15px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .wrap_btn {
  margin-top: 10px;
  text-align: right;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .wrap_btn {
    margin-top: 35px;
    text-align: center;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .link_more {
  display: inline-block;
  padding: 3px 15px 3px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #FFF;
  border-radius: 15px;
  text-align: center;
  background-color: #8E8E8F;
  position: relative;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .link_more::before {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 4px solid #FFF;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .link_more.color_navy {
  background-color: #002368;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .link_more.color_red {
  background-color: #CA174C;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .link_more.color_orange {
  background-color: #E77E00;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .link_more.color_rightblue {
  background-color: #84C5D1;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .link_more.color_pink {
  background-color: #DC7A93;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .link_more.color_yellowgreen {
  background-color: #D4CE04;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_content .link_more.color_yellow {
  background-color: #FFE900;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_img {
  width: 50%;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_img {
    width: 100%;
    /* SP */
  }
}

@media screen and (max-width: 896px) and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_img {
    margin-top: 40px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche .box_img .img_marche {
  width: 100%;
  height: auto;
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_01 .tl_marche {
  margin-top: -40px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_01 .tl_marche {
    margin-top: 35px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_01 .tl_marche .img_tl_content {
  max-width: 480px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_01 .tl_marche .img_tl_content {
    max-width: 264px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_02 .tl_marche {
  margin-top: 10px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_02 .tl_marche {
    margin-top: 35px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_02 .tl_marche .img_tl_content {
  max-width: 435px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_02 .tl_marche .img_tl_content {
    max-width: 308px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_02 .tl_content {
  margin-top: 10px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_02 .tl_content {
    margin-top: 45px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_03 .tl_marche {
  margin-top: 20px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_03 .tl_marche {
    margin-top: 35px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_03 .tl_marche .img_tl_content {
  max-width: 475px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_03 .tl_marche .img_tl_content {
    max-width: 308px;
  }
}

.page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_03 .tl_content {
  margin-top: 10px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_strength .block_marche .box_marche.marche_03 .tl_content {
    margin-top: 45px;
  }
}

.page_recruit .cont_recruit .area_achievement {
  padding-top: 115px;
  margin-bottom: 235px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_achievement {
    padding-top: 50px;
    margin-bottom: 30px;
  }
}

.page_recruit .cont_recruit .area_achievement .lead_box {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_achievement .lead_box {
    display: block;
    margin-top: 25px;
  }
}

.page_recruit .cont_recruit .area_achievement .lead_box .box_img {
  width: calc(100% * 405 / 1150);
  max-width: 405px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_achievement .lead_box .box_img {
    width: 210px;
  }
}

.page_recruit .cont_recruit .area_achievement .lead_box .box_img .img_lead {
  width: 100%;
  height: auto;
}

.page_recruit .cont_recruit .area_achievement .lead_box .txt_lead {
  margin-left: 65px;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_achievement .lead_box .txt_lead {
    margin-left: 0;
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

.page_recruit .cont_recruit .area_achievement .list_achievement {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_achievement .list_achievement {
    margin-top: 20px;
  }
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement {
  width: calc(100% * 350 / 1150);
  margin-right: calc(100% * 50 / 1150);
  margin-bottom: 45px;
  /* SP */
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement {
    width: calc(100% * 95 / 315);
    margin-right: calc(100% * 15 / 315);
    margin-bottom: calc(100% * 15 / 315);
  }
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .box_img {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .box_img .img_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .ico_cat {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid #ACACAC;
  padding: 0 20px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  color: #ACACAC;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .ico_cat {
    margin-top: 10px;
    padding: 0 5px;
    font-size: 1.3rem;
  }
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .ico_cat.color_navy {
  color: #002368;
  border-color: #002368;
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .ico_cat.color_red {
  color: #CA174C;
  border-color: #CA174C;
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .ico_cat.color_orange {
  color: #E77E00;
  border-color: #E77E00;
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .ico_cat.color_rightblue {
  color: #84C5D1;
  border-color: #84C5D1;
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .ico_cat.color_pink {
  color: #DC7A93;
  border-color: #DC7A93;
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .ico_cat.color_yellowgreen {
  color: #D4CE04;
  border-color: #D4CE04;
}

.page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .tl_item {
  margin-top: 35px;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_achievement .list_achievement .item_achievement .tl_item {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

.page_recruit .cont_recruit .area_faq {
  padding: 115px 0;
  background-color: #F1F1F2;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_faq {
    padding-top: 0;
    padding-bottom: 30px;
    background-color: #FFF;
  }
}

.page_recruit .cont_recruit .area_faq .list_faq {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_faq .list_faq {
    margin-top: 20px;
    display: block;
  }
}

.page_recruit .cont_recruit .area_faq .list_faq .item_faq {
  width: calc(100% * 550 / 1150);
  background-image: linear-gradient(to right, #3E3E3E, #3E3E3E 12px, transparent 12px, transparent 24px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 24px 1px;
  position: relative;
  /* SP */
}

.page_recruit .cont_recruit .area_faq .list_faq .item_faq:nth-child(1), .page_recruit .cont_recruit .area_faq .list_faq .item_faq:nth-child(2) {
  border-top: 1px solid #3E3E3E;
}

.page_recruit .cont_recruit .area_faq .list_faq .item_faq:nth-last-child(1), .page_recruit .cont_recruit .area_faq .list_faq .item_faq:nth-last-child(2) {
  border-bottom: 1px solid #3E3E3E;
  background: none;
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_faq .list_faq .item_faq {
    width: 100%;
    background: none;
    border-bottom: 1px solid #3E3E3E;
  }
  .page_recruit .cont_recruit .area_faq .list_faq .item_faq:nth-child(2) {
    border-top: none;
  }
}

.page_recruit .cont_recruit .area_faq .list_faq .item_faq::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #DC7A93;
  border-radius: 50%;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_faq .list_faq .item_faq::before {
    width: 16px;
    height: 16px;
  }
}

.page_recruit .cont_recruit .area_faq .list_faq .item_faq::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_faq .list_faq .item_faq::after {
    width: 6px;
    height: 6px;
    border-width: 1px;
    right: 6px;
  }
}

.page_recruit .cont_recruit .area_faq .list_faq .item_faq .link_item {
  display: block;
  padding: 35px 45px;
  position: relative;
  font-size: 2rem;
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_faq .list_faq .item_faq .link_item {
    font-size: 1.4rem;
    padding: 10px 20px 10px 30px;
  }
}

.page_recruit .cont_recruit .area_faq .list_faq .item_faq .link_item::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  top: 32;
  left: 0;
  width: 20px;
  height: 30px;
  background-image: url(../img_cont/ico_q.svg);
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_faq .list_faq .item_faq .link_item::before {
    width: 12px;
    height: 18px;
    top: 13px;
  }
}

.page_recruit .cont_recruit .area_faq .wrap_btn {
  margin-top: 45px;
  text-align: center;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .area_faq .wrap_btn {
    margin-top: 20px;
  }
}

.page_recruit .cont_recruit .list_side_link {
  position: fixed;
  right: 0;
  top: 180px;
  width: 50px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .list_side_link {
    top: 90px;
    width: 30px;
  }
}

.page_recruit .cont_recruit .list_side_link .item_side_link {
  line-height: 50px;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .list_side_link .item_side_link {
    line-height: 30px;
  }
}

.page_recruit .cont_recruit .list_side_link .item_side_link .link_item {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFF;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 20px 0;
  /* SP */
}

@media screen and (max-width: 896px) {
  .page_recruit .cont_recruit .list_side_link .item_side_link .link_item {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}

.page_recruit .cont_recruit .list_side_link .item_side_link .link_item.link_01 {
  background-color: #DC000C;
}

.page_recruit .cont_recruit .list_side_link .item_side_link .link_item.link_02 {
  background-color: #00267F;
}

.page_recruit .cont_recruit .list_side_link .item_side_link .link_item.link_03 {
  background-color: #399D26;
}

.page_recruit .cont_recruit .list_side_link .item_side_link .link_item.link_04 {
  background-color: #002368;
}

.cont_top {
  /*=================================================
 * 共通部分
 * ================================================ */
  /*=================================================
 * copy01共通パーツ(左：画像　右：テキスト)
 * ================================================ */
  /*=================================================
 * copy02共通パーツ
 * ================================================ */
  /*=================================================
 * 下位コンテンツごとのパーツ・クラス
 * ================================================ */
}

.cont_top section.sec_white_bg {
  background-color: #FFF;
}

.cont_top section.sec_pink_bg {
  background-color: #F4F4F4;
}

.cont_top section .layer {
  right: 0;
}

.cont_top section .no_layer {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cont_top .firstview {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  width: 100%;
  margin-top: 80px;
}

.cont_top .firstview .firstview_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.cont_top .firstview .firstview_wrap .firstview_txt {
  display: block;
}

.cont_top .firstview .firstview_wrap .firstview_txt .name_shoulder {
  font-size: 2.3rem;
  letter-spacing: 0.115rem;
}

.cont_top .firstview .firstview_wrap .firstview_txt .name {
  font-size: 4.7rem;
  margin-top: -1.4rem;
  line-height: 11.75rem;
  letter-spacing: 0.235rem;
}

.cont_top .firstview .firstview_wrap .firstview_txt .caption {
  font-size: 1.6rem;
}

.cont_top .firstview .firstview_wrap .firstview_txt .caption:not(:first-child) {
  line-height: 3.6rem;
}

.cont_top .firstview .firstview_wrap .firstview_img_box {
  display: inline-block;
  width: calc(1920px - 1632px);
  height: 100%;
  position: absolute;
  right: 0;
}

.cont_top .img_grid {
  width: 100%;
  margin-top: 94px;
}

.cont_top .img_grid .grid_ul {
  width: 1200px;
  height: 600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cont_top .img_grid .grid_ul .grid_li {
  width: calc((1920px - 720px) / 4);
  height: auto;
}

.cont_top .img_grid .grid_ul .grid_li img {
  width: calc((1920px - 720px) / 4);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cont_top .copy01 {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  width: 100%;
  padding-top: 96px;
  /*=================================================
 * catch
 * ================================================ */
  /*=================================================
 * can_us
 * ================================================ */
}

.cont_top .copy01 h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.1rem;
  letter-spacing: 0.26rem;
  margin-bottom: 80px;
}

.cont_top .copy01.no_head h4 {
  display: none;
}

.cont_top .copy01 .catch_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

.cont_top .copy01 .catch_wrap .catch_img_box {
  position: absolute;
  left: 0;
}

.cont_top .copy01 .catch_wrap .catch_txt_box {
  width: calc(1200px - 694px);
}

.cont_top .copy01 .catch_wrap .catch_txt_box p {
  font-size: 1.7rem;
  line-height: 4.8rem;
  margin-top: -2.4rem;
}

.cont_top .copy01 .can_us_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

.cont_top .copy01 .can_us_wrap .can_us_img_box {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cont_top .copy01 .can_us_wrap .can_us_txt_box {
  width: calc(1200px - 694px);
}

.cont_top .copy01 .can_us_wrap .can_us_txt_box p {
  font-size: 1.7rem;
  line-height: 4.8rem;
  margin-top: -2.4rem;
}

.cont_top .copy01 .can_us_ul_box .can_us_ul .can_us_li {
  width: calc(1200px - 835px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.cont_top .copy01 .can_us_ul_box .can_us_ul .can_us_li .can_us_li_img_box {
  width: calc(1200px - 748px);
  position: relative;
}

.cont_top .copy01 .can_us_ul_box .can_us_ul .can_us_li .can_us_li_img_box .left_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
}

.cont_top .copy01 .can_us_ul_box .can_us_ul .can_us_li .can_us_txt_box {
  float: right;
}

.cont_top .copy01 .can_us_ul_box .can_us_ul .can_us_li.leftimg {
  width: 100%;
  margin-left: auto;
}

.cont_top .copy01 .can_us_ul_box .can_us_ul .can_us_li.rightimg {
  width: 100%;
}

.cont_top .question {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  width: 100%;
  margin-top: 96px;
  padding: 96px 0 100px;
}

.cont_top .question h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.1rem;
  letter-spacing: 0.26rem;
}

.cont_top .question .question_wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.cont_top .question .question_wrap .question_txt {
  width: calc(1200px - 694px);
  font-size: 1.7rem;
  line-height: 3.5rem;
  margin-top: -1.75rem;
}

.cont_top .question .question_wrap .question_img_box {
  position: absolute;
}

.cont_top .copy02 {
  /*=================================================
 * flow
 * ================================================ */
}

.cont_top .copy02.flow {
  font-family: YakuHanJP, "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
  width: 100%;
  padding: 96px 0 100px;
}

.cont_top .copy02.flow h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.1rem;
  letter-spacing: 0.26rem;
}

.cont_top .copy02.flow .flow_wrap {
  margin-top: 40px;
  position: relative;
}

.cont_top .copy02.flow .flow_wrap .flow_img_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cont_top .copy02.flow .check_box {
  display: none;
}

.cont_top .copy02.flow.check .check_box {
  margin-top: 84px;
  display: block;
}

.cont_top .copy02.flow.check .check_box h4 {
  letter-spacing: 0.26em;
}

.cont_top .copy02.flow.check .check_box .check_ul {
  margin-top: 100px;
  background-image: url(../img_cont/991_999_page/994_arima/994_arima_check_img.png);
  background-repeat: no-repeat;
  background-position: right top;
}

.cont_top .copy02.flow.check .check_box .check_ul .check_li:first-child {
  margin-top: -4rem;
}

.cont_top .copy02.flow.check .check_box .check_ul .check_li p {
  font-size: 1.7rem;
  line-height: 8rem;
  padding-left: 50px;
  position: relative;
}

.cont_top .copy02.flow.check .check_box .check_ul .check_li p::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  top: 50%;
  left: 0;
  width: 38px;
  height: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
}

.cont_top .copy02.flow.check.arima .check_box {
  margin-top: 84px;
  display: block;
}

.cont_top .copy02.flow.check.arima .check_box h4 {
  letter-spacing: 0.26em;
}

.cont_top .copy02.flow.check.arima .check_box .check_ul {
  margin-top: 100px;
  background-image: url(../img_cont/991_999_page/994_arima/994_arima_check_img.png);
  background-repeat: no-repeat;
  background-position: right top;
}

.cont_top .copy02.flow.check.arima .check_box .check_ul .check_li:first-child {
  margin-top: -4rem;
}

.cont_top .copy02.flow.check.arima .check_box .check_ul .check_li p {
  font-size: 1.7rem;
  line-height: 8rem;
  padding-left: 50px;
  position: relative;
}

.cont_top .copy02.flow.check.arima .check_box .check_ul .check_li p::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2039.09%2031.5%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%2C.cls-2%7Bfill%3Anone%3Bstroke-miterlimit%3A10%3B%7D.cls-1%7Bstroke%3A%23595757%3B%7D.cls-2%7Bstroke%3A%23d2d722%3Bstroke-width%3A2px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%3Crect%20class%3D%22cls-1%22%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%2230.5%22%20height%3D%2230.5%22%2F%3E%3Cpolyline%20class%3D%22cls-2%22%20points%3D%229.55%2015.75%2015.75%2022.33%2038.46%204.11%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.cont_top .copy02.flow.check.soudan .check_box {
  margin-top: 84px;
  display: block;
}

.cont_top .copy02.flow.check.soudan .check_box h4 {
  letter-spacing: 0.26em;
}

.cont_top .copy02.flow.check.soudan .check_box .check_ul {
  margin-top: 100px;
  background-image: url(../img_cont/991_999_page/997_soudan/997_soudan_check_img.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}

.cont_top .copy02.flow.check.soudan .check_box .check_ul .check_li:first-child {
  margin-top: -4rem;
}

.cont_top .copy02.flow.check.soudan .check_box .check_ul .check_li p {
  font-size: 1.7rem;
  line-height: 8rem;
  padding-left: 50px;
  position: relative;
}

.cont_top .copy02.flow.check.soudan .check_box .check_ul .check_li p::before {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2039.09%2031.5%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%2C.cls-2%7Bfill%3Anone%3Bstroke-miterlimit%3A10%3B%7D.cls-1%7Bstroke%3A%23595757%3B%7D.cls-2%7Bstroke%3A%23E4007F%3Bstroke-width%3A2px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%202%22%3E%3Cg%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1-2%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC%201%22%3E%3Crect%20class%3D%22cls-1%22%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%2230.5%22%20height%3D%2230.5%22%2F%3E%3Cpolyline%20class%3D%22cls-2%22%20points%3D%229.55%2015.75%2015.75%2022.33%2038.46%204.11%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.cont_top.cont_ai .item_news .link_item::before {
  background-color: #002368;
}

.cont_top.cont_ai .link_btn {
  background-color: #002368;
}

.cont_top.cont_ai .area_faq .list_faq .item_faq::before {
  background-color: #002368;
}

.cont_top.cont_ai .area_faq .list_faq .item_faq .link_item::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2230%22%20viewBox%3D%220%200%2020%2030%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6197%22%20data-name%3D%22%E3%83%91%E3%82%B9%206197%22%20d%3D%22M1993.556%2C8345.763a21.016%2C21.016%2C0%2C0%2C1-3.188.215c-3.46%2C0-4.753-.892-5.715-3.572l-.661-1.816c-5.413-.4-9.022-4.806-9.022-12.229%2C0-7.885%2C4.06-12.382%2C10.014-12.382%2C5.985%2C0%2C9.986%2C4.435%2C9.986%2C12.32%2C0%2C6.621-2.857%2C10.9-7.248%2C11.983l.391%2C1.169c.45%2C1.17%2C1.141%2C1.633%2C2.917%2C1.633a14.009%2C14.009%2C0%2C0%2C0%2C2.947-.338Zm-14.286-17.434c0%2C6.067%2C2.285%2C9.179%2C5.714%2C9.179s5.684-3.111%2C5.684-9.179c0-6.128-2.255-9.116-5.684-9.116s-5.714%2C2.988-5.714%2C9.116%22%20transform%3D%22translate(-1974.97%20-8315.978)%22%20fill%3D%22%23002368%22%2F%3E%3C%2Fsvg%3E");
}

.cont_top.cont_futatsuhosi .item_news .link_item::before {
  background-color: #84C5D1;
}

.cont_top.cont_futatsuhosi .link_btn {
  background-color: #84C5D1;
}

.cont_top.cont_futatsuhosi .area_faq .list_faq .item_faq::before {
  background-color: #84C5D1;
}

.cont_top.cont_futatsuhosi .area_faq .list_faq .item_faq .link_item::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2230%22%20viewBox%3D%220%200%2020%2030%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6197%22%20data-name%3D%22%E3%83%91%E3%82%B9%206197%22%20d%3D%22M1993.556%2C8345.763a21.016%2C21.016%2C0%2C0%2C1-3.188.215c-3.46%2C0-4.753-.892-5.715-3.572l-.661-1.816c-5.413-.4-9.022-4.806-9.022-12.229%2C0-7.885%2C4.06-12.382%2C10.014-12.382%2C5.985%2C0%2C9.986%2C4.435%2C9.986%2C12.32%2C0%2C6.621-2.857%2C10.9-7.248%2C11.983l.391%2C1.169c.45%2C1.17%2C1.141%2C1.633%2C2.917%2C1.633a14.009%2C14.009%2C0%2C0%2C0%2C2.947-.338Zm-14.286-17.434c0%2C6.067%2C2.285%2C9.179%2C5.714%2C9.179s5.684-3.111%2C5.684-9.179c0-6.128-2.255-9.116-5.684-9.116s-5.714%2C2.988-5.714%2C9.116%22%20transform%3D%22translate(-1974.97%20-8315.978)%22%20fill%3D%22%2384C5D1%22%2F%3E%3C%2Fsvg%3E");
}

.cont_top.cont_arima .item_news .link_item::before {
  background-color: #D4CE04;
}

.cont_top.cont_arima .link_btn {
  background-color: #D4CE04;
}

.cont_top.cont_arima .area_faq .list_faq .item_faq::before {
  background-color: #D4CE04;
}

.cont_top.cont_arima .area_faq .list_faq .item_faq .link_item::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2230%22%20viewBox%3D%220%200%2020%2030%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6197%22%20data-name%3D%22%E3%83%91%E3%82%B9%206197%22%20d%3D%22M1993.556%2C8345.763a21.016%2C21.016%2C0%2C0%2C1-3.188.215c-3.46%2C0-4.753-.892-5.715-3.572l-.661-1.816c-5.413-.4-9.022-4.806-9.022-12.229%2C0-7.885%2C4.06-12.382%2C10.014-12.382%2C5.985%2C0%2C9.986%2C4.435%2C9.986%2C12.32%2C0%2C6.621-2.857%2C10.9-7.248%2C11.983l.391%2C1.169c.45%2C1.17%2C1.141%2C1.633%2C2.917%2C1.633a14.009%2C14.009%2C0%2C0%2C0%2C2.947-.338Zm-14.286-17.434c0%2C6.067%2C2.285%2C9.179%2C5.714%2C9.179s5.684-3.111%2C5.684-9.179c0-6.128-2.255-9.116-5.684-9.116s-5.714%2C2.988-5.714%2C9.116%22%20transform%3D%22translate(-1974.97%20-8315.978)%22%20fill%3D%22%23D4CE04%22%2F%3E%3C%2Fsvg%3E");
}

.cont_top.cont_hitotsuhosi .item_news .link_item::before {
  background-color: #84C5D1;
}

.cont_top.cont_hitotsuhosi .link_btn {
  background-color: #84C5D1;
}

.cont_top.cont_hitotsuhosi .area_faq .list_faq .item_faq::before {
  background-color: #84C5D1;
}

.cont_top.cont_hitotsuhosi .area_faq .list_faq .item_faq .link_item::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2230%22%20viewBox%3D%220%200%2020%2030%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6197%22%20data-name%3D%22%E3%83%91%E3%82%B9%206197%22%20d%3D%22M1993.556%2C8345.763a21.016%2C21.016%2C0%2C0%2C1-3.188.215c-3.46%2C0-4.753-.892-5.715-3.572l-.661-1.816c-5.413-.4-9.022-4.806-9.022-12.229%2C0-7.885%2C4.06-12.382%2C10.014-12.382%2C5.985%2C0%2C9.986%2C4.435%2C9.986%2C12.32%2C0%2C6.621-2.857%2C10.9-7.248%2C11.983l.391%2C1.169c.45%2C1.17%2C1.141%2C1.633%2C2.917%2C1.633a14.009%2C14.009%2C0%2C0%2C0%2C2.947-.338Zm-14.286-17.434c0%2C6.067%2C2.285%2C9.179%2C5.714%2C9.179s5.684-3.111%2C5.684-9.179c0-6.128-2.255-9.116-5.684-9.116s-5.714%2C2.988-5.714%2C9.116%22%20transform%3D%22translate(-1974.97%20-8315.978)%22%20fill%3D%22%2384C5D1%22%2F%3E%3C%2Fsvg%3E");
}

.cont_top.cont_kaigo .item_news .link_item::before {
  background-color: #dc7a93;
}

.cont_top.cont_kaigo .link_btn {
  background-color: #dc7a93;
}

.cont_top.cont_kaigo .area_faq .list_faq .item_faq::before {
  background-color: #dc7a93;
}

.cont_top.cont_kaigo .area_faq .list_faq .item_faq .link_item::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2230%22%20viewBox%3D%220%200%2020%2030%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6197%22%20data-name%3D%22%E3%83%91%E3%82%B9%206197%22%20d%3D%22M1993.556%2C8345.763a21.016%2C21.016%2C0%2C0%2C1-3.188.215c-3.46%2C0-4.753-.892-5.715-3.572l-.661-1.816c-5.413-.4-9.022-4.806-9.022-12.229%2C0-7.885%2C4.06-12.382%2C10.014-12.382%2C5.985%2C0%2C9.986%2C4.435%2C9.986%2C12.32%2C0%2C6.621-2.857%2C10.9-7.248%2C11.983l.391%2C1.169c.45%2C1.17%2C1.141%2C1.633%2C2.917%2C1.633a14.009%2C14.009%2C0%2C0%2C0%2C2.947-.338Zm-14.286-17.434c0%2C6.067%2C2.285%2C9.179%2C5.714%2C9.179s5.684-3.111%2C5.684-9.179c0-6.128-2.255-9.116-5.684-9.116s-5.714%2C2.988-5.714%2C9.116%22%20transform%3D%22translate(-1974.97%20-8315.978)%22%20fill%3D%22%23dc7a93%22%2F%3E%3C%2Fsvg%3E");
}

.cont_top.cont_soudan .item_news .link_item::before {
  background-color: #dc7a93;
}

.cont_top.cont_soudan .link_btn {
  background-color: #dc7a93;
}

.cont_top.cont_soudan .area_faq .list_faq .item_faq::before {
  background-color: #dc7a93;
}

.cont_top.cont_soudan .area_faq .list_faq .item_faq .link_item::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2230%22%20viewBox%3D%220%200%2020%2030%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6197%22%20data-name%3D%22%E3%83%91%E3%82%B9%206197%22%20d%3D%22M1993.556%2C8345.763a21.016%2C21.016%2C0%2C0%2C1-3.188.215c-3.46%2C0-4.753-.892-5.715-3.572l-.661-1.816c-5.413-.4-9.022-4.806-9.022-12.229%2C0-7.885%2C4.06-12.382%2C10.014-12.382%2C5.985%2C0%2C9.986%2C4.435%2C9.986%2C12.32%2C0%2C6.621-2.857%2C10.9-7.248%2C11.983l.391%2C1.169c.45%2C1.17%2C1.141%2C1.633%2C2.917%2C1.633a14.009%2C14.009%2C0%2C0%2C0%2C2.947-.338Zm-14.286-17.434c0%2C6.067%2C2.285%2C9.179%2C5.714%2C9.179s5.684-3.111%2C5.684-9.179c0-6.128-2.255-9.116-5.684-9.116s-5.714%2C2.988-5.714%2C9.116%22%20transform%3D%22translate(-1974.97%20-8315.978)%22%20fill%3D%22%23dc7a93%22%2F%3E%3C%2Fsvg%3E");
}

.cont_top.cont_withheart .item_news .link_item::before {
  background-color: #ca174c;
}

.cont_top.cont_withheart .link_btn {
  background-color: #ca174c;
}

.cont_top.cont_withheart .area_faq .list_faq .item_faq::before {
  background-color: #ca174c;
}

.cont_top.cont_withheart .area_faq .list_faq .item_faq .link_item::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2230%22%20viewBox%3D%220%200%2020%2030%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6197%22%20data-name%3D%22%E3%83%91%E3%82%B9%206197%22%20d%3D%22M1993.556%2C8345.763a21.016%2C21.016%2C0%2C0%2C1-3.188.215c-3.46%2C0-4.753-.892-5.715-3.572l-.661-1.816c-5.413-.4-9.022-4.806-9.022-12.229%2C0-7.885%2C4.06-12.382%2C10.014-12.382%2C5.985%2C0%2C9.986%2C4.435%2C9.986%2C12.32%2C0%2C6.621-2.857%2C10.9-7.248%2C11.983l.391%2C1.169c.45%2C1.17%2C1.141%2C1.633%2C2.917%2C1.633a14.009%2C14.009%2C0%2C0%2C0%2C2.947-.338Zm-14.286-17.434c0%2C6.067%2C2.285%2C9.179%2C5.714%2C9.179s5.684-3.111%2C5.684-9.179c0-6.128-2.255-9.116-5.684-9.116s-5.714%2C2.988-5.714%2C9.116%22%20transform%3D%22translate(-1974.97%20-8315.978)%22%20fill%3D%22%23ca174c%22%2F%3E%3C%2Fsvg%3E");
}

.cont_top.cont_lemon .item_news .link_item::before {
  background-color: #ffe900;
}

.cont_top.cont_lemon .link_btn {
  background-color: #ffe900;
}

.cont_top.cont_lemon .area_faq .list_faq .item_faq::before {
  background-color: #ffe900;
}

.cont_top.cont_lemon .area_faq .list_faq .item_faq .link_item::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2230%22%20viewBox%3D%220%200%2020%2030%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6197%22%20data-name%3D%22%E3%83%91%E3%82%B9%206197%22%20d%3D%22M1993.556%2C8345.763a21.016%2C21.016%2C0%2C0%2C1-3.188.215c-3.46%2C0-4.753-.892-5.715-3.572l-.661-1.816c-5.413-.4-9.022-4.806-9.022-12.229%2C0-7.885%2C4.06-12.382%2C10.014-12.382%2C5.985%2C0%2C9.986%2C4.435%2C9.986%2C12.32%2C0%2C6.621-2.857%2C10.9-7.248%2C11.983l.391%2C1.169c.45%2C1.17%2C1.141%2C1.633%2C2.917%2C1.633a14.009%2C14.009%2C0%2C0%2C0%2C2.947-.338Zm-14.286-17.434c0%2C6.067%2C2.285%2C9.179%2C5.714%2C9.179s5.684-3.111%2C5.684-9.179c0-6.128-2.255-9.116-5.684-9.116s-5.714%2C2.988-5.714%2C9.116%22%20transform%3D%22translate(-1974.97%20-8315.978)%22%20fill%3D%22%23ffe900%22%2F%3E%3C%2Fsvg%3E");
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
* cont_beit <共通>
* ================================================ */
.cont_beit .item_news .link_item::before {
  background-color: #E77E00;
}

.cont_beit .link_btn {
  background-color: #E77E00;
}

.cont_beit .area_faq .list_faq .item_faq::before {
  background-color: #E77E00;
}

.cont_beit .area_faq .list_faq .item_faq .link_item::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2230%22%20viewBox%3D%220%200%2020%2030%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_6197%22%20data-name%3D%22%E3%83%91%E3%82%B9%206197%22%20d%3D%22M1993.556%2C8345.763a21.016%2C21.016%2C0%2C0%2C1-3.188.215c-3.46%2C0-4.753-.892-5.715-3.572l-.661-1.816c-5.413-.4-9.022-4.806-9.022-12.229%2C0-7.885%2C4.06-12.382%2C10.014-12.382%2C5.985%2C0%2C9.986%2C4.435%2C9.986%2C12.32%2C0%2C6.621-2.857%2C10.9-7.248%2C11.983l.391%2C1.169c.45%2C1.17%2C1.141%2C1.633%2C2.917%2C1.633a14.009%2C14.009%2C0%2C0%2C0%2C2.947-.338Zm-14.286-17.434c0%2C6.067%2C2.285%2C9.179%2C5.714%2C9.179s5.684-3.111%2C5.684-9.179c0-6.128-2.255-9.116-5.684-9.116s-5.714%2C2.988-5.714%2C9.116%22%20transform%3D%22translate(-1974.97%20-8315.978)%22%20fill%3D%22%23E77E00%22%2F%3E%3C%2Fsvg%3E");
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*# sourceMappingURL=style.ori.css.map */