@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: clamp(1.4rem, 1.33rem + 0.3vw, 1.6rem);
  font-family: "Outfit";
  color: #000;
}

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

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

li {
  list-style: none;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  display: inline-block;
  padding-left: 20px;
  border-left: 4px solid #4282b8;
  letter-spacing: 2px;
}

.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; /* 色を変更 */
}

.br-sp {
  display: none;
}

/*-------------------------------------------
.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: transparent;
  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: #fff;
  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;
}

.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  background: #fff;
  -webkit-animation: slideDown 0.3s ease-in-out;
          animation: slideDown 0.3s ease-in-out;
}
.header--sticky .header-nav ul li a {
  color: #333;
}
.header--sticky .header-nav ul .entry a {
  color: #fff;
}

@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
/*-------------------------------------------
.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.9;
  transition: 0.1s;
}

/*-------------------------------------------
.fv
-------------------------------------------*/
@-webkit-keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.fv {
  position: relative;
  height: 818px;
  padding-top: 24px;
  padding-right: 24px;
}
.fv .slide {
  position: relative;
  width: 89%;
  height: 730px;
  overflow: hidden;
  margin-left: auto;
  z-index: 2;
}
.fv .slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slider-1 24s linear infinite;
          animation: slider-1 24s linear infinite;
}
.fv .slide-image:nth-child(1) {
  background-image: url("../img/photo-1507679799987-c73779587ccf.jpeg");
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.fv .slide-image:nth-child(2) {
  background-image: url("../img/photo-1548601512-d0f4b719531b.jpeg");
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.fv .slide-image:nth-child(3) {
  background-image: url("../img/photo-1491336477066-31156b5e4f35.jpeg");
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}
.fv-message {
  position: absolute;
  z-index: 3;
  bottom: 200px;
  left: 148px;
  width: 260px;
}
.fv-message .white-box {
  background: #fff;
  width: 55%;
  height: 240px;
}
.fv-message img {
  width: 100%;
}
.fv-bg {
  /*background: linear-gradient(to bottom, #4282B8, #8DB4D4);*/
  background: #fff;
  height: 575px;
  width: 87%;
  position: absolute;
  bottom: 0;
}

/*-------------------------------------------
.mission-vision
-------------------------------------------*/
.mission-vision {
  padding: 78px 0 266px;
  position: relative;
}
.mission-vision-inner {
  max-width: 960px;
  margin: 0 auto;
}
.mission-vision-inner .mission-vision-content {
  padding-top: 106px;
}
.mission-vision-inner .mission-vision-content .mission {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 106px;
  padding-left: 20px;
}
.mission-vision-inner .mission-vision-content .mission-title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 16px;
  border-bottom: 1px solid #4282B8;
  letter-spacing: 3px;
}
.mission-vision-inner .mission-vision-content .mission-lead {
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.5;
  margin: 25px 0;
}
.mission-vision-inner .mission-vision-content .mission p {
  line-height: 2.6;
}
.mission-vision-inner .mission-vision-content .vision {
  max-width: 700px;
  margin-left: auto;
  text-align: right;
  padding-right: 43px;
}
.mission-vision-inner .mission-vision-content .vision-title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 16px;
  border-bottom: 1px solid #4282B8;
  letter-spacing: 3px;
}
.mission-vision-inner .mission-vision-content .vision-lead {
  font-size: 2.2rem;
  font-weight: normal;
  line-height: 1.5;
  margin: 25px 0;
}
.mission-vision-inner .mission-vision-content .vision p {
  line-height: 2.4;
}
.mission-vision-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.mission-vision-bg img {
  width: 100%;
}

/*-------------------------------------------
.message
-------------------------------------------*/
.message {
  padding-top: 78px;
}
.message .section-title-wrapper {
  max-width: 960px;
  text-align: left;
  margin: 0 auto;
}
.message .section-title-wrapper .section-title {
  margin-bottom: 64px;
}
.message-wrapper {
  background-image: url(../img/ceo-message.png);
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  background-position: bottom;
}
.message-wrapper .message-inner {
  max-width: 960px;
  margin: 0 auto;
}
.message-wrapper .message-inner .message-sp-img {
  display: none;
}
.message-wrapper .message-inner .message-content {
  padding: 64px 0 80px;
  display: block;
  max-width: 608px;
}
.message-wrapper .message-inner .message-content .message-lead {
  font-size: clamp(2rem, 1.859rem + 0.6vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 36px;
  line-height: 1.5;
}
.message-wrapper .message-inner .message-content p {
  line-height: 2.3;
  margin-right: 58px;
}
.message-wrapper .message-inner .ceo-name {
  max-width: 298px;
  position: absolute;
  bottom: 55px;
  right: 0;
}

/*-------------------------------------------
.job-list
-------------------------------------------*/
.job-list {
  padding: 80px 0 97px;
  position: relative;
  text-align: center;
}
.job-list .section-title-wrapper {
  max-width: 960px;
  text-align: left;
  margin: 0 auto;
}
.job-list .section-title-wrapper .section-title {
  margin-bottom: 43px;
}
.job-list-inner {
  position: relative;
}
.job-list-inner .job-list-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 87%;
  height: 100%;
  background: #F9F9F9;
}
.job-list-inner .job-list-items {
  background: #F9F9F9;
  margin: 0 auto;
  margin-top: 80px;
  padding: 58px 58px 216px;
  max-width: 1080px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.job-list-inner .job-list-items .job-list-item {
  text-align: left;
  position: relative;
}
.job-list-inner .job-list-items .job-list-item:nth-child(-n+2) {
  margin-bottom: 133px;
}
.job-list-inner .job-list-items .job-list-item img:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.job-list-inner .job-list-items .job-list-item-box {
  position: absolute;
  bottom: -45px;
  left: 20px;
}
.job-list-inner .job-list-items .job-list-item-box .item-title {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: normal;
  display: inline-block;
  background: #333333;
  padding: 4px 17px;
}
.job-list-inner .job-list-items .job-list-item-box .item-content {
  display: flex;
  position: relative;
  align-items: center;
  width: 431px;
  padding: 0 109px 0 17px;
  box-sizing: border-box;
  height: 99px;
  background: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
}
.job-list-inner .job-list-items .job-list-item-box .item-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.job-list-inner .job-list-items .job-list-item-box .item-content .more-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
.job-list-inner .job-list-items .job-list-item-box .item-content .more-icon img {
  width: 100%;
}
.job-list-inner .job-list-items .job-list-item-box .item-content .more-icon:hover {
  opacity: 0.8;
  transition: 0.3s;
}

/*-------------------------------------------
.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 (min-width: 1441px) {
  .message-wrapper {
    background-position: center;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1439px) {
  .fv-message {
    left: 100px;
  }
}
@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 {
    height: 780px;
  }
  .fv-message {
    width: 230px;
    left: 80px;
  }
  .mission-vision-inner {
    padding: 0 4vw;
  }
  .message .section-title-wrapper {
    padding: 0 4vw;
  }
  .job-list .section-title-wrapper {
    padding: 0 4vw;
  }
  /*-------------------------------------------
  .message-tb
  -------------------------------------------*/
  .message-wrapper {
    background-position: 70%;
    padding: 0 4vw;
  }
  .message-wrapper .message-inner .message-lead {
    line-height: 1.5;
  }
  .message-wrapper .message-inner .message-content {
    max-width: 540px;
  }
  .message-wrapper .message-inner .message-content p {
    font-size: 1.4rem;
  }
  .message-wrapper .message-inner .ceo-name {
    width: 240px;
  }
  /*-------------------------------------------
  .job-list-tb
  -------------------------------------------*/
  .job-list-inner .job-list-items {
    padding: 61px 4vw 160px;
    justify-content: space-around;
  }
  .job-list-inner .job-list-items .job-list-item {
    width: 320px;
  }
  .job-list-inner .job-list-items .job-list-item-box .item-content {
    width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
  /*-------------------------------------------
  .header-sp
  -------------------------------------------*/
  .header {
    background: #fff;
    height: 60px;
    line-height: 60px;
  }
  .header .logo-box .logo {
    width: 31px;
  }
  .header .logo-box .logo img {
    vertical-align: middle;
  }
  .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 .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 {
    height: 607px;
    padding-top: 74px;
  }
  .fv-message {
    bottom: 96px;
    left: 32px;
    width: 180px;
  }
  .fv .slide {
    height: 545px;
  }
  .fv-bg {
    height: 522px;
  }
  /*-------------------------------------------
  .mission-visiont-sp
  -------------------------------------------*/
  .mission-vision {
    padding: 84px 0 120px;
  }
  .mission-vision-inner {
    padding: 0 4vw;
  }
  .mission-vision-inner .mission-vision-content {
    padding-top: 64px;
  }
  .mission-vision-inner .mission-vision-content .mission {
    padding: 0;
    margin-bottom: 64px;
  }
  .mission-vision-inner .mission-vision-content .mission-title {
    width: 100px;
  }
  .mission-vision-inner .mission-vision-content .mission-lead {
    font-size: clamp(1.8rem, 1.589rem + 0.9vw, 2.4rem);
  }
  .mission-vision-inner .mission-vision-content .vision {
    text-align: left;
    padding: 0;
  }
  .mission-vision-inner .mission-vision-content .vision-title {
    width: 100px;
  }
  .mission-vision-inner .mission-vision-content .vision-lead {
    font-size: clamp(1.8rem, 1.589rem + 0.9vw, 2.4rem);
  }
  /*-------------------------------------------
  .message-sp
  -------------------------------------------*/
  .message .section-title-wrapper {
    padding: 0 4vw;
  }
  .message-wrapper {
    background-image: none;
  }
  .message-wrapper .message-inner {
    padding: 0 4vw;
    position: relative;
  }
  .message-wrapper .message-inner .message-sp-img {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .message-wrapper .message-inner .message-sp-img img {
    width: 100%;
  }
  .message-wrapper .message-inner .message-content {
    padding-top: 200px;
  }
  .message-wrapper .message-inner .message-content .message-lead {
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .message-wrapper .message-inner .message-content p {
    margin: 0;
  }
  .message-wrapper .message-inner .ceo-name {
    top: 48px;
    left: 0;
    width: 50%;
  }
  /*-------------------------------------------
  .job-list-sp
  -------------------------------------------*/
  .job-list .section-title-wrapper {
    padding: 0 4vw;
  }
  .job-list p {
    padding: 0 4vw;
    line-height: 1.5;
  }
  .job-list-inner {
    margin: 0;
  }
  .job-list-inner .job-list-bg {
    display: none;
  }
  .job-list-inner .job-list-items {
    padding: 216px 4vw 120px;
    margin-top: 40px;
    justify-content: center;
  }
  .job-list-inner .job-list-items .job-list-item:nth-child(-n+3) {
    bottom: 133px;
  }
  .job-list-inner .job-list-items .job-list-item .job-list-item-box .item-content {
    width: 100%;
  }
  /*-------------------------------------------
  .recruit-sp
  -------------------------------------------*/
  .recruit-inner {
    padding: 0 4vw;
  }
  .recruit-inner .recruit-lead {
    line-height: 1.5;
  }
  .recruit-inner .button {
    margin-top: 32px;
    position: relative;
  }
  /*-------------------------------------------
  .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 (max-width: 375px) {
  .fv .main-copy p {
    font-size: 2.4rem;
  }
}
/*# sourceMappingURL=style.css.map */