<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* ーーーーーーーーーーーーーーーーーー */
/* 共通設定 */
/* ーーーーーーーーーーーーーーーーーー */
body {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  font-family: serif;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

/* font */
.-accent {
  font-family: ab-tombo-bold, sans-serif;
  font-style: normal;
}

@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

@media (min-width: 769px) {
  .pc-none {
    display: none;
  }
}

/* ーーーーーーーーーーーーーーーーーー */
/* cintent/section */
/* ーーーーーーーーーーーーーーーーーー */

.l-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.l-container.-sm {
  max-width: 960px;
}

.l-container.-sm {
  max-width: 960px;
}

.c-section {
  padding: 120px 0;
  position: relative;
  background-attachment: fixed;
}

.c-section::after {
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #FFFEE8;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.c-section.-wht::after {
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background-image: url(../img/img_bg_paper.jpg);
  background-repeat: repeat;
  z-index: -1;
}

@media (max-width: 768px) {

  .l-container {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .c-section {
    padding: 80px 0;
  }

  .c-section.-wht::after {
    width: 100vw;
  }
}

/* ーーーーーーーーーーーーーーー */
/* headline */
/* ーーーーーーーーーーーーーーー */

.c-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.c-headline+* {
  margin-top: 3.5rem;
}

.c-headline::before {
  display: block;
  content: "";
  width: 3rem;
  height: 3rem;
  background-image: url(../img/ico_clip.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -2.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.c-headline__title {
  font-size: 2.5rem;
  font-weight: bold;
  padding-top: 0.5rem;
  border-top: 2px solid #333;
  display: inline-block;
}

.c-headline__title+* {
  margin-top: 1rem;
}

.c-headline__desc {
  font-weight: bold;
}

@media (max-width: 768px) {

  .c-headline+* {
    margin-top: 2rem;
  }

  .c-headline__title {
    font-size: 1.5rem;
    text-align: center;
  }

  .c-headline__title+* {
    margin-top: 1rem;
  }

  .c-headline__desc {
    font-size: .9375rem;
    line-height: 1.5;
    text-align: center;
  }
}


/* ーーーーーーーーーーーーーーーーーー */
/* arrow */
/* ーーーーーーーーーーーーーーーーーー */

.c-arrow-under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-arrow-under__img {
  width: 9.375rem;
  height: 5rem;
}

.c-arrow-under__img img {
  width: 100%;
}

.c-arrow-under+* {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .c-arrow-under__img {
    width: 6.25rem;
  }

  .c-arrow-under+* {
    margin-top: 0;
  }
}

/* ーーーーーーーーーーーーーーーーーー */
/* 会社概要 */
/* ーーーーーーーーーーーーーーーーーー */

.p-company {
  background-color: #FAFAFA;
  padding: 120px 0;
}

.p-company__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-company__logo+* {
  margin-top: 4rem;
}

.p-company__logo {
  width: 320px;
}

.p-company__logo img {
  width: 100%;
}

.p-company__message {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  line-height: 1.7;
}

.p-company__message+* {
  margin-top: 4rem;
}

.p-company__message::before {
  display: block;
  content: url(../img/img_company_leaf.png);
  position: absolute;
  bottom: 0;
  right: 98%;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.p-company__message::after {
  display: block;
  content: url(../img/img_company_leaf.png);
  position: absolute;
  bottom: 0;
  left: 98%;
  -webkit-transform: scale(-1, 1) rotate(30deg);
  transform: scale(-1, 1) rotate(30deg);
}

.p-company__btn {
  width: 420px;
  color: #fff;
  background-color: #9AC9B7;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  transition: .4s;
  border: 4px solid #9AC9B7;
  border-radius: 200px;
}

.p-company__btn:hover {
  background-color: #fff;
  color: #9AC9B7;
}

.p-company__btn a {
  font-size: 1.175rem;

  display: inline-block;
  padding: 1.175rem;
  font-weight: bold;
}

.p-company__btn a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-company__btn::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/ico_exlink_wht.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 2rem;
  top: 35%;
  transition: .4s;
}

.p-company__btn:hover::after {
  background-image: url(../img/ico_exlink_gr.svg);
}

.copyright {
  padding: 1.175rem;
  text-align: center;
}


@media (max-width: 768px) {
  .p-company {
    padding: 80px 0;
  }

  .p-company__inner {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-company__logo+* {
    margin-top: 2rem;
  }

  .p-company__message {
    font-size: 1rem;
    text-align: left;
    position: relative;
  }

  .p-company__message+* {
    margin-top: 2rem;
  }

  .p-company__message::before {
    display: none;
  }

  .p-company__message::after {
    display: none;
  }

  .p-company__logo {
    width: 200px;
  }

  .p-company__btn {
    width: 100%;
    background-color: #9AC9B7;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 120px;
  }

  .p-company__btn a {
    font-size: 1rem;
    color: #fff;
    display: inline-block;
    padding: 1.175rem;
    font-weight: bold;
  }

  .copyright {
    padding: 1.175rem .5rem 1.175rem .5rem;
    text-align: center;
    font-size: .625rem;
  }
}</pre></body></html>