@charset "utf-8";

/* ----------------------------------------------------------
 base css
---------------------------------------------------------- */

/* root
--------------------------------------- */
:root {
  --color-white: #ffffff;
  --color-black: #231815;
  --color-gray: #c9caca;
  --color-green: #009e3b;
  --color-yellow: #f7e976;
  --fs: 0.8rem;
  --fm: 1.2rem;
  --fl: 1.5rem;
  --fll: 1.85rem;
  --gutter: 140px;
  --gutterw: 280px;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  :root {
  --pcinner: 920px;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  :root {
    --fm: 1.125rem;
    --fl: 1.25rem;
    --fll: 1.5rem;
  }
}

/* base,responsive
--------------------------------------- */
body {
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  line-height: 180%;
  color: var(--color-black);
  background: url(../images/back.webp) repeat;
  min-width: 1200px;
}
.wrapper {
  overflow-x: hidden;
}
* {
  transition: .2s;
}
a {
  display: block;
  color: var(--color-black);
  transition: 0.3s;
}
p a {
  display: inline;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  .sp {
    display: none !important;
  }
  .wrap {
    width: 85%;
    min-width: 1000px;
    max-width: 1300px;
    margin: 0 auto;
  }
  .inner {
    width: 96%;
    margin: 0 auto;
  }
  .pcinner {
    width: var(--pcinner);
    margin: 0 auto;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  html,
  p {
    text-align: left;
  }
  body {
    min-width: initial;
  }
  main {
    padding-top: 60px;
  }
  main.notitleimage {
    padding-top: calc(60px + 2rem);
  }
  .pc {
    display: none !important;
  }
  .wrap {
    width: 84%;
    margin: 0 auto;
  }
  .zen {
    font-size: 1rem;
  }
}

/* reCAPTCHAバッジ */
.grecaptcha-badge {
  visibility: hidden;
}

/*　fadein
--------------------------------------- */
.fadein {
  opacity : 0;
  transform : translate(0, 30px);
  transition : all 1s;
}
 
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}
main {
  opacity: 0;
  animation: pageFade 0.5s ease-in-out forwards;
}
@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ul - square
--------------------------------------- */
ul.ul_square li {
  margin-bottom: 0.25rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5em;
}
ul.ul_square li:before {
  content: "■";
}

/* ul - caution
--------------------------------------- */
ul.ul_caution li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.ul_caution li:before {
  content: "※";
}


/* ----------------------------------------------------------
 header,nav
---------------------------------------------------------- */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgba(0, 158, 59, 0.8);
}
header.is-animation {
  box-shadow: 0 0px 10px #cccccc;
  opacity: 1;
}
header .sitetitle {
  background-color: var(--color-white);
}
header .sitetitle a img {
  width: 100%;
}
header nav li a { 
  color: var(--color-white);
}
header a:hover {
  opacity: .7;
}


@media print, screen and (min-width: 767px) { /* -- pc -- */
  body.recruit header {
    width: 100%;
    min-width: 1200px;
    height: 82px;
  }
  body.recruit header {
    opacity: 0;
  }
  body.recruit header.is-animation,
  header.is-animation {
    opacity: 1;
  }
  header .sitetitle {
    width: 300px;
    height: 82px;
    padding: 0.5rem 1rem;
  }
  #nav-toggle {
    display: none;
  }
  #gloval-nav ul {
    display: flex;
    justify-content: flex-end;
    padding-right: 1rem;
  }
  #gloval-nav ul li {
    margin-right: 1rem;
  }
}

@media screen and (max-width : 768px) { /* -- sp -- */
  header {
    padding: 0;
    background-color: var(--color-white);
  }
  header .sitetitle {
    padding-left: 0.5rem;
    width: auto;
    height: 60px;
  }
  header .sitetitle a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  header .sitetitle a img {
    width: auto;
    height: calc(50px - 0.5rem);
  }
  .drawerbox {
    position: relative;
    bottom: 0;
    right: 0;
  }
  #nav-toggle {
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 1000;
  }
  #nav-toggle div {
    position: relative;
    z-index: 9999;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 158, 59, 1);
    transition: 0.6s;
  }
  #nav-toggle div:hover {
    opacity: 0.7;
    transition: 0.6s;
  }
  #nav-toggle div span {
    width: 45%;
    height: 1px;
    left: 27.5%;
    display: block;
    background: var(--color-white);
    position: absolute;
    transition: transform 0.6s ease-in-out, top 0.5s ease;
  }
  #nav-toggle div span:nth-child(1) {
    top: 25px;
  }
  #nav-toggle div span:nth-child(2) {
    top: 35px;
  }
  .open {
    overflow: hidden;
  }
  .open #nav-toggle div:after {
    display: none;
    transition: 0.6s;
  }
  .open #nav-toggle span {
    background: #fff;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 28px;
    transform: rotate(45deg);
    background-color: var(--color-white);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 28px;
    transform: rotate(-45deg);
    background-color: var(--color-white);
  }
  #gloval-nav {
    background: rgba(0, 158, 59, 0.95);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  #gloval-nav nav {
    width: 100%;
  }
  #gloval-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }
  #gloval-nav ul li {
    width: 100%;
    opacity: 0;
    transform: translateX(200px);
    transition: transform 0.6s ease, opacity 0.2s ease;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  }
  #gloval-nav ul li a {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-white);
    line-height: 1.5em;
    text-decoration: none;
    transition: color 0.6s ease;
  }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
  }
  .open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
  }
  .open #gloval-nav li a {
    transition: 0.6s;
  }
  .open #gloval-nav li a:hover {
    opacity: 0.5;
    transition: 0.6s;
  }
}

/* ----------------------------------------------------------
  トップページ page-recruit.php
---------------------------------------------------------- */
/* firstview
-------------------------------------------- */
main.recruit.home .firstview {
  position: relative;
}
main.recruit.home .firstview picture,
main.recruit.home .firstview picture img {
  width: 100%;
}
main.recruit.home .firstview h1 {
  position: absolute;
  z-index: 1;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  margin: 0 auto;
}
main.recruit.home .firstview h1 img {
  width: 100%;
}
main.recruit.home .firstview + div {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.recruit.home .firstview + div p {
  width: 300px;
}
main.recruit.home .firstview + div p img {
  width: 100%;
}


/* お知らせ
-------------------------------------------- */
main.recruit.home .info {
  padding: 0 0 4rem 0;
}
main.recruit.home .info .wrap {
  padding: 1rem 0;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
main.recruit.home .info .wrap h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--color-white);
  background-color: var(--color-green);
  font-size: var(--fl);
}
main.recruit.home .info ul.postlist li {
  border-bottom: 1px solid #cccccc;
}
main.recruit.home .info ul.postlist li:last-child {
  border-bottom: 0;
}
main.recruit.home .info .wrap ul.postlist li a {
  display: flex;
  padding: 0.5rem 0;
}
main.recruit.home .info .wrap ul.postlist li a:hover {
  color: var(--color-blue);
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.recruit.home .info .pcinner {
    display: flex;
  }
  main.recruit.home .info h2 {
    width: 10em;
    text-align: center;
  }
  main.recruit.home .info ul.postlist {
    width: calc(100% - 10em);
    padding-left: 2rem;
  }
  main.recruit.home .info .wrap ul.postlist li a time {
    width: 7em;
  }
  main.recruit.home .info .wrap ul.postlist li a p {
    width: calc(100% - 7em);
  }
  main.recruit.home .nopost {
    padding-left: 2rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit.home .info .wrap {
    padding-bottom: 0;
  }
  main.recruit.home .info .wrap ul.postlist li a {
    flex-direction: column;
  }
  main.recruit.home .info .wrap ul.postlist li a time {
    width: 100%;
  }
  main.recruit.home .info .wrap ul.postlist li a p {
    width: 100%;
  }
  main.recruit.home .nopost {
    margin: 1rem 0;
    text-align: center;
  }
}


/* 支援機構の魅力
-------------------------------------------- */
main.recruit.home .point {
  position: relative;
}
main.recruit.home .point div.back {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main.recruit.home .point div.back img {
  width: 100%;
  height: 100%;
}
main.recruit.home .point .wrap {
  position: relative;
}
main.recruit.home .point .wrap h2 {
  color: var(--color-green);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5em;
  text-align: center;
}
main.recruit.home .point .wrap .flex .left h3 {
  margin-bottom: 0.5rem;
  color: var(--color-green);
  font-size: var(--fll);
  line-height: 1.5em;
}
main.recruit.home .point .wrap .flex .left p {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.recruit.home .point .wrap h2 {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }
  main.recruit.home .point .wrap .flex {
    display: flex;
    align-items: center;
    height: 100%;
  }
  main.recruit.home .point .wrap .flex .left {
    width: 45%;
    height: 100%;
    padding: 5rem 2rem 2rem 2rem;
    background-color: var(--color-white);
  }
  main.recruit.home .point .wrap .flex figure {
    width: 55%;
    padding-top: 5rem;
    padding-left: 2rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit.home .point .wrap h2 {
    background-color: var(--color-white);
  }
  main.recruit.home .point .wrap .flex .left {
    padding: 1rem;
    background-color: var(--color-white);
  }
  main.recruit.home .point .wrap .flex .left h3 {
    text-align: center;
  }
  main.recruit.home .point .wrap .flex .left p:last-of-type {
    margin-bottom: 0;
  }
  main.recruit.home .point .wrap .flex figure {
    padding: 1rem;
    background-color: var(--color-white);
  }
}

/* 信頼される人、信頼に応えられる人。
-------------------------------------------- */
main.recruit.home .person {
  padding: 4rem 0;
}
main.recruit.home .person p.title {
  text-align: right;
}
main.recruit.home .person p.title img {
  width: auto;
  height: 8rem;
}
main.recruit.home .person h2 {
  margin: 2rem auto;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  line-height: 1.5em;
}
main.recruit.home .person article {
  position: relative;
  display: flex;
  margin-bottom: 4rem;
}
main.recruit.home .person article .left h3 {
  margin-bottom: 2rem;
  font-size: 2.75rem;
  line-height: 1.5em;
}
main.recruit.home .person article .right figure {
  width: 100%;
  margin-bottom: 2rem;
}
main.recruit.home .person article .right h4 {
  font-size: var(--fl);
  line-height: 1.5em;
}
main.recruit.home .person article .right .ul_square {
  margin-top: 1rem;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.recruit.home .person h2 span {
    padding-left: 2em;
  }
  main.recruit.home .person article:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    background: url(../images/triangle-gray.webp) no-repeat center center / contain;
  }
  main.recruit.home .person article .left {
    width: 52%;
  }
  main.recruit.home .person article .right {
    width: 48%;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit.home .person h2 {
    margin: 0 auto 2rem auto;
    font-size: 8vw;
  }
  main.recruit.home .person article {
    flex-direction: column;
  }
  main.recruit.home .person article .right figure {
    margin-bottom: 1rem;
  }
}

/* １人目 */
main.recruit.home .person article.one .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* ２人目 */
main.recruit.home .person article.two {
  align-items: center;
}
main.recruit.home .person article.two:before {
  transform: scale(-1,1);
}
main.recruit.home .person article.two .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main.recruit.home .person article.two .left {
  order: 2;
}
main.recruit.home .person article.two .right {
  order: 1;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.recruit.home .person article.one .left {
    padding: 0 4rem;
  }
  main.recruit.home .person article.two .left {
    padding: 0 4rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit.home .person {
    padding-bottom: 0;
  }
  main.recruit.home .person article {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-gray);
  }
  main.recruit.home .person article .right {
    order: 1 !important;
    align-items: flex-start !important;
  }
  main.recruit.home .person article .left {
    order: 2 !important;
    margin-top: 2rem !important;
  }
  main.recruit.home .person article .left h3 {
    font-size: 8vw !important;
  }
}

/* 社員の1日
-------------------------------------------- */
main.recruit .schedule p.title img {
  width: 90%;
  height: auto;
  margin-bottom: -0.5rem;
}
main.recruit .schedule div.wrap {
  padding: 2rem;
  color: var(--color-white);
  background-color: var(--color-green);
}
main.recruit .schedule div.wrap h2 {
  font-size: 3rem;
  line-height: 1.5em;
  text-align: right;
}
main.recruit .schedule div.wrap h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--color-yellow);
  color: var(--color-yellow);
  font-size: var(--fl);
  line-height: 1.75em;
}
main.recruit .schedule article .flex .image {
  position: relative;
}
main.recruit .schedule article .flex .image p {
  position: absolute;
  width: 200px;
  height: 200px;
}
.ol_timeline li {
  padding: 0 0 1rem 2em;
  position: relative;
  font-size: var(--fl);
  line-height: 1.75em;
}
.ol_timeline li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}
.ol_timeline li:after {
  content: "";
  width: 4px;
  background-color: rgb(255 255 255 / 0.6);
  display: block;
  position: absolute;
  top: 1.75em;
  bottom: 0;
  left: 0.5em;
  margin-left: -2px;
}
.ol_timeline li span {
  display: block;
  font-size: var(--fm);
  line-height: 1.5em;
}
.ol_timeline li span > span {
  display: inline-block;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.recruit .schedule div.wrap h3 {
    padding-left: 1em;
  }
  main.recruit .schedule article .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit .schedule p.wrap {
    text-align: center;
  }
  main.recruit .schedule div.wrap {
    width: 100%;
  }
  main.recruit .schedule div.wrap h2 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 2rem;
  }
  main.recruit .schedule article .flex {
    display: flex;
    flex-direction: column;
  }
  main.recruit .schedule article .flex .image p {
    width: 30vw;
    height: 30vw;
  }
}

/* 土木技術課の１日 */
main.recruit .schedule .doboku .step1 .image p {
  right: 1rem;
  bottom: 0rem;
}
main.recruit .schedule .doboku .step2 .image p {
  left: 1rem;
  bottom: 0rem;
}
main.recruit .schedule .doboku .step3 .image p {
  right: 1rem;
  bottom: -4rem;
}
main.recruit .schedule .doboku .step3 .ol_timeline li:last-child::after {
  content: none;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.recruit .schedule .doboku .step1 .image {
    width: 70%;
    padding-right: 5rem;
  }
  main.recruit .schedule .doboku .step1 .ol_timeline {
    width: 30%;
  }
  main.recruit .schedule .doboku .step2 .image {
    width: 70%;
    padding-left: 7rem;
  }
  main.recruit .schedule .doboku .step2 .ol_timeline {
    width: 30%;
    padding-left: 1rem;
  }
  main.recruit .schedule .doboku .step3 .image {
    width: 65%;
    padding-right: 5rem;
  }
  main.recruit .schedule .doboku .step3 .ol_timeline {
    width: 35%;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit .schedule .doboku .step1 .image {
    margin-bottom: 1rem;
  }
  main.recruit .schedule .doboku .step1 .image p {
    right: -1rem;
    bottom: -1rem;
  }
  main.recruit .schedule .doboku .step1 .ol_timeline {
    margin-bottom: 1rem;
  }
  main.recruit .schedule .doboku .step2 .image {
    order: 1;
    margin-bottom: 1rem;
  }
  main.recruit .schedule .doboku .step2 .image p {
    left: -1rem;
    bottom: -1rem;
  }
  main.recruit .schedule .doboku .step2 .ol_timeline {
    order: 2;
    margin-bottom: 1rem;
  }
  main.recruit .schedule .doboku .step3 .image {
    margin-bottom: 1rem;
  }
  main.recruit .schedule .doboku .step3 .image p {
    right: -1rem;
    bottom: -1rem;
  }
  main.recruit .schedule .doboku .step3 .ol_timeline {
    margin-bottom: 1rem;
  }
}

/* 建築課の１日（公共施設改修工事の設計業務の日） */
main.recruit .schedule .kenchiku {
  margin-top: 4rem;
}
main.recruit .schedule .kenchiku .step1 .image p {
  left: 1rem;
  bottom: 0rem;
}
main.recruit .schedule .kenchiku .step2 .image p {
  right: 1rem;
  bottom: 0rem;
}
main.recruit .schedule .kenchiku .step3 .image p {
  left: 1rem;
  bottom: -4rem;
}
main.recruit .schedule .kenchiku .step3 .ol_timeline li:last-child::after {
  content: none;
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.recruit .schedule .kenchiku .step1 .image {
    width: 70%;
    padding-left: 10rem;
  }
  main.recruit .schedule .kenchiku .step1 .ol_timeline {
    width: 30%;
    padding-left: 1rem;
  }
  main.recruit .schedule .kenchiku .step2 .image {
    width: 70%;
    padding-right: 7rem;
  }
  main.recruit .schedule .kenchiku .step2 .ol_timeline {
    width: 30%;
  }
  main.recruit .schedule .kenchiku .step3 .image {
    width: 60%;
    padding-left: 5rem;
  }
  main.recruit .schedule .kenchiku .step3 .ol_timeline {
    width: 40%;
    padding-left: 1rem;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit .schedule .kenchiku .step1 .image {
    order: 1;
    margin-bottom: 1rem;
  }
  main.recruit .schedule .kenchiku .step1 .image p {
    left: -1rem;
    bottom: 0rem;
  }
  main.recruit .schedule .kenchiku .step1 .ol_timeline {
    order: 2;
    margin-bottom: 1rem;
  }
  main.recruit .schedule .kenchiku .step2 .image {
    margin-bottom: 1rem;
  }
  main.recruit .schedule .kenchiku .step2 .image p {
    right: -1rem;
    bottom: 0rem;
  }
  main.recruit .schedule .kenchiku .step3 .image {
    order: 1;
    margin-bottom: 1rem;
  }
  main.recruit .schedule .kenchiku .step3 .image p {
    left: -1rem;
    bottom: 0rem;
  }
  main.recruit .schedule .kenchiku .step3 .ol_timeline {
    order: 2;
    margin-bottom: 1rem;
  }
}


/* 福利厚生 
-------------------------------------------- */
main.recruit.home .benefits {
  padding: 2rem 0;
}
main.recruit.home .benefits p.title {
  margin-bottom: 1rem;
}
main.recruit.home .benefits p.title img {
  width: auto;
  height: 8vw;
}
main.recruit.home .benefits .flex h2 {
  position: relative;
  font-size: 3rem;
  line-height: 1.5em;
}
main.recruit.home .benefits .flex h2:after {
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/recruit-benefits.svg) no-repeat center bottom / contain;
}
main.recruit.home .benefits .flex .right p {
  margin-bottom: 1rem;
  font-size: var(--fm);
  line-height: 1.5em;
}
main.recruit.home .benefits .flex .right ul li {
  padding-left: 1em;
  text-indent: -1em;
}
main.recruit.home .benefits .flex .right ul li:before {
  content: "・";
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.recruit.home .benefits .flex {
    display: flex;
  }
  main.recruit.home .benefits .flex h2 {
    width: 27.5%;
  }
  main.recruit.home .benefits .flex h2:after {
    max-width: 200px;
  }
  main.recruit.home .benefits .flex .right {
    width: 72.5%;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit.home .benefits p.title img {
    width: 100%;
    height: auto
  }
  main.recruit.home .benefits .flex h2 {
    margin: 1rem auto;
    font-size: 2rem;
  }
  main.recruit.home .benefits .flex h2:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../images/recruit-benefits.svg) no-repeat right bottom / contain;
  }
}

/* 基本データ */
main.recruit.home .data {
  padding-bottom: 2rem;
}
main.recruit.home .data p.title {
  margin-bottom: 1rem;
  text-align: right;
}
main.recruit.home .data p.title img {
  width: auto;
  height: 6vw;
}
main.recruit.home .data .flex h2 {
  position: relative;
  font-size: 3rem;
  line-height: 1.5em;
}
main.recruit.home .data .flex h2:after {
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../images/recruit-data.svg) no-repeat center bottom / contain;
}
main.recruit.home .data dl {
  font-size: var(--fl);
  line-height: 1.5em;
}
main.recruit.home .data dl div {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
main.recruit.home .data dl div dt {
  margin-right: 1em;
}
main.recruit.home .data dl div dd span.caution {
  margin-left: 1em;
  font-size: 1rem;
}
main.recruit.home .data ul.ul_caution {
  display: flex;
  flex-wrap: wrap;
}
main.recruit.home .data ul.ul_caution li:first-child {
  width: 100%;
}
main.recruit.home .data ul.ul_caution li:not(:first-child) {
  margin-right: 3em;
}
@media print, screen and (min-width: 767px) { /* -- pc -- */
  main.recruit.home .data .flex {
    display: flex;
  }
  main.recruit.home .data .flex h2 {
    width: 27.5%;
  }
  main.recruit.home .data .flex h2:after {
    max-width: 200px;
  }
  main.recruit.home .data .flex .right {
    width: 72.5%;
  }
  main.recruit.home .data .flex {
    display: flex;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.recruit.home .data p.title img {
    width: 100%;
    height: auto;
  }
  main.recruit.home .data .flex h2 {
    margin: 1rem auto;
    font-size: 2rem;
  }
  main.recruit.home .data .flex h2:after {
    content: "";
    display: block;
    width: 100%;
    height: 150%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: initial;
    background: url(../images/recruit-data.svg) no-repeat right top / contain;
  }
}


/* ----------------------------------------------------------
  記事ページ single-recruit_info.php
---------------------------------------------------------- */
main.single h1 {
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-black);
  font-size: var(--fll);
  line-height: 1.5em;
  text-align: center;
}
main.single article h2 {
  margin-bottom: 2rem;
  padding: 0.5rem 1em;
  color: var(--color-white);
  background-color: var(--color-black);
  font-size: var(--fl);
  line-height: 1.5em;
}
main.single article:nth-of-type(n+2) {
  margin-top: 2rem;
}
main.single article .dl_recruit dd a:hover {
  color: var(--color-green);
}
main.single article div.rikunavi {
  padding: 2rem 0;
  text-align: center;
}
main.single article div.rikunavi a:hover {
  opacity: 0.8;
}
main.single article div.rikunavi img {
  width: initial !important;
  max-width: initial !important;
  height: initial !important;
}
main.single .contact-rec {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0;
  text-align: center;
}
main.single .contact-rec h2 {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-black);
}
main.single .contact-rec span.info {
  display: block;
  margin: 0.5rem auto;
  font-size: var(--fm);
  line-height: 1.5em;
}
main.single .contact-rec p.mail {
  margin-top: 1rem;
}
main.single .contact-rec p.mail img {
  padding: 0.25rem;
  border: 1px solid var(--color-black);
  width: auto;
  height: 2rem;
}

@media print, screen and (min-width: 767px) {
  main.notitleimage {
      padding-top: calc(82px + 4rem);
  }
  main.single article .dl_recruit {
    display: flex;
    flex-wrap: wrap;
  }
  main.single article .dl_recruit dt {
    width: 15em;
    padding: 0.5rem 1em;
    border-bottom: 1px solid #cccccc;
  }
  main.single article .dl_recruit dd {
    width: calc(100% - 15em);
    padding: 0.5rem 1em;
    border-bottom: 1px solid #cccccc;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  main.single article .dl_recruit dt {
    padding-top: 0.5rem;
  }
  main.single article .dl_recruit dt::before {
    content: "■";
  }
  main.single article .dl_recruit dd {
    padding: 0 1em 0.5rem 1em;
    border-bottom: 1px solid #cccccc;
  }
  main.single .contact-rec p {
    text-align: center;
  }
}



/* ----------------------------------------------------------
 Footer
---------------------------------------------------------- */
footer .contact {
  padding: 3rem 0;
  background-color: #c9caca;
}
footer .contact .wrap p {
  border-radius: 0.5rem;
  background-color: var(--color-white);
}
footer .contact .wrap p a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  border-radius: 0.5rem;
  font-size: var(--fl);
  transition: .2s;
}
footer .contact .wrap p a:hover {
  color: var(--color-white);
  background-color: var(--color-green);
}
footer .contact .wrap p a span.ja {
  font-weight: 700;
}
footer .contact .wrap p a span.en {
  font-size: var(--fs);
}
footer .address {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #ffffff;
  background-color: var(--color-green);
}
footer .address figure {
  width: 100%;
  height: auto;
}
footer .address .wrap a {
  display: inline;
  color: var(--color-white);
}
footer .address ul li:first-child {
  margin-bottom: 1.5rem;
}
footer .address p.name {
  margin-bottom: 0.25rem;
  font-size: var(--fl);
  line-height: 1.5em;
}
footer .footernav {
  padding: 3rem 0;
  color: var(--color-white);
  background-color: var(--color-green);
}
footer .footernav nav ul li {
  margin-bottom: 0.5rem;
}
footer .footernav nav ul li.sub {
  margin-bottom: 0;
  font-size: var(--fs);
}
footer .footernav nav ul li a {
  color: var(--color-white);
}
footer .footernav nav ul li a:hover {
  opacity: .6;
}
footer .copyright {
  padding-bottom: 1rem;
  background-color: var(--color-green);
}
footer small {
  display: block;
  color: var(--color-white);
  background-color: var(--color-green);
}

@media print, screen and (min-width: 767px) { /* -- pc -- */
  footer .contact .wrap {
    display: flex;
    justify-content: center;
  }
  footer .contact .wrap p {
    width: calc(50% - 1rem);
  }
  footer .contact .wrap p:nth-child(2) {
    margin-left: 2rem;
  }
  footer .address .wrap {
    position: absolute;
    margin-bottom: 2rem;
  }
  footer .footernav nav {
    display: flex;
  }
  footer .footernav nav ul {
    margin-right: 3rem;
  }
  footer .footernav nav ul.last {
    display: flex;
    flex-direction: column;
    margin-right: 0;
    margin-left: auto;
    padding-left: 2rem;
    border-left: 1px solid var(--color-white);
  }
  footer .footernav nav ul.last li:last-child {
    margin-top: auto;
  }
}
@media screen and (max-width : 768px) { /* -- sp -- */
  footer .contact .wrap p:nth-of-type(1) {
    margin-bottom: 1rem;
  }
  footer .contact .wrap p a {
    padding: 1.5rem 0 1rem 0;
  }
  footer .address figure {
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
  }
  footer .address ul li:first-child {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
  footer .address p {
    text-align: center !important;
  }
  footer .address figure img {
    width: auto;
    max-width: initial;
    height: 100%;
    transform: translateX(100vw);
  }
  footer .address .wrap {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
  }
  footer .copyright {
    padding: 1rem 0;
    text-align: center;
    line-height: 1.5em;
  }
}