@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  margin: 0;
  padding: 0;
}

img {
  display: block; /* 余白（隙間）をなくす定番 */
  max-width: 100%; /* 親幅にフィットしてレスポンシブ化 */
  height: auto; /* 縦横比を維持して拡大縮小 */
  -o-object-fit: cover;
     object-fit: cover; /* トリミングしつつ枠に収めたい時（任意） */
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
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;
}

/*************************************************
top
*************************************************/
.inner {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .inner {
    width: 720px;
    margin: 0 auto;
  }
}

.content {
  padding: 0 8%;
}
@media screen and (min-width: 1024px) {
  .content {
    padding: 0;
  }
}

.title {
  position: relative;
  color: #465325;
  font-size: clamp(1.75rem, 1.568rem + 0.91vw, 2.25rem);
  text-align: center;
  margin-top: 2.5em;
  margin-bottom: 60px;
}
.title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("https://haguzigyo.site/common-assets/haguweb-pre/image/green/img_line.svg");
}

@media screen and (min-width: 1024px) {
  .d-md-none {
    display: none;
  }
}

.sub-title {
  text-align: left;
  margin: 28px 0 40px;
}
@media screen and (min-width: 1024px) {
  .sub-title {
    text-align: center;
  }
}

.company-list {
  position: relative;
  margin-bottom: 40px;
}
.company-list .company-item {
  width: 100%;
  border-bottom: #f7f7f7 1px solid;
}
@media screen and (min-width: 768px) {
  .company-list .company-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.company-list .company-item dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .company-list .company-item dt {
    font-weight: 400;
    width: 25%;
    margin-left: 5%;
  }
}
.company-list .company-item dd {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .company-list .company-item dd {
    -webkit-margin-start: 40px;
            margin-inline-start: 40px;
    margin-top: 0;
    width: 60%;
  }
}
.company-list .company-item dd p {
  margin: 0;
}
.company-list .company-item + .company-item {
  margin-top: 2rem;
}

.form_width {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif !important;
}
.form_width .form_item-container input[type=text], .form_width .form_item-container input[type=email], .form_width .form_item-container textarea, .form_width .form_item-container .form_policy {
  width: 100%;
  line-height: 1.6;
  border: 2px solid #465325;
  border-radius: 4px;
  padding: 1rem;
  font-size: 16px;
}
.form_width .form_item-container > p {
  margin: 0;
  padding: 0;
}
.form_width .form_item-container > p:empty {
  display: none;
}
@media screen and (min-width: 1024px) {
  .form_width .form_item-container.-md-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .form_width .form_item-container.-md-line .form_item {
    width: 48%;
  }
}
.form_width .form_item-container .form_item {
  width: 100%;
}
.form_width .form_item-container .form_item .form_checkbox.-agree {
  margin-top: 1.5rem;
  text-align: center;
}
.form_width .form_item-container .form_policy_inner {
  padding: 1em 1em 1em 0;
  height: 11.2em;
  max-height: 11.2em;
  overflow-y: scroll;
}

.submit_btn-area {
  text-align: center;
}
.submit_btn-area .form_submit {
  display: inline-block;
  width: 100%;
  max-width: 348px;
  font-weight: bold;
  background-color: #465325;
  border: none;
  line-height: 3.4em !important;
  cursor: pointer;
  color: #ffffff;
  border-radius: 5px;
}
.submit_btn-area .form_submit:hover {
  opacity: 0.8;
}

.error {
  margin-top: 0.7em;
  padding: 0.6em 0;
  color: #ffffff !important;
  line-height: 1;
  font-weight: bold !important;
  text-align: center !important;
  background-color: #ff0000;
  border-radius: 4px;
}

.required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.required::after {
  content: "必須";
  display: inline-block;
  position: relative;
  margin-left: 0.5rem;
  padding: 0.3em 0.5em;
  line-height: 1;
  color: #ffffff;
  background-color: #f79375;
  border-radius: 3px;
  font-size: 12px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  background-color: #465325;
  margin-top: 60px;
  padding: 50px 0 20px;
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .footer {
    margin-top: 110px;
  }
}
.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
@media screen and (min-width: 1024px) {
  .footer_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1080px;
  }
}
.footer__left {
  text-align: center;
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  .footer__left {
    text-align: left;
    width: 33.3333333333%;
    margin-top: 0;
  }
}
.footer__left .service-name {
  margin: 0;
  font-size: 14px;
}
.footer__left .office-name {
  margin-top: 0;
  font-size: clamp(1.5rem, 1.455rem + 0.23vw, 1.625rem);
  font-weight: 500;
}
.footer__left .office-name-logo {
  width: 180px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .footer__left .office-name-logo {
    margin: 0;
  }
}
.footer__right {
  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;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .footer__right {
    width: 66.6666666667%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer__contact {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer__contact {
    width: 50%;
  }
}
.footer__contact .tel {
  font-size: 36px;
  font-family: "Noto Sans JP", sans-serif !important;
}
.footer__contact .btn_contact {
  background-color: #ffffff;
  text-decoration: none;
  margin: 20px auto 0;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .footer__contact .btn_contact {
    max-width: 260px;
    height: 44px;
  }
}
.footer__contact .btn_contact a {
  display: block;
  text-decoration: none;
  color: #465325;
  padding: 10px 0;
  font-weight: 500;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    width: 50%;
    text-align: right;
  }
}
.footer__nav .col__link {
  display: inline-block;
  width: auto;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer__copyright {
  text-align: center;
  font-size: 12px;
}
.footer__sns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .footer__sns {
    margin-top: 20px;
  }
}
.footer__sns li {
  list-style: none;
  margin: 0 10px;
}
.footer__sns li a {
  display: block;
  width: 34px;
  height: 34px;
  background-color: #ffffff;
  border-radius: 100%;
}

.global {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  .global {
    display: block;
  }
}
.global__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 4%;
}
.global__right {
  display: none;
}
@media screen and (min-width: 1024px) {
  .global__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 82px;
  }
}
.global__right .col__link {
  text-decoration: none;
  color: #465325;
}
.global__right .col__link:hover {
  opacity: 0.8;
}
.global__right .btn_contact {
  background-color: #000000;
  text-decoration: none;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .global__right .btn_contact {
    min-width: 200px;
    height: 44px;
    text-align: center;
  }
}
.global__right .btn_contact a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  padding: 10px 0;
  font-weight: 500;
}
.global__left .service-name {
  margin: 0;
  font-size: 14px;
}
.global__left .office-name {
  margin: 0;
  font-size: clamp(1.5rem, 1.455rem + 0.23vw, 1.625rem);
  font-weight: 500;
}
.global__left .office-name-logo {
  width: 180px;
  margin: 0;
}

/* ハンバーガーアイコン */
.hamburger-menu {
  margin-right: 4%;
}

.hamburger-icon {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1001;
}
@media screen and (min-width: 1024px) {
  .hamburger-icon {
    display: none;
  }
}

/* ハンバーガーの線 */
.hamburger-icon span {
  width: 30px;
  height: 1px;
  background: #333;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  position: absolute;
}

/* 1本目（上の線） */
.hamburger-icon span:nth-child(1) {
  top: 6px;
}

/* 2本目（中央の線） */
.hamburger-icon span:nth-child(2) {
  display: none;
}

/* 3本目（下の線） */
.hamburger-icon span:nth-child(3) {
  bottom: 6px;
}

/* フルスクリーンメニュー */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #465325;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 99;
}

/* メニューが開いたとき */
.menu.active {
  opacity: 1;
  visibility: visible;
}

/* メニューのリンク */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.menu a:hover {
  color: #ddd;
}

.hamburger-menu.active .hamburger-icon span {
  background: #ffffff;
}

/* ハンバーガーアイコンが「×」に変形 */
.hamburger-menu.active .hamburger-icon span:nth-child(1) {
  -webkit-transform: translateY(12px) rotate(45deg);
          transform: translateY(12px) rotate(45deg);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.head_innner {
  position: relative;
  width: 100%;
}
.head_innner .head_text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, 30%);
          transform: translate(-50%, 30%);
  width: 80%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .head_innner .head_text {
    width: 100%;
    top: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.head_innner .head_text .catchcopy {
  font-size: clamp(1.5rem, 0.909rem + 2.95vw, 3.125rem);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 1024px) {
  .head_innner .head_text .catchcopy {
    letter-spacing: normal;
  }
}
.head_innner .head_text .catchcopy p {
  margin: 2% 0 0;
}
.head_innner .head_text .mv_title {
  margin: 0 auto;
  max-width: 262px;
}

.fixed-cta {
  position: fixed;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 98;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 98%;
  padding: 12px 24px;
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none; /* 非表示時はクリック不可 */
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .fixed-cta {
    display: none;
  }
}
.fixed-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
}/*# sourceMappingURL=green.css.map */