@charset "UTF-8";
/*---------------------------
body
----------------------------*/
@media (min-width: 768px) {
  body {
    min-width: 1100px;
  }
}
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
  background: url(../img/common/bg.jpg);
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  #wrap {
    /*tablet*/
    overflow: hidden;
  }
}
@media screen and (max-width: 640px) {
  #wrap {
    /*sp*/
    overflow: hidden;
  }
}

/*---------------------------
header
----------------------------*/
header {
  margin: 0px;
  padding: 0;
  font-size: 10px;
  text-align: left;
}
header .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  header .inner {
    display: block;
    padding: 0px;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  header .inner .logo {
    padding: 0.8rem 1rem;
  }
  header .inner .logo img {
    max-width: 70%;
  }
}
header .inner .sp_nav {
  display: none;
}
@media screen and (max-width: 767px) {
  header .inner .sp_nav {
    display: block;
    content: "";
    width: 35px;
    height: 40px;
    position: absolute;
    top: 14px;
    right: 10px;
  }
  header .inner .sp_nav span {
    width: 100%;
    height: 1px;
    background: #333;
    position: absolute;
    left: 0px;
  }
  header .inner .sp_nav span:nth-of-type(1) {
    top: 0px;
  }
  header .inner .sp_nav span:nth-of-type(2) {
    top: 12px;
  }
  header .inner .sp_nav span:nth-of-type(3) {
    top: 24px;
  }
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/*---------------------------
nav
-----------------------------*/
@media screen and (max-width: 767px) {
  nav {
    display: none;
  }
}
nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
}
@media screen and (max-width: 640px) {
  nav ul {
    /*sp*/
    padding: 0px;
    display: block;
    border-top: 1px solid #ccc;
  }
}
nav ul li {
  list-style: none;
  display: inline-block;
  padding: 0px;
  margin: 0px;
  letter-spacing: normal;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  nav ul li {
    width: 100%;
    display: block;
    margin-left: 0px;
  }
}
nav ul li a {
  width: 170px;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  text-align: center;
  display: block;
  background-color: #03a960;
  color: #fff !important;
  border-radius: 100px;
  background-repeat: no-repeat;
  background-position: top 50% left 15px;
  background-size: auto 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  nav ul li a {
    /*sp*/
    display: block;
    padding: 15px 25px;
    border-radius: 0px;
    border-top: 1px solid #fff;
    width: 100%;
  }
}
nav ul li a.nav_interview {
  background-image: url(../img/header_icon_interview.svg);
  background-size: auto 60%;
}
nav ul li a.nav_outline {
  background-image: url(../img/header_icon_outline.svg);
  background-size: auto 50%;
}
nav ul li a.nav_mail {
  background-image: url(../img/header_icon_mail.svg);
  background-size: auto 40%;
}

/*---------------------------
footer
---------------------------*/
footer {
  background-color: #48c75f;
}
footer .top {
  width: 100%;
  height: 29vw;
  background-image: url(../img/footer_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 10vw;
}
@media screen and (max-width: 767px) {
  footer .top {
    padding-top: 0rem;
    padding-bottom: 1rem;
  }
}
footer .top span {
  color: #03a960;
  font-size: 1.4vw;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  footer .top span {
    font-size: 1.1rem;
    padding-bottom: 2rem;
  }
}
footer .top span br {
  display: none;
}
@media screen and (max-width: 767px) {
  footer .top span br {
    display: block;
  }
}
footer .txt {
  color: #fff;
  padding-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  footer .txt {
    padding: 2rem;
    margin-bottom: 0;
  }
}
footer .txt span {
  display: block;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  footer .txt span {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
footer .row {
  max-width: 1000px;
  margin: auto;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 767px) {
  footer .row {
    max-width: 90%;
    grid-template-columns: 1fr;
    margin-bottom: 0px;
    grid-gap: 10px;
  }
}
footer .row .col {
  background-color: #fff;
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  footer .row .col {
    padding: 1rem;
  }
}
footer .row .col span {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  footer .row .col span {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}
footer .row .col p {
  height: 40px;
}
footer .row .col p a {
  background-repeat: no-repeat;
}
footer .row .col.tel p a {
  font-size: 2.4rem;
  display: block;
  text-decoration: none;
  color: #03a960;
  max-width: 80%;
  margin: auto;
  background-image: url(../img/footer_icon_tel.webp);
  background-size: auto 100%;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  footer .row .col.tel p a {
    font-size: 2rem;
    max-width: 100%;
    padding-left: 14%;
  }
}
footer .row .col.mail p a {
  background-color: #03a960;
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 1;
  padding: 15px 10px;
  border-radius: 100px;
  max-width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  footer .row .col.mail p a {
    max-width: 100%;
  }
}
footer .copy {
  color: #fff;
  padding: 2rem 0;
}
footer .copy p:nth-of-type(1) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  footer .copy p:nth-of-type(1) {
    margin-bottom: 1rem;
  }
}
footer .copy p:nth-of-type(2) {
  font-size: 0.6rem;
}
@media screen and (max-width: 767px) {
  footer .copy p:nth-of-type(2) {
    font-size: 0.4rem;
  }
}

.group_company {
  background-color: #fff;
}
.group_company .inner {
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .group_company .inner {
    padding: 1.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .group_company .inner img {
    max-width: 50%;
    height: auto;
  }
}
.group_company .inner p {
  font-size: 1.1rem;
  margin-top: 2rem;
  font-family: "YuMincho", "Yu Mincho", "游明朝体", serif;
}
@media screen and (max-width: 767px) {
  .group_company .inner p {
    font-size: 0.6rem;
    margin-top: 1rem;
  }
}

/*---------------------------
common
-----------------------------*/
* .inner {
  max-width: 1000px;
  margin: auto;
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  * .inner {
    /*769px~1000px(inner1000pxの場合)*/
    max-width: 100%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  * .inner {
    /*tablet*/
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  * .inner {
    /*sp*/
    max-width: 100%;
  }
}
* .inner.content {
  padding: 60px 0px;
}
@media screen and (max-width: 640px) {
  * .inner.content {
    /*sp*/
    padding: 30px 0px;
    width: 94%;
  }
}

* {
  box-sizing: border-box;
}

.content_title {
  width: 100%;
  background-color: #03a960;
  text-align: center;
}
.content_title .inner {
  padding: 60px 0px;
}
@media screen and (max-width: 640px) {
  .content_title .inner {
    /*sp*/
    padding: 30px 0px;
  }
}
.content_title .inner h1 {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 10px;
}
@media screen and (max-width: 640px) {
  .content_title .inner h1 {
    /*sp*/
    font-size: 1.1rem;
    text-align: center;
  }
}

.pagetop {
  position: fixed;
  border-radius: 100px;
  background-image: url(../img/pagetop_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  color: #fff;
  content: "";
  border-radius: 100px;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  display: block;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 40px;
    height: 40px;
  }
}