@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  min-width: 375px;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
}

.wrap {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.clear::after {
  content: "";
  clear: both;
  display: block;
}

@media (min-width: 1100px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 1099px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    display: block;
    pointer-events: painted;
  }
}

/*デバイスごとの表示切り替え*/
@media (max-width: 1099px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.pc-tab {
  display: block;
}
@media (max-width: 767px) {
  .pc-tab {
    display: none;
  }
}

.tab-below {
  display: none;
}
@media (max-width: 1099px) {
  .tab-below {
    display: block;
  }
}

@media (min-width: 1100px) {
  .tab-only {
    display: none;
  }
}
@media (max-width: 1099px) {
  .tab-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none;
  }
}

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

/*************************************************************************************
セクションタイトル
**************************************************************************************/
.section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #006E6B;
}
@media (max-width: 1099px) {
  .section__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .section__title {
    font-size: 26px;
  }
}
.section__title::after {
  display: block;
  content: attr(data-en);
  margin-top: 5px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #111111;
}
@media (max-width: 767px) {
  .section__title::after {
    font-size: 12px;
  }
}

.common-inner {
  max-width: 1100px;
  width: 98%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .common-inner {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .common-inner {
    width: 89%;
  }
}

.common-inner--950 {
  max-width: 950px;
  width: 98%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .common-inner--950 {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .common-inner--950 {
    width: 89%;
  }
}

/*************************************************************************************
ボタン(共通ボタン)
**************************************************************************************/
.btn {
  display: block;
  width: 200px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  padding: 10px;
  color: #ffffff;
  background-color: #006E6B;
  position: relative;
}
@media (max-width: 1099px) {
  .btn {
    width: 180px;
  }
}
.btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 13px;
  background: url(../img/common/btn-arrow.png) no-repeat center/cover;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.btn a {
  display: block;
  text-decoration: none;
}
@media (min-width: 1100px) {
  .btn a:hover::after {
    right: 10px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}

/*************************************************************************************
対応エリア
**************************************************************************************/
.area {
  border: 3px solid #006E6B;
  max-width: 948px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding: 40px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .area {
    padding: 30px 15px;
  }
}

.area__lead {
  max-width: 576px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: #F3FAFB;
  color: #006E6B;
  font-size: 18px;
  padding: 15px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .area__lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 15px 30px;
    text-align: left;
  }
}

.area__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px 0;
}
.area__area dt {
  white-space: nowrap;
}
.area__area dd {
  margin: 0;
}
.area__area dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*************************************************************************************
CTA
**************************************************************************************/
.cta {
  background: url(../img/common/cta-bg.webp) no-repeat center/cover;
  position: relative;
  margin-top: 200px;
  padding-bottom: 350px;
}
@media (max-width: 767px) {
  .cta {
    margin-top: 220px;
    padding-bottom: 325px;
  }
}
.cta::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100px;
}
@media (max-width: 767px) {
  .cta::after {
    height: 50px;
  }
}

.cta__contents {
  position: absolute;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #2C5E8A;
  max-width: 1100px;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 100px 0;
}
@media (max-width: 1099px) {
  .cta__contents {
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .cta__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0;
    top: -150px;
    gap: 20px;
  }
}

.cta__texts {
  max-width: 380px;
  width: 50%;
}
@media (max-width: 767px) {
  .cta__texts {
    width: 89%;
  }
}

.cta__title {
  color: #ffffff;
}
.cta__title::after {
  color: #ffffff;
}

.cta__lead {
  color: #ffffff;
  font-size: 15px;
  margin-top: 25px;
}

.cta__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.cta__btn a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 10px 25px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1100px) {
  .cta__btn a:hover {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    opacity: 0.8;
  }
}
@media (max-width: 1099px) {
  .cta__btn a {
    padding: 10px 15px;
  }
}
.cta__btn a small {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}
.cta__btn a img {
  margin-top: 5px;
  width: 30px;
  margin-right: 5px;
}

.cta__tel a {
  background-color: #ffffff;
}
.cta__tel a span {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  color: #006E6B;
  font-weight: 600;
}

.cta__web a {
  background-color: #009394;
  font-size: 24px;
  color: #ffffff;
}
.cta__web a span {
  display: block;
}

/*************************************************************************************
ページタイトル
**************************************************************************************/
.page-title {
  position: relative;
  top: 100px;
  width: 93%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 100px;
  height: 490px;
}
@media (max-width: 1099px) {
  .page-title {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .page-title {
    top: 70px;
    height: 300px;
    margin-bottom: 70px;
  }
}

.page-title__contents {
  position: absolute;
  top: 50%;
  left: 120px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
}
@media (max-width: 1099px) {
  .page-title__contents {
    left: 50px;
  }
}
@media (max-width: 767px) {
  .page-title__contents {
    left: 20px;
  }
}

.page-title__en {
  font-size: 52px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1099px) {
  .page-title__en {
    font-size: 36px;
  }
}

.page-title__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 100%;
}
@media (max-width: 1099px) {
  .page-title__title {
    font-size: 15px;
  }
}

.main {
  position: relative;
}
.main::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 650px;
  height: 675px;
  background: url(../img/common/page-accent.webp) no-repeat center/cover;
  z-index: -1;
}
@media (max-width: 1099px) {
  .main::after {
    width: 450px;
    height: 465px;
  }
}
@media (max-width: 767px) {
  .main::after {
    width: 280px;
    height: 290px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  -webkit-transition: background-color 0.8s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.8s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.8s ease, box-shadow 0.4s ease;
  transition: background-color 0.8s ease, box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.header.is-scrolled {
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .header__wrap {
    padding: 8px 0;
  }
}

.header__logo a {
  display: block;
  margin-left: 15px;
}
@media (max-width: 1099px) {
  .header__logo a {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .header__logo a {
    padding-top: 5px;
    width: 200px;
  }
}

.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .header__contents {
    display: none;
  }
}

.header__tel {
  display: block;
  font-size: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #006E6B;
  margin-bottom: 10px;
  text-align: right;
}
.header__tel img {
  width: 19px;
}
.header__tel span {
  display: block;
  font-size: 10px;
  color: #111111;
  font-weight: 400;
  line-height: 80%;
}

.header__nav__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.header__menu a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  color: #000;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #006E6B;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__menu a:hover {
  color: #006E6B;
}
.header__menu a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__menu.is-current a, .header__menu.current-menu-item a, .header__menu.current_page_item a, .header__menu.current-menu-parent a, .header__menu.current_page_parent a {
  color: #006E6B;
}
.header__menu.is-current a::after, .header__menu.current-menu-item a::after, .header__menu.current_page_item a::after, .header__menu.current-menu-parent a::after, .header__menu.current_page_parent a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__menu a.is-current,
.header__menu a[aria-current=page] {
  color: #006E6B;
}
.header__menu a.is-current::after,
.header__menu a[aria-current=page]::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.header__contact {
  background: linear-gradient(314deg, rgb(44, 94, 138) 0%, rgb(0, 147, 148) 100%);
}
.header__contact a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  line-height: 120%;
  padding: 10px 15px;
}
.header__contact a img {
  display: block;
  width: 30px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}

/*************************************************************************************
ドロワーメニュー
**************************************************************************************/
#drawer-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  background: #006E6B;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1100px) {
  #drawer-nav {
    display: none;
  }
}
@media (max-width: 1099px) {
  #drawer-nav {
    display: none;
  }
}
@media (max-width: 767px) {
  #drawer-nav {
    display: block;
  }
}

#drawer-nav.panelactive {
  right: 0;
}

.drawer-nav-list {
  position: fixed;
  z-index: 999;
  width: 80%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#drawer-nav ul {
  position: absolute;
  z-index: 999;
  top: 100px;
  width: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#drawer-nav .drawer__menu {
  list-style: none;
}
#drawer-nav .drawer__menu a {
  text-decoration: none;
  padding: 15px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
#drawer-nav .drawer__menu a span {
  font-size: 12px;
  margin-left: 20px;
  font-weight: 300;
}

.drawer__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 270px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  text-decoration: none;
  margin-top: 25px;
}
.drawer__btn a img {
  width: 30px;
}

.drawer__btn--web a {
  background-color: #ffffff;
  color: #006E6B;
  gap: 15px;
  font-size: 18px;
  padding: 12px;
}

.drawer__btn--tel a {
  border: 1px solid #ffffff;
  color: #ffffff;
  gap: 15px;
  font-size: 22px;
  padding: 5px;
}
.drawer__btn--tel a small {
  display: block;
  font-size: 8px;
}

/*************************************************************************************
ハンバーガーボタン
**************************************************************************************/
.hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: linear-gradient(314deg, rgb(44, 94, 138) 0%, rgb(0, 147, 148) 100%);
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 55px;
  height: 55px;
}
@media (min-width: 1100px) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 1099px) {
  .hamburger {
    display: none;
  }
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }
}

.hamburger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 33px;
}

.hamburger span:nth-of-type(1) {
  top: 15px;
}

.hamburger span:nth-of-type(2) {
  top: 25px;
}

.hamburger span:nth-of-type(3) {
  top: 35px;
}

.hamburger.active span:nth-of-type(1) {
  top: 23px;
  left: 14px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 33px;
  background-color: #fff;
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  top: 35px;
  left: 14px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 33px;
  background-color: #fff;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}
@media (min-width: 1100px) {
  #overlay {
    position: static;
  }
}

/* Prevent background scrolling when menu is active */
body.panelactive {
  overflow: hidden;
}
@media (min-width: 1100px) {
  body.panelactive {
    overflow: auto;
  }
}

/*************************************************************************************
フッター
**************************************************************************************/
.footer {
  background-color: #006E6B;
  color: #ffffff;
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  .footer__info {
    max-width: 300px;
    width: 92%;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer__logo {
  display: block;
  width: 295px;
}

.footer__address {
  font-size: 15px;
  font-style: normal;
  margin-top: 20px;
}
.footer__address span {
  display: block;
}

.footer__lead {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  border: 1px solid #ffffff;
  padding: 3px 10px;
}

.footer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.footer__btn a {
  display: block;
  text-decoration: none;
  text-align: center;
}
.footer__btn a img {
  width: 25px;
  margin-right: 10px;
}

.footer__tel {
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff;
}
.footer__tel a {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
}
.footer__tel a span {
  display: block;
  font-size: 10px;
  line-height: 80%;
}

.footer__web a {
  font-size: 25px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1100px) {
  .footer__web a:hover {
    opacity: 0.8;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  max-width: 315px;
  height: 80px;
}
@media (max-width: 767px) {
  .footer__nav {
    max-width: 300px;
    width: 92%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 60px;
  }
}

.footer__menu a {
  text-decoration: none;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1100px) {
  .footer__menu a:hover {
    opacity: 0.8;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}

.footer__copy {
  display: block;
  text-align: center;
  padding-bottom: 20px;
}

.fv {
  background: url(../img/top/fv.webp) no-repeat center/cover;
  width: 93%;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 1184/684;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  top: 100px;
  margin-bottom: 180px;
  height: 80vh;
}
@media (max-width: 1099px) {
  .fv {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .fv {
    top: 70px;
    aspect-ratio: 350/528;
    background-position: center right;
  }
}
.fv::after {
  position: absolute;
  content: "";
  bottom: -40px;
  left: -4%;
  width: 100vw;
  height: 180px;
  background: url(../img/top/fv-en.webp) no-repeat center/contain;
}
@media (max-width: 767px) {
  .fv::after {
    display: none;
  }
}

.fv__message {
  position: absolute;
  bottom: 15%;
  right: 0;
  z-index: 1;
}
@media (max-width: 1099px) {
  .fv__message {
    bottom: 8%;
  }
}
@media (max-width: 767px) {
  .fv__message {
    right: auto;
    left: -4%;
  }
}
.fv__message span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(314deg, rgba(44, 94, 138, 0.6) 0%, rgb(0, 147, 148) 100%);
  padding: 0.3em 0.5em;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 42px;
}
@media (max-width: 1099px) {
  .fv__message span {
    font-size: 28px;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .fv__message span {
    font-size: 19px;
    padding: 0.3em 1em;
  }
}

/*************************************************************************************
令和機工の強み
**************************************************************************************/
.feature {
  margin: 80px 0;
}
@media (max-width: 767px) {
  .feature {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

.feature__wrap {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .feature__wrap {
    margin-top: 40px;
  }
}

.feature__lead {
  max-width: 770px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  line-height: 200%;
  margin-top: 40px;
}
@media (max-width: 1099px) {
  .feature__lead {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .feature__lead {
    font-size: 15px;
  }
}

.feature__list {
  background: url(../img/top/feature-bg.webp) no-repeat center/cover;
  margin-left: auto;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .feature__list {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .feature__list:nth-of-type(1) .swiper__wrap {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.feature__list:nth-of-type(2) {
  background: url(../img/top/feature-bg-reverse.webp) no-repeat center/cover;
  margin-right: auto;
}
.feature__list:nth-of-type(2) .feature__container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 767px) {
  .feature__list:nth-of-type(2) .feature__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.feature__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 63px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 980px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .feature__container {
    gap: 20px;
    width: 95%;
  }
}
@media (max-width: 767px) {
  .feature__container {
    max-width: 470px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.feature__contents span {
  font-size: 36px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #006E6B;
}
@media (max-width: 1099px) {
  .feature__contents span {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 767px) {
  .feature__contents {
    display: contents;
  }
}

.feature__label {
  font-size: 28px;
  color: #006E6B;
  margin-top: -10px;
}
@media (max-width: 1099px) {
  .feature__label {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .feature__label {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.feature__swiper {
  max-width: 435px;
}
@media (max-width: 1099px) {
  .feature__swiper {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .feature__swiper {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.feature__img {
  max-width: 435px;
  width: 100%;
  aspect-ratio: 435/282;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1099px) {
  .feature__img {
    max-width: 390px;
  }
}
@media (max-width: 767px) {
  .feature__img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
  }
}

.swiper-button-prev, .swiper-button-next {
  color: #006E6B;
}

@media (max-width: 767px) {
  .feature__text {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    font-size: 15px;
  }
}

/*************************************************************************************
業務内容
**************************************************************************************/
.top-service {
  background: url(../img/top/top-service-bg.webp) no-repeat center/cover;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .top-service {
    padding: 40px 0;
  }
}

.top-service__title {
  color: #ffffff !important;
}
.top-service__title::after {
  color: #ffffff;
}

.top-service__lead {
  max-width: 790px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  color: #ffffff;
  margin-top: 25px;
}
@media (max-width: 1099px) {
  .top-service__lead {
    width: 95%;
  }
}

.top-service__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 1099px) {
  .top-service__wrap {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .top-service__wrap {
    display: block;
    max-width: 450px;
    margin-top: 30px;
  }
}

.top-service__list {
  width: calc(33.3% - 20px);
}
.top-service__list a {
  background-color: #ffffff;
  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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-decoration: none;
}
@media (min-width: 1100px) {
  .top-service__list a:hover {
    opacity: 0.8;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .top-service__list a:hover .btn::after {
    right: 10px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}
@media (max-width: 767px) {
  .top-service__list {
    width: 100%;
  }
  .top-service__list:not(:first-of-type) {
    margin-top: 20px;
  }
}

.top-service__contents {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}
@media (max-width: 1099px) {
  .top-service__contents {
    width: 92%;
  }
}
@media (max-width: 767px) {
  .top-service__contents {
    width: 89%;
  }
}

.top-service__label {
  font-size: 20px;
  color: #006E6B;
  text-align: center;
}
@media (max-width: 1099px) {
  .top-service__label {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .top-service__label {
    font-size: 18px;
  }
}

.top-service__text {
  font-size: 15px;
  min-height: 120px;
}
@media (max-width: 1099px) {
  .top-service__text {
    min-height: 150px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .top-service__text {
    min-height: auto;
  }
}

.top-service__img {
  background-color: #006E6B;
  width: 100%;
  aspect-ratio: 337/202;
  -o-object-fit: cover;
     object-fit: cover;
}

/*************************************************************************************
事例紹介(TOP)
**************************************************************************************/
.shape-bg {
  margin-top: 40px;
  padding-top: 40px;
  position: relative;
}
.shape-bg::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 90%;
  background: url(../img/top/shape-bg.webp) no-repeat center/cover;
  z-index: -1;
}

.top-case {
  margin-bottom: 80px;
}

.top-case__lead {
  max-width: 750px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
@media (max-width: 1099px) {
  .top-case__lead {
    width: 92%;
  }
}

.top-case__swiper {
  margin-top: 40px;
}

.swiper-case {
  max-width: 920px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .swiper-case {
    width: 100%;
  }
}

.top-case__card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
}
@media (min-width: 1100px) {
  .top-case__card a:hover {
    opacity: 0.8;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .top-case__card a:hover .btn::after {
    right: 10px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}

.top-case__label {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
  color: #006E6B;
  margin: 10px 0;
}
@media (max-width: 1099px) {
  .top-case__label {
    font-size: 16px;
  }
}

.top-case__btn {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.top-case__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  aspect-ratio: 285/211;
  -o-object-fit: cover;
     object-fit: cover;
}

/*************************************************************************************
ページタイトル
**************************************************************************************/
.page-title--service {
  background: url(../img/service/page-title-service.webp) no-repeat center/cover;
}

/*************************************************************************************
こんなお悩みに対応します
**************************************************************************************/
.problem {
  padding-top: 120px;
  max-width: 735px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .problem {
    padding-top: 40px;
    width: 89%;
  }
}

.section-title--problem {
  color: #006E6B;
  font-size: 36px;
  text-align: center;
}
@media (max-width: 1099px) {
  .section-title--problem {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .section-title--problem {
    font-size: 26px;
  }
}

.problem__text {
  margin-top: 40px;
  line-height: 200%;
}
@media (max-width: 767px) {
  .problem__text {
    font-size: 15px;
    margin-top: 20px;
    line-height: 180%;
  }
}

.problem__wrap {
  border: 3px solid #006E6B;
  background-color: #F3FAFB;
  padding: 30px;
}
@media (max-width: 767px) {
  .problem__wrap {
    padding: 20px 15px;
  }
}

.problem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  max-width: 450px;
  margin-right: auto;
  margin-left: auto;
  line-height: 200%;
}
@media (max-width: 767px) {
  .problem__list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
  }
}
.problem__list img {
  width: 22px;
}
@media (max-width: 767px) {
  .problem__list img {
    margin-top: 8px;
  }
}

/*************************************************************************************
業務内容
**************************************************************************************/
.service {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .service {
    padding-bottom: 60px;
  }
}

@media (max-width: 1099px) {
  .service__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .service__title {
    font-size: 22px;
  }
}

.service__lead {
  max-width: 880px;
  width: 98%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
@media (max-width: 1099px) {
  .service__lead {
    width: 92%;
  }
}

.service__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service__anchor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.anchor-link a {
  text-decoration: none;
  display: block;
  min-width: 220px;
  text-align: center;
  background-color: #006E6B;
  color: #ffffff;
  padding: 15px 20px;
  position: relative;
}
.anchor-link a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 15px;
  background: url(../img/common/btn-arrow.png) no-repeat center/cover;
}

.service-menu {
  padding-top: 200px;
  margin-top: -120px;
}
@media (max-width: 767px) {
  .service-menu {
    padding-top: 80px;
    margin-top: -40px;
  }
}

.service-menu__title {
  font-size: 28px;
  color: #006E6B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-bottom: 1px solid #111111;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .service-menu__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 5px;
    margin-bottom: 15px;
	  font-size: 26px;
  }
}
.service-menu__title span {
  font-size: 14px;
  color: #111111;
  font-weight: 400;
}
.service-menu__title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 172px;
  height: 130px;
  background: url(../img/service/title-shape.webp) no-repeat center/cover;
  z-index: -1;
}

.service-menu__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 767px) {
  .service-menu__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service-menu__contents {
  max-width: 500px;
  width: 95%;
}
@media (max-width: 767px) {
  .service-menu__contents {
    margin-right: auto;
    margin-left: auto;
  }
}

.service-menu__lead {
  font-size: 15px;
  line-height: 200%;
}

.service-menu__block {
  margin-top: 40px;
}

.service-menu__block__label {
  background-color: #006E6B;
  color: #ffffff;
  padding: 10px 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  margin-bottom: 10px;
}

.service-menu__block__lists {
  list-style: disc;
  list-style-position: inside;
}
.service-menu__block__lists li {
  text-indent: -1em;
  padding-left: 1em;
}

.swiper__service {
  max-width: 395px;
  width: 100%;
}
@media (max-width: 1099px) {
  .swiper__service {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .swiper__service {
    margin-right: auto;
    margin-left: auto;
  }
}

/*************************************************************************************
ページタイトル
**************************************************************************************/
.page-title--company {
  background: url(../img/company/page-title-company.webp) no-repeat center/cover;
}

/*************************************************************************************
代表挨拶
**************************************************************************************/
.message {
  padding-top: 120px;
}
@media (max-width: 1099px) {
  .message {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .message {
    padding-top: 40px;
  }
}

.message__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 58px;
  margin-top: 35px;
}
@media (max-width: 1099px) {
  .message__wrap {
    gap: 35px;
  }
}
@media (max-width: 767px) {
  .message__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 25px;
  }
}

.message__contents {
  max-width: 445px;
  width: 100%;
}
@media (max-width: 767px) {
  .message__contents {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
  }
}

.message__text {
  line-height: 200%;
  margin: 0;
}
.message__text:first-of-type {
  margin-bottom: 15px;
}

.message__name {
  text-align: right;
}

.message__img {
  max-width: 447px;
  width: 100%;
  aspect-ratio: 447/288;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1099px) {
  .message__img {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .message__img {
    margin-right: auto;
    margin-left: auto;
  }
}

/*************************************************************************************
会社概要
**************************************************************************************/
.overview {
  margin-top: 120px;
}
@media (max-width: 1099px) {
  .overview {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .overview {
    margin-top: 40px;
  }
}

.overview__table {
  max-width: 850px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  border-collapse: collapse;
}
.overview__table tbody tr:nth-of-type(odd) {
  background-color: #F3FAFB;
}
.overview__table tbody tr:nth-of-type(even) {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .overview__table tbody tr {
    font-size: 15px;
  }
}
.overview__table tbody tr th {
  width: 200px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .overview__table tbody tr th {
    width: 120px;
  }
}
.overview__table tbody tr td {
  padding: 15px 0;
  padding-left: 150px;
}
@media (max-width: 767px) {
  .overview__table tbody tr td {
    padding-left: 20px;
  }
}

/*************************************************************************************
許可証
**************************************************************************************/
.permit {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .permit {
    margin-top: 40px;
  }
}

.company-border {
  max-width: 845px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  border: 3px solid #006E6B;
  padding: 30px;
}
@media (max-width: 767px) {
  .company-border {
    padding: 30px 15px;
  }
}

.permit__wrap {
  list-style: disc;
  list-style-position: inside;
  max-width: 420px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}

.permit-list {
  text-indent: -22px;
  padding-left: 22px;
}
.permit-list::marker {
  margin: 0;
}
@media (max-width: 767px) {
  .permit-list {
    line-height: 130%;
    margin-top: 15px;
  }
}

/*************************************************************************************
その他保有資格
**************************************************************************************/
.qualifications {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .qualifications {
    margin-top: 40px;
  }
}

.qualifications__wrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .qualifications__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.qualification ul {
  list-style: disc;
  list-style-position: inside;
}
.qualification ul li {
  text-indent: -16px;
  padding-left: 16px;
}

/*************************************************************************************
安全方針
**************************************************************************************/
.safety-policy {
  background-color: #F3FAFB;
  margin-top: 80px;
  margin-bottom: 80px;
  padding: 50px;
}
@media (max-width: 767px) {
  .safety-policy {
    padding: 40px 15px;
    margin: 40px auto;
  }
}

.safety-policy__text {
  max-width: 528px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/*************************************************************************************
ページタイトル(プライバシーポリシー)
**************************************************************************************/
.page-title--privacy {
  background: url(../img/summary/page-title-privacy.webp) no-repeat center/cover;
}

/*************************************************************************************
プライバシーポリシー
**************************************************************************************/
.privacy {
  margin-top: 200px;
  margin-bottom: 80px;
  max-width: 850px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .privacy {
    margin-top: 150px;
    width: 92%;
  }
}
@media (max-width: 767px) {
  .privacy {
    margin-top: 120px;
    font-size: 15px;
  }
}

.privacy__lead {
  margin: 0;
}

.privacy__block {
  margin-top: 25px;
}
.privacy__block dt {
  font-weight: 600;
  font-size: 18px;
}
.privacy__block dd {
  margin: 0;
}
.privacy__block dd p {
  margin: 0;
  margin-top: 5px;
}
.privacy__block dd ul {
  list-style: disc;
  list-style-position: inside;
}
.privacy__block dd ul li {
  text-indent: -16px;
  padding-left: 16px;
}
.privacy__block dd dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.privacy__block dd dl dt {
  font-weight: 400;
  font-size: 16px;
}
.privacy__block dd dl dd {
  margin: 0;
}

/*************************************************************************************
ページタイトル
**************************************************************************************/
.page-title--contact {
  background: url(../img/summary/page-title-contact.webp) no-repeat center/cover;
}

/*************************************************************************************
お問い合わせ
**************************************************************************************/
.contact__lead {
  padding-top: 120px;
  max-width: 650px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .contact__lead {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .contact__lead {
    padding-top: 40px;
    width: 95%;
  }
}

.contact__tel {
  background-color: #FFFDED;
  padding: 30px;
  max-width: 650px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
}
@media (max-width: 1099px) {
  .contact__tel {
    width: 95%;
  }
}
.contact__tel small {
  display: block;
  text-align: center;
}

.contact__tel__title {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 1099px) {
  .contact__tel__title {
    font-size: 20px;
  }
}

.contact__tel__number a {
  display: block;
  font-family: "Poppins", sans-serif;
  color: #006E6B;
  font-weight: 600;
  font-size: 42px;
  text-decoration: none;
  text-align: center;
}
@media (max-width: 1099px) {
  .contact__tel__number a {
    font-size: 36px;
  }
}

.contact-form {
  max-width: 850px;
  width: 95%;
  margin: 65px auto;
  border: 3px solid #006E6B;
  padding: 40px;
}
@media (max-width: 767px) {
  .contact-form {
    padding: 30px 15px;
  }
}

.contact-form__lead {
  max-width: 690px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contact-form__lead {
    font-size: 15px;
  }
}

.contact-form__form {
  max-width: 680px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 0;
}

.snow-monkey-form .smf-item {
  margin-bottom: 20px;
}
.snow-monkey-form .smf-item .smf-item__col--label {
  margin-bottom: 5px;
}
.snow-monkey-form .smf-item .smf-item__col--label strong {
  background-color: #FE4242;
  color: #ffffff;
  padding: 1px 5px;
  font-weight: 400;
  font-size: 12px;
  margin-left: 10px;
}
.snow-monkey-form .smf-item .smf-item__col--controls input, .snow-monkey-form .smf-item .smf-item__col--controls textarea {
  border: none;
  background-color: #F4F4F4;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.snow-monkey-form .smf-item .smf-item__col--controls textarea {
  resize: none;
  min-height: 250px;
}
@media (max-width: 767px) {
  .snow-monkey-form .smf-item .smf-item__col--controls textarea {
    min-height: 200px;
  }
}
.snow-monkey-form .smf-item .smf-item__col--controls .smf-checkboxes-control .smf-label input::before {
  border-color: #006E6B;
}
.snow-monkey-form .privacy-check {
  text-align: center;
}
.snow-monkey-form .prohibition {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
  margin-top: 40px;
}
.snow-monkey-form .smf-action .smf-button-control__control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  display: block;
  width: 250px;
  margin-right: auto;
  margin-left: auto;
  background-color: #006E6B;
  color: #ffffff;
  border: 1px solid #006E6B;
  padding: 15px 30px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 1100px) {
  .snow-monkey-form .smf-action .smf-button-control__control {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .snow-monkey-form .smf-action .smf-button-control__control:hover {
    background-color: #ffffff;
    color: #006E6B;
  }
}

/*************************************************************************************
確認画面
**************************************************************************************/
.snow-monkey-form[data-screen=confirm] .contact-form__lead {
  display: none;
}
.snow-monkey-form[data-screen=confirm] .privacy-check {
  display: none;
}
.snow-monkey-form[data-screen=confirm] .prohibition {
  display: none;
}
.snow-monkey-form[data-screen=confirm] .smf-action {
  margin-top: 30px;
}

/*************************************************************************************
完了画面
**************************************************************************************/
.snow-monkey-form[data-screen=complete] h2 {
  text-align: center;
  color: #006E6B;
}
.snow-monkey-form[data-screen=complete] .btn {
  margin-top: 30px;
}
.snow-monkey-form[data-screen=complete] .btn .wp-block-button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.snow-monkey-form[data-screen=complete] .btn .wp-block-button a {
  background-color: transparent;
  padding: 5px 10px;
}

.thanks {
  max-width: 640px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding: 80px 0;
}
.thanks h2 {
  color: #006E6B;
}


/*************************************************************************************
ページタイトル(搬入事例)
**************************************************************************************/
.page-title--case {
  background: url(../img/summary/page-title-case.webp) no-repeat center/cover;
}

/*************************************************************************************
搬入事例一覧
**************************************************************************************/
.case-archive {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .case-archive {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.case-archive__lead {
  max-width: 654px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  line-height: 200%;
}
@media (max-width: 767px) {
  .case-archive__lead {
    font-size: 15px;
  }
}

.case-archive__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .case-archive__wrap {
    gap: 30px;
    margin-top: 30px;
  }
}

.case-list a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 30px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media (min-width: 1100px) {
  .case-list a:hover {
    opacity: 0.8;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .case-list a:hover .btn::after {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .case-list a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 15px;
  }
}

.case-list__contents {
  max-width: 536px;
  width: 100%;
}
@media (max-width: 767px) {
  .case-list__contents {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

.case-list__category {
  color: #006E6B;
  font-size: 14px;
  border: 1px solid #006E6B;
  padding: 3px 10px;
}
@media (max-width: 767px) {
  .case-list__category {
    font-size: 12px;
  }
}

.case-list__title {
  font-size: 18px;
  border-bottom: 1px solid #111111;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .case-list__title {
    font-size: 16px;
  }
}

.case-list__lead {
  line-height: 180%;
}
@media (max-width: 767px) {
  .case-list__lead {
    font-size: 15px;
    margin: 5px 0;
  }
}

.case-list__place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.case-list__place dt {
  font-weight: 500;
}
.case-list__place dd {
  margin: 0;
}

.case-list__btn {
  margin-right: 0;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .case-list__btn {
    margin-top: 20px;
    font-size: 15px;
    padding: 5px 15px;
    width: 150px;
  }
  .case-list__btn::after {
    width: 5px;
    height: 12px;
  }
}

.case-list__thumb {
  max-width: 385px;
  width: 100%;
  aspect-ratio: 385/265;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .case-list__thumb {
    max-width: 500px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Poppins", sans-serif;
  margin-top: 40px;
}
.pagination .pages {
  display: none;
}
.pagination .current {
  background-color: #006E6B;
  color: #ffffff;
  border: 1px solid #006E6B;
  padding: 7px 10px;
}
.pagination .page {
  padding: 7px 10px;
  border: 1px solid #006E6B;
  color: #006E6B;
}
.pagination .nextpostslink, .pagination .previouspostslink {
  display: none;
}

/*************************************************************************************
搬入事例(詳細)
**************************************************************************************/
.case__title {
  font-size: 32px;
}
@media (max-width: 767px) {
  .case__title {
    font-size: 22px;
  }
}

.case__category {
  font-size: 16px;
  border: 1px solid #ffffff;
  padding: 3px 10px;
}
@media (max-width: 767px) {
  .case__category {
    font-size: 14px;
  }
}

.case-article {
  padding: 120px 0;
  max-width: 870px;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1099px) {
  .case-article {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .case-article {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

.case-article__lead {
  line-height: 180%;
}

.case-article__head {
  font-size: 28px;
  color: #006E6B;
  padding-left: 15px;
  border-left: 3px solid #006E6B;
  margin-top: 40px;
}
@media (max-width: 1099px) {
  .case-article__head {
    font-size: 24px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .case-article__head {
    font-size: 20px;
  }
}

.case-article__content {
  line-height: 180%;
}
@media (max-width: 767px) {
  .case-article__content {
    font-size: 15px;
  }
}

.case-article__detail dt {
  color: #006E6B;
  font-size: 18px;
  font-weight: 500;
}
.case-article__detail dd {
  margin: 0;
}

.case-article__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 1099px) {
  .case-article__images {
    gap: 20px;
  }
}
.case-article__images .case-article__image {
  max-width: 413px;
  width: 100%;
}
.case-article__images .case-article__image img {
  width: 100%;
  aspect-ratio: 413/267;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-article__btn {
  margin-top: 40px;
}