@charset "UTF-8";
@import 'settings.css';

:root {
  /* Color */
  --color-main: #378BC9;
  --color-border: #ddd;
  --color-bg: #f8f8f8;
  --color-text: #0a0a0a;
  --color-text__gy: #797979;
  --color-reverse: #fff;
  --color-back: #999;

  /* Fonts */
  --font-en: 'Lato';
  --font-en__def: 'Roboto';
  --font-jp: 'Noto Sans JP';
  /* --font-jp: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic"; */
  --fz-main: 1.5rem;

}

/*============================================================================================
      Header
=============================================================================================*/
.Header {
  width: 100%;
  height: 60px;
  background-color: var(--color-reverse);
  /* position: fixed; */
  top: 0;
  left: 0;
  z-index: 999999;
}

.Header.js_fixed {
  position: fixed;
  -webkit-animation: fead 0.4s ease-in-out;
  animation: fead 0.4s ease-in-out;
}

@-webkit-keyframes fead {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fead {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}


.Header_wrp {
  position: relative;
  height: 100%;
  z-index: 999999;
  padding-left: 42px;
}

.Head_logo {
  width: auto;
  height: 43px;
}

.Head_logo a,
.Head_logo img {
  width: auto;
  max-width: none;
  height: 100%;
  display: block;
  margin: 0;
}

@media (max-width: 896px) {
  .Header {
    padding: 0 20px;
  }

  .Header_wrp {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .Header {
    padding: 0 5vw;
  }
}


/*    Navigation
=====================================================*/
.Head_gnav {
  height: 100%;
}

.Head_gnav_box {
  height: 100%;
}

.Head_gnav_wrp {
  height: 100%;
}

.Head_gnav_lst {
  height: 100%;
}

.Head_gnav_lst>li {
  font-size: 1.3rem;
  height: 100%;
  display: block;
  -webkit-transition: color var(--transition), background var(--transition);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.Head_gnav_lst>li a,
.Head_gnav_lst .g_pullDown {
  height: 100%;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.Head_gnav_lst>li a:hover {
  color: var(--color-main);
}

.Head_gnav_lst>li a:hover .g_tab::before,
.Head_gnav_lst>li a:hover .g_tab::after {
  border-color: var(--color-reverse);
  background-color: var(--color-main);
}

/* アコーディオン */
.Head_gnav_lst .g_pullDown {
  cursor: pointer;
}

.Head_gnav_lst .sub-menu {
  width: auto;
  min-width: 200px;
  position: absolute;
  top: 60px;
  z-index: 1;
  display: none;
}

.Head_gnav_lst .sub-menu>li+li {
  border-top: 1px solid var(--color-border);
}

.Head_gnav_lst .sub-menu>li a {
  display: block;
  padding: 10px;
  color: var(--color-reverse);
  background-color: var(--color-main);
  -webkit-transition: color var(--transition), background var(--transition);
  transition: color var(--transition), background var(--transition);
}

.Head_gnav_lst .sub-menu>li a:hover {
  color: var(--color-main);
  background-color: var(--color-reverse);
}

.Head_btn {
  font-size: 1.3rem;
  width: 138px;
  height: 100%;
  position: relative;
  display: block;
  margin-left: 20px;
}

.Head_btn a {
  width: 100%;
  height: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-reverse);
  background-color: var(--color-main);
  border: 2px solid var(--color-main);
  transition: background var(--transition), color var(--transition);
  -webkit-transition: background var(--transition), color var(--transition);
}

.Head_btn a:hover {
  color: var(--color-main);
  background-color: var(--color-reverse);
}


@media (max-width: 896px) {
  .Head_gnav {
    height: 100%;
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 10000;
  }

  .Head_gnav_box {
    width: 100vw;
    height: calc(100vh - 60px);
    background-color: var(--color-reverse);
    position: absolute;
    top: 0;
    right: 0;
    overflow-y: scroll;
    display: none;
  }

  .Head_gnav_wrp {
    width: 100%;
    height: auto;
    padding-bottom: 130px;
  }

  .Head_gnav_lst {
    height: auto;
  }

  .Head_gnav_lst>li {
    width: 100%;
    height: auto;
    font-size: var(--fz-main);
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
  }

  .Head_gnav_lst>li:first-child {
    border-top: 1px solid var(--color-border);
  }

  .Head_gnav_lst>li+li {
    margin-left: 0px;
  }

  .Head_gnav_lst>li a,
  .Head_gnav_lst .g_pullDown,
  .Head_gnav_lst .sub-menu>li a {
    display: block;
    width: 100%;
    padding: 15px 20px;
  }

  .Head_gnav_lst>li a:hover {
    color: inherit;
    background-color: var(--color-reverse);
  }

  .Head_gnav_lst>li a:hover .g_tab::before,
  .Head_gnav_lst>li a:hover .g_tab::after {
    border-color: var(--color-main);
    background-color: var(--color-reverse);
  }

  /* アコーディオン */
  .Head_gnav_lst .g_pullDown {
    pointer-events: none;
  }

  .Head_gnav_lst .sub-menu {
    position: static;
    top: auto;
  }

  .Head_gnav_lst .sub-menu>li {
    border-top: 1px solid var(--color-border);
  }

  .Head_gnav_lst .sub-menu>li a,
  .Head_gnav_lst .sub-menu>li a:hover {
    display: block;
    color: inherit;
    background-color: var(--color-bg);
  }

  .Head_btn {
    font-size: var(--fz-main);
    width: 100%;
    margin-left: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .Head_btn a {
    color: inherit;
    background-color: var(--color-reverse);
    border: none;
    padding: 15px 20px;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .Head_btn a:hover {
    color: inherit;
  }
}

@media (max-width: 576px) {

  .Head_gnav_lst>li a,
  .Head_gnav_lst .g_pullDown,
  .Head_gnav_lst .sub-menu>li a,
  .Head_btn a {
    padding: 3.7vw 5.333vw;
  }
}

/*    TOPファストビュー用ヘッダー
=====================================================*/
.js_heroHeader {
  color: var(--color-reverse);
  height: 94px;
  background-color: transparent;
  transition: background var(--transition);
  position: absolute;
}

.js_heroHeader .Head_logo::before {
  width: 53vw;
  height: 100%;
  background-image: url(../img/common/logo_fukisawa.png);
  background-size: auto 100%;
}

.js_heroHeader .Head_logo img {
  display: none;
}

.js_heroHeader .g_hamb_inr div {
  background-color: var(--color-reverse);
}

/* オープン時 */
.js_heroHeader.js_hambOpen {
  color: inherit;
  height: 60px;
  background-color: var(--color-reverse);
  transition: var(--transition);
}

.js_heroHeader.js_hambOpen .g_hamb_inr div {
  background-color: var(--color-main);
}

.js_heroHeader.js_hambOpen .Head_logo::before {
  background-image: url(../img/common/logo.svg);
}

.js_heroHeader.js_hambOpen .Head_gnav_lst>li {
  text-shadow: none;
}

/* PC用 */
@media (min-width: 897px) {
  .js_heroHeader .Head_btn {
    width: auto;
    margin-left: 0;
  }

  .js_heroHeader .Head_gnav_lst .sub-menu {
    top: 74px;
  }

  .js_heroHeader .Head_gnav_lst>li>a {
    text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
  }

  .js_heroHeader .Head_btn a,
  .js_heroHeader .Head_btn a:hover {
    background-color: transparent;
    border: none;
    padding-right: 40px;
    padding-left: 15px;
  }
}



/*============================================================================================
      Footer
=============================================================================================*/
.Footer {
  background-color: var(--color-reverse);
}

.Footer_wrp {
  padding: 100px 0;
}

.Foot_logo {
  height: 40px;
}

.Foot_logo {
  height: 35px;
  margin: 0;
}

.Foot_logo a,
.Foot_logo img {
  width: auto;
  max-width: none;
  height: 100%;
  display: block;
  margin: 0;
}

.Foot_tel {
  padding-left: 40px;
}

.Foot_tel::before {
  width: 20px;
  height: 20px;
  background-image: url(../img/common/ic_tel.svg);
  top: 0;
  bottom: 0.5em;
  left: 0;
}

.Foot_tel_num {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  display: block;
}

/* banner */
.Foot_bnr {}

.Foot_bnr_itm {
  width: 48%;
  margin-top: 10px;
  margin-right: 2%;
}

.Foot_bnr_itm:nth-of-type(2n),
.Foot_bnr_itm:last-of-type {
  margin-right: 0;
}

.Foot_bnr_itm:nth-of-type(1),
.Foot_bnr_itm:nth-of-type(2) {
  margin-top: 0;
}

/* SNS */
.Foot_sns {}

.Foot_sns_ttl {
  margin-right: 20px;
}

.Foot_sns_lst {}

.Foot_sns_itm {
  width: 24px;
}

.Foot_sns_itm+.Foot_sns_itm {
  margin-left: 10px;
}

.Foot_copy {
  display: block;
}

/* link */
.Foot_link li {
  color: var(--color-main);
  font-size: 1.2rem;
  margin-top: 10px;
  text-decoration: underline;
}

.Foot_link li+li {
  margin-left: 20px;
}

.Foot_link li:hover {
  text-decoration: none;
}


@media (max-width: 896px) {
  .Foot_sns_ttl {
    margin: 0 0 10px;
  }

  .Foot_link li+li {
    margin-left: 0;
  }
}

@media (max-width: 576px) {}



/*============================================================================================
      Contents
=============================================================================================*/
/*    TOP
=============================================================================================*/
.Top_wrap {
  background-color: var(--color-reverse);
  padding-top: 0;
}

.Top_sec {
  position: relative;
  z-index: 1;
  padding-top: 140px;
}

@media (max-width: 896px) {
  .Top_sec {
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .Top_sec {
    padding-top: 21.333vw;
  }
}


/*    TOP - MV
=====================================================*/
.TopMv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.TopMv_txtBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}

.TopMv_txtimg {
  width: 65.5vw;
  max-width: 800px;
  margin: auto;
}

.TopMv_cap {
  max-width: 80vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 2rem;
}

.TopMv_txtimg+.TopMv_cap {
  margin-top: 30px;
}

.TopMv_txt_t {
  font-family: var(--font-jp), sans-serif;
  font-size: 5.6rem;
  font-weight: 600;
}

/* scroll */
.TopMv_scroll {
  width: 9px;
  height: 80px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
}

.TopMv_scroll::before {
  width: 1px;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-reverse);
}

.TopMv_scroll::after {
  width: 100%;
  height: 9px;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 100%;
  background-color: var(--color-reverse);
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: scrollMove 1.6s ease-in-out infinite, scrollMoveHide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes scrollMove {
  0% {
    bottom: 78px;
  }

  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes scrollMoveHide {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 1040px) {}

@media (max-width: 896px) {
  .TopMv_cap {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .TopMv_scroll::before {
    height: 9.8vh;
  }

  @keyframes scrollMove {
    0% {
      bottom: 9.6vh;
    }

    100% {
      bottom: -5px;
    }
  }

  .TopMv_txt_t {
    font-size: 3.6rem;
  }
}

/*    TOP - MV Slider
=====================================================*/
.TopMv_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* sliderオン */
.TopMv_slider.slick-slider {
  margin: auto;
  width: 100%;
  height: 100%;
  min-height: auto;
}

.TopMv_slider.slick-slider .slick-list,
.TopMv_slider.slick-slider .slick-track {
  height: inherit;
}

.TopMv_slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* sliderオフ */
.TopMv_slider {
  width: 100%;
  height: 100%;
}

.TopMv_slider_itm {
  width: 100%;
  height: 100%;
}

.TopMv_slider_itm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.TopMv_slider_move img {
  animation: fadezoom 7s 0s forwards;
  transform: scale(1.2);
  /* 拡大率 */
}

@keyframes fadezoom {
  0% {
    transform: scale(1.2);
    /* 拡大率 */
  }

  100% {
    transform: scale(1);
    /* 拡大率 */
  }
}

/* progress bar */
.TopMv_bar {
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.TopMv_bar span {
  width: 0%;
  height: 100%;
  background-color: var(--color-main);
  display: block;
}


/*    TOP - Layout
=====================================================*/
.Top_clm_img {
  width: 45.5%;
  margin-right: 9%;
  flex: 0 0 auto;
}

.Top_clm_txt+.Top_clm_img {
  margin-right: 0;
  margin-left: 9%;
}

.Top_clm_txt {}

.Top_clm_txt+.Top_clm_img.Top_clm_img--reverse01 {
  margin-right: 9%;
  margin-left: 0;
}

.Top_clm_img.Top_clm_img--reverse02 {
  margin-right: 0;
  margin-left: 9%;
}

@media (max-width: 896px) {

  .Top_clm_img,
  .Top_clm_txt+.Top_clm_img {
    width: 100%;
    margin: 0 auto 30px;
    order: 1;
  }
  .Top_clm_txt+.Top_clm_img.Top_clm_img--reverse01{
    margin:  0 auto 30px;
  }
  .Top_clm_img.Top_clm_img--reverse02 {
    margin-right: 0;
    margin-left: 0;
  }

  .Top_clm_txt {
    width: 100%;
    order: 2;
  }
}


/*    SDGs
=============================================================================================*/
.Sdgs_icon {
  width: 13%;
  margin: 1.5% 1.5% 0 0;
}

.Sdgs_icon:nth-of-type(7n) {
  margin-right: 0;
}

@media (max-width: 896px) {

  .Sdgs_icon,
  .Sdgs_icon:nth-of-type(7n) {
    width: 23.5%;
    margin: 2% 2% 0 0;
  }

  .Sdgs_icon:nth-of-type(4n) {
    margin-right: 0;
  }
}

/*    Staff
=============================================================================================*/
.Staff_name {
  line-height: 1.3;
  margin-right: 15px;
}


/*    Menu
=============================================================================================*/
.Menu_table {
  max-width: 580px;
}

.Menu_table dt {
  width: 63%;
}

.Menu_table dd {
  width: 32%;
}

@media (max-width: 896px) {
  .Menu_table dt {
    width: 100%;
  }

  .Menu_table dd {
    width: 100%;
  }
}

/*    Q&A
=============================================================================================*/
/*    Q&A - Index
=====================================================*/
.Faq_itm_cont {
  display: block;
  padding-left: 40px;
  transition: color var(--transition);
}

.Faq_itm_cont::before {
  display: block;
  content: 'Q';
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  color: var(--color-main);
  font-family: var(--font-en__def), sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.Faq_itm_cont .g_info_itm_label {
  margin-left: 0;
}

/*    Q&A - Detail
=====================================================*/
.Faq_detail .g_info_itm_label {
  margin-left: 0;
}


/*    Recruit
=============================================================================================*/
/*    Recruit - index
=====================================================*/
.RctIdx_lst {
  border-bottom: 1px solid var(--color-border);
}

.RctIdx_itm {
  border-top: 1px solid var(--color-border);
  padding: 25px 0 30px;
}

.RctIdx_itm_box {
  width: calc(100% - 180px);
}

.RctIdx_itm_table {
  font-size: 1.3rem;
  width: 100%;
  border: 1px solid var(--color-border);
}

.RctIdx_itm_table tr {
  border-bottom: 1px solid var(--color-border);
}

.RctIdx_itm_table tr:last-child {
  border-bottom: none;
}

.RctIdx_itm_table th {
  width: 100px;
  background-color: var(--color-bg);
  border-right: 1px solid var(--color-border);
  padding: 13px 20px;
}

.RctIdx_itm_table td {
  padding: 13px 15px;
}

.RctIdx_btn {
  width: 140px;
}

.RctIdx_btn_itm {
  width: 100%;
}

.RctIdx_btn_itm a {
  -ms-flex-pack: start;
  justify-content: start;
  padding: 15px 40px 15px 20px;
}

.RctIdx_btn_itm.u_ic::after {
  right: 15px;
}


.RctIdx_btn_itm+.RctIdx_btn_itm {
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .RctIdx_itm_box {
    width: 100%;
  }

  .RctIdx_btn {
    width: 100%;
    margin-top: 20px;
  }

  .RctIdx_btn_itm {
    width: 49%;
  }

  .RctIdx_btn_itm+.RctIdx_btn_itm {
    margin: 0 0 0 2%;
  }

  .RctIdx_btn_itm a {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .RctIdx_itm_table th {
    width: 90px;
    padding: 13px 15px;
  }
}


/*    Recruit - single
=====================================================*/

.RctDtl_overview_inr {
  /* display: flex;
  flex-direction: row-reverse; */
  gap: 8rem;
}

.RctDtl_slider_wrp {
  margin-bottom: 50px;
  flex: 0 0 280px;
}

.RctDtl_slider {
  width: 100%;
}

.RctDtl_entry {
  padding: 40px 40px 60px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
}

.RctDtl_entry_btn {
  width: calc(50% - 15px);
  max-width: 350px;
}

.RctDtl_entry_btn+.RctDtl_entry_btn {
  margin: 0 0 0 30px;
}

.RctDtl_entry_btn a {
  padding: 10px 15px;
  height: 100%;
}

.RctDtl_entry_btn__tel {
  line-height: 1.4;
}

.RctDtl_entry_btn__tel span {
  display: block;
  text-align: center;
}

@media (max-width:896px) {
  .RctDtl_overview_inr {
    gap: 0;
  }

  .RctDtl_slider_wrp {
    flex: 0 0 100%;
  }
}

/* SP以外はリンクアクションなし */
@media (min-width: 577px) {
  .RctDtl_entry_btn__tel {
    pointer-events: none;
  }
}

@media (max-width: 1024px) {
  .RctDtl_entry_btn {
    max-width: 400px;
  }
}

@media (max-width:896px) {
  .RctDtl_slider_wrp {
    float: none;
    margin: 20px 0 30px;
    width: 100%;
    order: 2;
  }

  .RctDtl_overview {
    float: none;
    order: 1;
  }

  .RctDtl_entry_btn {
    width: 100%;
    min-height: 75px;
  }

  .RctDtl_entry_btn+.RctDtl_entry_btn {
    margin: 10px 0 0;
  }
}

@media (max-width: 576px) {
  .RctDtl_entry {
    padding: 20px 20px 30px;
  }

  .RctDtl_entry_btn {
    max-width: 100%;
  }
}

/*    column parts
=============================================================================================*/

/* 下線なし */
.g_cf_sec .g_cf_ttl:has(h4.g_h4:not(.g_decoHd_bb)) + p,
.g_cf_sec .g_cf_ttl:has(h3.g_h3:not(.g_decoHd_bb)) + p {
  margin-top: 4rem !important;
}

.media_block {
  display: flex;
  align-items: flex-start;
}

.media_block__left {
  flex-direction: row;
}

.media_block__right {
  flex-direction: row-reverse;
}

.media_block__large {
  column-gap: 9%;
}

.media_block__small {
  column-gap: 5.5%;
}

.media_block__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.media_block__large .media_block__img {
  flex: 0 0 45%;
}

.media_block__small .media_block__img {
  flex: 0 0 30%;
}

.media_block__txt {
  height: auto;
}

@media (max-width: 896px) {
  .media_block {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .media_block__ttl {
    grid-area: 1 / 1 / 2 / 2;
  }

  .media_block__img {
    grid-area: 2 / 1 / 3 / 2;
  }

  .media_block__txt {
    grid-area: 3 / 1 / 4 / 2;
  }

  .media_block .g_cf_sec {
    display: contents;
  }
}

/*    テンプレート
=============================================================================================*/
/*    テンプレート
=====================================================*/
@media (max-width: 1040px) {}

@media (max-width: 896px) {}

@media (max-width: 576px) {}