@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

body {
  font-size: 1.6rem;
  font-family: "Outfit";
  color: #333;
  margin: 0;
}

a {
  text-decoration: none;
  color: #333;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

p {
  margin: 0;
}

h3 {
  margin: 0;
}

li {
  list-style: none;
}

.section-title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-top: 9px;
  line-height: 1.5;
}

.section-subtitle {
  text-align: center;
  color: #4282b8;
  font-size: 1.2rem;
}

.wave-svg-inline {
  background-color: #4282b8;
  width: 100%;
  height: 124px;
  position: relative;
}
.wave-svg-inline.green {
  background-color: #fff;
}
.wave-svg-inline.green svg {
  fill: #4282b8;
}

svg {
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  fill: #fff; /* 色を変更 */
}

/*-------------------------------------------
.loading
-------------------------------------------*/
.loading {
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
}

.loading img {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*-------------------------------------------
.header
-------------------------------------------*/
.header {
  background: #fff;
  z-index: 10;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.header .logo-box {
  display: flex;
  align-items: center;
}
.header .logo-box .title-box {
  margin-left: 14px;
}
.header .logo-box .title-box h1 {
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.header .logo-box .title-box p {
  color: #4282b8;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
}
.header .logo-box .logo img {
  vertical-align: middle;
}
.header-nav ul {
  display: flex;
  align-items: center;
}
.header-nav ul li {
  margin-right: 29px;
}
.header-nav ul li a {
  color: #333;
  font-size: 1.2rem;
}
.header-nav ul li:nth-child(4) {
  margin-right: 12px;
}
.header-nav ul .entry {
  text-align: center;
  background: #4282B8;
  width: 180px;
  height: 50px;
  border-radius: 30px;
  margin-right: 0;
}
.header-nav ul .entry a {
  color: #fff;
  line-height: 50px;
  display: block;
}
.header-nav ul .entry:hover {
  opacity: 0.7;
  transition: 0.1s;
}
.header .drawer-toggle {
  display: none;
}

/*-------------------------------------------
.modal
-------------------------------------------*/
#modal-1 {
  display: none;
}

#modal-1.is-open {
  display: block;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-container {
  background-color: #fff;
  padding: 30px;
  margin-right: 20px;
  margin-left: 20px;
  width: 500px;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  padding: 40px 20px 96px;
}
.modal-container h2 {
  font-size: 2.4rem;
  margin-bottom: 22px;
}
.modal-container .modal-form {
  text-align: left;
}
.modal-container .modal-form .label {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 11px;
  line-height: 1.5;
  color: #606266;
}
.modal-container .modal-form .text-box {
  width: 100%;
  border: 1px solid #DCDFE6;
  padding: 12px 14px;
  box-sizing: border-box;
}
.modal-container .modal-form .text-box::-moz-placeholder {
  color: #C1C1C1;
  font-size: 1.6rem;
}
.modal-container .modal-form .text-box::placeholder {
  color: #C1C1C1;
  font-size: 1.6rem;
}
.modal-container .modal-form:first-child {
  margin-bottom: 29px;
}
.modal-container .sign-in {
  background: #1E5099;
  color: #fff;
  font-size: 1.4rem;
  margin-top: 34px;
  padding: 8px 30px;
  font-weight: bold;
  border-radius: 4px;
  line-height: 1.5;
  border: none;
}
.modal-container .sign-in:hover {
  opacity: 0.7;
  transition: 0.1s;
}
.modal-container .new {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #448AFF;
  font-size: 1.4rem;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
}

.modal-btn {
  text-align: center;
  background: #8DB4D4;
  width: 180px;
  height: 50px;
  border-radius: 30px;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-family: "Outfit";
}
.modal-btn:hover {
  opacity: 0.7;
  transition: 0.1s;
}

/*-------------------------------------------
.fv
-------------------------------------------*/
.fv {
  margin-top: 100px;
  width: 100%;
}
.fv-wrapper {
  padding-top: 80px;
  position: relative;
}
.fv-wrapper .job-title-wrapper {
  padding-top: 120px;
  max-width: 1240px;
  text-align: left;
  margin: 0 auto;
  padding: 0 4vw;
  margin-bottom: 59px;
}
.fv-wrapper .job-title-wrapper h2 {
  font-size: clamp(4rem, 2.873rem + 4.81vw, 7.2rem);
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.fv-wrapper .job-title-wrapper h3 {
  font-weight: normal;
  font-size: clamp(1.6rem, 1.459rem + 0.6vw, 2rem);
  letter-spacing: 2px;
  padding-left: 8px;
}
.fv-wrapper .page-title-wrapper {
  max-width: 1240px;
  height: 434px;
  margin: 0 auto;
  background: url("../img/many-papers.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}
.fv-wrapper .page-title-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.fv-wrapper .page-title-wrapper .page-title {
  margin: 0;
  position: absolute;
  top: 152px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(2.2rem, 1.848rem + 1.5vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  width: 100%;
  letter-spacing: 2px;
}
.fv-wrapper .page-title-wrapper .page-title span {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #8DB4D4;
}
.fv-wrapper .color-bg {
  margin-top: -229px;
  padding: 313px 0 0;
  width: 100%;
  text-align: center;
  background: #fff;
}

/*-------------------------------------------
.job-requirements
-------------------------------------------*/
.job-requirements {
  padding: 0 4vw 177px;
}
.job-requirements h2 {
  display: none;
  font-size: clamp(2.4rem, 2.118rem + 1.2vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  line-height: 2;
  margin-bottom: 75px;
}
.job-requirements-wrapper {
  max-width: 1122px;
  margin: 0 auto;
}
.job-requirements-wrapper .job-requirements-list {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #E7E7E7;
}
.job-requirements-wrapper .job-requirements-list .job-requirements-title {
  flex-basis: 18%;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  padding-left: 40px;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 1px solid #E7E7E7;
}
.job-requirements-wrapper .job-requirements-list .job-requirements-title:last-of-type {
  border: none;
}
.job-requirements-wrapper .job-requirements-list .job-requirements-content {
  flex-basis: 82%;
  padding: 40px;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 2;
  border-bottom: 1px solid #E7E7E7;
}
.job-requirements-wrapper .job-requirements-list .job-requirements-content .bold {
  font-weight: bold;
}
.job-requirements-wrapper .job-requirements-list .job-requirements-content:last-child {
  border: none;
}

/*-------------------------------------------
.recruit
-------------------------------------------*/
.recruit {
  background: linear-gradient(to bottom, rgba(66, 130, 184, 0.8980392157), rgba(141, 180, 212, 0.8980392157)), url(../img/photo-1507679799987-c73779587ccf.jpeg);
  background-size: cover;
  opacity: 0.9;
  text-align: center;
  padding: 120px 4vw 100px;
}
.recruit-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
.recruit-inner .recruit-lead {
  color: #fff;
  font-size: clamp(2rem, 1.577rem + 1.8vw, 3.2rem);
  font-weight: bold;
  margin-bottom: 29px;
  font-family: "Zen Kaku Gothic New";
}
.recruit-inner p {
  font-size: 1.4rem;
  line-height: 2;
  color: #fff;
  font-weight: normal;
}
.recruit-inner .button {
  font-family: "Outfit";
  position: absolute;
  bottom: 0;
  right: 0;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.5px;
  padding: 12px 48px;
}
.recruit-inner .button:hover {
  opacity: 0.7;
  transition: 0.1s;
}

/*-------------------------------------------
.footer
-------------------------------------------*/
.footer {
  position: relative;
  background: #F5F5F7;
  padding: 49px 0 96px;
}
.footer-inner {
  text-align: center;
  padding: 0 20px;
  margin: 0 auto;
  align-items: center;
}
.footer-inner .footer-logo {
  margin: 0 auto 16px;
  width: 180px;
}
.footer-inner .footer-logo img {
  width: 100%;
}
.footer-inner p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 1px;
}
.footer-inner .number-wrapper {
  display: flex;
  margin: 40px auto 40px;
  justify-content: center;
}
.footer-inner .number-wrapper .tel-box {
  padding: 8px 40px;
  border: 2px solid #4282b8;
  margin-right: 40px;
}
.footer-inner .number-wrapper .tel-box p {
  color: #4282b8;
  line-height: 1.9;
  font-size: clamp(1.2rem, 1.059rem + 0.6vw, 1.6rem);
}
.footer-inner .number-wrapper .fax-box {
  padding: 8px 40px;
  border: 2px solid #4282b8;
}
.footer-inner .number-wrapper .fax-box p {
  color: #4282b8;
  line-height: 1.9;
  font-size: clamp(1.2rem, 1.059rem + 0.6vw, 1.6rem);
}
.footer-inner .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.footer-inner .icon-wrapper .fa-blue {
  color: #4282b8;
  margin-right: 8px;
}
.footer-inner .icon-wrapper .fa-facebook {
  margin-left: 40px;
}
.footer-inner .icon-wrapper p {
  color: #4282b8;
  font-size: 1.6rem;
}
.footer-inner small {
  font-size: 0.9rem;
}
.footer .to-top {
  position: absolute;
  left: 54px;
  bottom: 72px;
  width: 50px;
}
.footer .to-top img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  /*-------------------------------------------
  .header-sp
  -------------------------------------------*/
  .header {
    background: #fff;
    height: 60px;
  }
  .header .logo-box .logo {
    width: 31px;
  }
  .header .logo-box .title-box h1 {
    font-size: 1.4rem;
  }
  .header .logo-box .title-box p {
    font-size: 1rem;
  }
  .header .header-nav {
    visibility: hidden;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 3;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .header-nav ul {
    flex-direction: column;
  }
  .header .header-nav ul li {
    margin-right: 0;
    line-height: normal;
    margin-bottom: 36px;
  }
  .header .header-nav ul li a {
    color: #333;
  }
  .header .header-nav ul li:nth-child(4) {
    margin-right: 0;
  }
  .header .header-nav ul .entry a {
    color: #fff;
  }
  .header .header-nav .nav {
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
  }
  .header .header-nav .nav .burger-logo {
    width: 72px;
    height: 72px;
    display: block;
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header .header-nav .nav .header-logo {
    top: 132px;
  }
  .header .header-nav .nav .nav-list {
    display: none;
  }
  .header .header-nav .nav .sp-nav-list {
    display: block;
    position: absolute;
    top: 369px;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .header .header-nav .nav .sp-nav-list .sp-nav-item {
    margin-right: 0;
    margin-bottom: 16px;
  }
  .header .header-nav .nav .sp-nav-list .sp-nav-item a {
    font-weight: bold;
  }
  .header .header-nav.fade {
    visibility: visible;
    opacity: 0.9;
  }
  .header .drawer-toggle {
    z-index: 200;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    width: 48px;
    height: 48px;
  }
  .header .drawer-toggle span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #333;
    vertical-align: top;
  }
  .header .drawer-toggle span:nth-child(1) {
    top: 18px;
  }
  .header .drawer-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header .drawer-toggle span:nth-child(3) {
    bottom: 18px;
  }
  .header .drawer-toggle.close span {
    top: 24px;
    left: 15px;
    width: 18px;
    margin: 0;
  }
  .header .drawer-toggle.close span:first-child {
    transform: rotate(45deg);
  }
  .header .drawer-toggle.close span:nth-child(2) {
    display: none;
  }
  .header .drawer-toggle.close span:last-child {
    transform: rotate(-45deg);
  }
  .noscroll {
    overflow: hidden;
  }
  /*-------------------------------------------
  .fv-sp
  -------------------------------------------*/
  .fv-wrapper .page-title-wrapper {
    background-position: bottom;
  }
  .fv-wrapper .color-bg {
    padding: 313px 4vw 0;
    box-sizing: border-box;
  }
  /*-------------------------------------------
  .job-requirements-sp
  -------------------------------------------*/
  .job-requirements {
    padding-bottom: 80px;
  }
  .job-requirements-wrapper .job-requirements-list {
    display: block;
  }
  .job-requirements-wrapper .job-requirements-list .job-requirements-title {
    display: block;
    text-align: center;
    padding-left: 0;
    padding: 16px 0;
  }
  /*-------------------------------------------
  .recruit-sp
  -------------------------------------------*/
  .recruit-inner {
    padding: 0 4vw;
  }
  .recruit-inner .recruit-lead {
    line-height: 1.5;
  }
  .recruit-inner .button {
    position: relative;
    margin-top: 32px;
  }
  /*-------------------------------------------
  .footer-sp
  -------------------------------------------*/
  .footer-inner {
    display: block;
    text-align: center;
  }
  .footer-inner .number-wrapper {
    display: block;
  }
  .footer-inner .number-wrapper .tel-box {
    margin: 0 auto 16px;
    width: 80%;
  }
  .footer-inner .number-wrapper .fax-box {
    margin: 0 auto;
    width: 80%;
  }
  .footer-inner p {
    font-size: 1.2rem;
  }
  .footer .to-top {
    left: 16px;
    bottom: 24px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  /*-------------------------------------------
  .header-tb
  -------------------------------------------*/
  .header {
    padding: 0 16px;
  }
  .header .logo-box .logo {
    width: 31px;
  }
  .header .logo-box .title-box h1 {
    font-size: 1.3rem;
  }
  .header .logo-box .title-box p {
    font-size: 1rem;
  }
  .header .header-nav ul li {
    margin-right: 16px;
  }
  .header .header-nav ul li a {
    font-size: 1.1rem;
  }
  .header .header-nav ul .modal-btn {
    width: 160px;
    height: 45px;
  }
  .header .header-nav ul .entry {
    width: 160px;
    height: 45px;
    margin-right: 0;
  }
  .header .header-nav ul .entry a {
    line-height: 45px;
  }
  /*-------------------------------------------
  .fv-sp
  -------------------------------------------*/
  .fv-wrapper .color-bg {
    padding: 313px 4vw 83px;
    box-sizing: border-box;
  }
}
/*# sourceMappingURL=style.css.map */