@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");

/* -------------------------------------------------------
  initialize
   ------------------------------------------------------- */

body, header, footer, nav, section, div, dl, dt, dd, ol, ul, li, p, figure, blockquote, h1, h2, h3, h4, h5, h6, img {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: sans-serif;
  color: #000;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1;
}

h1, h2, h3, h4, h5, h6, address {
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: 100%;
}

dl, ol, ul {
  list-style: none;
}

a {
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: 100%;
  text-decoration: none;
  outline: none;
}

a:focus {
  overflow: hidden;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background-color: transparent;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

/* -------------------------------------------------------
  base
   ------------------------------------------------------- */

body {
  color: #3d4133;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: 'Noto Sans JP', sans-serif;
}
@media only screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4, h5, h6, address {
  line-height: 1.4;
}

a {
  color: #3d4133;
}
a:hover {
  text-decoration: underline;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 751px) {
  a img {
    transition: opacity .2s;
  }
  a:hover img {
    opacity: .8;
  }
}

/* -------------------------------------------------------
  common
   ------------------------------------------------------- */


/* -------------------------------------------------------
  header
   ------------------------------------------------------- */

.header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  border-bottom: solid 1px #a7dd1a;
  background: url(../img/wave-1.png) center top repeat-x #fff;
}

@media only screen and (min-width: 751px) {
  .header-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo-wrapper {
    flex-basis: 326px;
  }
  .header-logo {
    padding-top: 16px;
  }
  .gnav-wrapper {
    flex-basis: calc(100% - (326px + 30px));
  }
  .gnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .gnav-form {
    margin-left: 1em;
  }
  .gnav a {
    display: block;
    font-size: 1.9rem;
    padding: .8em 1em;
  }
  .gnav-form-link {
    background-color: #aad92e;
    border-radius: .8em;
    color: #fff;
    transition: opacity .2s;
  }
  .gnav-form-link:hover {
    opacity: .8;
  }
  .hamburger {
    display: none;
  }
}
@media only screen and (min-width: 751px) and (max-width: 1330px) {
  .header-logo-wrapper {
    flex-basis: 300px;
  }
  .gnav-wrapper {
    flex-basis: calc(100% - (300px + 30px));
    margin-left: 0;
  }
  .gnav a {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 751px) and (max-width: 870px) {
  .header-logo-wrapper {
    flex-basis: 250px;
  }
  .gnav-wrapper {
    flex-basis: calc(100% - (250px + 30px));
  }
  .gnav a {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 750px) {
  .header {
    height: 70px;
  }
  .header-inner {
    padding: 0 3%;
    height: 100%;
  }
  .header-logo {
    max-width: 220px;
    padding-top: 24px;
  }
  .gnav-wrapper {
    position: fixed;
    z-index: 9;
    top: 70px;
    right: -100%;
    width: 100%;
    background-color: #fff;
    border-bottom: solid 1px #a7dd1a;
    transition: all .2s;
  }
  .gnav-wrapper.-opened {
    right: 0;
  }
  .gnav {
    padding: 4% 8% 6%;
  }
  .gnav-form {
    margin-top: 1em;
  }
  .gnav a {
    display: block;
    text-align: center;
    font-size: 1.9rem;
    padding: 1em 0;
  }
  .gnav-form-link {
    background-color: #aad92e;
    border-radius: .8em;
    color: #fff;
  }
  .hamburger {
    display: block;
    position: fixed;
    z-index: 11;
    width: 30px;
    height: 14px;
    right: 3%;
    top: 32px;
    cursor: pointer;
    transition: all .2s;
  }
  .hamburger p {
    position: relative;
    padding-top: 5px;
  }
  .hamburger-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: transparent;
  }
  .hamburger-icon::before,
  .hamburger-icon::after {
    position: absolute;
    display: block;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    transition: all 0.3s;
    background-color: #9dd900;
  }
  .hamburger-icon::before {
    top: -5px;
  }
  .hamburger-icon::after {
    top: 5px;
  }
  .hamburger.-opened .hamburger-icon {
    background-color: transparent;
  }
  .hamburger.-opened .hamburger-icon::before {
    transform: rotate(36deg);
    top: 0;
  }
  .hamburger.-opened .hamburger-icon::after {
    transform: rotate(-36deg);
    top: 0;
  }
}

/* -------------------------------------------------------
  front
   ------------------------------------------------------- */

.front-page-wrapper {
  padding-top: 120px;
}
.front-page {
  position: relative;
  max-width: 1810px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .front-page-wrapper {
    padding-top: 70px;
  }
  .front-page-inner {
    padding: 0;
  }
}

.front-content__catch {
  position: relative;
}
.front-page .mainv-sp {
  display: block;
  position: relative;
}
.front-content__catch__inner {
  position: absolute;
  z-index: 1;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px #aad92e;
}
.front-content__catch__inner .content {
  padding: 1.6em 4em;
}
.front-content__catch__inner h2 {
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 2;
  white-space: nowrap;
}
.front-content__catch__inner h2 strong {
  color: #81b300;
}
.front-content__information {
  max-width: 1340px;
  margin: 60px auto 0;
  padding: 0 20px;
}
.front-content__information__inner {
  border-bottom-right-radius: 60px;
  border: solid 1px #aad92e;
}
.front-content__information__inner .content {
  padding: 40px;
}
.front-content__information__inner h3 {
  font-size: 2.7rem;
  font-weight: bold;
  color: #81b300;
  margin-bottom: 20px;
}
.front-content__information__inner p:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  .front-content__catch__inner {
    top: 20%;
  }
  .front-content__catch__inner .content {
    padding: .8em 1.4em;
  }
  .front-content__catch__inner h2 {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .front-content__information {
    margin-top: 5%;
    padding: 0 5%;
  }
  .front-content__information__inner .content {
    padding: 1.6em 2em;
  }
  .front-content__information__inner h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .front-content__information__inner p:not(:last-child) {
    margin-bottom: 10px;
  }
}

.front-content__business {
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 0 20px;
}
.front-content__business__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.front-content__business__inner li {
  flex-basis: 30%;
  margin-bottom: 10px;
}
.business-icon {
  display: block;
  position: relative;
}
.business-icon:hover img {
  opacity: 1;  
}
.business-icon span {
  display: block;
  transition: opacity .1s linear;
}
.business-icon .base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.business-icon:hover .base {
  opacity: 1;
}
.business-icon .cover {
  position: relative;
  z-index: 1;
}
.business-icon:hover .cover {
  opacity: 0;
}
@media only screen and (max-width: 750px) {
  .front-content-2 {
    flex-basis: 100%;
  }
  .front-content__business {
    padding: 0 5%;
    margin: 8% 0 0;
  }
  .front-content__business__inner li {
    flex-basis: 47%;
  }
  .business-icon .base {
    display: none;
  }
  .business-icon:hover .cover {
    opacity: 1;
  }
}

/* -------------------------------------------------------
  footer
   ------------------------------------------------------- */

.footer-guide__list {
  max-width: 1100px;
  padding: 30px 20px;
  margin: 0 auto;
  display: flex;
  /*justify-content: space-between;*/
  justify-content: center;
}
.footer-guide__list li {
  flex-basis: 48%;
}
.footer-guide-link {
  display: block;
  background-color: #aad92e;
  border-radius: .8em;
  color: #fff;
  text-align: center;
  font-size: 1.9rem;
  line-height: 1;
  padding: 1em 0;
  transition: opacity .2s;
}
.footer-guide-link:hover {
  opacity: .8;
}
.footer-navi {
  background: url(../img/wave-2.png) center bottom repeat-x #fffdc5;
  padding: 60px 20px;
}
.footer-navi__list {
  text-align: center;
}
.footer-navi__list li {
  display: inline-block;
  margin: 0 .6em;
}
.footer-navi__list a {
  font-size: 1.8rem;
}
.footer-copyright {
  background-color: #a8ea49;
  text-align: center;
  color: #fff;
  padding: 10px 20px 20px;
}
@media only screen and (max-width: 750px) {
  .footer-guide__list {
    max-width: 353px;
    padding: 40px 0;
    display: block;
  }
  .footer-guide__list li {
    margin-bottom: 20px;
  }
  .footer-guide-link {
    font-size: 1.6rem;
  }
  .footer-guide-link:hover {
    opacity: 1;
  }
  .footer-navi {
    background: url(../img/wave-2.png) center bottom repeat-x #fffdc5;
    padding: 20px 0 30px;
  }
  .footer-navi__list li {
    margin-bottom: .2em;
  }
  .footer-navi__list a {
    font-size: 1.2rem;
  }
  .footer-copyright {
    font-size: 1.2rem;
    padding: 0 5% 10px;
  }
}

/* -------------------------------------------------------
  sub-page
   ------------------------------------------------------- */

.sub-page-wrapper {
  padding-top: 120px;
}
.sub-page-header figure {
  height: 106px;
}
.sub-page-header figure img {
  object-fit: cover;
  height: 100%;
  object-position: 50% 100%;
}
.breadcrumb {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumb ul {
  padding-top: .6em;
}
.breadcrumb li {
  font-size: 1.8rem;
  color: #81b300;
  display: inline-block;
}
.breadcrumb li:not(:first-of-type)::before {
  content: ">";
  display: inline-block;
  margin: 0 .3em;
}
.breadcrumb a {
  color: #81b300;
}
.sub-page {
  margin: 100px auto 0;
  max-width: 1040px;
  padding: 0 20px;
}
.hl-wrapper {
  text-align: center;
  margin-bottom: 100px;
}
.hl-wrapper .hl {
  display: inline-block;
  position: relative;
  font-size: 3.3rem;
  line-height: 1.2;
}
.hl-wrapper .hl::after,
.hl-wrapper .hl::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 139px;
  height: 39px;
  background-image: url(../img/ico-hl-1.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.hl-wrapper .hl::before {
  left: -170px;
}
.hl-wrapper .hl::after {
  right: -170px;
  transform: translateY(-50%) rotate(180deg);
}
@media only screen and (max-width: 750px) {
  .sub-page-wrapper {
    padding-top: 70px;
  }
  .sub-page-header figure {
    height: 50px;
  }
  .breadcrumb {
    padding: 0 5%;
  }
  .breadcrumb li {
    font-size: 1.4rem;
  }
  .sub-page {
    margin: 30px auto 0;
    padding: 0 5%;
  }
  .hl-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
  .hl-wrapper .hl {
    font-size: 1.8rem;
  }
  .hl-wrapper .hl::after,
  .hl-wrapper .hl::before {
    width: 70px;
    height: 20px;
  }
  .hl-wrapper .hl::before {
    left: -86px;
  }
  .hl-wrapper .hl::after {
    right: -86px;
  }
}

/* -------------------------------------------------------
  service
   ------------------------------------------------------- */

.service-list-wrapper {
  margin-bottom: 160px;
}
.service-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.service-list li {
  flex-basis: 33.3%;
  padding: 0 3%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 750px) {
  .service-list-wrapper {
    margin-bottom: 50px;
  }
  .service-list {
    justify-content: space-between;
  }
  .service-list li {
    flex-basis: 47%;
    padding: 0;
    margin-bottom: 10px
  }
}

.service-content-wrapper {
  margin-bottom: 200px;
}
.service-content__mainv {
  margin-bottom: 40px;
}
.service-content .cap {
  margin-top: 1em;
  text-align: center;
}
.service-content .cap span {
  display: inline-block;
  text-align: left;
}
.service-content__list ul {
  display: flex;
  flex-wrap: wrap;
}
.service-content__list li {
  flex-basis: 30%;
  margin-top: 50px;
}
.service-content__list li:not(:nth-of-type(3n)) {
  margin-right: 5%;
}
@media only screen and (max-width: 750px) {
  .service-content-wrapper {
    margin-bottom: 60px;
  }
  .service-content__mainv {
    margin-bottom: 10px;
  }
  .service-content .cap {
    margin-top: .6em;
  }
  .service-content__list li {
    flex-basis: 47%;
    margin-top: 30px;
  }
  .service-content__list li:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .service-content__list li:nth-of-type(odd) {
    margin-right: 6%;
  }
}

/* -------------------------------------------------------
  qa
   ------------------------------------------------------- */

.qa-wrapper {
  margin-bottom: 200px;
}
.qa-content dt {
  position: relative;
  font-size: 2.1rem;
  font-weight: bold;
  color: #81b300;
  padding-left: 60px;
}
.qa-content dt:not(:first-of-type) {
  margin-top: 3em;
}
.qa-content dt::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-image: url(../img/ico-q-1.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.qa-content dd {
  font-size: 2rem;
  margin-top: 1em;
  padding-left: 10px;
}
@media only screen and (max-width: 750px) {
  .qa-wrapper {
    margin-bottom: 60px;
  }
  .qa-content dt {
    font-size: 1.5rem;
    padding-left: 36px;
  }
  .qa-content dt:not(:first-of-type) {
    margin-top: 2em;
  }
  .qa-content dt::before {
    width: 30px;
    height: 30px;
  }
  .qa-content dd {
    font-size: 1.4rem;
    padding-left: 8px;
  }
}

/* -------------------------------------------------------
  company
   ------------------------------------------------------- */

.company-wrapper {
  margin-bottom: 200px;
}
.company-content-1 {
  margin-bottom: 100px;
}
.company-content-2 {
  margin-bottom: 100px;
  text-align: center;
}
.company-content-2 > h3 {
  font-size: 2.1rem;
  font-weight: bold;
  color: #81b300;
  margin-bottom: 1.4em;
}
.company-content-2 ul {
  max-width: 1000px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
}
.company-content-2 li:first-of-type {
  flex-basis: 240px;
  margin-right: 60px;
}
.company-content-2 li:last-of-type {
  flex-basis: 700px;
  text-align: left;
}
.company-content-2 li h4 {
  font-weight: bold;
  margin-top: .4em;
  font-family: serif;
}
.company-content-2 li h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #81b300;
  margin: 1em 0;
}
.company-content-2 li p {
  line-height: 2.125;
}
.company-content-2 .figure-1 {
  max-width: 472px;
  margin: 0 auto;
}
/*
.company-content-3 {
  margin-bottom: 140px;
}
.company-content-3 ul {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.company-content-3 li:last-of-type {
  margin-left: 20px;
}
.company-content-3 h3 {
  font-size: 2.1rem;
  font-weight: bold;
  color: #81b300;
  margin-top: .2em;
  text-align: center;
}
.company-content-4 {
  margin-bottom: 140px;
  text-align: center;
}
.company-content-4 h3 {
  font-size: 2.1rem;
  font-weight: bold;
  color: #81b300;
  margin-bottom: 1em;
}
.company-content-4 .text {
  margin-bottom: 50px;
}
.company-content-4 ul {
  max-width: 1010px;
  margin: 0 auto 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.company-content-4 li:last-of-type {
  margin-left: 20px;
}
.company-content-4 .button {
  max-width: 516px;
  margin: 0 auto;
}
*/
.company-content-5 ul {
  max-width: 1000px;
  margin: 0 auto;
}
.company-content-5 li {
  width: 100%;
  border-bottom: solid 1px #edeeea;
  padding: 2em;
  display: flex;
}
.company-content-5 li h4 {
  font-weight: bold;
  flex-basis: 30%;
}
@media only screen and (max-width: 750px) {
  .company-wrapper {
    margin-bottom: 60px;
  }
  .company-content-1 {
    margin-bottom: 30px;
  }
  .company-content-2 {
    margin-bottom: 50px;
  }
  .company-content-2 > h3 {
    font-size: 1.6rem;
  }
  .company-content-2 ul {
    margin-bottom: 30px;
    display: block;
  }
  .company-content-2 li:first-of-type {
    margin-right: 0;
  }
  .company-content-2 li figure {
    max-width: 160px;
    margin: 0 auto;
  }
  .company-content-2 li h3 {
    font-size: 1.5rem;
  }
  .company-content-2 li p {
    line-height: 1.75;
  }
  .company-content-2 .figure-1 {
    max-width: 280px;
  }
  /*
  .company-content-3 {
    margin-bottom: 60px;
  }
  .company-content-3 ul {
    display: block;
  }
  .company-content-3 li:first-of-type {
    max-width: 160px;
    margin: 0 auto;
  }
  .company-content-3 li:last-of-type {
    max-width: 280px;
    margin: 30px auto 0;
  }
  .company-content-3 h3 {
    font-size: 1.4rem;
    margin-top: .6em;
  }
  .company-content-4 {
    margin-bottom: 60px;
  }
  .company-content-4 h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2em;
  }
  .company-content-4 .text {
    margin-bottom: 30px;
    text-align: left;
  }
  .company-content-4 ul {
    display: block;
    margin-bottom: 30px;
  }
  .company-content-4 li:first-of-type {
    max-width: 320px;
    margin: 0 auto;
  }
  .company-content-4 li:last-of-type {
    max-width: 160px;
    margin: 30px auto 0;
  }
  */
  .company-content-5 li {
    display: block;
    padding: 1em;
  }
  .company-content-5 li h4 {
    margin-bottom: .6em;
  }
}

/* -------------------------------------------------------
  privacy
   ------------------------------------------------------- */

.privacy-wrapper {
  margin-bottom: 200px;
}
.privacy-content a {
  color: #81b300;
}
.privacy-content .text-1 {
  margin-bottom: 2em;
  line-height: 2;
}
.privacy-content .image-1 {
  max-width: 179px;
  margin-bottom: .6em;
}
.privacy-content h3 {
  font-size: 106%;
  font-weight: bold;
  margin-bottom: 1em;
  border: solid 1px #81b300;
  padding: .6em;
}
.privacy-content dl {
  line-height: 2;
  padding-left: 1em;
}
.privacy-content dd {
  margin-bottom: 2em;
  padding-left: 1em;
}
.privacy-content h4 {
  font-weight: bold;
  margin-bottom: 2em;
  line-height: 1.75;
}
.privacy-content h4 a {
  font-weight: bold;
}
.privacy-content .text-2 {
  font-size: 96%;
  padding-top: 1em;
  text-align: right;
}
@media only screen and (max-width: 750px) {
  .privacy-wrapper {
    margin-bottom: 60px;
  }
}
