@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: #F9F5EE;
  overflow-x: hidden;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.4rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@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;
  }
}

.section-wrap {
  margin-top: 8rem;
}
.container-inner {
  max-width: 900px;
  margin: 0 auto;
}

/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
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;
}

a.btn-normal {
  display: inline-block;
  background-color: #fff;
  color: #266B29;
  font-weight: 500;
  border: 2px solid #266B29;
  border-radius: 5rem;
  padding: 1rem 6rem 1rem 4rem;
  position: relative;
  text-decoration: none;
  transition: 0.1s;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  a.btn-normal {
    font-size: 1.5rem;
    padding: 1rem 5rem 1rem 3rem;
  }
}
a.btn-normal::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background-color: #266B29;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -0.6em;
  right: 2rem;
  transition: 0.1s;
}
a.btn-normal::after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  border-radius: 1px;
  position: absolute;
  top: 50%;
  right: 2.8rem;
  margin-top: -0.2em;
  transition: 0.1s;
}
@media screen and (max-width: 767.98px) {
  a.btn-normal::after {
    right: 2.7rem;
  }
}
a.btn-normal:hover {
  background-color: #266B29;
  color: #fff;
}
a.btn-normal:hover::before {
  background-color: #fff;
}
a.btn-normal:hover::after {
  border-color: #266B29;
}

/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.page-title-wrap {
  position: relative;
  min-height: 250px;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap {
    min-height: auto;
  }
}
.page-title-wrap .container {
  position: relative;
}
.page-title-wrap .page-title-area {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  left: 6vw;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-title-area {
    position: static;
    transform: none;
    padding-top: 2rem;
  }
}
.page-title-wrap .page-title-area .page-title {
  align-items: flex-start;
}
.page-title-wrap .page-title-area .page-title ::before {
  content: "";
  width: 0.7em;
  height: 0.7em;
  background-color: #F8CF03;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1rem;
}
.page-title-wrap .page-title-area .page-title span {
  display: inline-block;
  color: #569164;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.3em 0.6em;
  border-radius: 0.5em;
  background-color: #fff;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-title-area .page-title span {
    font-size: 3.6rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media screen and (max-width: 575.98px) {
  .page-title-wrap .page-title-area .page-title span {
    font-size: 3.2rem;
  }
}
.page-title-wrap .page-image-area {
  z-index: -1;
  width: 75vw;
  overflow: hidden;
  margin-left: auto;
  border-radius: 5rem 0 0 5rem;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-image-area {
    width: calc(100vw - 3rem);
    border-radius: 4rem 0 0 4rem;
    margin-right: 0;
    margin-left: 3rem;
  }
}
.page-title-wrap .page-image-area .page-image {
  height: calc(270px - 2rem);
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .page-title-wrap .page-image-area .page-image {
    height: 50vw;
  }
}
.page-title-wrap .page-image-area .page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contents-title {
  padding-left: 1em;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 767.98px) {
  .contents-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 575.98px) {
  .contents-title {
    font-size: 2.6rem;
  }
}
.contents-title::before {
  content: "";
  width: 0.7em;
  height: 0.7em;
  background-color: #F8CF03;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 0.4em;
  left: 0;
}

.section-title {
  color: #569164;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
}

/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  height: 100px;
  transition: 0.5s;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  header {
    height: 80px;
  }
}
@media screen and (max-width: 767.98px) {
  header {
    height: 70px;
  }
}
header .header-logo {
  align-self: flex-start;
}
header .header-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #569164;
  width: 274px;
  height: 130px;
  border-bottom-right-radius: 3rem;
  transition: 0.2s;
}
@media screen and (max-width: 991.98px) {
  header .header-logo a {
    width: 240px;
    height: 114px;
    border-bottom-right-radius: 2.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  header .header-logo a {
    width: 158px;
    height: 70px;
    border-bottom-right-radius: 2rem;
  }
}
header .header-logo a img {
  display: block;
  max-width: 100%;
  height: auto;
}
header .header-logo a img:first-child {
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 991.98px) {
  header .header-logo a img:first-child {
    width: 142px;
  }
}
@media screen and (max-width: 767.98px) {
  header .header-logo a img:first-child {
    margin-bottom: 1rem;
    width: 104px;
  }
}
@media screen and (max-width: 991.98px) {
  header .header-logo a img:last-child {
    width: 110px;
  }
}
@media screen and (max-width: 767.98px) {
  header .header-logo a img:last-child {
    width: 84px;
  }
}
header .header-menu {
  position: relative;
  padding-right: 3rem;
}
@media screen and (max-width: 991.98px) {
  header .header-menu {
    padding-right: 2rem;
  }
}
@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;
}
header .tel-area {
  text-align: center;
}
header .tel-area > span {
  display: block;
}
header .tel-area > span.number {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #569164;
}
header .tel-area > span.number span {
  font-size: 0.6em;
  padding-right: 0.2em;
}
header .tel-area > span.business-day {
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 0.4em;
  margin-top: 0.2rem;
}

.main-wrap {
  margin-top: 3rem;
}

/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
ul.global-nav {
  list-style: none;
  padding-left: 0;
  display: flex;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 2rem;
}
ul.global-nav > li {
  position: relative;
  cursor: pointer;
}
ul.global-nav > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  color: #222;
  position: relative;
  user-select: none;
  transition: 0.2s;
}
@media screen and (max-width: 991.98px) {
  ul.global-nav > li > a {
    padding: 0 1.5rem;
    font-size: 1.6rem;
  }
}
ul.global-nav > li > a:hover {
  color: #569164;
}

.business ul.global-nav > li.global-nav-business > a,
.company ul.global-nav > li.global-nav-company > a,
.recruit ul.global-nav > li.global-nav-recruit > a {
  color: #569164;
}

/*----------------------------------------------------
  スマホメニュー
----------------------------------------------------*/
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: #569164;
}
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: #569164;
  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: #F9F5EE;
  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: 1.5rem;
}
.smp-menu ul.smp-nav li {
  border-bottom: 1px solid #999;
}
.smp-menu ul.smp-nav li a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  display: block;
  padding: 1.5rem 1.5rem;
  position: relative;
  text-decoration: none;
}

/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}
.page-top a {
  background: #569164;
  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 {
  background-color: #569164;
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  padding: 6rem 8rem;
}
@media screen and (max-width: 991.98px) {
  footer {
    padding: 5rem 6rem;
  }
}
@media screen and (max-width: 767.98px) {
  footer {
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    padding: 3rem 3rem;
  }
}
footer .footer-area {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area {
    display: block;
  }
}
footer .footer-area .footer-company {
  color: #fff;
}
footer .footer-area .footer-company .company-name {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area .footer-company .company-name {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
footer .footer-area .footer-company address {
  font-style: normal;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area .footer-company address {
    font-size: 1.3rem;
  }
}
footer .footer-area .footer-menu {
  flex: 1;
}
footer .footer-area .footer-menu ul {
  list-style: none;
  padding-left: 0;
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area .footer-menu ul {
    text-align: left;
    margin-top: 3rem;
    border-top: 1px solid #fff;
    padding-top: 3rem;
  }
}
footer .footer-area .footer-menu ul li {
  display: inline-block;
  margin: 0 1em 1em;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area .footer-menu ul li {
    margin: 0 0 1em;
    width: 7em;
  }
}
footer .footer-area .footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
footer .footer-area .footer-menu ul li a:hover {
  text-decoration: underline;
}
footer .copyright {
  background-color: #569164;
  color: #fff;
  text-align: right;
  margin-top: 5rem;
}
@media screen and (max-width: 767.98px) {
  footer .copyright {
    font-size: 1.1rem;
    margin-top: 3rem;
    text-align: left;
  }
}

/*----------------------------------------------------
  パンくず
----------------------------------------------------*/
ul.breadcrumb {
  list-style: none;
  padding-left: 0;
  margin: 0 auto 3rem;
  text-align: right;
  font-size: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  ul.breadcrumb {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
ul.breadcrumb li {
  display: inline-block;
  padding-right: 1.8em;
  position: relative;
}
ul.breadcrumb li::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #569164;
  border-right: 1px solid #569164;
  transform: rotate(45deg);
  position: absolute;
  right: 0.5em;
  top: 0.6em;
}
ul.breadcrumb li:last-child {
  padding-right: 0;
}
ul.breadcrumb li:last-child::after {
  display: none;
}
ul.breadcrumb li a {
  color: #222;
}

/*----------------------------------------------------
  汎用コンテンツ
----------------------------------------------------*/
.contents-block {
  background-color: #fff;
  border-radius: 5rem;
  padding: 5rem;
}
@media screen and (max-width: 767.98px) {
  .contents-block {
    border-radius: 3rem;
    padding: 3rem;
  }
}

/*----------------------------------------------------
  お問い合わせ
----------------------------------------------------*/
.inquiry-wrap {
  margin: 8rem 0;
}
@media screen and (max-width: 767.98px) {
  .inquiry-wrap {
    margin: 5rem 0;
  }
}
.inquiry-wrap .contents-block {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.inquiry-wrap .contents-block .inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.98px) {
  .inquiry-wrap .contents-block .inner {
    display: block;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991.98px) {
  .inquiry-wrap .contents-block .inner > div:first-child {
    flex-basis: 100%;
    margin-bottom: 3rem;
  }
}
.inquiry-wrap .contents-block .inner > div:first-child .contents-title {
  margin-bottom: 0;
}
.inquiry-wrap .contents-block .tel-area {
  padding: 0 2rem;
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 991.98px) {
  .inquiry-wrap .contents-block .tel-area {
    padding: 0 8rem 0 0;
  }
}
@media screen and (max-width: 767.98px) {
  .inquiry-wrap .contents-block .tel-area {
    padding: 0;
  }
}
.inquiry-wrap .contents-block .tel-area p:first-child {
  margin-bottom: 1rem;
}
.inquiry-wrap .contents-block .tel-area .tel {
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  margin-right: 1rem;
}
.inquiry-wrap .contents-block .tel-area .tel span {
  font-size: 2.5em;
  line-height: 1;
}
.inquiry-wrap .contents-block .tel-area .tel + p {
  display: inline-block;
  font-size: 0.9em;
}/*# sourceMappingURL=common.css.map */