@charset "UTF-8";
.works {
  margin-bottom: var(--section-bottom) !important;
}
.works-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .works-container {
    display: block;
  }
}
.works-container__box {
  width: 48.9%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works-container__box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.works-container__box-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: min(0.55vw, 8px);
  padding-left: 10px;
  padding-right: 10px;
}
.works-container__box-bottom__e {
  color: var(--keycolor);
  font-size: min(1.04vw, 15px);
  font-family: "Secular One", sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .works-container__box-bottom__e {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .works-container__box-bottom__e {
    font-size: 15px;
  }
}
.works-container__box-bottom__j {
  font-size: min(1.39vw, 20px);
  font-weight: 600;
  position: relative;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .works-container__box-bottom__j {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .works-container__box-bottom__j {
    font-size: 20px;
  }
}
.works-container__box-bottom__j::before {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/all-works/works-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(2.08vw, 30px);
  height: min(2.08vw, 30px);
  position: absolute;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .works-container__box-bottom__j::before {
    width: min(2.5vw, 30px);
    height: min(2.5vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .works-container__box-bottom__j::before {
    width: 26px;
    height: 26px;
  }
}
.works-container__box img {
  width: 100%;
  height: 280px;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .works-container__box img {
    width: 100%;
    height: 23.33vw;
  }
}
@media screen and (max-width: 768px) {
  .works-container__box img {
    width: 100%;
    height: 100%;
  }
}
.works-container__box:hover {
  opacity: 0.5;
}

.banner-list {
  display: flex;
  justify-content: space-between;
  height: min(25vw, 360px);
}
@media screen and (max-width: 768px) {
  .banner-list {
    display: block;
    height: inherit;
  }
}
.banner-item {
  width: 50%;
  padding: min(1.74vw, 25px) min(3.33vw, 48px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .banner-item {
    width: 100%;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .banner-item {
    padding: 5px 18px;
  }
}
@media screen and (max-width: 768px) {
  .banner-item {
    padding-right: 2.5%;
    padding-left: 11.5%;
    padding-bottom: 70px;
  }
}
.banner-item.recruit {
  background-image: url(./haneda-asset/img/all-banner/banner1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-item.column {
  background-image: url(./haneda-asset/img/all-banner/banner2.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-item.column .banner-item__title {
  margin-bottom: min(3.47vw, 50px);
}
.banner-item__title {
  font-size: min(3.88vw, 56px);
  font-family: "Secular One", sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: min(2.08vw, 30px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .banner-item__title {
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 768px) {
  .banner-item__title {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.banner-item__title span {
  font-size: min(1.8vw, 26px);
  display: block;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .banner-item__title span {
    font-size: 26px;
  }
}
.banner-item__text {
  margin-bottom: min(0.83vw, 12px);
  line-height: 2;
  color: #fff;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .banner-item__text {
    line-height: 1.3;
  }
}
.banner-item__btn {
  color: #fff;
  position: absolute;
  bottom: min(3.05vw, 44px);
  right: min(5.56vw, 80px);
  padding: min(0.83vw, 12px) min(3.05vw, 44px);
  border: 2px solid #fff;
  border-radius: min(0.55vw, 8px);
  transition: 0.3s;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .banner-item__btn {
    bottom: 2px;
  }
}
@media screen and (max-width: 768px) {
  .banner-item__btn {
    bottom: 24px;
    text-align: center;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .banner-item__btn {
    right: 2.5%;
  }
}
.banner-item__btn:hover {
  color: #fff;
  background-color: var(--keycolor);
  border: none;
}

.contact {
  margin-bottom: var(--section-bottom) !important;
  position: relative;
  padding: 0 min(5.83vw, 84px);
}
.contact.wrapper {
  margin-bottom: min(15.97vw, 230px) !important;
}
@media screen and (max-width: 768px) {
  .contact.wrapper {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 0;
  }
}
.contact::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url(./haneda-asset/img/all-contact/all-contact__bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(74.86vw, 1078px);
  height: min(19.44vw, 280px);
  top: 43%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .contact::before {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact::before {
    width: 100% !important;
    background-image: url(./haneda-asset/img/all-contact/all-contact__bgSP.png);
    background-size: cover;
    top: 26.78vw;
    height: 89.37vw;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .contact::before {
    height: 23.3vw;
  }
}
.contact-catch {
  font-size: min(1.66vw, 24px);
  line-height: 1.3;
  margin-bottom: min(2.08vw, 30px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .contact-catch {
    font-size: 1.66vw;
  }
}
@media screen and (max-width: 768px) {
  .contact-catch {
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 20px;
  }
}
.contact-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact-container {
    display: block;
  }
}
.contact-container__item {
  font-size: min(1.66vw, 24px);
  line-height: 1.8;
  font-weight: 600;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .contact-container__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .contact-container__item {
    font-size: 16px;
    text-align: center;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .contact-container__box {
    width: 48%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .contact-container__box {
    text-align: center;
  }
}
.contact-container__box-text {
  margin-bottom: min(2.77vw, 40px);
  text-align: center;
  font-size: min(1.04vw, 15px);
  line-height: 1.6;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .contact-container__box-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .contact-container__box-text {
    font-size: 15px;
  }
}
.contact-container__btn {
  padding: min(0.83vw, 12px) min(2.22vw, 32px) min(0.83vw, 12px) min(5vw, 72px);
  background-color: var(--keycolor);
  border-radius: min(0.35vw, 5px);
  color: #fff;
  font-size: min(1.39vw, 20px);
  position: relative;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .contact-container__btn {
    padding: 12px 32px 12px 72px;
  }
}
@media screen and (max-width: 768px) {
  .contact-container__btn {
    font-size: 20px;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .contact-container__btn {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .contact-container__btn {
    width: 86%;
    display: inline-block;
    text-align: center;
  }
}
.contact-container__btn:hover {
  box-shadow: none;
  top: 3%;
}
.contact-container__btn::before {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/all-contact/mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(2.08vw, 30px);
  height: min(2.08vw, 30px);
  position: absolute;
  top: 53%;
  left: min(1.74vw, 25px);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .contact-container__btn::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contact-container__btn::before {
    left: 25px;
  }
}
.contact-info {
  text-align: center;
  margin-bottom: min(8.33vw, 120px);
  padding: min(1.66vw, 24px) min(2.22vw, 32px);
  background-color: var(--pale);
}
@media screen and (max-width: 768px) {
  .contact-info {
    margin-bottom: 60px;
  }
}
.contact-info__title {
  font-size: min(1.94vw, 28px);
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .contact-info__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .contact-info__title {
    font-size: 16px;
  }
}
.contact-info__item {
  font-size: min(1.66vw, 24px);
  margin-bottom: 0.5em;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .contact-info__item {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .contact-info__item {
    font-size: 16px;
  }
}
.contact-ann {
  width: min(34.72vw, 500px);
  margin: 0 auto min(8.33vw, 120px);
  text-align: center;
  padding: min(0.69vw, 10px);
  background-color: var(--pale);
}
@media screen and (max-width: 768px) {
  .contact-ann {
    width: 100%;
  }
}
.contact-ann__text {
  font-size: min(1.53vw, 22px);
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .contact-ann__text {
    font-size: 16px;
    font-weight: 700;
  }
}
.contact-ann__tel-nbr {
  font-size: min(1.25vw, 18px);
}
@media screen and (max-width: 768px) {
  .contact-ann__tel-nbr {
    font-size: 16px;
    margin-bottom: 1em;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.page-thanks {
  padding-bottom: 200px;
}

body {
  position: relative;
}

.header {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
  }
}
.header-navigation {
  position: absolute;
  top: min(5.41vw, 78px);
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  padding: min(1.39vw, 20px) min(3.33vw, 48px) min(1.39vw, 20px) min(8.33vw, 120px);
}
@media screen and (max-width: 768px) {
  .header-navigation {
    position: inherit;
    padding: 150px 10%;
    height: 100vh;
    transform: translateX(105%);
    transition: ease 0.4s;
  }
}
.header-navigation.active {
  transform: translateX(0);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .header-navigation {
    top: min(6.5vw, 78px);
  }
}
@media screen and (max-width: 768px) {
  .header-navigation {
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header-navigation {
    background-color: #fff;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .header-navigation {
    padding: 20px 48px 20px min(10vw, 120px);
  }
}
.header-navigation ul {
  display: flex;
  justify-content: space-between;
  width: min(34.72vw, 500px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .header-navigation ul {
    width: 420px;
  }
}
@media screen and (max-width: 768px) {
  .header-navigation ul {
    display: block;
    width: 100%;
  }
}
.header-navigation__item {
  font-weight: bold;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .header-navigation__item a {
    font-size: min(1.33vw, 16px);
  }
}
@media screen and (max-width: 768px) {
  .header-navigation__item {
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
  .header-navigation__item a {
    font-weight: 600;
  }
}
.header-navigation__item:hover {
  border-bottom: 2px solid var(--keycolor);
}
.header-navigation__pr {
  text-align: center;
  font-weight: 600;
  margin-bottom: min(2.08vw, 30px);
}
@media screen and (max-width: 768px) {
  .header-navigation__pr {
    margin-bottom: 20px;
  }
}
.header-navigation__btn {
  width: 310px;
  display: inline-block;
  text-align: center;
  padding: min(1.04vw, 15px) min(2.22vw, 32px) min(1.04vw, 15px) 72px;
  background-color: var(--keycolor);
  border-radius: min(0.83vw, 12px);
  color: #fff;
  font-size: min(5.13vw, 20px);
  width: 100%;
  position: relative;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
}
@media screen and (max-width: 768px) {
  .header-navigation__btn {
    padding: 12px 32px 12px 72px;
  }
}
.header-navigation__btn:hover {
  box-shadow: none;
  transform: translateY(2px);
}
.header-navigation__btn::before {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/all-contact/mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(2.08vw, 30px);
  height: min(2.08vw, 30px);
  position: absolute;
  top: 50%;
  left: min(1.74vw, 25px);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header-navigation__btn::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .header-navigation__btn::before {
    left: 33px;
  }
}
.header-cta {
  position: absolute;
  top: min(4.09vw, 59px);
  right: min(5.76vw, 83px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .header-cta {
    right: min(6.92vw, 83px);
    top: min(4.91vw, 59px);
  }
}
@media screen and (max-width: 768px) {
  .header-cta {
    display: none;
  }
}
.header-cta img {
  width: 100%;
}
.header-cta__btn {
  background-color: var(--keycolor);
  padding: min(0.35vw, 5px) min(3.88vw, 56px);
  color: #fff;
  display: block;
  margin-top: min(1.11vw, 16px);
  border-radius: min(0.55vw, 8px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .header-cta__btn {
    padding: min(0.42vw, 5px) min(4.67vw, 56px);
    text-align: center;
  }
}
.header-splogo {
  width: 140px;
  position: fixed;
  top: 2%;
  left: 5%;
}

.footer {
  background-color: var(--keycolor);
  padding: min(8.48vw, 122px) 0 min(5.56vw, 80px);
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .footer-container {
    display: block;
  }
}
.footer-container.wrapper {
  margin-bottom: 0 !important;
}
.footer-container__logo {
  margin-bottom: min(0.9vw, 13px);
}
.footer-container__add {
  font-size: min(1.39vw, 20px);
  line-height: 1.6;
  margin-bottom: 1em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-container__add {
    font-size: 20px;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .footer-container__add {
    font-size: 20px;
  }
}
.footer-container__tel, .footer-container__fax {
  font-size: min(1.39vw, 20px);
  color: #fff;
  margin-bottom: 4.2px;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .footer-container__tel, .footer-container__fax {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-container__tel, .footer-container__fax {
    font-size: 20px;
  }
}
.footer-container__sns {
  margin-top: min(0.97vw, 14px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: min(1.11vw, 16px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .footer-container__sns {
    margin-top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer-container__sns {
    margin-top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer-container__sns {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer-container__sns-item {
    width: 25px;
  }
}
.footer-container__box.right {
  display: flex;
  justify-content: space-between;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .footer-container__box.right {
    width: 95%;
    margin: 30px auto 86px;
  }
}
.footer-container__box-service__title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1em;
}
.footer-container__box-service__title a {
  color: #fff;
}
.footer-container__box-service__item {
  margin-bottom: 1em;
  color: #fff;
  list-style-type: disc;
  list-style-position: inside;
}
.footer-container__box-service__item a {
  color: #fff;
}

.top-fv {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: min(7.92vw, 114px);
  height: auto;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-fv {
    margin-bottom: 54px;
  }
}
@media screen and (max-width: 768px) {
  .top-fv {
    width: 100%;
    margin-bottom: 0;
    z-index: -1;
  }
}
.top-fv-catch {
  width: min(75vw, 1090px);
  position: absolute;
  bottom: min(11.11vw, 160px);
  left: 0;
  margin-left: min(11.18vw, 161px);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-fv-catch {
    width: 100%;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-fv-catch {
    bottom: 6.66vw;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-catch {
    bottom: 21%;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-catch {
    left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-catch {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-catch {
    width: 95%;
    display: block;
  }
}
.top-fv-catch__text {
  font-size: min(4.44vw, 64px);
  color: #fff;
  line-height: 1.4;
  display: block;
  text-shadow: 2px 2px min(0.55vw, 8px) rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 768px) {
  .top-fv-catch__text {
    font-size: 44px;
  }
}
.top-fv-catch__btn {
  font-size: min(1.67vw, 24px);
  color: #fff;
  padding-top: min(9.72vw, 140px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-fv-catch__btn {
    font-size: 24px;
    margin-left: 0;
    padding-left: 100px;
  }
}
.top-fv-catch__btn::before {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/top-fv/fv-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(6.94vw, 100px);
  height: min(6.25vw, 90px);
  position: absolute;
  top: min(7.64vw, 110px);
  right: min(11.11vw, 160px);
}
@media screen and (max-width: 768px) {
  .top-fv-catch__btn::before {
    width: 20.51vw;
    height: 18.46vw;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-catch__btn::before {
    top: 6.3vw;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-catch__btn::before {
    right: -43%;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-fv-catch__move {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-catch__move {
    margin-bottom: 30px;
  }
}
.top-fv-treat {
  position: relative;
  margin-top: min(1.39vw, 20px) !important;
}
.top-fv-treat::after {
  content: "haneda compressor";
  text-transform: uppercase;
  display: inline-block;
  font-size: min(6.11vw, 88px);
  color: var(--pale);
  font-family: "Secular One", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-fv-treat::after {
    font-size: 62px;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-treat::after {
    font-size: 38px;
  }
}
.top-fv-treat__list {
  display: flex;
  justify-content: center;
  gap: min(6.11vw, 88px);
  margin-top: min(3.19vw, 46px);
  font-weight: bold;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .top-fv-treat__list {
    display: block;
    text-align: center;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-fv-treat__list {
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .top-fv-treat__list {
    margin-top: 10px;
  }
}
.top-fv-treat__item {
  font-size: min(1.66vw, 24px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-fv-treat__item {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
.top-fv-splogo {
  position: absolute;
  top: 2%;
  right: 5%;
  width: min(9.72vw, 140px);
}

.slick-prev,
.slick-next {
  display: none !important;
}

@media screen and (min-width:768px) and (max-width:1200px) {
  .slick-slider {
    margin-bottom: 30px;
  }
}

.top-service {
  margin-bottom: var(--section-bottom) !important;
}
.top-service__container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-service__container {
    display: block;
  }
}
.top-service__container-box {
  width: 48.9%;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-service__container-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-service__container-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top-service__container-box__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: min(0.55vw, 8px);
  align-items: center;
}
.top-service__container-box__bottom__e {
  color: var(--keycolor);
  font-size: min(1.04vw, 15px);
  font-family: "Secular One", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .top-service__container-box__bottom__e {
    font-size: 15px;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-service__container-box__bottom__e {
    font-size: 15px;
  }
}
.top-service__container-box__bottom__j {
  font-size: min(1.39vw, 20px);
  font-weight: 600;
  position: relative;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-service__container-box__bottom__j {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-service__container-box__bottom__j {
    font-size: 20px;
  }
}
.top-service__container-box__bottom__j::before {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/top-service/service-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(2.08vw, 30px);
  height: min(2.08vw, 30px);
  position: absolute;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .top-service__container-box__bottom__j::before {
    width: 26px;
    height: 26px;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-service__container-box img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top-service__container-box img {
    width: 100%;
  }
}
.top-service__container-box:hover {
  opacity: 0.5;
}

.top-company {
  position: relative;
  max-width: 1440px;
  margin: 0 auto var(--section-bottom);
  padding-bottom: min(34.72vw, 500px);
}
.top-company::before {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/top-company/top-company__bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(65vw, 936px);
  height: min(51.39vw, 740px);
  position: absolute;
  bottom: min(-13.19vw, -190px);
}
@media screen and (max-width: 768px) {
  .top-company::before {
    background-image: url(./haneda-asset/img/top-company/top-company__bgSP.png);
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-company::before {
    width: 78vw;
    bottom: -9.17vw;
  }
}
@media screen and (max-width: 768px) {
  .top-company::before {
    width: 72% !important;
    bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .top-company::before {
    height: 400px;
  }
}
.top-company .section-title {
  font-size: min(8.33vw, 120px);
}
@media screen and (max-width: 768px) {
  .top-company .section-title {
    font-size: 60px;
    text-align: left;
  }
}
.top-company .wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-company {
    padding-bottom: 0;
  }
}
.top-company__cont {
  position: absolute;
  top: min(25vw, 360px);
  right: 0;
}
@media screen and (max-width: 768px) {
  .top-company__cont {
    position: inherit;
    top: 0;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-company__cont {
    top: 30vw;
  }
}
.top-company__catch {
  font-size: min(1.66vw, 24px);
  font-weight: 600;
  margin-bottom: min(1.11vw, 16px);
}
@media screen and (max-width: 768px) {
  .top-company__catch {
    font-size: 24px;
  }
}
.top-company__img {
  width: 49.0740740741%;
}
@media screen and (max-width: 768px) {
  .top-company__img {
    transform: none;
    margin-bottom: 50px;
    width: 100%;
  }
}
.top-company__text {
  line-height: 1.875;
  font-weight: 500;
  margin-bottom: min(2.99vw, 43px);
}
.top-company__btn {
  padding-left: min(8.61vw, 124px);
  font-size: min(1.66vw, 24px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-company__btn {
    padding-left: 164px;
  }
}
@media screen and (max-width: 768px) {
  .top-company__btn {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .top-company__btn {
    display: inline-block;
  }
}
.top-company__btn::before {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/top-company/company-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(6.94vw, 100px);
  height: min(6.25vw, 90px);
  position: absolute;
  top: 68%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .top-company__btn::before {
    width: 20.51vw;
    height: 18.46vw;
  }
}
@media screen and (max-width: 768px) {
  .top-company__btn::before {
    right: -90px;
    transform: none;
    top: inherit;
    left: inherit;
    bottom: -5.9vw;
  }
}

/*タイムライン全体の設定*/
.timeline {
  width: 100%;
  margin: min(3.47vw, 50px) auto;
  padding: 0 min(2.08vw, 30px);
}

.timeline ul {
  /*線の起点とするためrelativeを設定*/
  position: relative;
  list-style: none;
  padding: 0 0 min(4.17vw, 60px) 0;
}

/*絶対配置で線を設定*/
.border-line {
  /*線の位置*/
  position: absolute;
  left: 44%;
  top: 0;
  width: 3px; /*線の太さ*/
  height: 0; /*はじめは高さを0に*/
  background: #000;
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline ul::after {
  content: "";
  position: absolute;
  top: 0;
  left: 43.7%;
  width: min(0.69vw, 10px);
  height: min(0.69vw, 10px);
  background: #666;
  border-radius: 50%;
}

.top-news {
  margin-bottom: var(--section-bottom) !important;
}
.top-news__item {
  margin-bottom: min(2.08vw, 30px);
}
@media screen and (max-width: 768px) {
  .top-news__item {
    margin-bottom: 15px;
  }
}
.top-news__item date {
  font-size: min(1.39vw, 20px);
  display: inline-block;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-news__item date {
    font-size: 20px;
  }
}
.top-news__item-tag {
  font-size: min(1.39vw, 20px);
  display: inline-block;
  background-color: var(--pale);
  padding: 2px min(1.66vw, 24px);
  margin-left: min(3.47vw, 50px);
  width: 13%;
  text-align: center;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .top-news__item-tag {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-news__item-tag {
    width: fit-content;
  }
}
.top-news__item-title {
  font-size: min(1.39vw, 20px);
  display: inline-block;
  margin-left: min(3.47vw, 50px);
}
@media screen and (max-width: 768px) {
  .top-news__item-title {
    margin-left: 0;
  }
}

.page-company__aboutUs {
  margin-top: min(3.33vw, 48px) !important;
  margin-bottom: var(--section-bottom) !important;
}
.page-company__aboutUs-text {
  text-align: center;
  margin-bottom: 0.5em;
  font-size: min(0.97vw, 14px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-company__aboutUs-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-company__aboutUs-text {
    margin-bottom: 1em;
    line-height: 1.7;
    font-size: 14px;
  }
}
.page-company__aboutUs-title {
  text-align: center;
  font-size: min(1.66vw, 24px) !important;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-company__aboutUs-title {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 768px) {
  .page-company__aboutUs-title {
    font-size: 36px !important;
  }
}
@media screen and (max-width: 768px) {
  .page-company__aboutUs-title span {
    font-size: 18px !important;
  }
}
@media screen and (max-width: 768px) {
  .page-company__aboutUs.wrapper {
    margin-bottom: 60px !important;
  }
}
.page-company__swot {
  margin-bottom: var(--section-bottom) !important;
}
@media screen and (max-width: 768px) {
  .page-company__swot.wrapper {
    margin-bottom: 70px;
  }
}
.page-company__swot-cont {
  margin-top: min(5.56vw, 80px);
}
.page-company__swot-title {
  text-align: center;
  font-size: min(3.82vw, 55px);
}
.page-company__swot-list {
  display: flex;
  justify-content: center;
  gap: min(4.17vw, 60px);
  flex-wrap: wrap;
  margin-bottom: min(2.08vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-company__swot-list {
    display: block;
    margin-bottom: 60px;
  }
}
.page-company__swot-item {
  width: 420px;
  padding: min(1.74vw, 25px) 0 min(1.74vw, 25px) min(3.33vw, 48px);
  box-shadow: 0px 4px min(0.83vw, 12px) 0px rgba(0, 72, 152, 0.25);
}
@media screen and (max-width: 768px) {
  .page-company__swot-item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-company__swot-item {
    padding-left: 10px;
  }
}
.page-company__swot-item__title {
  font-size: min(2.22vw, 32px);
  text-align: left;
  margin-bottom: min(1.39vw, 20px);
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-company__swot-item__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .page-company__swot-item__title {
    margin-bottom: 20px;
  }
}
.page-company__swot-text {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1em;
}
.page-company__ourNext {
  margin-bottom: var(--section-bottom) !important;
  background-color: var(--pale);
  padding: min(4.86vw, 70px) 0 min(3.47vw, 50px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-company__ourNext {
    padding-top: 70px;
  }
}
.page-company__ourNext .wrapper {
  margin-bottom: min(2.77vw, 40px) !important;
}
.page-company__ourNext-title {
  position: absolute;
  top: min(-2.77vw, -40px);
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: min(2.77vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-company__ourNext-title {
    top: -19px;
  }
}
@media screen and (max-width: 768px) {
  .page-company__ourNext-title {
    margin-bottom: 0;
  }
}
.page-company__ourNext-list {
  display: flex;
  justify-content: center;
  gap: min(3.33vw, 48px);
}
@media screen and (max-width: 768px) {
  .page-company__ourNext-list {
    display: block;
  }
}
.page-company__ourNext-item {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: min(1.39vw, 20px);
  background-color: #fff;
  width: min(26.39vw, 380px);
}
@media screen and (max-width: 768px) {
  .page-company__ourNext-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.page-company__ourNext-item__title {
  font-size: min(1.66vw, 24px);
  font-weight: 600;
  margin-bottom: min(1.39vw, 20px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-company__ourNext-item__title {
    font-size: 24px;
  }
}
.page-company__ourNext-content__item {
  margin-bottom: 1em;
  list-style-type: disc;
  list-style-position: inside;
}
.page-company__history {
  position: relative;
  margin-bottom: var(--section-bottom) !important;
}
@media screen and (max-width: 768px) {
  .page-company__history-title {
    font-size: 20px !important;
  }
}
.page-company__history .section-smallTitle {
  text-align: center;
  padding-top: min(2.08vw, 30px);
}
.page-company__history::before {
  content: "";
  display: inline-block;
  width: min(19.1vw, 725px);
  height: min(27.78vw, 400px);
  background-color: var(--pale);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page-company__history::before {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .page-company__history::before {
    height: 460px;
  }
}
@media screen and (max-width: 768px) {
  .page-company__history {
    margin-bottom: var(--section-bottomSP) !important;
  }
}
.page-company__history-list {
  display: flex;
  justify-content: space-between;
}
.page-company__history-text {
  margin-bottom: min(1.74vw, 25px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-company__history-text {
    font-size: 14px;
    line-height: 1.7;
  }
}
.page-company__greeting {
  margin-bottom: var(--section-bottom) !important;
}
@media screen and (max-width: 768px) {
  .page-company__greeting {
    margin-bottom: 40px !important;
  }
}
.page-company__greeting-title {
  font-size: min(2.5vw, 36px);
  text-align: center;
  margin-bottom: min(2.77vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-company__greeting-title {
    font-size: 36px;
  }
}
.page-company__greeting-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-company__greeting-list {
    display: block;
  }
}
.page-company__greeting-item {
  width: 48.5%;
}
@media screen and (max-width: 768px) {
  .page-company__greeting-item {
    width: 100%;
    margin-bottom: 70px;
  }
}
.page-company__greeting-item.text {
  line-height: 1.8;
  margin-top: min(1.39vw, 20px);
}
.page-company__greeting-item__title {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: min(1.39vw, 20px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-company__greeting-item__title {
    font-size: 1.91vw;
  }
}
.page-company__profile {
  margin-bottom: min(2.77vw, 40px) !important;
}
.page-company__profile-project {
  background-color: var(--pale);
  padding-top: min(2.77vw, 40px);
  padding-bottom: min(6.94vw, 100px);
}
@media screen and (max-width: 768px) {
  .page-company__profile-project {
    padding-bottom: 30px;
    padding-top: 70px;
  }
}
.page-company__profile-title {
  text-align: left !important;
}
@media screen and (max-width: 768px) {
  .page-company__profile-title {
    font-size: 36px !important;
  }
}
@media screen and (max-width: 768px) {
  .page-company__profile-title span {
    font-size: 18px !important;
  }
}
.page-company__profile-area {
  margin-top: -80px !important;
  background-color: #fff;
  padding: 105px min(8.33vw, 120px) 0 min(8.33vw, 120px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .page-company__profile-area {
    padding: 0;
  }
}
.page-company__profile-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: min(1.66vw, 24px);
}
@media screen and (max-width: 768px) {
  .page-company__profile-list {
    display: block;
    padding: 0 15px;
  }
  .page-company__profile-list:first-child {
    padding: min(1.04vw, 15px) min(1.04vw, 15px) 0 min(1.04vw, 15px);
  }
}
@media screen and (max-width: 768px) {
  .page-company__profile-list {
    margin-bottom: 24px;
  }
}
.page-company__profile-list:last-child {
  padding-bottom: min(11.11vw, 160px);
}
@media screen and (max-width: 768px) {
  .page-company__profile-list:last-child {
    padding-bottom: 20px;
  }
}
.page-company__profile-list__title {
  width: 30%;
  font-size: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
  }
}
.page-company__profile-list__cont {
  width: 70%;
  font-size: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__cont {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__cont {
    font-size: 16px;
    line-height: 1.5;
  }
}
.page-company__profile-list__cont p {
  font-size: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__cont p {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-company__profile-list__cont li {
  line-height: 1.5;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__cont .client li {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 16px;
  }
}
.page-company__profile-list__cont .client li:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__cont .client li:not(:last-child) {
    margin-bottom: 0.7em;
  }
}
.page-company__profile-list__cont .standard li {
  margin-left: min(0.69vw, 10px);
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__cont .standard li {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-company__profile-list__cont .standard li:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__cont .standard li:not(:last-child) {
    margin-bottom: 0.7em;
  }
}
.page-company__profile-list__cont .branch.matsudo {
  margin-top: min(1.39vw, 20px);
}
.page-company__profile-list__cont .branch dt {
  font-size: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__cont .branch dt {
    font-size: 16px;
    line-height: 1.875;
  }
}
.page-company__profile-list__cont .branch dd {
  margin-left: min(1.39vw, 20px);
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .page-company__profile-list__cont .branch dd {
    margin-bottom: 0;
  }
}
.page-company__profile-list__cont li {
  font-size: min(1.39vw, 20px);
}
.page-company__standard {
  margin-bottom: var(--section-bottom) !important;
  background-color: var(--pale);
  padding: min(5.56vw, 80px) 0;
  margin-bottom: min(13.89vw, 200px);
}
@media screen and (max-width: 768px) {
  .page-company__standard {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 768px) {
  .page-company__standard {
    padding: 80px 0;
  }
}
.page-company__standard-comment {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-company__standard-comment {
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
  }
}
.page-company__standard-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: min(1.8vw, 26px) !important;
}
@media screen and (max-width: 768px) {
  .page-company__standard-area {
    display: block;
  }
}
.page-company__standard-box {
  width: 48.5%;
}
@media screen and (max-width: 768px) {
  .page-company__standard-box {
    width: 100%;
    margin-bottom: 10px;
  }
}
.page-company__standard-box__text {
  font-size: min(1.94vw, 28px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-company__standard-box__text {
    font-size: 20px;
  }
}
.page-company__standard-box.right {
  background-color: #fff;
  border: 1px solid #000;
  padding: min(3.33vw, 48px);
}
@media screen and (max-width: 768px) {
  .page-company__standard-box.right {
    padding: 10px;
  }
}
.page-company__standard-box__list {
  display: flex;
  justify-content: space-between;
}
.page-company__standard-box__list:not(:last-child) {
  margin-bottom: 1.5em;
}
.page-company__standard-box__title {
  font-size: min(1.39vw, 20px);
  width: 40%;
}
@media screen and (max-width: 768px) {
  .page-company__standard-box__title {
    font-size: 16px;
  }
}
.page-company__standard-box__doc {
  font-size: min(1.39vw, 20px);
  width: 60%;
}
@media screen and (max-width: 768px) {
  .page-company__standard-box__doc {
    font-size: 16px;
  }
}
.page-company__museum {
  position: relative;
  height: 450px;
  margin-bottom: var(--section-bottom) !important;
}
@media screen and (max-width: 768px) {
  .page-company__museum {
    height: 59vw;
    margin-bottom: 30px !important;
  }
}
.page-company__museum-title {
  position: absolute;
  line-height: 1.5;
  background-color: #fff;
  top: 50%;
  left: min(6.94vw, 100px);
  transform: translateY(-50%);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-company__museum-title {
    top: inherit;
    bottom: -30px;
    left: 0;
    width: 95%;
    font-weight: 500;
    font-size: 20px !important;
    line-height: 1.5 !important;
  }
}
.page-company__museum-img {
  position: absolute;
  right: 0;
  width: 600px;
}
@media screen and (max-width: 768px) {
  .page-company__museum-img {
    width: 80%;
  }
}
.page-company__top {
  position: relative;
  margin-bottom: var(--section-bottom) !important;
  background-color: var(--pale);
  padding-top: min(5vw, 72px);
  padding-bottom: min(5vw, 72px);
}
@media screen and (max-width: 768px) {
  .page-company__top {
    margin-bottom: var(--section-bottomSP) !important;
  }
}
@media screen and (max-width: 768px) {
  .page-company__top {
    padding-bottom: 1px;
    padding-top: 80px;
  }
}
.page-company__top-title {
  text-align: center;
  margin-bottom: min(3.47vw, 50px) !important;
  font-size: min(2.22vw, 32px) !important;
}
@media screen and (max-width: 768px) {
  .page-company__top-title {
    font-size: 20px !important;
    margin-bottom: 30px !important;
  }
}
.page-company__top-area {
  background-color: #fff;
  padding: min(6.94vw, 100px) min(4.17vw, 60px);
}
@media screen and (max-width: 768px) {
  .page-company__top-area {
    padding: 30px 10px;
  }
}
.page-company__top-add.wrapper {
  width: min(63.89vw, 920px);
  text-align: center;
  margin-top: min(8.33vw, 120px);
  margin-bottom: min(8.33vw, 120px);
  line-height: 1.5;
  font-size: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-company__top-add.wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-company__top-add.wrapper {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page-company__top-add.wrapper {
    margin-bottom: 30px;
  }
}
.page-company__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-company__item {
  width: min(31.93vw, 460px);
  margin-bottom: min(2.77vw, 40px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-company__item {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .page-company__item {
    width: 100%;
  }
}
.page-company__item-title {
  font-size: min(1.39vw, 20px);
  font-weight: bold;
  margin-bottom: min(1.39vw, 20px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-company__item-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-company__item-title {
    font-size: 16px;
  }
}
.page-company__item-text {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-company__item-text {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}
.page-company__china-title {
  font-size: min(1.66vw, 24px);
  text-align: center;
  font-weight: 600;
  margin-bottom: min(4.17vw, 60px);
}
.page-company__china-area {
  background-color: var(--pale);
}
.page-company__china-area .wrapper {
  padding: min(6.94vw, 100px) min(4.17vw, 60px);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page-company__china-area .wrapper {
    padding: 30px 10px;
  }
}
.page-company__access {
  margin-bottom: var(--section-bottom) !important;
}
.page-company__access-title {
  font-size: min(3.88vw, 56px);
  text-align: center;
  font-family: "Secular One", sans-serif;
  text-transform: uppercase;
  color: var(--sectionTitle);
  margin-bottom: min(1.66vw, 24px);
}
.page-company__access-title span {
  font-size: min(1.39vw, 20px);
  display: block;
  color: var(--text);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-company__access-title span {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-company__access-title span {
    font-size: 20px;
  }
}
.page-company__access-area__address {
  text-align: center;
  font-size: min(1.39vw, 20px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-company__access-area__address {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-company__access-area__address {
    font-size: 20px;
  }
}
.page-company__access-area__map {
  margin-top: min(2.77vw, 40px);
}

.readmore {
  position: relative;
  margin: min(3.47vw, 50px) auto 0;
  padding: 0 0 min(5.21vw, 75px);
}

.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: min(13.89vw, 200px);
  padding: min(0.55vw, 8px) min(2.77vw, 40px);
  text-align: center;
  border-radius: min(0.35vw, 5px);
  background-color: #fff;
  border: 1px solid #333;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .readmore label {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .readmore label {
    width: 200px;
  }
}

.readmore label::before {
  content: "read more";
}

.readmore input[type=checkbox]:checked ~ label::before {
  content: "元に戻す";
}

.readmore input[type=checkbox] {
  display: none;
}

.readmore-content {
  position: relative;
  text-align: center;
  height: min(13.89vw, 200px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .readmore-content {
    height: 550px;
  }
}

.readmore input[type=checkbox]:checked ~ .readmore-content {
  height: auto;
}

@media screen and (max-width: 768px) {
  .under-service__point {
    width: 100%;
    margin: 0 auto;
  }
}
.under-service__point .bgcPale {
  background-color: var(--pale);
  padding: min(2.08vw, 30px) 2.5%;
}
.under-service__point-list {
  width: min(75vw, 1080px);
  margin: 0 auto;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__point-list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .under-service__point-list {
    width: 100%;
  }
}
.under-service__point-title {
  font-size: min(1.8vw, 26px);
  color: var(--sectionTitle);
  font-weight: 600;
  text-align: center;
  margin-bottom: min(3.47vw, 50px);
}
@media screen and (max-width: 768px) {
  .under-service__point-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.under-service__point-item {
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .under-service__point-item {
    text-indent: -1.9em;
    padding-left: 2em;
  }
}
.under-service__point-item span {
  font-size: min(1.39vw, 20px);
  font-weight: 600;
  color: var(--sectionTitle);
  margin-right: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .under-service__point-item span {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__point-item span {
    margin-right: 20px;
  }
}

.under-service__serviceMain-list {
  display: flex;
  justify-content: space-between;
}
.under-service__serviceMain.sales .section-title {
  font-size: min(3.47vw, 50px);
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain.sales .section-title {
    font-size: 55px;
  }
}
.under-service__serviceMain.sales::before {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/page-service/page-service__oneBG.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(63.89vw, 920px);
  height: min(40.9vw, 589px);
  position: absolute;
  left: 0;
  top: min(7.64vw, 110px);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain.sales::before {
    background-image: url(./haneda-asset/img/page-service/page-service__oneBGSP.png);
  }
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain.sales::before {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain.sales::before {
    height: 580px;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__serviceMain.sales::before {
    top: 110px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain.sales::before {
    top: 50px;
  }
}
.under-service__serviceMain-text.sales {
  margin-bottom: min(3.47vw, 50px);
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain-text.sales {
    margin-bottom: 50px;
  }
}
.under-service__serviceMain-img {
  margin-bottom: min(9.72vw, 140px);
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain-img {
    margin-bottom: 90px;
  }
}
.under-service__serviceMain-area__box {
  width: 30%;
}
.under-service__serviceMain-area__box.title {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain-area__box.title {
    width: 100%;
  }
}
.under-service__serviceMain-area.sales {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain-area.sales {
    display: block;
  }
}

.under-service__allround {
  margin-bottom: var(--section-bottom) !important;
  background-color: var(--pale);
  padding: min(5vw, 72px) min(5vw, 72px) min(3.125vw, 45px);
}
@media screen and (max-width: 768px) {
  .under-service__allround {
    margin-bottom: 60px !important;
    padding: 56px 0 100px;
  }
}
.under-service__allround .wrapper {
  margin-bottom: 0 !important;
}
.under-service__allround-title {
  text-align: center;
  font-size: min(2.5vw, 36px);
  margin-bottom: min(2.77vw, 40px);
  color: var(--sectionTitle);
}
@media screen and (max-width: 768px) {
  .under-service__allround-title {
    font-size: 24px;
    font-weight: 600;
  }
}
.under-service__allround-list {
  display: flex;
  justify-content: space-between;
}
.under-service__allround-text {
  line-height: 1.6;
  align-items: center;
  display: flex;
  height: min(2.77vw, 40px);
  line-height: min(2.77vw, 40px);
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  margin-top: min(6.94vw, 100px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .under-service__allround-text {
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__allround-text {
    margin-top: 30px;
  }
}
.under-service__allround-text.two {
  height: auto;
  line-height: 1.7;
}
.under-service__allround-companylist {
  animation: flowing 50s linear infinite;
  font-size: min(1.39vw, 20px);
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}
.under-service__allround-item {
  display: inline-block;
  padding-right: min(0.69vw, 10px);
  padding-left: min(0.69vw, 10px);
  font-size: min(1.94vw, 28px);
  font-weight: 600;
}
.under-service__allround-item a {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .under-service__allround-item a {
    font-size: 16px;
  }
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.under-service__title {
  margin-top: min(3.33vw, 48px) !important;
  margin-bottom: var(--section-bottom) !important;
}
@media screen and (max-width: 768px) {
  .under-service__title {
    margin-bottom: var(--section-bottomSP) !important;
  }
}
.under-service__title.recruit {
  margin-bottom: min(6.94vw, 100px) !important;
}
@media screen and (max-width: 768px) {
  .under-service__title.sales .wrapper {
    margin-bottom: 40px;
  }
}
.under-service__title-text {
  margin-bottom: min(6.94vw, 100px);
  font-size: min(3.88vw, 56px);
  color: var(--sectionTitle);
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .under-service__title-text {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__title-text {
    font-size: 40px;
  }
}
.under-service__title-text span {
  color: var(--text);
  font-size: min(1.39vw, 20px);
  display: block;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__title-text span {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__title-text span {
    font-size: 20px;
    margin-top: 10px;
  }
}
.under-service__title.mb0 {
  margin-bottom: 0 !important;
}
.under-service__catch {
  text-align: center;
}
.under-service__catch-text {
  font-size: min(2.22vw, 32px);
  margin-bottom: min(9.03vw, 130px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .under-service__catch-text {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
  }
}
.under-service__triple {
  position: relative;
}
.under-service__triple::after {
  content: "haneda compressor";
  text-transform: uppercase;
  display: inline-block;
  font-size: min(6.11vw, 88px);
  color: var(--pale);
  font-family: "Secular One", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .under-service__triple::after {
    font-size: 60px;
  }
}
.under-service__triple.wrapper {
  margin-bottom: 0 !important;
}
.under-service__triple-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .under-service__triple-list {
    display: block;
  }
}
.under-service__triple-item {
  font-weight: bold;
  font-size: min(1.66vw, 24px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__triple-item {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__triple-item {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
  }
}

.under-service__serviceMain {
  position: relative;
  max-width: 1440px;
  margin: 0 auto min(18.06vw, 260px) !important;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain {
    margin-bottom: 0 !important;
  }
}
.under-service__serviceMain::before {
  content: "";
  width: min(66.67vw, 960px);
  height: min(37.64vw, 542px);
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/page-service/page-service__twoBG.png);
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: min(16.67vw, 240px);
  z-index: -1;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__serviceMain::before {
    width: 76.16vw;
    height: 43.33vw;
  }
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain::before {
    height: 550px;
    width: 95%;
    top: 58px;
  }
}
.under-service__serviceMain-item {
  text-align: center;
}
.under-service__serviceMain-img {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain-img {
    width: 100%;
  }
}
.under-service__serviceMain-img img {
  width: 55.5555555556%;
}
.under-service__serviceMain-area {
  margin-top: min(-4.86vw, -70px);
  margin-bottom: min(3.54vw, 51px);
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain-area {
    margin-bottom: 10px;
  }
}
.under-service__serviceMain .section-title {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain .section-title {
    text-align: left;
  }
}
.under-service__serviceMain-catch {
  font-size: min(1.66vw, 24px);
  margin-bottom: min(0.83vw, 12px);
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain-catch {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 12px;
    font-size: 24px;
    text-align: left;
  }
}
.under-service__serviceMain-btn {
  font-size: min(1.66vw, 24px);
  padding: min(1.32vw, 19px) 0 min(1.32vw, 19px) min(7.36vw, 106px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain-btn {
    display: inline-block;
    padding-left: 16px;
    font-size: 24px;
  }
}
.under-service__serviceMain-btn::before {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/page-service/service-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(6.94vw, 100px);
  height: min(6.25vw, 90px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMain-btn::before {
    width: 20.51vw;
    height: 18.46vw;
    transform: none;
    top: inherit;
    left: 100%;
    bottom: -4.64vw;
  }
}

.under-service__table {
  margin-bottom: var(--section-bottom) !important;
}
@media screen and (max-width: 768px) {
  .under-service__table {
    margin-bottom: var(--section-bottomSP) !important;
  }
}
.under-service__table-title {
  font-size: min(1.66vw, 24px);
  text-align: center;
  color: var(--sectionTitle);
  margin-bottom: min(1.66vw, 24px);
}
@media screen and (max-width: 768px) {
  .under-service__table-title {
    font-size: 24px;
  }
}
.under-service__table tbody {
  border-bottom: 1px solid #000;
}
.under-service__table tr {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.under-service__table td {
  width: min(25vw, 360px);
  padding: min(0.83vw, 12px) 0 min(0.83vw, 12px) min(2.22vw, 32px);
  border-right: 1px solid #000;
}
.under-service__table-attn {
  text-align: right;
  margin-top: min(0.69vw, 10px);
}
@media screen and (max-width: 768px) {
  .under-service__table-attn {
    text-align: center;
    line-height: 2.1428571429;
  }
}
.under-service__table table {
  margin: 0 auto;
  width: 100%;
}
.under-service__list li {
  border: 1px solid #000;
  padding: min(0.83vw, 12px) 0 min(0.83vw, 12px) min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .under-service__list li {
    padding: 12px 0 12px 10%;
  }
}

.under-serviceOne__title {
  font-size: min(2.5vw, 36px);
  margin-bottom: min(2.43vw, 35px);
  text-align: center;
  color: var(--sectionTitle);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .under-serviceOne__title {
    font-size: 24px;
    margin-bottom: 34px;
  }
}
.under-serviceOne__trouble {
  margin-bottom: min(5.56vw, 80px) !important;
  position: relative;
}
.under-serviceOne__trouble::before {
  content: "";
  background-color: var(--pale);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1440px;
  height: min(26.6vw, 383px);
  position: absolute;
  top: min(1.39vw, 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-serviceOne__trouble::before {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble::before {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble::before {
    height: 630px;
  }
}
.under-serviceOne__trouble-area {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble-area {
    display: block;
  }
}
.under-serviceOne__trouble-box {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble-box {
    width: 100%;
  }
}
.under-serviceOne__trouble-list {
  margin: 0 auto min(2.08vw, 30px);
  text-align: center;
}
.under-serviceOne__trouble-listSP {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10%;
}
.under-serviceOne__trouble-listSP li {
  width: 22%;
  margin-bottom: 24px;
}
.under-serviceOne__trouble-lists {
  margin-bottom: min(4.17vw, 60px);
}
.under-serviceOne__trouble-title {
  font-size: min(1.39vw, 20px);
  background-color: var(--pale);
  cursor: pointer;
  padding: min(0.35vw, 5px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble-title {
    font-size: 20px;
  }
}
.under-serviceOne__trouble-title::before {
  content: "";
  display: inline-block;
  width: min(1.04vw, 15px);
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1%;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-serviceOne__trouble-title::before {
    right: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble-title::before {
    right: 8px;
    width: 15px;
  }
}
.under-serviceOne__trouble-title::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: min(1.04vw, 15px);
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(0.8vw, 11.5px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-serviceOne__trouble-title::after {
    right: 1.36vw;
  }
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble-title::after {
    right: 14px;
    height: 15px;
  }
}
.under-serviceOne__trouble-title.close::before {
  content: "";
  display: inline-block;
  width: min(1.04vw, 15px);
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: 0;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-serviceOne__trouble-title.close::before {
    right: 1vw;
  }
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble-title.close::before {
    width: 15px;
    right: 8px;
  }
}
.under-serviceOne__trouble-title.close::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: min(1.04vw, 15px);
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: min(0.51vw, 7.5px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-serviceOne__trouble-title.close::after {
    right: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble-title.close::after {
    height: 15px;
    right: 13.5px;
  }
}
.under-serviceOne__trouble-detail {
  display: none;
}
.under-serviceOne__trouble-detail.close {
  display: block;
}
.under-serviceOne__trouble-detail ul {
  padding-left: min(1.39vw, 20px);
  background-color: #f5f5f5;
}
.under-serviceOne__trouble-detail li {
  font-size: 14px;
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1em;
}
.under-serviceOne__trouble-reason {
  margin-bottom: var(--section-bottom) !important;
}
.under-serviceOne__trouble-text {
  text-align: center;
  font-size: min(1.39vw, 20px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .under-serviceOne__trouble-text {
    font-size: 20px;
    line-height: 1.7;
  }
}

.trouble-title {
  font-size: min(1.94vw, 28px);
  font-weight: 700;
  margin-bottom: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .trouble-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.under-service__compressors {
  margin-bottom: var(--section-bottom) !important;
}
.under-service__compressors-navi {
  font-size: min(0.97vw, 14px);
  text-align: right;
  margin-bottom: min(2.08vw, 30px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__compressors-navi {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__compressors-navi {
    text-align: center;
    margin-bottom: 10px;
    text-align: left;
    font-size: 14px;
  }
}
.under-service__compressors-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .under-service__compressors-list {
    display: block;
  }
}
.under-service__compressors-item {
  width: 48%;
  text-align: center;
  background-color: var(--pale);
  padding: min(3.88vw, 56px) min(3.47vw, 50px);
  margin-bottom: min(1.66vw, 24px);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .under-service__compressors-item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .under-service__compressors-item {
    padding: 50px 17px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__compressors-item.last {
    padding-bottom: 50px;
  }
}
.under-service__compressors-text {
  font-size: min(1.66vw, 24px);
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__compressors-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__compressors-text {
    font-size: 24px;
  }
}
.under-service__compressors-text span {
  font-size: min(1.11vw, 16px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__compressors-text span {
    font-size: 1.33vw;
  }
}
@media screen and (max-width: 768px) {
  .under-service__compressors-text span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo {
    margin-top: -60px;
  }
}
.under-service__serviceMainTwo-catch {
  font-size: min(1.94vw, 28px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-catch {
    font-size: 24px;
  }
}
.under-service__serviceMainTwo-list {
  background-color: var(--pale);
  padding: min(1.04vw, 15px) min(0.69vw, 10px);
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: min(1.74vw, 25px);
  margin-bottom: min(9.72vw, 140px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-list {
    display: block;
    margin-top: 65px;
  }
}
.under-service__serviceMainTwo-item {
  width: 15%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-item {
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8%;
    background-color: #fff;
    padding: 10px;
  }
}
.under-service__serviceMainTwo-item img {
  margin-bottom: min(0.69vw, 10px);
}
.under-service__serviceMainTwo-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/page-service/sales/flow-arrow1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(1.39vw, 20px);
  height: min(1.39vw, 20px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-item:not(:last-child)::after {
    content: "";
    display: inline-block;
    background-image: url(./haneda-asset/img/page-service/sales/flow-arrowSP.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 33px;
    height: 33px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    right: inherit;
    top: inherit;
  }
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-item__text {
    font-size: 20px;
  }
}
.under-service__serviceMainTwo-airCompressor {
  font-size: min(1.66vw, 24px);
  color: var(--sectionTitle);
  text-align: center;
  font-weight: 600;
  margin-top: min(3.47vw, 50px);
  margin-bottom: min(1.74vw, 25px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__serviceMainTwo-airCompressor {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-airCompressor {
    font-size: 24px;
  }
}
.under-service__serviceMainTwo-airCompressor__list {
  display: flex;
  justify-content: center;
  margin-bottom: min(0.69vw, 10px);
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-airCompressor__list {
    display: block;
  }
}
.under-service__serviceMainTwo-airCompressor__list.under {
  flex-wrap: wrap;
}
.under-service__serviceMainTwo-airCompressor__item {
  width: 33.3333333333%;
  padding: min(0.83vw, 12px) 0;
  text-align: center;
  border: 1px solid;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-airCompressor__item {
    width: 100%;
    padding: 12px 0 12px 10%;
    text-align: left;
  }
}
.under-service__serviceMainTwo-airCompressor__item.border {
  border-right: none;
  border-bottom: none;
}
.under-service__serviceMainTwo-airCompressor__attn {
  font-size: min(1.04vw, 15px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .under-service__serviceMainTwo-airCompressor__attn {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-airCompressor__attn {
    font-size: 15px;
  }
}
.under-service__serviceMainTwo-airCompressor__attn.mb150 {
  margin-bottom: min(10.42vw, 150px);
  line-height: 2.1428571429;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-area__box.title .section-title {
    text-align: left;
  }
}

.under-service__serviceMainTwo-aircompressor__attn {
  font-size: min(1.04vw, 15px);
  line-height: 2.1428571429;
}
@media screen and (max-width: 768px) {
  .under-service__serviceMainTwo-aircompressor__attn {
    font-size: 14px;
  }
}

.page-recruit__intro.wrapper {
  margin-bottom: min(2.77vw, 40px) !important;
}
.page-recruit__intro-message {
  margin-bottom: min(10.42vw, 150px);
}
.page-recruit__intro-message p {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  font-size: min(2.5vw, 36px);
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-recruit__intro-message p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__intro-message p {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__intro-message {
    margin-bottom: 50px;
  }
}
.page-recruit__intro-text {
  text-align: center;
  margin-bottom: min(4.58w, 66px);
}
.page-recruit__intro-text__title {
  font-size: min(1.94vw, 28px);
  margin-bottom: min(5.56vw, 80px);
  background-color: var(--pale);
  padding: min(1.66vw, 24px) min(2.22vw, 32px);
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .page-recruit__intro-text__title {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
}
.page-recruit__intro-text__cont {
  line-height: 1.5;
  font-size: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-recruit__intro-text__cont {
    margin-bottom: 1em;
    font-size: 16px;
    line-height: 1.7;
  }
}
.page-recruit__companyLogo {
  font-size: min(6.11vw, 88px);
  text-align: center;
  color: var(--sectionTitle);
  font-family: "Secular One", sans-serif;
  text-transform: uppercase;
  margin-bottom: min(2.08vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-recruit__companyLogo {
    font-size: min(14.1vw, 55px);
  }
}
.page-recruit__topics {
  position: relative;
  padding-top: 97px;
  padding-bottom: min(9.72vw, 140px);
  margin-bottom: min(2.77vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-recruit__topics.wrapper {
    margin-bottom: 50px !important;
  }
}
.page-recruit__topics::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(./haneda-asset/img/page-recruit/page-recruitBG.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: min(100vw, 1440px);
  height: min(108.33vw, 1560px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .page-recruit__topics::before {
    background-image: url(./haneda-asset/img/page-recruit/page-recruitBGSP.png);
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-recruit__topics::before {
    width: 100%;
    height: 593.08vw;
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__topics::before {
    width: 100vw;
    height: 580vw;
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__topics::before {
    top: min(5.13vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__topics {
    padding-top: min(24.87vw, 97px);
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-recruit__topics {
    padding-bottom: min(7.83vw, 94px);
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__topics {
    padding-bottom: min(5.13vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__topics {
    margin-bottom: min(10.26vw, 40px);
  }
}
.page-recruit__topics .topics__title {
  color: var(--sectionTitle);
  font-size: min(2.5vw, 36px);
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: min(-1.04vw, -15px);
}
@media screen and (max-width: 768px) {
  .page-recruit__topics .topics__title {
    width: 100%;
    text-align: center;
    font-size: min(5.12vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__topics .topics__title {
    top: min(-3.85vw, -15px);
  }
}
.page-recruit__topics .whiteArea {
  background-color: #fff;
  padding: min(2.43vw, 35px) min(5.56vw, 80px) min(2.36vw, 34px);
}
@media screen and (max-width: 768px) {
  .page-recruit__topics .whiteArea {
    padding: min(7.69vw, 30px) min(2.56vw, 10px) min(4.36vw, 17px);
    margin-bottom: min(7.69vw, 30px);
  }
}
.page-recruit__topics .oneEm {
  margin-bottom: 1em;
}
.page-recruit__topics .mb70 {
  margin-bottom: min(4.17vw, 60px);
}
@media screen and (max-width: 768px) {
  .page-recruit__topics .mb70 {
    margin-bottom: min(15.38vw, 60px);
  }
}
.page-recruit__topics-points {
  position: relative;
}
.page-recruit__topics-points__item {
  font-size: min(1.39vw, 20px);
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-points__item {
    font-size: 16px;
    line-height: 1.7;
  }
}
.page-recruit__topics-points__item.mb0 {
  margin-bottom: 0;
}
.page-recruit__topics-points__item span {
  color: var(--sectionTitle);
  font-size: min(1.74vw, 25px);
  margin-right: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-points__item span {
    font-size: min(6.41vw, min(1.74vw, 25px));
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-points__item span {
    font-size: min(5.13w, 20px);
  }
}
.page-recruit__topics-team {
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-team__cont.wrapper {
    margin-bottom: min(7.69vw, 30px);
  }
}
.page-recruit__topics-team p {
  font-size: min(1.39vw, 20px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-team p {
    font-size: 16px;
    line-height: 1.7;
  }
}
.page-recruit__topics-certification {
  position: relative;
}
.page-recruit__topics-certification p {
  font-size: min(1.39vw, 20px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-certification p {
    font-size: 16px;
    line-height: 1.7;
  }
}
.page-recruit__topics-others {
  margin-top: min(3.47vw, 50px);
  margin-bottom: min(0.69vw, 10px);
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-others {
    margin-top: min(17.95vw, 70px);
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-others {
    margin-bottom: min(2.56vw, 10px);
  }
}
.page-recruit__topics-others .others-title {
  font-size: min(1.39vw, 20px);
  color: var(--sectionTitle);
  font-weight: 600;
  margin-bottom: min(0.69vw, 10px);
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-others .others-title {
    font-size: min(5.13vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-others .others-title {
    margin-bottom: min(2.56vw, 10px);
  }
}
.page-recruit__topics-others .othres-box:not(:last-child) {
  margin-bottom: min(2.77vw, 40px);
}
@media screen and (max-width: 768px) {
  .page-recruit__topics-others .othres-box:not(:last-child) {
    margin-bottom: min(10.26vw, 40px);
  }
}
.page-recruit__main {
  position: relative;
  margin-bottom: min(6.94vw, 100px) !important;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .page-recruit__main {
    margin-bottom: min(25.64vw, 100px) !important;
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__main {
    margin-top: min(23.97vw, 90px);
  }
}
.page-recruit__main-title {
  position: absolute;
  left: 0;
  top: -40px;
}
@media screen and (max-width: 768px) {
  .page-recruit__main-title {
    top: min(-10.26vw, -40px);
  }
}
.page-recruit__main-title__sub {
  font-size: min(1.66vw, 24px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-recruit__main-title__sub {
    font-size: min(6.15vw, 24px);
  }
}
.page-recruit__main-cont {
  margin-bottom: min(6.94vw, 100px);
  padding-top: min(10.42vw, 150px);
}
@media screen and (max-width: 768px) {
  .page-recruit__main-cont {
    margin-bottom: min(7.69vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__main-cont {
    padding-top: min(23.08vw, 90px);
  }
}
.page-recruit__main-cont__card {
  margin-bottom: min(2.08vw, 30px);
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-recruit__main-cont__card {
    margin-bottom: min(7.7vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .page-recruit__main-cont__card {
    display: block;
  }
}
.page-recruit__main-cont__title {
  width: min(13.89vw, 200px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-recruit__main-cont__title {
    width: 100%;
  }
}
.page-recruit__main-cont__detail {
  width: 70%;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-recruit__main-cont__detail {
    width: 100%;
    line-height: 1.7;
  }
}
.page-recruit__main-cont__detail .disc {
  list-style-type: disc;
  list-style-position: inside;
}
@media screen and (max-width: 768px) {
  .page-recruit__main-cont__detail li {
    margin-bottom: 0.7em;
  }
}
.page-recruit__main-cont-buttonArea {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-recruit__main-cont__exp {
    line-height: 1.7;
  }
}
.page-recruit__main-button {
  background-color: var(--keycolor);
  color: #fff;
  padding: min(0.55vw, 8px) min(9.44vw, 136px);
  display: inline-block;
  text-align: center;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .page-recruit__main-button {
    padding: 10px 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .recruit-title {
    text-align: left !important;
  }
}

.bg-blue {
  background-color: var(--pale);
  padding: min(1.39vw, 20px);
}

.smallWindow-title {
  display: flex;
  justify-content: space-between;
  padding: min(1.39vw, 20px);
}
.smallWindow-title__left {
  width: 50%;
}
.smallWindow-title__left-text {
  font-size: min(1.66vw, 24px);
  font-weight: 600;
  color: var(--sectionTitle);
}
.smallWindow-title__right {
  width: 50%;
}
.smallWindow-title__right-text li,
.smallWindow-title__right-text p {
  font-size: min(0.83vw, 12px);
}
.smallWindow-title__right-text .row {
  padding-left: min(4.86vw, 70px);
}
.smallWindow-main {
  margin-bottom: min(4.86vw, 70px);
}
.smallWindow-main__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: min(1.39vw, 20px);
}
.smallWindow-main__title-left__text {
  font-size: min(1.66vw, 24px);
  font-weight: 600;
  line-height: 1.25;
}
.smallWindow-main__title-left__text span {
  font-size: min(1.11vw, 16px);
}
.smallWindow-main__text p {
  line-height: 1.6;
}

.single {
  margin-bottom: min(6.94vw, 100px) !important;
}
.single.under-service__title {
  margin-bottom: 0 !important;
  padding-top: min(19.44vw, 280px);
}
@media screen and (max-width: 768px) {
  .single.under-service__title {
    padding-top: 80px;
  }
}
.single-img {
  margin-bottom: min(4.17vw, 60px);
}
.single-article__title {
  margin-bottom: min(2.08vw, 30px);
}
.single-article__title .category {
  display: block;
  margin-bottom: min(1.04vw, 15px);
}
.single-article__title-text {
  font-size: min(1.94vw, 28px);
  margin-bottom: min(1.53vw, 22px);
}
.single-article__title-cat {
  font-size: min(1.39vw, 20px);
  padding: 4px min(0.9vw, 13px);
  background-color: #d9d9d9;
  display: inline-block;
  color: var(--sectionTitle);
}
.single-article__title-date {
  display: block;
  font-size: min(1.39vw, 20px);
}
.single-article__text {
  font-size: min(1.39vw, 20px);
  line-height: 1.5;
}
.single-return {
  text-align: right;
  margin-top: min(4.86vw, 70px);
}
.single-return__toArchive {
  padding: min(0.69vw, 10px) min(2.08vw, 30px);
  background-color: var(--keycolor);
  color: #fff;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
}
@media screen and (max-width: 768px) {
  .single-return__toArchive {
    width: 100%;
    text-align: center;
    display: inline-block;
  }
}
.single-return__toArchive:hover {
  box-shadow: none;
  position: relative;
  top: 3px;
}

@media screen and (max-width: 768px) {
  .post-img img {
    width: 356px;
    height: 221.1180124224px;
  }
}

.archive {
  margin-bottom: min(6.94vw, 100px) !important;
}
.archive-area__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: min(4.17vw, 60px);
}
@media screen and (max-width: 768px) {
  .archive-area__list {
    display: block;
    margin-bottom: 60px;
  }
}
.archive-area__list-img {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .archive-area__list-img {
    width: 100%;
    margin-bottom: 10px;
  }
  .archive-area__list-img figure {
    width: 100%;
  }
  .archive-area__list-img img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .archive-area__list-img img {
    width: 100% !important;
    height: 62.1118012422% !important;
  }
}
.archive-area__list-img img {
  width: min(17.36vw, 250px);
  height: 158.2278481013px;
  object-fit: cover;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .archive-area__list-img img {
    height: 100%;
  }
}
.archive-area__list-text {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .archive-area__list-text {
    width: 100%;
  }
}
.archive-area__list-text__article {
  margin-top: min(0.69vw, 10px);
}
.archive-area__list-text__cat a {
  padding: 4px min(0.97vw, 14px);
  background-color: #d9d9d9;
  display: inline-block;
  margin-bottom: min(0.35vw, 5px);
  margin-right: min(0.69vw, 10px);
}
@media screen and (max-width: 768px) {
  .archive-area__list-text__cat a {
    font-size: 20px;
  }
}
.archive-area__list-text__date {
  margin-bottom: min(0.35vw, 5px);
}
@media screen and (max-width: 768px) {
  .archive-area__list-text__date {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.archive-area__list-text__title {
  margin-bottom: min(2.08vw, 30px);
  margin-top: min(1.04vw, 15px);
}
@media screen and (max-width: 768px) {
  .archive-area__list-text__title {
    margin-bottom: 10px;
  }
}
.archive-area__list-text__title a {
  font-size: min(1.66vw, 24px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .archive-area__list-text__title a {
    font-size: 24px;
  }
}

.pagenavi {
  text-align: center;
}

.post-categories {
  margin: 0 !important;
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  .post-categories a {
    font-size: 20px;
  }
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    background-color: #fff;
    padding: 15px 18px;
    border-radius: 50%;
    z-index: 9999;
  }
  .header__hamburger {
    width: 60px;
    position: fixed;
    top: 43px;
    right: 5%;
    transform: translateY(-50%);
  }
  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: ease 0.4s;
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 12px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
    background-color: #000;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    background-color: #000;
    top: -17px;
    transform: rotate(-45deg);
  }
}
.post__content li {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1.3em;
  padding-left: 1.3em;
  margin-bottom: 1.3em;
}
.post__content p {
  margin-bottom: 1.5em;
}
.post__content h1 {
  font-size: min(1.94vw, 28px);
}
.post__content h2 {
  font-size: min(1.66vw, 24px);
}
.post__content blockquote {
  padding-left: min(0.69vw, 10px);
  font-size: min(1.11vw, 16px);
}

.post__title {
  font-size: min(1.94vw, 28px);
  margin-bottom: min(2.08vw, 30px);
}

.post-categories {
  margin: 0 min(0.35vw, 5px) min(0.69vw, 10px);
  padding: 2px min(2.08vw, 30px);
  border: 1px solid var(--accentColor);
  display: inline-block;
}

.entryInfo {
  margin-bottom: min(3.47vw, 50px);
}

.page-contact {
  margin-bottom: min(10.42vw, 150px) !important;
}
.page-contact-title h2 {
  width: 20% !important;
}
.page-contact-must {
  background-color: var(--pale);
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 7px;
  margin-left: 1.4rem;
}
.page-contact-list {
  margin-bottom: 4rem;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-contact-item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page-contact-item {
    margin-bottom: 30px;
  }
}
.page-contact-item__title {
  width: 30%;
  font-weight: bold;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-contact-item__title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-contact-item__title {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-contact-item__title.first {
    line-height: 2.2;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-contact-item__title.first span {
    margin-left: 0;
  }
}
.page-contact-item__iframe {
  width: 65%;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-contact-item__iframe {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .page-contact-item__iframe {
    width: 100%;
  }
}
.page-contact-item__iframe .wpcf7-text {
  border: 1px solid var(--text);
  width: 100%;
  line-height: 2;
  padding-left: min(0.69vw, 10px);
}
.page-contact-item__iframe .wpcf7-textarea {
  border: 1px solid var(--text);
  width: 100%;
  padding: min(0.69vw, 10px);
}
.page-contact-item label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  align-items: center;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-contact-item label {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .page-contact-item label {
    display: block;
    margin-bottom: 20px;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-contact-item label {
    display: block;
  }
}
.page-contact-item .checkBox-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.page-contact-button {
  text-align: center;
}
.page-contact use_label_element {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-contact use_label_element {
    display: block;
    font-size: 14px;
  }
}

.wpcf7 form .wpcf7-spinner {
  display: block;
}

.wpcf7-submit {
  background-color: var(--keycolor);
  padding: min(0.69vw, 10px) 90px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .wpcf7-submit {
    padding: 10px 90px;
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
  }
  .wpcf7-submit:hover {
    box-shadow: none;
    transform: translateY(2px);
  }
}

.wpcf7-list-item-label {
  margin-left: 6px;
}

.wpcf7-checkbox input {
  width: min(2.08vw, 30px);
  height: min(2.08vw, 30px);
}

.wpcf7-response-output {
  border-color: var(--keycolor) !important;
}

.wpcf7-list-item input[name="checkbox-720[]"] {
  width: 21px;
  height: 21px;
  margin-left: 32px;
  margin-right: 16px;
}

.single {
  /* style.css やカスタムCSSセクションに追加 */
}
.single h1 {
  font-size: min(2.5vw, 36px);
  font-weight: bold;
}
.single h2 {
  font-weight: bold;
  font-size: min(1.8vw, 27px);
}
@media screen and (max-width: 768px) {
  .single h2 {
    font-size: 27px;
  }
}
.single h3 {
  font-weight: bold;
  font-size: min(1.46vw, 21px);
}
@media screen and (max-width: 768px) {
  .single h3 {
    font-size: 21px;
  }
}
.single h4 {
  font-weight: bold;
  font-size: min(1.25vw, 18px);
}
@media screen and (max-width: 768px) {
  .single h4 {
    font-size: 18px;
  }
}
.single h5 {
  font-weight: bold;
  font-size: min(1.04vw, 15px);
}
.single h6 {
  font-weight: bold;
  font-size: min(0.83vw, 12px);
}
.single blockquote {
  font-style: italic;
}
.single table {
  border-collapse: collapse;
  width: 100%;
}
.single th,
.single td {
  border: 1px solid #ddd; /* 罫線のスタイルを指定 */
  padding: min(0.55vw, 8px); /* セルの内側の余白を指定 */
  text-align: left; /* テキストの配置を左寄せに指定（必要に応じて変更） */
}
.single ul li {
  list-style-type: disc;
  list-style-position: inherit;
}
.single ol li {
  list-style-type: decimal;
  list-style-position: inherit;
}

.category-area__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .category-area__list {
    display: block;
  }
}
.category-area__item {
  width: 30%;
  margin-bottom: min(5.56vw, 80px);
}
@media screen and (max-width: 768px) {
  .category-area__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .category-area__item {
    margin-bottom: 60px;
  }
}
.category-area__item-img {
  margin-bottom: min(1.53vw, 22px);
}
.category-area__item-img img {
  width: min(22.5vw, 324px);
  height: 201.2422360248px;
  object-fit: cover;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .category-area__item-img img {
    width: 100%;
    height: 62.1118012422%;
  }
}
@media screen and (max-width: 768px) {
  .category-area__item-img img {
    width: 100%;
    height: 62.1118012422%;
  }
}
.category-area__item-text .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.category-area__item-text__title {
  font-weight: bold;
  margin-bottom: min(1.11vw, 16px);
  font-size: min(1.67vw, 24px);
}
@media screen and (max-width: 768px) {
  .category-area__item-text__title {
    font-size: 24px;
  }
}
.category-area__item-cat {
  width: 50%;
}
.category-area__item-cat a {
  font-size: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .category-area__item-cat a {
    font-size: 20px;
  }
}
.category-area__item-time {
  width: 50%;
  text-align: right;
  font-size: min(1.39vw, 20px);
}
@media screen and (max-width: 768px) {
  .category-area__item-time {
    font-size: 20px;
  }
}

.page-works__area {
  margin-bottom: min(13.89vw, 200px) !important;
}
.page-works__area.wrapper {
  margin-bottom: min(5.56vw, 80px) !important;
}
.page-works__area-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page-works__area-container {
    display: block;
  }
}
.page-works__area-box.map {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .page-works__area-box.map {
    width: 100%;
  }
}
.page-works__area-box.list {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .page-works__area-box.list {
    width: 100%;
  }
}
.page-works__area-list {
  margin-bottom: 1em;
  padding: min(2.08vw, 30px);
}
@media screen and (max-width: 768px) {
  .page-works__area-list {
    padding-left: 0;
  }
}
.page-works__area-title {
  font-size: min(1.39vw, 20px);
  font-weight: 600;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-works__area-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-works__area-title {
    font-size: 20px;
  }
}
.page-works__area-title span {
  font-size: min(1.11vw, 16px);
  font-weight: 600;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-works__area-title span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page-works__area-title span {
    font-size: 16px;
  }
}
.page-works__area-detail p {
  font-size: min(1.11vw, 16px);
  font-weight: 600;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-works__area-detail p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page-works__area-detail p {
    font-size: 16px;
  }
}
.page-works__area-add {
  margin-top: 2em;
  padding-left: min(2.08vw, 30px);
  font-size: min(1.11vw, 16px);
  font-weight: bold;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .page-works__area-add {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page-works__area-add {
    font-size: 16px;
  }
}

.pagenation {
  text-align: center;
  margin-bottom: min(6.94vw, 100px);
}

.page-numbers {
  display: inline-block;
  padding-left: 0;
  margin: min(1.39vw, 20px) 0 0;
}

.page-numbers.current {
  font-size: min(2.08vw, 30px);
  border: 1px solid var(--text);
  margin-top: min(0.69vw, 10px);
}

.page-numbers > li {
  display: inline;
}

.page-numbers > li > a,
.page-numbers > li > span {
  position: relative;
  float: left;
  font-size: min(1.39vw, 20px);
  padding: 6px min(0.83vw, 12px);
  line-height: 1.42857143;
  text-decoration: none;
  background-color: #ffffff;
  margin-left: min(0.69vw, 10px);
}

.page-numbers > li:first-child a,
.page-numbers > li:first-child span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.page-numbers > li:last-child a,
.page-numbers > li:last-child span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.page-numbers > li > a:hover,
.page-numbers > li > span:hover,
.page-numbers > li > a:focus,
.page-numbers > li > span:focus {
  z-index: 2;
  background-color: #eeeeee;
  border-color: var(--text);
}

.page-numbers .current {
  z-index: 3;
  color: var(--text);
  border-color: var(--text);
  cursor: default;
}

.page-numbers > .disabled > span,
.page-numbers > .disabled > span:hover,
.page-numbers > .disabled > span:focus,
.page-numbers > .disabled > a,
.page-numbers > .disabled > a:hover,
.page-numbers > .disabled > a:focus {
  color: #777777;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}

/*
Theme Name:羽田コンプレッサー
Author:アイドマホールディングス
Version:1.0
*/
:root {
  --section-bottom: min(10.42vw, 150px);
  --section-bottomSP: min(5.56vw, 80px);
  --keycolor: #01b7cd;
  --text: #333333;
  --sectionTitle: #00489d;
  --pale: #e4f7f7;
}

main {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
}

p,
dt,
dt,
li,
a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(1.11vw, 16px);
  font-weight: normal;
  color: var(--text);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  p,
dt,
dt,
li,
a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  p,
dt,
dt,
li,
a {
    font-size: 16px;
  }
}

.section-title {
  font-size: min(5.56vw, 80px);
  color: var(--sectionTitle);
  font-family: "Secular One", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 50px;
    line-height: 1;
    text-align: center;
    width: 100%;
  }
}
.section-title.contact-title {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .section-title.contact-title {
    text-align: center;
  }
}

.section-smallTitle {
  font-size: min(2.5vw, 36px);
  text-transform: uppercase;
  margin-bottom: min(1.04vw, 15px);
  font-weight: 600;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .section-smallTitle {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .section-smallTitle {
    margin-bottom: 24px;
    line-height: 1;
    font-size: 24px;
  }
}
.section-smallTitle span {
  color: var(--sectionTitle);
  font-size: min(1.11vw, 16px);
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .section-smallTitle span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .section-smallTitle span {
    font-size: 14px;
    margin-left: 0;
    line-height: 1.7142857143;
    display: inline-block;
    margin-top: 15px;
    margin-left: 21px;
  }
}

.wrapper {
  width: min(75vw, 1080px);
  margin: 0 auto;
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .wrapper {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: 95%;
    margin: 0 auto 80px;
  }
}

.under-fv {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.under-fv img {
  width: 100%;
}

.section-smallTitle__under {
  font-size: min(1.39vw, 20px);
  margin-bottom: min(4.17vw, 60px);
  text-align: center;
}
.section-smallTitle__under span {
  font-size: min(1.25vw, 18px);
  color: var(--sectionTitle);
  text-transform: uppercase;
  display: block;
}

.ityped-cursor {
  display: none;
}

@media screen and (min-width: 1200px) and (max-width:1700px) {
  .tab-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .tab-only {
    display: none !important;
  }
}
@media screen and (min-width:1700px) {
  .tab-only {
    display: none !important;
  }
}

@media screen and (min-width:1700px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) and (max-width:1700px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) and (max-width:1700px) {
  .sp_tab-only {
    display: none !important;
  }
}
@media screen and (min-width:1700px) {
  .sp_tab-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .tab_pc-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width:768px) and (max-width:1200px) {
  .pc-only {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */