@charset "utf-8";
/*
Theme Name: nisshintokusyu
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.7rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
:root {
  --white: #fff;
  --black: #242424;
  --green: #66b821;
  --lightgreen: #e8fed8;
  --gray: #828282;
  --darkgray: #393939;
  --lightgray: #f6f4f4;
  --darkblue: #0c3086;
  --blue: #326dc8;
  --blue2: #004ea2;
  --blue3: #006aed;
  --lightblue: #e4f7ff;
  --red: #e31f26;
  --yellow: #e4d12a;
}
.noto {
  font-family: 'Noto Sans JP', sans-serif;
}
main {
  position: relative;
  padding-bottom: 120px;
  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: 1100px;
  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.5rem;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
  main {
    padding-bottom: 60px;
  }
}

/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.6s ease;
}
header.on {
  background: var(--white);
}
header .logo a {
  align-items: flex-end;
  width: 225px;
}
header a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
.hamburger {
  display: none;
}
header .headWrap {
  position: relative;
  align-items: center;
  padding-left: 20px;
}
header .global-nav {
  width: calc(100% - 225px);
}
header .global-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .global-nav li {
  position: relative;
}
header .global-nav li a {
  padding: 18px;
}
header .global-nav li.recruit a {
  margin-left: 60px;
  padding: 0;
  justify-content: center;
  align-items: center;
  background: var(--green);
  color: var(--white);
  width: 140px;
  height: 80px;
}
header .global-nav li.contact a {
  padding: 0;
  justify-content: center;
  align-items: center;
  background: var(--darkblue);
  color: var(--white);
  width: 140px;
  height: 80px;
}
@media (max-width: 1000px) {
  header .logo a {
    width: 180px;
  }
  header a {
    font-size: 1.4rem;
  }
  header .global-nav {
    width: calc(100% - 180px);
  }
  header .global-nav li a {
    padding: 12px;
  }
  header .global-nav li.recruit a {
    margin-left: 30px;
    width: 120px;
  }
  header .global-nav li.contact a {
    width: 120px;
  }
}
@media (max-width: 767px) {
  header .headWrap {
    padding: 14px 15px;
    margin: 0;
    width: calc(100% - 60px);
  }
  header .logo a img {
    width: 170px;
  }
  header a {
    color: var(--white);
  }
  header .global-nav {
    position: fixed;
    right: 0;
    top: 60px;
    padding: 50px 5% 100px;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, rgb(1, 94, 234) 0%, rgb(0, 192, 250) 100%);
    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(--darkblue);
    font-size: 1rem;
    content: 'MENU';
  }
  header .global-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  header .global-nav li {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  header .global-nav li.line {
    border: none;
  }
  header .global-nav li a {
    padding: 15px;
    text-align: center;
  }
  header .global-nav li.recruit,
  header .global-nav li.contact {
    margin-top: 10px;
    border: none;
    width: 50%;
  }
  header .global-nav li.recruit a {
    margin: 0;
    width: 100%;
  }
  header .global-nav li.contact a {
    width: 100%;
  }
  .hamburger__line {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 34px;
    height: 3px;
    background-color: var(--darkblue);
    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
-------------------------------------------------------------- */
.bgDotBlue {
  background: url(img/common/blue_bg.png) repeat;
}
.bgGradation {
  background: linear-gradient( 45deg, #eaffd8 0%, #c4eeff 100%);
}
.btn a {
  position: relative;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 30px;
  background: url(img/common/arrow_bg.png) no-repeat center / cover;
  width: 235px;
  height: 81px;
  color: var(--blue);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s ease;
}
.btn a::after {
  position: absolute;
  top: 0;
  right: 35px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 100%;
  background: url(img/common/arrow_bl.svg) no-repeat center / contain;
  content: '';
}
.btn a:hover {
  opacity: 1;
  background: url(img/common/arrow_bg_hover.png) no-repeat center / cover;
}
.btnGray a {
  position: relative;
  display: block;
  margin: 30px auto 40px;
  padding: 15px 20px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--gray);
  color: var(--gray);
  width: 290px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}
.btnGray a::before {
  position: absolute;
  top: 0;
  right: 20px;
  width: 12px;
  height: 100%;
  background: url(img/common/arrow_gr.png) no-repeat center / contain;
  content: '';
}
@media (max-width: 767px) {
  .btn a {
    font-size: 1.4rem;
  }
  .btnGray a {
    margin: 20px auto 30px;
    width: 200px;
  }
  .btnGray a::before {
    right: 15px;
    width: 10px;
  }
}
/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  padding: 70px 0 30px;
  text-align: center;
}
footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 10px;
  background: var(--green);
  content: '';
}
footer::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 10px;
  background: var(--darkblue);
  content: '';
}
footer .flogo {
  padding-bottom: 20px;
}
footer p {
  font-size: 1.2rem;
}
footer p.tel {
  padding-top: 10px;
  color: var(--darkblue);
  font-size: 1.4rem;
  font-weight: 700;
}
footer .copy {
  font-size: 1.2rem;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 50px;
  right: 3%;
  width: 50px;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 767px) {
  footer {
    padding: 50px 0 20px;
  }
  footer .flogo img {
    width: 250px;
  }
  footer p {
    font-size: 1.2rem;
  }
  footer p.tel {
    font-size: 1.2rem;
  }
  /*page-top*/
  #Pagetop {
    width: 30px;
  }
}

/* 404
-------------------------------------------------------------- */
.post-password-form {
  margin: 200px auto 100px;
  max-width: 1100px;
  width: 90%;
}
#errormsg p {
  margin-bottom: 30px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
}
#errormsg .btn a {
  margin: auto;
  text-align: left;
}
@media (max-width: 767px) {
  #errormsg p {
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: left;
  }
}
