@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*responsive.css上書き(bootstrap4)*/
.mx-auto {
  display: block;
  margin: 0 auto;
}

/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
body {
  color: #222;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #F8F4EB;
  overflow-x: hidden;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.4rem;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.main-wrap {
  padding-top: 80px;
}
@media screen and (max-width: 767.98px) {
  .main-wrap {
    padding-top: 60px;
  }
}

.section-wrap {
  padding: 8rem 0;
}
@media screen and (max-width: 767.98px) {
  .section-wrap {
    padding: 5rem 0;
  }
}

/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color: #245fbb;
  text-decoration: none;
}

a:visited {
  color: #245fbb;
  text-decoration: none;
}

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

a:active {
  color: #E48E00;
  text-decoration: underline;
}

/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.page-title {
  color: #008C4F;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .page-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title {
    font-size: 2.4rem;
  }
}

/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  height: 80px;
  padding: 0 3rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 998;
}
@media screen and (max-width: 1199.98px) {
  header {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  header {
    height: 60px;
    padding: 0 2rem;
  }
}
header .header-logo {
  display: flex;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 991.98px) {
  header .header-logo {
    flex: 1 0 auto;
  }
}
header .header-logo a {
  display: inline-block;
  color: #333;
  text-decoration: none;
}
header .header-logo a img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  margin-right: 1rem;
}
@media screen and (max-width: 991.98px) {
  header .header-logo a img {
    width: 130px;
  }
}
@media screen and (max-width: 767.98px) {
  header .header-logo a img {
    width: 110px;
  }
}
header .header-logo a span {
  display: inline-block;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 991.98px) {
  header .header-logo a span {
    display: block;
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  header .header-logo a span {
    font-size: 1.4rem;
  }
}
header.headbgcolor {
  background-color: rgba(255, 255, 255, 0.95);
}
header .header-menu {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  header .header-menu {
    display: none;
  }
}
header .header-menu nav {
  height: 100%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: right;
}
@media screen and (max-width: 991.98px) {
  header .header-menu a.btn-inquiry {
    font-size: 1.5rem;
  }
}

a.btn-inquiry {
  display: inline-block;
  text-align: center;
  color: #222;
  background-color: #fff;
  text-decoration: none;
  border: 2px solid #008C4F;
  padding: 0.7rem 2.1rem 0.7rem 1.9rem;
  border-radius: 5rem;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  a.btn-inquiry {
    padding: 0.7rem 1.8rem 0.7rem 1.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  a.btn-inquiry {
    display: block;
    font-weight: 500;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
a.btn-inquiry::before {
  content: "";
  width: 20px;
  height: 16px;
  display: inline-block;
  background: url(../images/common/ico_mail.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-top: -0.2rem;
  margin-right: 0.5rem;
}
a.btn-inquiry:hover {
  color: #008C4F;
}

/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
ul.global-nav {
  list-style: none;
  padding-left: 0;
  display: flex;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 2rem;
}
@media screen and (max-width: 991.98px) {
  ul.global-nav {
    margin-right: 1.5rem;
  }
}
ul.global-nav > li {
  position: relative;
  cursor: pointer;
}
ul.global-nav > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  text-decoration: none;
  color: #222;
  font-size: 1.6rem;
  position: relative;
  user-select: none;
}
@media screen and (max-width: 991.98px) {
  ul.global-nav > li > a {
    padding: 0 1.5rem;
    font-size: 1.4rem;
  }
}
ul.global-nav > li > a::before {
  content: "";
  width: calc(100% - 4rem);
  height: 2px;
  background-color: #008C4F;
  display: inline-block;
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  transition: transform 0.2s;
}
ul.global-nav > li > a:hover {
  color: #008C4F;
}
ul.global-nav > li > a:hover::before {
  transform: translateX(-50%) scale(1, 1);
}
ul.global-nav > li.blank a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 13px;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 13'><style>.st0{fill: %23008C4F;}.st1{fill: none;}</style><g><rect class='st1' x='3.00014' width='13' height='10'/><path class='st0' d='M16,9.99954H3V.00003h13v9.99951ZM4,8.99954h11V1.00003H4v7.99951Z'/></g><polygon class='st0' points='11.5 12.99954 0 12.99954 0 3.50003 1 3.50003 1 11.99954 11.5 11.99954 11.5 12.99954'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 0.7rem;
  margin-top: -0.2rem;
}
ul.global-nav > li:hover .child-nav {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------------------
  スマホメニュー
----------------------------------------------------*/
a.menu-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: none;
  z-index: 10;
}
@media screen and (max-width: 767.98px) {
  a.menu-button {
    display: block;
  }
}
a.menu-button .menu-trigger {
  cursor: pointer;
  position: relative;
  width: 42px;
  height: 36px;
  display: inline-block;
  transition: all 0.4s;
}
a.menu-button .menu-trigger span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.4s;
}
a.menu-button .menu-trigger span:not(:last-child) {
  width: calc(100% - 10px);
  height: 3px;
  background-color: #008C4F;
}
a.menu-button .menu-trigger span:nth-of-type(1) {
  top: 5px;
}
a.menu-button .menu-trigger span:nth-of-type(2) {
  top: 13px;
}
a.menu-button .menu-trigger span:nth-of-type(3) {
  width: 100%;
  bottom: 0;
  font-size: 1rem;
  text-align: center;
  color: #008C4F;
  font-weight: 700;
}

.open .menu-trigger span:nth-of-type(1) {
  top: 10px !important;
  transform: translateX(-50%) rotate(40deg);
}
.open .menu-trigger span:nth-of-type(2) {
  top: 10px !important;
  transform: translateX(-50%) rotate(-40deg);
}

.smp-menu {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #F1F9F6;
  padding: 60px 2rem 3rem;
  display: none;
  overflow-x: hidden;
  overflow-y: scroll;
}
.smp-menu ul {
  list-style: none;
  padding-left: 0;
}
.smp-menu ul.smp-nav {
  margin-bottom: 3rem;
  background: #fff;
}
.smp-menu ul.smp-nav li {
  border-bottom: 1px solid #eee;
}
.smp-menu ul.smp-nav li a {
  color: #222;
  display: block;
  padding: 1.5rem 1.5rem;
  position: relative;
  text-decoration: none;
  font-size: 1.4rem;
}
.smp-menu ul.smp-nav li.blank a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 13px;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 13'><style>.st0{fill: %23008C4F;}.st1{fill: none;}</style><g><rect class='st1' x='3.00014' width='13' height='10'/><path class='st0' d='M16,9.99954H3V.00003h13v9.99951ZM4,8.99954h11V1.00003H4v7.99951Z'/></g><polygon class='st0' points='11.5 12.99954 0 12.99954 0 3.50003 1 3.50003 1 11.99954 11.5 11.99954 11.5 12.99954'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 0.7rem;
  margin-top: -0.2rem;
}
.smp-menu ul.company-list {
  margin-top: 3rem;
}
.smp-menu ul.company-list li {
  display: block;
  background: #fff;
  width: 100%;
}
.smp-menu ul.company-list li a {
  display: block;
  width: 100%;
  padding: 15px;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  position: relative;
}
.smp-menu ul.company-list li a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 13px;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 13'><style>.st0{fill: %23008C4F;}.st1{fill: none;}</style><g><rect class='st1' x='3.00014' width='13' height='10'/><path class='st0' d='M16,9.99954H3V.00003h13v9.99951ZM4,8.99954h11V1.00003H4v7.99951Z'/></g><polygon class='st0' points='11.5 12.99954 0 12.99954 0 3.50003 1 3.50003 1 11.99954 11.5 11.99954 11.5 12.99954'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 0.7rem;
  margin-top: -0.2rem;
}

/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}
.page-top a {
  background: #008C4F;
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s;
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  .page-top a {
    width: 50px;
    height: 50px;
  }
}
.page-top a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  left: 39%;
  top: 41%;
  transition: 0.2s;
}
@media screen and (max-width: 767.98px) {
  .page-top a::after {
    left: 35%;
    width: 14px;
    height: 14px;
  }
}

footer .footer-inquiry {
  margin: 5rem 0 8rem;
}
@media screen and (max-width: 767.98px) {
  footer .footer-inquiry {
    margin: 0 0 5rem;
  }
}
footer .footer-inquiry .inquiry-title {
  text-align: center;
  color: #008C4F;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
}
footer .footer-inquiry .inquiry-title + p {
  text-align: center;
  font-weight: 500;
}
footer .footer-inquiry .inquiry-area {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  footer .footer-inquiry .inquiry-area {
    display: block;
  }
}
footer .footer-inquiry .inquiry-area > div {
  flex: 0 1 auto;
  width: 360px;
  max-width: 100%;
  margin: 3rem;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  footer .footer-inquiry .inquiry-area > div {
    margin: 3rem auto;
  }
}
footer .footer-inquiry .inquiry-area > div .title {
  color: #fff;
  background-color: #008C4F;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767.98px) {
  footer .footer-inquiry .inquiry-area > div .title {
    margin-bottom: 1rem;
  }
}
footer .footer-inquiry .inquiry-area > div .tel {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  position: relative;
  margin-left: -2rem;
  margin-bottom: 1.5rem;
  color: #008C4F;
}
@media screen and (max-width: 767.98px) {
  footer .footer-inquiry .inquiry-area > div .tel {
    margin-bottom: 0.5rem;
  }
}
footer .footer-inquiry .inquiry-area > div .tel::before {
  display: inline-block;
  content: "";
  width: 28px;
  height: 28px;
  background: url(../images/common/ico_tel.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.7rem;
  margin-top: -0.2rem;
}
footer .footer-inquiry .inquiry-area > div a.btn-inquiry {
  margin-top: 1rem;
}
@media screen and (max-width: 767.98px) {
  footer .footer-inquiry .inquiry-area > div a.btn-inquiry {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer-area {
  background-color: #fff;
  padding: 4rem 0 2rem;
  text-align: center;
}
footer .footer-area .footer-logo {
  margin-bottom: 0.5rem;
  width: 220px;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area .footer-logo {
    width: 180px;
  }
}
footer .footer-area ul.footer-menu {
  list-style: none;
  padding-left: 0;
  text-align: center;
}
footer .footer-area ul.footer-menu li {
  display: inline-block;
  margin: 1em;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area ul.footer-menu li {
    display: block;
    margin: 1em 0;
  }
}
footer .footer-area ul.footer-menu li a {
  color: #222;
  text-decoration: none;
  position: relative;
  padding-right: 2.2rem;
}
footer .footer-area ul.footer-menu li a::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: #008C4F;
  position: absolute;
  top: 0.5rem;
  right: 0;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area ul.footer-menu li a::before {
    top: 0.4rem;
  }
}
footer .footer-area ul.footer-menu li a::after {
  content: "";
  display: inline-block;
  border: 4px solid transparent;
  border-right: 0;
  border-left: 5px solid #fff;
  position: absolute;
  top: 0.9rem;
  right: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area ul.footer-menu li a::after {
    top: 0.8rem;
  }
}
footer .footer-area ul.footer-menu li a:hover {
  color: #008C4F;
}
footer .copyright {
  background-color: #008C4F;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  footer .copyright {
    font-size: 1rem;
  }
}

/*----------------------------------------------------
  アニメーション
----------------------------------------------------*/
.fadein {
  opacity: 0;
}

.fadeinAnime {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fadeinAnime;
  visibility: visible !important;
  animation-delay: 0.3s;
}

@-webkit-keyframes fadeinAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeinAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}/*# sourceMappingURL=common.css.map */