@charset "utf-8";
/*
Theme Name: himeju-recruit
Author: 株式会社シールズ
Description: original theme
version： 1.0.0
*/
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  overflow-x: hidden;
  color: var(--darkgray);
  line-height: 1.75;
  font-family:
    'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Segoe UI', 'Helvetica Neue',
    Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
:root {
  --white: #fff;
  --black: #000;
  --gray: #646464;
  --darkgray: #474747;
  --lightgray: #e4e4e4;
  --blue: #1d2088;
  --skyblue: #009ffa;
  --lightblue: #f1faff;
}
.noto {
  font-family: 'Noto Sans JP', sans-serif;
}
main {
  position: relative;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: 0.7;
}
.scale:hover {
  transform: scale(1.06);
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.container {
  max-width: 1110px;
  width: 90%;
  margin: auto;
}
.container.wide {
  max-width: 90%;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.hidden_sp.inline {
  display: inline-block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid {
  display: grid;
}
@media (min-width: 768px) {
  a[href^='tel:'] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
}

/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header::after {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--skyblue);
  border-bottom: 5px solid var(--black);
  width: 100%;
  height: 60px;
  content: "";
  z-index: -1;
}
header .logo {
  position: absolute;
  left: 0;
  border-radius: 0 40px 40px 0;
  background: var(--white);
  width: 220px;
}
header .logo a {
  padding: 17px;
  justify-content: center;
  align-items: center;
}
header a,
header span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
}
.hamburger {
  display: none;
}
header .headWrap {
  position: relative;
  margin-top: 20px;
  justify-content: flex-end;
}
header .global-nav {
  width: 994px;
  max-width: calc(100% - 230px);
  background: var(--white);
  border-radius: 40px 0 0 40px;
}
header .global-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}
header .global-nav li {
  position: relative;
  color: var(--white);
}
header .global-nav li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 16px;
  background: var(--black);
  content: "";
}
header .global-nav li:first-child::before,
header .global-nav li.official::before {
  content: none;
}
header .global-nav li a {
  padding: 20px 50px;
  color: var(--blue);
}
header .global-nav li a:hover {
  color: var(--skyblue);
  opacity: 1;
}
header .global-nav li.official a {
  position: relative;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--blue);
  border-radius: 30px;
  width: 200px;
  height: 60px;
}
header .global-nav li.official a span {
  margin-right: 5px;
  color: var(--skyblue);
}
header .global-nav li.official a::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  background: url(img/common/arrow_bl.svg) no-repeat center / contain;
  width: 11px;
  height: 12px;
  content: "";
}
header .global-nav li.official a:hover {
  background: var(--blue);
  color: var(--white);
  opacity: 1;
}
@media (max-width: 1400px) {
  header .logo {
    border-radius: 0 30px 30px 0;
    width: 200px;
  }
  header .logo a {
    padding: 17px 30px;
  }
  header a,
  header span {
    font-size: 1.4rem;
  }
  header .global-nav {
    padding: 0 20px;
    width: auto;
    max-width: calc(100% - 250px);
    border-radius: 30px 0 0 30px;
  }
  header .global-nav li a {
    padding: 20px 30px;
  }
  header .global-nav li.official a {
    width: 180px;
  }
}
@media (max-width: 1100px) {
  header .global-nav {
    max-width: calc(100% - 180px);
  }
  header .logo {
    width: 150px;
  }
  header .logo a {
    padding: 30px;
  }
  header a,
  header span {
    font-size: 1.2rem;
  }
  header .global-nav li a {
    padding: 20px 10px;
    color: var(--blue);
  }
  header .global-nav li.official a {
    width: 150px;
    height: 60px;
  }
  header .global-nav li.official a::after {
    right: 15px;
  }
}
@media (max-width: 767px) {
  header {
    height: 60px;
  }
  header .headWrap {
    margin-top: 15px;
    width: calc(100% - 60px);
  }
  header .logo {
    border-radius: 0 20px 20px 0;
    width: 120px;
  }
  header .logo a {
    padding: 10px 20px;
  }
  header a,
  header span {
    font-size: 1.5rem;
  }
  header .global-nav {
    position: fixed;
    right: 0;
    top: 80px;
    padding: 20px 5% 100px;
    max-width: 90%;
    height: 100vh;
    background: var(--white);
    z-index: 100;
    overflow-y: auto;
    display: none;
  }
  .hamburger {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }
  .hamburger::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    margin: auto;
    color: var(--white);
    font-size: 1rem;
    content: 'MENU';
  }
  header .global-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  header .global-nav li {
    width: 100%;
  }
  header .global-nav li a {
    text-align: ce
  }
  header .global-nav li::before {
    bottom: auto;
    width: 100%;
    height: 1px;
    background: var(--blue);
    content: "";
  }
  header .global-nav li.official a {
    width: 100%;
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.6s;
  }
  .hamburger__line--1 {
    top: 13px;
  }
  .hamburger__line--2 {
    top: 23px;
  }
  .hamburger__line--3 {
    top: 33px;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }
  .nav-open .hamburger::after {
    content: 'CLOSE';
  }
  .nav-open .black-bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 25px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 25px;
  }
}
/* common style
-------------------------------------------------------------- */
.btn a {
  padding: 20px;
  justify-content: center;
  align-items: center;
}
.btn strong {
  display: block;
  padding-right: 40px;
  color: var(--blue);
  font-size: 2rem;
  letter-spacing: 2px;
}
.btn strong span {
  color: var(--skyblue);
}
.btn .arrow {
  padding-right: 20px;
  justify-content: flex-end;
  background: var(--skyblue);
  border-radius: 20px;
  width: 75px;
  height: 40px;
}
.btn .arrow img {
  transition: all 0.5s;
}
.btn a:hover {
  background: var(--blue);
  opacity: 1;
}
.btn a:hover strong {
  color: var(--white);
}
.btn a:hover .arrow img {
  transform: translateX(10px);
}
#sv {
  position: relative;
  justify-content: center;
  align-items: center;
  padding-top: 5%;
  margin-bottom: 200px;
  background: var(--lightblue);
  height: 450px;
  text-align: center;
}
#sv h1 strong {
  display: block;
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 2px;
}
.styleBgBlue {
  position: relative;
  margin-bottom: 50px;
  padding: 20px 0;
  border-radius: 0 30px 30px 0;
  background: var(--blue);
  color: var(--white);
  width: calc(100% - 40px);
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.4;
  z-index: 2;
}
.styleBgBlue::after {
  position: absolute;
  top: 0;
  left: calc((100vw - min(100vw, 1100px)) / -2);
  background: var(--blue);
  width: calc((100vw - min(100vw, 1100px)) / 2 + 200px);
  height: 100%;
  content: "";
  z-index: -1;
}
@media (max-width: 1200px) {
  .styleBgBlue::after {
    left: -20%;
    width: calc(15% + 100px);
  }
}
@media (max-width: 767px) {
  .btn a {
    padding: 10px;
  }
  .btn strong {
    padding-right: 20px;
    font-size: 1.6rem;
  }
  .btn .arrow {
    padding-right: 15px;
    width: 55px;
    height: 30px;
  }
  .btn .arrow img {
    width: 10px;
  }
  #sv {
    padding-top: 8%;
    margin-bottom: 100px;
    height: 200px;
  }
  #sv h1 img {
    max-height: 20px;
  }
  #sv h1 strong {
    margin-top: 20px;
    font-size: 1.4rem;
  }
  .styleBgBlue {
    margin-bottom: 30px;
    padding: 10px 0;
    width: calc(100% - 10px);
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
}

/* archive
-------------------------------------------------------------- */
#newsList .postArea {
  padding: 0 40px;
  margin-bottom: 180px;
}
#newsList .postArea li {
  border-bottom: 1px solid var(--black);
}
#newsList .postArea li:last-child {
  border-bottom: none;
}
#newsList .postArea li a {
  padding: 25px 0;
  align-items: center;
}
#newsList .postArea li a:hover {
  background: var(--lightblue);
  opacity: 1;
}
#newsList .postArea li .date {
  width: 80px;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
  line-height: 1.4;
}
#newsList .postArea li .ttl {
  width: calc(100% - 220px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#newsList .postArea li.none {
  text-align: center;
}
#newsList .arrow {
  padding-right: 20px;
  justify-content: flex-end;
  background: var(--skyblue);
  border-radius: 20px;
  width: 75px;
  height: 40px;
}
#newsList .arrow img {
  transition: all 0.5s;
}
#newsList a:hover .arrow img {
  transform: translateX(10px);
}
#columnList .postArea {
  margin-bottom: 180px;
  gap: 100px 50px;
}
#columnList .postArea li {
  width: calc((100% - 100px) / 3);
  border-bottom: 1px solid var(--black);
}
#columnList .postArea li a {
  padding-bottom: 30px;
  display: block;
}
#columnList .postArea li .eyecatch {
  background-color: var(--lightgray);
  background-size: cover;
  aspect-ratio: 223 / 150;
}
#columnList .postArea li .date {
  margin-top: -10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
#columnList .postArea li .ttl {
  margin: 15px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#columnList .postArea li .arrow {
  text-align: right;
  transition: all 0.5s;
}
#columnList .postArea li .arrow img {
  display: inline-block;
}
#columnList .postArea li a:hover .arrow {
  transform: translateX(10px);
}
#columnList .postArea li.none {
  text-align: center;
}
@media (max-width: 767px) {
  #newsList .postArea {
    padding: 0;
    margin-bottom: 90px;
  }
  #newsList .postArea li .date {
    width: 60px;
    font-size: 1.3rem;
  }
  #newsList .arrow {
    padding-right: 10px;
    width: 40px;
    height: 25px;
  }
  #newsList .arrow img {
    width: 10px;
  }
  #columnList .postArea {
    margin-bottom: 90px;
    gap: 50px;
  }
  #columnList .postArea li {
    width: 100%;
  }
  #columnList .postArea li a {
    padding-bottom: 20px;
  }
  #columnList .postArea li .date {
    font-size: 1.6rem;
  }
  #columnList .postArea li .txtArea .ttl {
    margin: 10px 0;
    font-size: 1.3rem;
  }
}
/* single
-------------------------------------------------------------- */
#newsSingle .container {
  padding: 0 40px;
}
#newsSingle .ttlheader .date {
  width: 200px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
}
#newsSingle .ttlheader .date::after {
  left: calc((100vw - min(100vw, 1020px)) / -2);
  width: calc((100vw - min(100vw, 1020px)) / 2 + 50px);
}
#newsSingle .ttlheader h2 {
  position: relative;
  margin-bottom: 50px;
  color: var(--skyblue);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 3px;
}
#newsSingle .eyecatch {
  margin-bottom: 80px;
}
#newsSingle .freetxt {
  padding-bottom: 150px;
}
.freetxt img {
  margin-bottom: 30px;
}
.freetxt a {
  color: var(--blue);
}
.freetxt p {
  margin-bottom: 50px;
  line-height: 2;
}
.freetxt blockquote {
  background: #efefef;
  padding: 20px;
}
.freetxt .aligncenter {
  display: block;
  margin: 0 auto;
}
.freetxt .alignleft {
  float: left;
}
.freetxt .alignright {
  float: right;
}
.freetxt ul,
.freetxt ol {
  margin: 0 20px;
}
.freetxt ul li {
  list-style: square;
  margin-bottom: 15px;
}
.freetxt ol li {
  list-style: decimal;
  margin-bottom: 15px;
}
.freetxt h1 {
  margin-bottom: 50px;
  font-weight: 700;
}
.freetxt h2 {
  margin-bottom: 50px;
  color: var(--blue);
  font-weight: 700;
}
.freetxt h3 {
  padding: 10px;
  margin-bottom: 50px;
  border-left: 5px solid var(--blue);
  border-bottom: 1px solid var(--gray);
  font-weight: 700;
  line-height: 1.4;
}
.freetxt table {
  width: 100%;
}
.freetxt table th {
  padding: 10px 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
}
.freetxt table td {
  padding: 10px 15px;
  border: 1px solid #ccc;
}
.freetxt .youtube {
  margin-bottom: 20px;
}
.freetxt .youtube iframe {
  width: 100%;
  height: 550px;
}
@media (max-width: 1200px) {
  #newsSingle .ttlheader .date::after {
    left: -20%;
    width: calc(15% + 50px);
  }
}
@media (max-width: 767px) {
  #newsSingle .container {
    padding: 0;
  }
  #newsSingle .ttlheader .date {
    width: 150px;
    font-size: 1.4rem;
  }
  #newsSingle .ttlheader h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  #newsSingle .eyecatch {
    margin-bottom: 40px;
  }
  #newsSingle .freetxt {
    padding-bottom: 30px;
  }
  .freetxt h2 {
    margin-bottom: 30px;
  }
  .freetxt h3 {
    margin-bottom: 30px;
  }
}

/* interview
-------------------------------------------------------------- */
#interviewList .postArea {
  margin-bottom: 200px;
  justify-content: flex-start;
}
#interviewList .postArea li {
  margin: -1px 0 0 -1px;
  border: 1px solid var(--black);
  width: 33.33%;
}
#interviewList .postArea li a {
  display: block;
  padding: 40px 20px;
  overflow: hidden;
}
#interviewList .postArea li .eyecatch {
  border-radius: 20px;
  background-color: var(--lightgray);
  background-size: cover;
  aspect-ratio: 300 / 200;
}
#interviewList .postArea li .ttl {
  margin: 15px 0 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 700;
}
#interviewList .postArea li .arrow {
  float: right;
  padding-right: 20px;
  justify-content: flex-end;
  background: var(--skyblue);
  border-radius: 20px;
  width: 75px;
  height: 40px;
}
#interviewList .postArea li .arrow img {
  transition: all 0.5s;
}
#interviewList .postArea li a:hover {
  background: var(--blue);
  opacity: 1;
}
#interviewList .postArea li a:hover .ttl {
  color: var(--white);
}
#interviewList .postArea li a:hover .arrow img {
  transform: translateX(10px);
}
#interviewList .postArea li.none {
  text-align: center;
}
#interviewSingle .inner {
  padding: 0 40px;
}
#interviewSingle .main {
  width: 64%;
  border-radius: 20px;
  background-color: var(--lightgray);
  background-size: cover;
  aspect-ratio: 600 / 540;
}
#interviewSingle .txtArea {
  width: 29%;
}
#interviewSingle .txtArea h1 {
  color: var(--skyblue);
  font-size: 2.2rem;
  line-height: 2;
  letter-spacing: 3px;
}
#interviewSingle .profile {
  position: relative;
  margin: 40px 0 30px;
  padding: 20px 40px;
  border-radius: 30px 0 0 30px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}
#interviewSingle .profile::after {
  position: absolute;
  top: 0;
  right: calc((100vw - min(100vw, 1020px)) / -2);
  background: var(--blue);
  width: calc((100vw - min(100vw, 1020px)) / 2);
  height: 100%;
  content: "";
  z-index: -1;
}
#interviewSingle .name {
  margin: 10px 0;
  padding: 20px 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
}
#interviewSingle .grayBox {
  margin: 30px 0;
  padding: 10px 20px;
  width: 100%;
  background: #f7f7f7;
}
#interviewSingle .interviewWrap {
  margin-bottom: 200px;
}
#interviewSingle .interviewWrap dt {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 3px;
}
#interviewSingle .interviewBox {
  padding: 40px 0;
  border-bottom: 1px solid #dfdfdf;
}
#interviewSingle .interviewBox dt {
  margin-bottom: 30px;
  color: var(--blue);
}
#interviewSingle .msgBox {
  padding-top: 50px;
  margin-top: -1px;
  background: var(--white);
}
#interviewSingle .msgBox dt {
  border-radius: 0 40px 40px 0;
  text-align: left;
}
#interviewSingle .msgBox dt::after {
  left: calc((100vw - min(100vw, 1020px)) / -2);
  width: calc((100vw - min(100vw, 1020px)) / 2 + 200px);
}
#interviewSingle .msgBox dd {
  color: var(--skyblue);
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 1200px) {
  #interviewSingle .profile::after {
    right: -35%;
    width: 90%;
  }
  #interviewSingle .msgBox dt::after {
    left: -35%;
    width: 90%;
  }
}
@media (max-width: 767px) {
  #interviewList .postArea {
    margin-bottom: 100px;
  }
  #interviewList .postArea li {
    width: 100%;
  }
  #interviewList .postArea li a {
    padding: 20px 15px;
  }
  #interviewList .postArea li .eyecatch {
    border-radius: 10px;
  }
  #interviewList .postArea li .ttl {
    margin: 10px 0 20px;
    font-size: 1.6rem;
  }
  #interviewList .postArea li .arrow {
    padding-right: 15px;
    width: 55px;
    height: 30px;
  }
  #interviewList .postArea li .arrow img {
    width: 10px;
  }
  #interviewSingle .inner {
    padding: 0;
  }
  #interviewSingle .main {
    width: 100%;
    border-radius: 10px;
  }
  #interviewSingle .txtArea {
    padding-top: 20px;
    width: 100%;
  }
  #interviewSingle .txtArea h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  #interviewSingle .profile {
    margin: 20px 0 15px;
    padding: 15px 30px;
    border-radius: 30px 0 0 30px;
  }
  #interviewSingle .name {
    padding: 10px 0;
    font-size: 2.8rem;
  }
  #interviewSingle .interviewWrap {
    margin-bottom: 100px;
  }
  #interviewSingle .interviewWrap dt {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  #interviewSingle .interviewBox {
    padding: 20px 0;
  }
  #interviewSingle .interviewBox dt {
    margin-bottom: 20px;
  }
  #interviewSingle .msgBox {
    padding-top: 50px;
  }
  #interviewSingle .msgBox dd {
    font-size: 1.6rem;
  }
  #interviewSingle .profile::after {
    right: -6%;
  }
  #interviewSingle .msgBox dt::after {
    left: -6%;
  }
}

/* job-opening
-------------------------------------------------------------- */
#jobList .postArea {
  margin-bottom: 200px;
  justify-content: flex-start;
}
#jobList .postArea li {
  margin: -1px 0 0 -1px;
  border: 1px solid var(--black);
  width: 33.33%;
}
#jobList .postArea li a {
  display: block;
  padding: 60px 30px;
  overflow: hidden;
}
#jobList .postArea li .job {
  padding: 5px 25px;
  border-radius: 20px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
}
#jobList .postArea li .cat {
  padding: 20px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid var(--black);
}
#jobList .postArea li .ttl {
  margin: 30px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 700;
}
#jobList .postArea li .arrow {
  float: right;
  padding-right: 20px;
  justify-content: flex-end;
  background: var(--skyblue);
  border-radius: 20px;
  width: 75px;
  height: 40px;
}
#jobList .postArea li .arrow img {
  transition: all 0.5s;
}
#jobList .postArea li a:hover {
  background: var(--blue);
  opacity: 1;
}
#jobList .postArea li a:hover .cat,
#jobList .postArea li a:hover .ttl {
  color: var(--white);
}
#jobList .postArea li a:hover .arrow img {
  transform: translateX(10px);
}
#jobList .postArea li.none {
  text-align: center;
}
#jobSingle .inner {
  padding: 0 40px;
}
#jobSingle .prArea {
  margin-bottom: 200px;
  align-items: flex-start;
}
#jobSingle .job {
  padding: 20px 30px;
  width: 25%;
  font-size: 1.6rem;
  text-align: right;
}
#jobSingle .job::after {
  left: calc((100vw - min(100vw, 1020px)) / -2);
  width: calc((100vw - min(100vw, 1020px)) / 2 + 200px);
}
#jobSingle .cat {
  justify-content: flex-start;
  padding: 15px 30px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  width: 65%;
  font-weight: 700;
}
#jobSingle h1 {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 2.2rem;
  width: 100%;
}
#jobSingle .blueBox {
  padding: 20px;
  background: var(--lightblue);
  width: 100%;
}
#jobSingle .aboutBox {
  margin-top: 60px;
  padding: 60px 50px;
  border: 1px solid var(--black);
  border-radius: 28px;
}
#jobSingle .aboutBox h2 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 2.2rem;
  letter-spacing: 2px;
}
#jobSingle .aboutBox h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--blue);
  width: 120px;
  height: 2px;
  content: "";
}
#jobSingle .aboutBox .txtArea {
  margin-bottom: 50px;
}
#jobSingle .aboutBox .pointBox {
  padding: 40px;
  margin-bottom: 50px;
  background: #f7f7f7;
}
#jobSingle .aboutBox .pointBox dt {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}
#jobSingle .aboutBox .line {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--black);
}
#jobSingle .aboutBox .line:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
#jobSingle .jobArea {
  padding: 100px 0;
  background: url(img/common/bg_dot.png) repeat;
}
#jobSingle .jobArea .container {
  padding: 40px;
  background: var(--white);
}
#jobSingle .jobArea dt {
  padding: 30px 0;
  border-bottom: 1px solid var(--lightgray);
  color: var(--blue);
  font-weight: 700;
  width: 30%;
}
#jobSingle .jobArea dd {
  padding: 30px 0;
  border-bottom: 1px solid var(--lightgray);
  width: 70%;
}
#jobSingle .jobArea dt:last-of-type,
#jobSingle .jobArea dd:last-child {
  border: none;
}
.btnEntry a {
  position: relative;
  align-items: center;
  padding: 20px 40px 20px 50px;
  margin: 100px auto 200px;
  border: 1px solid var(--skyblue);
  border-radius: 40px;
  background: var(--skyblue);
  width: 90%;
  max-width: 467px;
  height: 80px;
  color: var(--white);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  transition: all 0.5s ease-in-out;
}
.btnEntry .arrow {
  padding-right: 20px;
  justify-content: flex-end;
  background: var(--skyblue);
  border: 1px solid var(--white);
  border-radius: 20px;
  width: 75px;
  height: 40px;
}
.btnEntry .arrow img {
  transition: all 0.5s;
}
.btnEntry a:hover {
  background: var(--white);
  opacity: 1;
}
.btnEntry a:hover strong {
  color: var(--skyblue);
}
.btnEntry a:hover .arrow img {
  transform: translateX(10px);
}
@media (max-width: 1200px) {
  #jobSingle .job::after {
    left: -50%;
    width: 90%;
  }
}
@media (max-width: 767px) {
  #jobList .postArea {
    margin-bottom: 100px;
  }
  #jobList .postArea li {
    width: 100%;
  }
  #jobList .postArea li a {
    padding: 20px 15px;
  }
  #jobList .postArea li .job {
    padding: 5px 15px;
  }
  #jobList .postArea li .cat {
    padding: 15px;
  }
  #jobList .postArea li .ttl {
    margin: 20px 0;
    font-size: 1.6rem;
  }
  #jobList .postArea li .arrow {
    padding-right: 15px;
    width: 55px;
    height: 30px;
  }
  #jobList .postArea li .arrow img {
    width: 10px;
  }
  #jobSingle .inner {
    padding: 0;
  }
  #jobSingle .job::after {
    left: -6%;
  }
  #jobSingle .prArea {
    margin-bottom: 100px;
  }
  #jobSingle .job {
    padding: 15px 30px;
    width: 90%;
    font-size: 1.4rem;
  }
  #jobSingle .cat {
    margin-bottom: 20px;
    padding: 15px 20px;
    width: 100%;
  }
  #jobSingle h1 {
    font-size: 1.8rem;
  }
  #jobSingle .aboutBox {
    margin-top: 30px;
    padding: 30px 25px;
    border-radius: 14px;
  }
  #jobSingle .aboutBox h2 {
    padding-bottom: 15px;
    font-size: 1.8rem;
  }
  #jobSingle .aboutBox h2::after {
    width: 60px;
  }
  #jobSingle .aboutBox .txtArea {
    margin-bottom: 30px;
  }
  #jobSingle .aboutBox .pointBox {
    padding: 20px;
    margin-bottom: 30px;
  }
  #jobSingle .aboutBox .pointBox dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  #jobSingle .aboutBox .line {
    padding-bottom: 30px;
  }
  #jobSingle .jobArea {
    padding: 100px 0;
    background: url(img/common/bg_dot.png) repeat;
  }
  #jobSingle .jobArea .container {
    padding: 20px;
  }
  #jobSingle .jobArea dt {
    padding: 20px 0 0;
    border-bottom:none;
    color: var(--blue);
    font-weight: 700;
    width: 100%;
  }
  #jobSingle .jobArea dd {
    padding: 10px 0 20px;
    width: 100%;
  }
  .btnEntry a {
    padding: 0 20px 0 30px;
    margin: 50px auto 100px;
    height: 60px;
    font-size: 1.6rem;
  }
  .btnEntry .arrow {
    padding-right: 10px;
    width: 40px;
    height: 25px;
  }
  .btnEntry .arrow img {
    width: 10px;
  }
}
/* ページネーション
-------------------------------------------------------------- */
.paging {
  position: relative;
  padding: 60px 0;
  border-top: 2px solid var(--black);
}
.paging .container {
  position: relative;
  margin: 0 auto;
  max-width: 1020px;
  overflow: hidden;
}
.paging .next,
.paging .prev {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.paging .prev {
  float: left;
}
.paging .next {
  float: right;
}
.paging .next a,
.paging .prev a {
  display: flex;
  align-items: center;
  width: 170px;
  height: 40px;
}
.paging .prev a {
  justify-content: flex-end;
}
.paging .next a::before,
.paging .prev a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 75px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--skyblue);
  border-radius: 20px;
  content: "";
  transition: all 0.6s ease;
  z-index: 1;
}
.paging .next a::after,
.paging .prev a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 15px;
  background: url(img/common/arrow_bl.svg) no-repeat center / contain;
  content: "";
  transition: all 0.6s ease;
  z-index: 1;
}
.paging .next a::before {
  right: 0;
}
.paging .prev a::before {
  left: 0;
}
.paging .next a::after {
  right: 20px;
}
.paging .prev a::after {
  left: 20px;
  transform: scale(-1, 1);
}
.paging .next a:hover,
.paging .prev a:hover {
  background: var(--white);
  border-radius: 0;
  color: var(--skyblue);
}
.paging .next a:hover::before,
.paging .prev a:hover::before {
  background: var(--skyblue);
  border: 1px solid var(--white);
}
.paging .next a:hover::after,
.paging .prev a:hover::after {
  background: url(img/common/arrow_w.svg) no-repeat center / contain;
}
.pagination {
  position: relative;
  padding: 60px 0;
  border-top: 2px solid var(--black);
  text-align: center;
  font-family:
  'Noto Sans JP', sans-serif;
  width: 100%;
}
.pagination .nav-links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 200px;
  max-width: 1020px;
  width: 90%;
}
a.page-numbers,
.pagination .current {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  width: 30px;
  height: 30px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.pagination .current,
a.page-numbers:hover {
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  opacity: 1;
}
.dots {
  padding: 0 10px;
  font-weight: 700;
}
a.next,
a.prev {
  position: absolute;
  margin: 0;
  width: 170px;
  height: 40px;
}
a.next {
  justify-content: flex-start;
  right: 0;
}
a.prev {
  justify-content: flex-end;
  left: 0;
}
a.next::before,
a.prev::before {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 75px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--skyblue);
  border-radius: 20px;
  content: "";
  transition: all 0.6s ease;
  z-index: 1;
}
a.next::after,
a.prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 15px;
  background: url(img/common/arrow_bl.svg) no-repeat center / contain;
  content: "";
  transition: all 0.6s ease;
  z-index: 1;
}
a.next::before {
  right: 0;
}
a.prev::before {
  left: 0;
}
a.next::after {
  right: 20px;
}
a.prev::after {
  left: 20px;
  transform: scale(-1, 1);
}
a.next:hover,
a.prev:hover {
  background: var(--white);
  border-radius: 0;
  color: var(--skyblue);
}
a.next:hover::before,
a.prev:hover::before {
  background: var(--skyblue);
  border: 1px solid var(--white);
}
a.next:hover::after,
a.prev:hover::after {
  background: url(img/common/arrow_w.svg) no-repeat center / contain;
}
@media (max-width: 767px) {
  .paging {
    padding: 30px 0;
  }
  .paging .next,
  .paging .prev {
    font-size: 1.2rem;
  }
  .paging .next a,
  .paging .prev a {
    margin: 0;
    width: 100px;
    height: 30px;
  }
  .paging .next a::before,
  .paging .prev a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 30px;
  }
  .paging .next a::after,
  .paging .prev a::after {
    width: 10px;
    height: 11px;
  }
  .paging .next a::after {
    right: 15px;
  }
  .paging .prev a::after {
    left: 15px;
  }  .pagination {
    padding: 30px 0;
  }
  .pagination .nav-links {
    padding: 0 60px;
  }
  a.page-numbers,
  .pagination .current {
    margin: 0 5px;
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
  }
  a.next,
  a.prev {
    margin: 0;
    width: 50px;
    height: 30px;
    font-size: 0;
  }
  a.next::before,
  a.prev::before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 30px;
  }
  a.next::after,
  a.prev::after {
    width: 10px;
    height: 11px;
  }
  a.next::after {
    right: 15px;
  }
  a.prev::after {
    left: 15px;
  }
}

/* ctaArea
-------------------------------------------------------------- */
#ctaArea {
  border-top: 5px solid var(--black);
}
#ctaArea li {
  width: 50%;
}
#ctaArea li.wide {
  border-bottom: 5px solid var(--black);
  width: 100%;
}
#ctaArea li.line {
  border-right: 5px solid var(--black);
}
#ctaArea li a {
  padding: 40px;
}
#ctaArea li strong {
  line-height: 1.4;
  text-align: right;
}
#ctaArea li small {
  display: block;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  #ctaArea {
    border-top: 3px solid var(--black);
  }
  #ctaArea li {
    width: 100%;
  }
  #ctaArea li.wide {
    border-bottom: 3px solid var(--black);
  }
  #ctaArea li.line {
    border-bottom: 3px solid var(--black);
    border-right: none;
  }
  #ctaArea li a {
    padding: 20px;
    justify-content: space-between;
  }
  #ctaArea li strong {
    width: calc(100% - 55px);
  }
}
/* footer
-------------------------------------------------------------- */
.btnIg {
  margin: 0 0 50px;
  background: var(--black);
  text-align: center;
}
.btnIg a {
  padding: 20px;
}
.btnIg a img {
  display: inline-block;
}
footer .container {
  align-items: flex-start;
}
footer .flogo {
  position: relative;
  padding: 25px 0;
  border-radius: 0 50px 50px 0;
  background: var(--blue);
  width: 200px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.4;
}
footer .flogo::after {
  position: absolute;
  top: 0;
  left: calc((100vw - min(100vw, 1100px)) / -2);
  background: var(--blue);
  width: calc((100vw - min(100vw, 1100px)) / 2 + 100px);
  height: 100%;
  content: "";
  z-index: -1;
}
footer .infoArea {
  width: calc(100% - 300px);
}
footer p.tel {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--black);
  font-size: 1.8rem;
}
footer p.tel a {
  font-weight: 700;
}
footer .policy a {
  padding: 20px 0;
  justify-content: flex-start;
  max-width: 300px;
}
footer .policy strong {
  padding-right: 30px;
  font-size: 1.6rem;
  font-weight: 300;
}
footer .policy .arrow {
  padding-right: 15px;
  width: 56px;
  height: 30px;
}
footer .policy a:hover {
  background: transparent;
}
footer .policy a:hover strong {
  color: var(--skyblue)
}
footer .copy {
  position: relative;
  margin-top: 30px;
  padding: 15px 0;
  font-size: 1.4rem;
  text-align: right;
}
footer .copy::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  content: "";
}
footer .copy::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
  content: "";
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 1250px) {
  footer .flogo::after {
    left: -50%;
  }
}
@media (max-width: 767px) {
  .btnIg {
    margin: 0 0 30px;
  }
  .btnIg a {
    padding: 10px;
  }
  .btnIg img {
    width: 30px;
  }
  footer .flogo {
    padding: 15px;
  }
  footer .flogo img {
    width: 137px;
  }
  footer .infoArea {
    margin-top: 20px;
    width: 100%;
  }
  footer p.tel {
    font-size: 1.6rem;
  }
  footer p.tel a {
    display: block;
  }
  footer .policy strong {
    padding-right: 20px;
    font-size: 1.4rem;
  }
  footer .copy {
    margin-top: 20px;
    font-size: 1.2rem;
  }
  /*page-top*/
  #Pagetop {
    right: 10px;
    bottom: 30px;
    width: 40px;
  }
}

/* 404
-------------------------------------------------------------- */
.post-password-form {
  margin: 200px auto 100px;
  max-width: 1100px;
  width: 90%;
}
#errormsg {
  margin-bottom: 100px;
}
#errormsg p {
  margin-bottom: 30px;
  text-align: center;
}
#errormsg .btn a {
  margin: auto;
  max-width: 300px;
}
@media (max-width: 767px) {
  #errormsg {
    margin-bottom: 50px;
  }
  #errormsg p {
    margin-bottom: 20px;
    text-align: left;
  }
  #errormsg .btn a {
    max-width: 250px;
  }
}
