@charset "UTF-8";

:root {
  --black: #575757;
  --white: #ffffff;
  --red: #ff0000;
  --green: #D3EBC9;
  --green_2: #97C675;
  --brown: #9B7C52;
  --orange: #EDA61E;
  --gray: #DEDEDE;
  --font_old: "Zen Old Mincho", serif;
  --font_kaku: "Zen Kaku Gothic New", sans-serif;
  --font_mont: "Montserrat", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1.7;
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  position: relative;
}

#body_form {
  background: linear-gradient(to bottom,
      #e8f5e9 0%,
      /* 非常に薄い緑/ミントグリーン (上端) */
      #ffffff 50%,
      /* 白 (中央。このグラデーションでは白の領域が広い) */
      #fff5e6 85%,
      /* 非常に薄いピンク/ピーチ (下部寄り) */
      #fffde0 100%
      /* 非常に薄いレモンイエロー (下端) */
    );
  position: relative;
  padding-bottom: 580px;
}

#body_recruit {
  background: linear-gradient(to bottom,
      #e0f2f1 0%,
      /* 非常に薄いミントグリーン/白 (上端) */
      #ffffff 20%,
      /* 白 (上部寄り) */
      #fffde0 45%,
      /* 非常に薄いレモンイエロー (中央上部) */
      #fff3e0 60%,
      /* 非常に薄いピーチピンク (中央下部) */
      #ffffff 80%,
      /* 白 (下部寄り) */
      #e8f5e9 100%
      /* 非常に薄いミントグリーン/グレー (下端) */
    );
  position: relative;
  padding-bottom: 580px;
}

@media (max-width: 960px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  max-width: 100%;
  display: block;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ta_c {
  text-align: center !important;
}

.ta_r {
  text-align: right !important;
}

.fwb {
  font-weight: bold !important;
}

.fcRed {
  color: var(--red) !important;
}

.fcOrange {
  color: var(--orange) !important;
}

a:hover {
  opacity: 0.6;
  transition: all .2s ease-in;
}

.hidden {
  overflow: hidden !important;
}

br.br_sp {
  display: none;
}

@media (max-width: 960px) {
  br.br_sp {
    display: block;
  }
}


/* ヘッダー
-------------------------------------------------------------------------*/
header {
  width: 100%;
  background-color: #7070704a;
  /* background-color: #7070708a; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.headerInner .headerInner_logo {
  width: 100%;
  max-width: 480px;
}

.headerInner .headerInner_logo a::after {
  content: "（新名称 イムス埼玉越谷病院）";
  display: block;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 10px;
  padding-left: 50px;
  color: var(--white);
}

#header_under .headerInner .headerInner_logo a::after {
  color: var(--black);
}

@media (max-width: 960px) {

  .headerInner .headerInner_logo a::after {
    font-size: 1.4rem;
    padding-left: 30px;
  }

  .headerInner .headerInner_logo {
    max-width: 300px;
  }

}

/* ヘッダー（下層）
-------------------------------------------------------------------------*/
#header_under {
  background-color: rgb(255 255 255 / 50%);
}

#header_under .gnavList_item-btn {
  color: var(--black);
}


/* フッター
-------------------------------------------------------------------------*/
footer {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 100px;
  /* background-color: #EDF5E6; */
}

#footer_top {
  padding: 100px 0;
  background: linear-gradient(to bottom,
      #e8f5e9 0%,
      /* 非常に薄い緑/ミントグリーン (上端) */
      #ffffff 100%
      /* 非常に薄いレモンイエロー (下端) */
    );
}

#footer_under {
  position: absolute;
  bottom: 0;
}

.footerInner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.footerNav {
  width: 100%;
  max-width: 770px;
  margin: 0 auto 50px;
}

.footerNav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footerNav ul li a {
  display: block;
  font-size: 2.0rem;
}


.footerLogo {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.footerLogo a {
  display: inline-block;
}

.footerLogo a::after {
  content: "（新名称 イムス埼玉越谷病院）";
  display: block;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 30px;
  padding-left: 50px;
  color: var(--black);
}


@media (max-width: 960px) {

  .footerInner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footerNav ul {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footerNav ul li {
    width: calc(100%/2 - 20px);
    text-align: center;
  }

  .footerNav ul li a {
    font-size: 1.6rem;
  }

  .footerLogo a::after {
    padding-left: 40px;
    font-size: 1.4rem;
  }

}


/* ローディング画面
-------------------------------------------------------------------------*/
.loading {
  display: none;
  opacity: 0;
  transition: all 0.7s linear;
  background-image: url(../img/loading-bg.png);
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  /* 画面全体に固定表示 */
  top: 0;
  left: 0;
  z-index: 9999;
}

/* JSで「is-active」クラスを付けた時だけ表示する */
.loading.is-active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  width: 100vw;
  height: 100vh;
}

/*
 * ローディングが完了し、非表示にするアニメーション
 * （ここでは「is-loaded」クラスを使って非表示にしています）
 */
.loading.is-loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.loading-img {
  width: 100%;
  max-width: 800px;
  position: relative;
  animation: sk-scaleout 1.4s ease-in-out;
}

.loading-img::before {
  content: "";
  display: inline-block;
  width: 1000px;
  height: 550px;
  position: absolute;
  top: -180px;
  left: -280px;
  background-image: url(../img/loading-txt_ro.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/* ローディングアニメーション
-------------------------------------------------------------------------*/
@keyframes sk-scaleout {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/* アニメーション
-------------------------------------------------------------------------*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* comingsoon
-------------------------------------------------------------------------*/
.comingsoon {
  width: 100%;
  max-width: 1300px;
  margin: 40px auto;
}

.comingsoon_box {
  width: 100%;
  margin: 0 auto;
  border: 3px solid var(--gray);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  padding: 30px;
}

.comingsoon_box::before,
.comingsoon_box::after {
  content: "";
  display: inline-block;
}

.comingsoon_box::before {
  width: 250px;
  height: 250px;
  background-image: url(../img/comingsoon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.comingsoon_box::after {
  content: "Coming Soon";
  /* font-weight: bold; */
  font-size: 5.0rem;
}

@media (max-width: 960px) {

  .comingsoon {
    padding: 30px 20px;
  }

  .comingsoon_box::before {
    width: 200px;
    height: 200px;
  }

  .comingsoon_box::after {
    font-size: 3.0rem;
  }

}


/* 採用情報メニュー
-------------------------------------------------------------------------*/
.rec_nav {
  width: 100%;
  max-width: 1300px;
  margin: 110px auto 0;
}

.rec_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.rec_nav ul li {
  width: calc(100%/3 - 30px);
}

.rec_nav ul li:nth-of-type(1) {
  animation-delay: 0.1s;
}

.rec_nav ul li:nth-of-type(2) {
  animation-delay: 0.2s;
}

.rec_nav ul li:nth-of-type(3) {
  animation-delay: 0.3s;
}

.rec_nav ul li:nth-of-type(4) {
  animation-delay: 0.4s;
}

.rec_nav ul li:nth-of-type(5) {
  animation-delay: 0.5s;
}

.rec_nav ul li:nth-of-type(6) {
  animation-delay: 0.6s;
}

.rec_nav ul li:nth-of-type(7) {
  animation-delay: 0.7s;
}

.rec_nav ul li:nth-of-type(8) {
  animation-delay: 0.8s;
}

.rec_nav ul li:nth-of-type(9) {
  animation-delay: 0.9s;
}

.rec_nav ul li:nth-of-type(10) {
  animation-delay: 1.0s;
}

.rec_nav ul li:nth-of-type(11) {
  animation-delay: 1.1s;
}

.rec_nav ul li:nth-of-type(12) {
  animation-delay: 1.2s;
}

.rec_nav ul li:nth-of-type(13) {
  animation-delay: 1.3s;
}

.rec_nav ul li:nth-of-type(14) {
  animation-delay: 1.4s;
}

.rec_nav ul li:nth-of-type(15) {
  animation-delay: 1.5s;
}

.rec_nav ul li a {
  display: block;
  background-color: #F3F8E7;
  font-size: 2.3rem;
  padding: 23px 28px;
  padding-left: 65px;
  border: 2px solid var(--gray);
  border-radius: 20px;
  font-weight: bold;
  position: relative;
  color: var(--black);
}

.rec_nav ul li a::before {
  content: "●";
  color: var(--green_2);
  position: absolute;
  left: 28px;
}

.rec_nav ul li a span {
  display: none;
  font-size: 2.0rem;
  font-weight: normal;
}


@media (max-width: 960px) {

  .rec_nav {
    padding: 0 20px;
  }

  .rec_nav ul {
    gap: 30px;
  }

  .rec_nav ul li {
    width: 100%;
  }

  .rec_nav ul li a {
    font-size: 1.8rem;
    padding: 20px;
    padding-left: 65px;
  }

  .rec_nav ul li a::before {
    left: 28px;
  }

}

.seventy-logo{
  width: 100%;
  margin: 40px auto 0;
}
.seventy-logo a{
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}


/* サイドバナー */
.box-bnr_side{
  width: 4%;
  position: fixed;
  right: 0;
  bottom: 10%;
  background-color: #fff;
  padding: 10px;
  z-index: 10;
}
.box-bnr_side ul{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
.box-bnr_side ul li{
  width: 100%;
}
.box-bnr_side ul li a{
  display: block;
  width: 100%;
}


@media (max-width: 960px) {

.box-bnr_side{
  width: 100%;
  bottom: 0%;
  padding: 10px;
}
.box-bnr_side ul{
  justify-content: space-around;
  flex-direction: row;
  gap: 20px;
}
.box-bnr_side ul li{
  width: 10%;
}

}