html {
  overflow-x: hidden;
}

/******************************* header */

header {
  text-align: center;
  background-color: #f9f9f9;
  /* background: linear-gradient(180deg, rgb(255 255 255 / 90%) 50%, rgb(255 255 255 / 10%)); */
  color: #222;
  height: 104px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  transition: transform 0.3s 0.3s;
  line-height: 28px;
  box-sizing: border-box;
  padding: 0 16px;
}

header.hidden {
  transform: translateY(-104px);
}

.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  display: none;
  cursor: pointer;
  z-index: 1001; /* メニューより上に */
}
.hamburger span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  left: 0;
  transition: 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: rotate(-45deg);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  height: 104px;
}

.header-logo {
  width: 98px;
}

.header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-logo {
  width: 98px;
}

.nav-item {
  margin-right: 40px;
  position: relative;
}

/* ドロップダウン非表示がデフォルト */
.nav-solution .dropdown {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 100;
  top: 100%;
  left: 0;
  white-space: nowrap;
}

/* ホバー時に表示 */
.nav-solution:hover .dropdown {
  display: block;
}

/* サブメニューのリンクスタイル */
.nav-solution .dropdown a {
  display: block;
  padding: 5px 10px;
  color: #333;
  text-decoration: none;
}

.nav-solution .dropdown a:hover {
  background-color: #f5f5f5;
}

.nav-item-btn-white {
  background-color: #fff;
  color: #222;
  line-height: 1;
  padding: 13px 24px;
  border-radius: 24px;
  border: 1px solid #222;
  border-radius: 99px;
  margin-right: 12px;
  /* margin-right: 24px; */
}

.nav-item-btn {
  background-color: #222;
  color: #fff !important;
  line-height: 1;
  padding: 13px 24px;
  border-radius: 99px;
  border: 1px solid #222;
}
.nav-item-btn a {
  color: #fff;
}

/******************************* support */
.support {
  /* background-color: #fff; */
  /* padding-bottom: 12rem;
    padding-top: 12rem; */
  padding: 12rem 16px;
  height: auto !important;
}
.support-inner {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 40px; */
}
/* .sec-support { */
/* background-color: #fff; */
/* } */
.support-content {
  margin-top: 12rem;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.support-item {
  width: 100%;
  background-color: #fff;
  padding: 6.4rem 2rem;
  position: relative;
  border-radius: 20px;
  box-sizing: border-box;
  transition: all ease 0.3s;
}
.support-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.05);
}
.support-item-img {
  text-align: center;
  /* padding-top: 80px; */
  width: 72px;
  margin-left: auto;
  margin-right: auto;
}
.support-item-text {
  margin-top: 50px;
}
.support-item-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
}
.support-item-desc {
  margin-top: 20px;
  text-align: center;
  font-weight: 400;
}
.abso-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.urs {
  margin-top: 12rem;
}

/******************************* section contact */
.sec-subtitle {
  color: rgba(102, 102, 102, 1);
  font-weight: 400;
}
.sec-title {
  font-size: 44px;
  margin-top: 28px;
  line-height: 1.2;
}

.contact {
  height: auto !important;
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  /* line-height: 28px; */
  padding-top: 80px;
  position: relative;
}
.sec-contact {
  width: calc(100vw - 80px);
  margin: 0 auto;
  padding: 80px calc(50vw - 640px) 56px;
  background-color: rgba(34, 34, 34, 1);
  border-radius: 40px;
  color: #fff;
  box-sizing: border-box;
}
.contact-text-wrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: start;
  margin-top: 44px;
  font-size: 18px;
}
.contact-text {
  color: #fff;
}

.contact-btn-white a {
  display: block;
  background-color: #fff;
  color: #222;
  font-size: 20px;
  padding: 20px 60px;
  /* border: 1px solid #fff; */
  border-radius: 40px;
  /* margin-right: 24px; */
  text-align: center;
  margin-bottom: 24px;
}

.contact-btn-flex {
  display: flex;
  justify-content: start;
  align-items: center;
}
.contact-btn-text {
  text-align: center;
  width: 100%;
}
.contact-icon {
  width: 40px;
  height: 40px;
  margin-right: 24px;
}

/******************************* footer */
.footer {
  background-color: #fff;
  line-height: 28px;
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 16px;
  /* padding-top: 80px; */
  display: flex;
  justify-content: space-between;
  align-items: start;
  box-sizing: border-box;
}
.footer-left {
  width: 45%;
}
.footer-logo {
  width: 380px;
}
.footer-text {
  font-size: 24px;
  margin-top: 30px;
  line-height: 34px;
}
.footer-text2 {
  font-size: 14px;
  margin-top: 30px;
}
.corp-link {
  margin-left: 24px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.footer-col {
  margin-right: 64px;
}
.footer-title {
  font-weight: bold;
  line-height: 1.4;
}
.footer-title2 {
  font-weight: bold;
  margin-top: 24px;
  line-height: 1.4;
}
.footer-title a,
.footer-title2 a,
.footer-item a {
  line-height: 1.4;
}
.footer-item {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
}
.footer-item a:hover,
.footer-title a:hover,
.footer-title2 a:hover {
  text-decoration: underline;
}
.mt-4 {
  margin-top: 16px;
}

.footer-sns {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 32px;
}
.footer-item-sns {
  margin-right: 12px;
  /* font-size: 20px; */
}
.footer-item-sns a {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
}
.footer-item-sns a i {
  line-height: 40px;
  font-size: 28px;
}

.footer-bottom {
  border-top: 1px solid rgba(217, 217, 217, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 20px 16px 100px;
  /* padding-bottom: 20px; */
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
}
.footer-other-links {
  display: flex;
  justify-content: end;
  align-items: center;
}
.footer-other-links a {
  margin-right: 24px;
}

.pc-none {
  display: none;
}

/******************************* common sections */
/* swiper-company-logo */
.case-logo-wrap {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.case-company-logo {
  border-radius: 20px;
}

/* field-location */
.sec-field {
  background-color: #222;
  padding: 7.5rem 16px;
  /* padding-bottom: 80px; */
  height: auto !important;
  /* padding-top: 80px; */
  overflow-x: hidden;
  position: relative;
}

.field-inner {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 40px; */
}
.sec-field .sec-title {
  color: #fff;
}
.field-wrap {
  margin-top: 40px;
}
.field-item {
  position: relative;
  margin-right: 4px;
}
.field-item-img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.field-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.field-text {
  color: #fff;
  text-align: right;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  /* width: 95%; */
}

.sec-field .swiper-button-next,
.sec-field .swiper-button-prev {
  color: #fff !important;
}

/* .sec-title {
    font-size: 44px;
    margin-top: 28px;
    line-height: 40px;
  } */

/* case-slider */
.case-wrap {
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.case-item {
  background-color: #fff;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.case-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.case-item-img img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.case-item-text {
  padding: 20px;
}
.case-category {
  font-size: 0.75rem;
  border: 1px solid #000;
  padding: 0rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  line-height: 1.6;
}
.case-item-desc {
  margin-top: 1rem;
  font-size: 1rem;
}
.case-company-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.case-item-company {
  color: rgba(102, 102, 102, 1);
  font-size: 1rem;
  font-weight: 400;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000 !important;
}

[data-animate*='fade'] {
  opacity: 0;
}

[data-animate*='rotate'] {
  opacity: 0;
}

.case-wrap {
  overflow: visible;
}

.swiper .swiper-slide {
  height: auto;
}

.swiper .case-item {
  height: 100%;
}

.swiper-container {
  overflow: visible; /* 必要に応じて visible にしてはみ出し表示を確認 */
}

.award-navigation {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: 10;
  display: flex;
  gap: 10px;
  /* padding: 10px; */
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  background-color: #fff;
  border-radius: 20px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -48px !important;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -18px !important;
}

/* Swiperのデフォルト矢印アイコンを使いたい場合はそのまま */

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  /* width: 0!important;
  height: 0!important; */
}

/* Swiperのデフォルト矢印アイコンを使いたい場合はそのまま */

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  color: #222;
}

/* HubSpot form ******************************************************/

#hs-form-iframe-0 .hbspt-form .field.hs-form-field {
  text-align: left;
  margin-bottom: 2.5rem;
}
#hs-form-iframe-0 .hbspt-form label {
  color: #2ff;
  letter-spacing: 0.04em;
}
.hbspt-form label span {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.hbspt-form .field.hs-form-field span.hs-form-required {
  color: #f44336;
}
.hbspt-form .field.hs-form-field .input > .hs-input {
  width: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  border: solid 1px #d9d9d9;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.5;
}
.hbspt-form .field.hs-form-field .input > .hs-input.hs-fieldtype-textarea {
  height: 8rem;
}
.hbspt-form .field.hs-form-field .input input[type='radio'],
input[type='checkbox'] {
  transform: translatey(12%);
}

.hbspt-form .hs_submit input[type='submit'] {
  margin: 1.5rem 0;
  padding: 1rem 8rem;
  border: none;
  border-radius: 99px;
  background-color: rgba(0, 0, 0, 1);
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.hbspt-form .hs_submit input[type='submit']:hover {
  cursor: pointer;
}

.hbspt-form .hs_lastname,
.hbspt-form .hs_firstname {
  float: left;
  width: calc(50% - 0.5rem);
}
.hbspt-form .hs_lastname {
  margin-right: 1rem;
}
.hbspt-form .hs_email::before {
  content: ' ';
  display: block;
  clear: both;
}

@media screen and (min-width: 769px) and (max-width: 1320px) {
  .sec-contact {
    width: calc(100vw - 32px);
    padding: 80px 16px 56px;
  }
}

@media screen and (max-width: 959px) {
  .sec-contact .contact-btn-white a {
    padding: 20px 28px;
    /* min-width: 320px; */
  }
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }
  .hamburger {
    display: flex;
  }
  header {
    height: auto;
  }
  .header-inner {
    height: auto;
    padding: 16px 0 12px;
    /* padding-left: 20px;
      padding-right: 20px; */
    box-sizing: border-box;
  }
  .header-logo {
    width: 60px;
  }
  .header-nav {
    position: absolute;
    visibility: hidden;
    /* top: -1000px; */
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 85vh;
  }
  .header-nav .nav-item-btn-white {
    margin-top: 1rem;
    margin-right: 0;
    margin-top: 30px;
  }
  .header-nav .nav-item-btn {
    margin-top: 1rem;
    margin-right: 0;
  }
  .nav-item {
    margin-right: 0;
    text-decoration: underline;
    padding-bottom: 10px;
  }
  .nav-solution {
    text-decoration: none;
  }
  .header-nav.open {
    display: block;
    opacity: 1;
    /* top: 104px; */
    top: 55px;
    height: calc(100dvh - 55px);
    transform: translateY(0);
    visibility: visible;
  }
  .nav-solution .dropdown {
    display: block;
    position: relative;
    background: white;
    box-shadow: none;
    padding: 0;
    z-index: 100;
    top: 100%;
    left: 0;
    white-space: nowrap;
    text-decoration: underline;
  }
  .footer {
    background-color: #fff;
    /* height: 80svh !important; */
  }
  .footer-right {
    display: none;
  }
  .footer .corp-link {
    display: block;
    margin-left: 0;
    margin-top: 12px;
  }
  .footer-bottom {
    /* display: block; */
    flex-direction: column-reverse;
    padding: 20px 16px 15svh;
    text-align: center;
  }
  .footer-other-links {
    display: block;
    margin-bottom: 20px;
  }
  .footer-other-links a {
    display: block;
    margin-right: 0;
  }
  /* .support-inner {
      padding-right: 16px;
      padding-left: 16px;
    } */
  .support-content {
    display: block;
    margin-top: 40px;
  }
  .support-item {
    width: 100%;
    /* padding-bottom: 40px; */
    margin-bottom: 20px;
  }
  /* .abso-icon {
      position: absolute;
      right: 10px;
      bottom: 10px;
    } */

  .sec-contact {
    width: calc(100vw - 32px);
    padding: 80px 20px;
    background-color: rgba(34, 34, 34, 1);
    /* border-radius: 0; */
    color: #fff;
    display: block;
  }
  .sec-contact div {
    /* margin-bottom: 24px; */
    width: 100%;
  }
  .sec-contact .sec-title {
    font-size: 36px;
  }
  .sec-contact .contact-text-wrap {
    flex-direction: column;
  }
  .contact-text {
    margin-bottom: 120px;
  }
  .sec-contact .contact-btn-white {
    margin-right: 0;
    /* padding: 20px 28px; */
    box-sizing: border-box;
    width: 100%;
    min-width: auto;
  }
  .sec-contact .contact-btn-flex {
    justify-content: space-between;
  }
  .contact-icon {
    width: 32px;
    height: 32px;
    /* margin-right: 2px; */
  }
  .footer-inner {
    padding: 20px;
    padding-top: 40px;
    display: block;
    justify-content: center;
  }
  .footer-left {
    width: 100%;
    text-align: center;
  }
  .footer-logo {
    width: 200px;
  }

  [data-animate*='fade'] {
    opacity: 1;
  }

  [data-animate*='rotate'] {
    opacity: 1;
  }

  .case-logo-wrap {
    width: 100%;
  }
}
