/* 共通部分 */

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/* 言語スイッチャー */
.language-switcher {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 8px;
  right: 38px;
  z-index: 99;
}
.language-switcher li {
  list-style: none;
}
.language-switcher li img {
  width: 50px;
}

.service-section__heading-primary,
.slogan-section__heading-primary,
.recruit-section__heading-primary,
.contact-section__heading-primary {
  font-family: kozuka-gothic-pro, sans-serif;
  font-weight: 900;
  font-style: normal;
}

.grecaptcha-badge {
  opacity: 0;
}

/* ファーストビューアニメーション */
.first-view-animation-primary {
  background: url("../images/fixed-bg.png") no-repeat 0% 50% / contain;
  height: 100vh;
  width: 100%;
  position: fixed;
  -webkit-animation: slide-in-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.first-view-animation-secondary {
  background: url("../images/frontpage-hero-bg.png") no-repeat 100% 0% / contain;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 31px;
  -webkit-animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

/* ハンバーガーメニュー アニメーション*/
.header__hamburger-menu {
  position: relative;
  width: 40px;
  height: 35px;
  cursor: pointer;
  z-index: 7;
  position: absolute;
  top: 13px;
  right: 16px;
}
.header__hamburger-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fbf44c;
  border-radius: 4px;
  transition: transform 0.3s ease-in-out, top 0.5s ease;
}
.header__hamburger-menu,
.header__hamburger-menu span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.header__hamburger-menu span:nth-of-type(1) {
  top: 0;
}
.header__hamburger-menu span:nth-of-type(2) {
  top: 12px;
}
.header__hamburger-menu span:nth-of-type(3) {
  top: 24px;
}

.open #hamburger-menu.active span:nth-of-type(1) {
  top: 0;
}
.open #hamburger-menu.active span:nth-of-type(3) {
  top: 30px;
}

#hamburger-menu::after {
  position: absolute;
  top: 105%;
  left: 89%;
  width: 55px;
  height: 55px;
  display: block;
  content: "";
  margin: -45px 0 0 -45px;
  border-radius: 50%;
  border: 4px solid transparent;
  transition: all 0.75s;
}
#hamburger-menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(18px) rotate(-45deg);
  transform: translateY(18px) rotate(-45deg);
}
#hamburger-menu.active span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-hamburger-menu-bar02 0.8s forwards;
  animation: active-hamburger-menu-bar02 0.8s forwards;
}
@-webkit-keyframes active-hamburger-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-menu-bar02 {
  100% {
    height: 0;
  }
}
#hamburger-menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-13px) rotate(45deg);
  transform: translateY(-13px) rotate(45deg);
}

#hamburger-menu.active::after {
  -webkit-animation: active-hamburger-menu 0.7s 0.25s forwards;
  animation: active-hamburger-menu 0.7s 0.25s forwards;
}
@-webkit-keyframes active-hamburger-menu {
  0% {
    border-color: transparent;
    -webkit-transform: rotate(0);
  }
  25% {
    border-color: transparent #fbf44c transparent transparent;
  }
  50% {
    border-color: transparent #fbf44c #fbf44c transparent;
  }
  75% {
    border-color: transparent #fbf44c #fbf44c #fbf44c;
  }
  100% {
    border-color: #fbf44c;
    -webkit-transform: rotate(-680deg);
  }
}
@keyframes active-hamburger-menu {
  0% {
    border-color: transparent;
    transform: rotate(0);
  }
  25% {
    border-color: transparent #fbf44c transparent transparent;
  }
  50% {
    border-color: transparent #fbf44c #fbf44c transparent;
  }
  75% {
    border-color: transparent #fbf44c #fbf44c #fbf44c;
  }
  100% {
    border-color: #fbf44c;
    transform: rotate(-680deg);
  }
}

/* ハンバーガーメニュー ドロワー*/

#drawer nav {
  z-index: 6;
}

/* ドロワー表示アニメーション */
#drawer {
  background-color: rgba(37, 41, 119, 0.7);
  color: #fff;
  height: calc(100vh - 65px);
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5;
  font-size: 29px;
  padding-left: 0;
  transform: translateY(-100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open #drawer {
  transform: translateY(0);
}

/* ドロワー開いている時にbodyのスクロールを防ぐ */
body.open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

#drawer ul {
  list-style: none;
  margin: 0;
  padding: 40px 16px 24px;
}
/* li表示アニメーション */
#drawer ul li {
  opacity: 0;
  position: relative;
  text-align: right;
}
.open #drawer li {
  opacity: 1;
  text-align: right;
}

#drawer a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
}

/* #drawer ul li:after {
  content: "";
  display: block;
  width: 500px;
  height: 2px;
  background: #000;
  left: -600px;
  position: absolute;
  transform: translateX(0);
  transition: transform 1s ease;
}
#drawer ul li:hover:after {
  transform: translateX(300px);
} */

/* ドロワーオープン時のハンバーガー ホバー時の動き */
/* .open #hamburger-menu.active:hover span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
} */
/* ドロワーオープン時のハンバーガー ホバー時の動き */
/* .open #hamburger-menu.active:hover span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
} */

/* ハンバーガメニューアニメーションここまで */

/* アニメーション */
.recruit__apply-mail__link,
.keskin-description-section__link,
.recruit-section__link {
  animation: button-anime 2s ease-out infinite;
  opacity: 1;
}
@keyframes button-anime {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}

.drawer__main {
  margin-bottom: 20px;
}

.drawer__privacy,
.drawer__sitemap {
  font-size: 20px;
}

#drawer .c-contact-link {
  padding: 25px 0;
  border-radius: 45px;
  border: 2px solid #fff;
  margin: 30px 0 70px 0;
}

.keskin-page__keskin-hp-link-wrapper {
  text-align: center;
}
.keskin-page__keskin-hp-link-wrapper p {
  margin-top: 15px;
}

.hero__heading.hero__heading--secondary {
  font-size: 40px;
  font-weight: bold;
  color: #747474;
  padding-left: 15px;
  filter: drop-shadow(0px 0px 7px #fff) drop-shadow(0px 0px 7px #fff)
    drop-shadow(0px 0px 7px #fff);
  text-shadow: 0px 0px 12px #fff;
}

/* サイトマップ */
.sitemap__section {
  margin-bottom: 60px;
}
.sitemap__section h3 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 20px;
}
.sitemap__section ul {
  padding: 0;
  list-style: disc;
}
.sitemap__section li {
  margin-bottom: 15px;
}

.sitemap__section a,
.sitemap__section a:link,
.sitemap__section a:hover,
.sitemap__section a:visited .sitemap__section a:focus {
  color: #000;
}

/* プライバシーポリシー */
.privacy-policy__declaration {
  margin-bottom: 50px;
}

.privacy-policy__section {
  margin-bottom: 30px;
}
.privacy-policy__section h3 {
  font-size: 22px;
  font-weight: bold;
  border-bottom: 2px solid #252977;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.privacy-policy__section ul {
  padding: 0 25px;
  margin: 0;
  list-style: disc;
}
.privacy-policy__section li {
  margin-bottom: 15px;
}

/* 1201pxまでグロナビ非表示 */
/* @media screen and (min-width: 992px) and (max-width: 1201px) {
  .header__globalnav {
    display: none;
  }

  .header__hamburger-menu-wrapper {
    display: block;
    width: 100%;
    height: 60px;
    margin-left: auto;
    background: url(../images/header-globalnav-bg.png) no-repeat 0% 0% / cover;
    margin-top: 30px;
    flex: 0 1 auto;
    position: relative;
  }
} */

/* 会社概要ページ 得意先一覧 */
.customer-list__section ul {
  list-style-type: disc;
  padding-left: 16px;
  margin: 0;
}
.customer-list__section ul li {
  margin-bottom: 8px;
}

.contact-form__row .required {
  color: #fff;
  background: red;
  padding: 4px 8px;
  margin-left: 8px;
  font-size: 14px;
}

/* メディアクエリ*/

/* PC */
@media screen and (min-width: 992px) {
  /* template-parts CONTACT お問い合わせ */
  .contact-section {
    padding: 150px 15px;
    margin-bottom: 0;
  }

  .contact-section__heading::before {
    content: "";
    background: url("../images/square-blue.png") no-repeat;
    display: block;
    width: 100px;
    height: 100px;
    background-size: contain;
    margin: 0 auto;
  }

  .contact-section__heading-primary {
    font-size: 110px;
    color: #252977;
    font-weight: bold;
    position: relative;
    width: 860px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-section__heading-secondary {
    display: block;
    font-size: 38px;
    text-align: center;
  }

  .contact-section__contents {
    text-align: center;
    margin-top: 130px;
  }

  .contact-section strong {
    font-size: 50px;
    padding-left: 10px;
  }
  .c-phone-number strong {
    letter-spacing: 0.6px;
    font-size: 50px;
    padding-left: 10px;
  }

  .c-phone-number,
  .c-phone-number:link,
  .c-phone-number:visited,
  .c-phone-number:hover,
  .c-phone-number:active {
    color: #252977;
    font-size: 30px;
    display: block;
    text-align: center;
  }

  .contact-section__fax {
    color: #252977;
    font-size: 30px;
    text-align: center;
  }

  /* $$$$$$$$共通パーツ$$$$$$$$$$$ */

  .space-sm {
    margin-left: 20px;
  }

  .fixed-bg {
    background: url("../images/fixed-bg.png") no-repeat;
    display: block;
    background-size: contain;
    width: 100%;
    background-attachment: fixed;
  }

  .c-lower-page-title {
    color: #252977;
    font-size: 35px;
  }
  .c-lower-page-title--primary {
    margin-bottom: 80px;
  }
  .c-lower-page-title--eng {
    color: #696969;
    font-size: 28px;
    padding-left: 35px;
    font-weight: normal;
  }
  .c-lower-page-title--border {
    border-bottom: 2px solid #696969;
    padding-bottom: 51px;
    margin-bottom: 30px;
  }

  .c-lower-page__heading {
    color: #252977;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    z-index: 1;
  }
  .c-lower-page__heading::before {
    content: "";
    background: url("../images/square-yellow.png") no-repeat;
    background-size: contain;
    display: block;
    width: 98px;
    height: 98px;
    position: absolute;
    left: -70px;
    top: -33px;
    z-index: -1;
  }

  /* keskin */
  .c-keskin-description__heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .c-keskin-description__text {
    font-size: 20px;
    width: 405px;
    margin: 0 auto;
    line-height: 36px;
  }

  .c-phone-number-guide {
    font-size: 25px;
    font-weight: bold;
    color: #252977;
  }

  .c-contact-link,
  .c-contact-link:link,
  .c-contact-link:visited,
  .c-contact-link:hover,
  .c-contact-link:active {
    display: block;
    border: 1px solid #fff;
    width: 340px;
    margin: 50px auto 80px auto;
    padding: 25px 0;
    text-align: center;
    font-size: 25px;
    color: #fff;
    border-radius: 31px;
  }
  .c-contact-link::before {
    content: "";
    background: url("../images/footer-contact-link.png") no-repeat;
    display: inline-block;
    background-size: contain;
    width: 55px;
    height: 38px;
    vertical-align: bottom;
    margin-right: 20px;
  }

  /* ページトップリンク */
  .page-top-link,
  .page-top-link:link,
  .page-top-link:visited,
  .page-top-link:hover,
  .page-top-link:active {
    display: block;
    width: 105px;
    height: 105px;
    text-align: center;
    background: url("../images/page-top-link-bg.png") no-repeat;
    background-size: contain;
    line-height: 150px;
    font-size: 19px;
    color: #252977;
    outline: none;
    position: absolute;
    top: -105px;
    right: 150px;
  }

  /* 共通レイアウト */
  .company-profile__main .container,
  .keskin__main .container,
  .contact__main .container,
  .sitemap .container {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
  }

  .u-page-pt,
  .business__main,
  .recruit__contents,
  .contact__main,
  .sitemap,
  .privacy-policy {
    padding-top: 300px;
    padding-bottom: 150px;
  }

  /* ヘッダー */
  .header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 4;
  }

  .header__row {
    flex-wrap: nowrap;
  }

  .header__heading {
    background: url("../images/header-heading-bg.png") no-repeat;
    background-size: contain;
    padding: 30px;
    height: 265px;
    max-width: 380px;
    flex: 0 1 auto;
  }

  .header__heading__company-name img {
    width: 240px;
  }

  .header__globalnav {
    width: 100%;
    height: 60px;
    margin-left: auto;
    background: url("../images/header-globalnav-bg.png") no-repeat 0% 0% / cover;
    margin-top: 50px;
    flex: 0 1 auto;
  }

  .header__globalnav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    height: 60px;
    padding-left: 110px;
  }

  .header__globalnav__list-item {
    margin: 0 20px;
  }

  .header__globalnav__list-link,
  .header__globalnav__list-link:link,
  .header__globalnav__list-link:visited,
  .header__globalnav__list-link:hover,
  .header__globalnav__list-link:active {
    color: #fff;
  }
  .header__globalnav__list-link {
    font-size: 20px;
  }

  /* #######################フロントページ#################################### */

  .first-view-animation-hero,
  .hero {
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
  }

  .hero-bg {
    background: url("../images/frontpage-hero-bg.png") no-repeat;
    background-position-x: right;
    background-position-y: 3px;
    background-size: contain;
  }

  .hero__inner {
    padding: 0 0 0 80px;
    z-index: 3;
    position: relative;
    bottom: 47px;
  }

  .hero__heading.hero__heading--primary {
    width: 100%;
    margin-bottom: 32px;
  }
  .hero__heading.hero__heading--primary img {
    object-fit: contain;
  }

  .hero__heading.hero__heading--secondary {
    font-size: 40px;
    font-weight: bold;
    color: #747474;
  }

  .hero__heading--secondary span::before {
    content: "/";
    margin: 0 5px;
    position: relative;
    top: -4px;
  }

  /* サービス */
  .service-section {
    background: url("../images/service-section-bg.jpg") no-repeat center / cover;
    padding: 110px 15px;
    overflow: hidden;
  }

  .service-section__heading {
    text-align: center;
    margin: 0 0 360px 0;
  }

  .service-section__heading-primary {
    color: #fff;
    font-size: 120px;
    font-weight: bold;
    position: relative;
    width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  .service-section__heading-primary::before {
    content: "";
    background: url("../images/square-yellow.png") no-repeat;
    height: 110px;
    width: 110px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 15px;
    background-size: contain;
  }

  .service-section__heading-secondary {
    color: #fff;
    font-size: 35px;
    display: block;
    padding-left: 35px;
  }

  .service-section__strong-point__img--primary::before {
    content: "";
    background: url("../images/square-big.png") no-repeat;
    display: block;
    width: 138.5%;
    padding-top: 165%;
    z-index: 1;
    position: absolute;
    right: -157px;
    top: -75px;
    background-size: contain;
  }

  .service-section__strong-point__img {
    padding: 0;
    margin-bottom: 160px;
  }

  .service-section__strong-point__heading {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 45px;
    margin: 0 0 30px 0;
  }

  .service-section__strong-point__heading--primary {
    padding: 0 15px 0 100px;
    max-width: 386px;
  }
  .service-section__strong-point__heading--primary::before {
    content: "";
    background: url("../images/strong-poing-primary.png") no-repeat;
    display: block;
    width: 248px;
    height: 248px;
    position: absolute;
    top: -90px;
    left: 0px;
    transform: translate(-10px, 0px) scale(0.7);
    background-size: contain;
  }

  .service-section__strong-point__heading--secondary {
    padding: 0 15px 0 130px;
    max-width: 386px;
    margin-left: auto;
  }
  .service-section__strong-point__heading--secondary::before {
    content: "";
    background: url("../images/strong-poing-secondary.png") no-repeat;
    display: block;
    width: 248px;
    height: 248px;
    position: absolute;
    top: -90px;
    right: 0px;
    transform: translate(-150px, 0px) scale(0.7);
    background-size: contain;
  }

  .service-section__strong-point__heading--tertiary {
    padding: 0 15px 0 100px;
    max-width: 386px;
  }
  .service-section__strong-point__heading--tertiary::before {
    content: "";
    background: url("../images/strong-poing-tertiary.png") no-repeat;
    display: block;
    width: 248px;
    height: 248px;
    position: absolute;
    top: -90px;
    left: 0px;
    transform: translate(-10px, 0px) scale(0.7);
    background-size: contain;
  }

  .service-section__strong-point__text-contents p {
    color: #fff;
    line-height: 30px;
  }

  .service-section__strong-point__text-contents--primary p {
    padding: 0 15px 0 50px;
    max-width: 386px;
  }

  .service-section__strong-point__text-contents--secondary p {
    padding: 0 15px 0 50px;
    max-width: 386px;
    margin-left: auto;
  }

  .service-section__strong-point__text-contents--tertiary p {
    padding: 0 15px 0 50px;
    max-width: 386px;
  }

  /* keskin×tokaibiso */
  .keskin-description-section-top-img--sp {
    display: none;
  }

  .keskin-tokaibiso-section {
    background: url("../images/keskin-tokaibiso-section-bg.png") no-repeat
      center / cover;
    padding: 150px 15px 130px 15px;
  }

  .keskin-tokaibiso-section__heading-primary {
    text-align: center;
    margin: 0 0 150px 0;
  }

  .keskin-tokaibiso-section__img {
    padding: 0;
  }

  .keskin-tokaibiso-section__text p {
    max-width: 100%;
    margin: 0 0 0 20px;
    font-size: 18px;
    font-weight: bold;
    line-height: 35px;
  }

  /* keskin */
  .keskin-description-section {
    background: url("../images/keskin-description-section-bg.png") no-repeat
      center / cover;
    padding-top: 7%;
    padding-bottom: 7%;
  }

  .c-keskin-description__text--white {
    color: #fff;
  }

  .keskin-box-img {
    display: block;
    margin: 30px auto;
  }

  .keskin-description-section__link,
  .keskin-description-section__link:link,
  .keskin-description-section__link:visited,
  .keskin-description-section__link:hover,
  .keskin-description-section__link:active {
    color: #53a9e0;
  }

  .keskin-description-section__link {
    display: block;
    color: #53a9e0;
    font-size: 25px;
    text-align: center;
    border: 5px solid #53a9e0;
    border-radius: 17px;
    width: 300px;
    padding: 6px 0px;
    margin: 0 auto;
  }

  /* スローガン */
  .container.slogan-section {
    padding: 150px 15px;
  }

  .slogan-section__heading-primary {
    font-size: 110px;
    color: #53a9e0;
    font-weight: bold;
    text-align: center;
  }
  .slogan-section__heading-secondary {
    font-size: 35px;
    display: block;
    text-align: center;
  }

  .slogan-section__slogan {
    display: flex;
    justify-content: center;
    margin: 80px 0 0 0px;
  }

  /* リクルート */
  .recruit-section {
    background-color: #eaeaea;
    padding: 150px 15px;
    overflow: hidden;
    position: relative;
  }

  .recruit-section__heading {
    margin: 0 0 200px 0;
  }

  .recruit-section__heading-primary {
    font-size: 120px;
    color: #53a9e0;
    font-weight: bold;
    position: relative;
    width: 825px;
    margin: 0 auto;
    padding-left: 130px;
  }
  .recruit-section__heading-primary::before {
    content: "";
    background: url(../images/square-white.png) no-repeat;
    height: 110px;
    width: 110px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 15px;
    background-size: contain;
  }
  .recruit-section__heading-secondary {
    display: block;
    font-size: 38px;
    padding-left: 13px;
  }

  .recruit-section__text p {
    color: #53a9e0;
    font-size: 20px;
  }

  .recruit-section__link,
  .recruit-section__link:link,
  .recruit-section__link:visited,
  .recruit-section__link:hover,
  .recruit-section__link:active {
    display: block;
    color: #53a9e0;
    width: 140px;
    border: 4px solid #53a9e0;
    border-radius: 13px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin-left: auto;
    margin-right: 40px;
  }

  .recruit-section__text p {
    color: #53a9e0;
    font-size: 20px;
    font-weight: bold;
    width: 297px;
    margin: 20px 40px 50px auto;
    line-height: 33px;
  }

  .recruit-section__img {
    padding: 0;
  }
  .recruit-section__img img {
    width: 100%;
  }

  .recruit-section::before {
    content: "";
    background: url("../images/square-big02.png") no-repeat;
    display: block;
    width: 100%;
    padding-top: 72%;
    z-index: -1;
    position: absolute;
    background-size: contain;
    top: 195px;
    background-position-x: right;
    pointer-events: none;
  }

  /* #######################フロントページここまで#################################### */

  /* #######################会社概要ページ#################################### */

  .company-profile__main section {
    margin-bottom: 300px;
  }

  /* 会社概要ページ トップ */
  .company-profile-hero {
    background: url("../images/company-profile-hero-bg.png") no-repeat;
    background-size: contain;
    background-position-x: right;
    background-position-y: 35px;
    height: 100vh;
  }

  .company-profile-hero .row {
    display: block;
  }

  .company-profile-hero__title {
    padding-top: 300px;
  }

  .company-profile-hero__title,
  .company-profile-hero__contents {
    position: relative;
    left: 180px;
  }

  .company-profile-hero__heading {
    font-weight: bold;
    font-size: 35px;
  }
  .company-profile-hero__text {
    margin-top: 30px;
    font-size: 20px;
    line-height: 38px;
  }

  .company-profile-hero__president-name {
    display: none;
  }
  .company-profile-hero__president-name p {
    color: #fff;
    font-size: 20px;
    position: absolute;
  }

  /* 会社概要ページ 会社概要 */
  .company-profile__section {
    margin-top: 270px;
  }

  .c-lower-page__table {
    margin-top: 50px;
    margin-bottom: 80px;
  }
  .c-lower-page__table th {
    border: 1px solid #696969;
    background: #e7e8f4;
    padding: 17px 0 17px 35px;
    width: 25%;
  }
  .c-lower-page__table td {
    border: 1px solid #696969;
    background: #fff;
    padding: 20px 0 20px 35px;
  }

  /* 会社概要ページ 沿革 */

  .company-history__table {
    border-spacing: 0px 25px;
    border-collapse: separate;
  }
  .company-history__table th {
    color: #252977;
    font-size: 40px;
  }

  /* 会社概要ページ 得意先一覧 */
  .customer-list__section ul {
    padding: 0;
    margin: 0;
    line-height: 40px;
  }
  .customer-list__section li {
    display: inline;
  }

  .customer-list__section li::after {
    content: "、";
  }
  .customer-list__section li:last-child:after {
    content: none;
  }

  /* 会社概要ページ 資格 */
  .certification__heading {
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 15px;
  }
  .certification__text {
    margin-bottom: 30px;
  }

  /* #######################会社概要ページここまで#################################### */

  /* #######################事業案内ページ#################################### */
  .business__main {
    overflow: hidden;
  }
  .business__section {
    max-width: 950px;
  }

  .business__contents-wrapper {
    margin-bottom: 140px;
  }
  .business__contents-wrapper:last-child {
    margin-bottom: 0;
  }

  .business__title {
    padding-left: 99px;
  }

  .business__img--square::before {
    content: "";
    background: url("../images/business-square-blue.png") no-repeat;
    display: block;
    background-size: contain;
    width: 100%;
    padding-top: 85%;
    position: absolute;
    right: -85px;
    top: -50px;
    z-index: -1;
  }

  .business__img--square img {
    width: 60%;
  }
  .business__img-l img {
    width: 95%;
  }

  .business__img {
    display: flex;
    align-items: center;
    height: 372px;
  }

  .business__text--l {
    padding-left: 99px;
    padding-right: 55px;
  }
  .business__text--r {
    padding-right: 0;
    padding-left: 61px;
    position: absolute;
    right: 115px;
  }
  .business__text--r2 {
    top: 82px;
  }
  .business__img-l {
    padding-left: 99px;
  }
  .business__img--square {
    padding-right: 0;
    position: relative;
    z-index: 1;
    bottom: 80px;
  }

  /* #######################事業案内ページここまで#################################### */

  /* #######################keskinページ#################################### */

  .keskin-page__hero {
    background: url("../images/keskin-page-hero-bg.png") no-repeat;
    height: 100vh;
    background-size: contain;
    background-position-x: right;
    background-position-y: 27px;
  }

  .keskin-page__hero__contents {
    position: absolute;
    top: 36%;
  }

  .c-keskin-description__text--blue {
    color: #7fccec;
  }

  .keskin-page__hero img {
    display: block;
    margin: 40px auto;
  }

  .keskin-page__keskin-tokaibiso__section {
    padding-top: 150px;
    padding-bottom: 250px;
  }
  .keskin-page__keskin-tokaibiso__section p {
    font-weight: bold;
  }
  .keskin-description-section__heading {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .keskin-page__keskin-tokaibiso__contents-text {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .keskin-description-section__link {
    margin-top: 80px;
  }

  .work-description__section .c-lower-page__heading {
    margin: 100px 0 60px 60px;
  }

  .work-description__section .c-lower-page-title {
    text-align: center;
  }

  .c-work-description__item-wrapper {
    background-color: #f5f5f5;
    border: 3px solid #fff;
    border-radius: 20px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
  }

  .c-work-description__item-wrapper--price-list {
    padding: 40px;
  }

  .work-description__price-list__keskin-cleaning-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  .work-description__price-list__keskin-cleaning-wrapper p,
  .work-description__price-list__set-price p {
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
  }
  .work-description__price-list__keskin-cleaning-wrapper__heading {
    margin-bottom: 16px;
  }
  .work-description__price-list__keskin-cleaning-wrapper__price {
    margin-bottom: 0;
  }
  .work-description__price-list__keskin-cleaning-wrapper span,
  .work-description__price-list__set-price span {
    font-size: 20px;
  }

  .work-description__price-list__keskin,
  .work-description__price-list__cleaning,
  .work-description__price-list__set-price {
    padding: 10px 15px 20px;
    border-radius: 20px;
    border: 3px solid #fff;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
  }
  .work-description__price-list__keskin {
    background-color: #7fccec;
    width: 47%;
    margin-right: auto;
  }
  .work-description__price-list__cleaning {
    background: #252977;
    width: 47%;
    margin-left: auto;
  }
  .work-description__price-list__set-price {
    background: #6c93ff;
  }

  .c-work-description__item-wrapper--work-flow {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 150px;
    padding: 70px 15px;
  }
  .c-work-description__item-wrapper--work-flow::after {
    content: "";
    background: url("../images/work-flow-arrow.png") no-repeat;
    display: block;
    position: absolute;
    width: 120px;
    height: 72px;
    bottom: -110px;
    left: 42%;
  }
  .c-work-description__item-wrapper--work-flow:last-child::after {
    content: none;
  }
  .c-work-flow__heading {
    font-size: 50px;
    font-weight: bold;
    color: #252977;
    width: 50%;
    text-align: center;
  }

  .c-work-flow__contents {
    width: 50%;
    margin-left: auto;
  }
  .c-work-flow__contents img {
    margin-bottom: 25px;
    max-width: 90%;
  }
  .c-work-flow__contents ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 25px;
  }
  .c-work-flow__contents li {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .c-work-flow__contents span {
    display: block;
    font-weight: normal;
    margin-top: 5px;
  }

  /* #######################keskinページここまで#################################### */

  /* #######################採用情報ページ#################################### */

  .recruit__contents__heading {
    color: #696969;
    font-weight: bold;
  }

  .recruit__apply-mail-tel-wrapper {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 80px;
  }

  .recruit__apply-mail__link,
  .recruit__apply-mail__link:hover {
    color: #fff;
    background: #252977;
    font-size: 25px;
    display: block;
    padding: 15px 0px;
    text-align: center;
    width: 50%;
    margin: 0 auto 100px auto;
    border-radius: 23px;
  }
  .recruit__apply-mail__link::after {
    content: "〉";
    position: relative;
    left: 20px;
  }

  .recruit__apply-mail-tel-wrapper .c-phone-number {
    display: inline;
  }

  /* #######################採用情報ページここまで#################################### */

  /* #######################お問い合わせページ#################################### */

  .contact__phone-number-wrapper {
    margin-top: 200px;
    text-align: center;
  }

  .business-hours-guide {
    font-size: 20px;
  }

  .business-hours-guide span::before {
    content: "/";
    margin: 0 10px;
  }

  .contact__phone-number-wrapper .c-phone-number {
    display: inline;
  }

  /* コンタクトフォームのstyle */
  .contact-form__must::after {
    content: "＊";
    color: red;
  }

  .contact-form__contents-wrapper label {
    margin-top: 5px;
  }

  .contact-form__item-name-heading {
    color: #252977;
    font-size: 20px;
    font-weight: bold;
  }
  .contact-form__item-name-heading p {
    margin-top: 5px;
  }
  .contact-form__item-name-heading span {
    font-size: 16px;
  }

  .contact-form__item-name {
    font-size: 20px;
  }

  .contact-form__input input {
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
  }

  .contact-form__submit-wrapper {
    text-align: center;
    margin-top: 100px;
  }

  .contact-form__submit {
    background: #252977;
    color: #fff;
    font-size: 22px;
    padding: 15px 80px;
    border-radius: 17px;
    letter-spacing: 8px;
    text-indent: 20px;
  }

  /* #######################お問い合わせページここまで#################################### */

  /* #######################フッター#################################### */

  footer {
    position: relative;
  }

  .footer {
    background-color: #252977;
    padding: 65px 0;
  }

  .footer__company-name {
    text-align: right;
  }
  .footer__company-name img {
    width: 300px;
  }

  .footer__address {
    margin: 0;
    padding-left: 40px;
  }
  .footer__address p {
    color: #fff;
    margin: 0 0 6px 0;
  }
  .footer__address-mail,
  .footer__address-mail:link,
  .footer__address-mail:visited,
  .footer__address-mail:hover,
  .footer__address-mail:active {
    color: #fff;
  }

  .footer__nav {
    margin: 80px 0 0 0;
  }
  .footer__nav__list-link,
  .footer__nav__list-link:link,
  .footer__nav__list-link:visited,
  .footer__nav__list-link:hover,
  .footer__nav__list-link:active {
    color: #fff;
  }
  .footer__nav__list-primary,
  .footer__nav__list-secondary {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .footer__nav__list-primary {
    margin-bottom: 30px;
  }
  .footer__nav__list-primary li {
    margin: 0 35px;
  }
  .footer__nav__list-primary li:first-child {
    margin-left: 0;
  }
  .footer__nav__list-primary li:last-child {
    margin-right: 0;
  }

  .footer__nav__list-secondary li:nth-of-type(1) {
    margin-right: 20px;
  }
  .footer__nav__list-secondary li:nth-of-type(2) {
    margin-left: 20px;
  }

  .footer__copyright {
    color: #fff;
    text-align: center;
  }

  /* #######################フッターここまで#################################### */
}

@media (max-width: 991.98px) {
  .u-page-pt {
    padding: 200px 0;
  }
}

/* 1201px以上 */
@media screen and (min-width: 992px) {
  /* ハンバーガメニュー非表示 */
  .header__hamburger-menu-wrapper {
    display: none;
  }
  #drawer {
    display: none;
  }

  .service-section__strong-point__img--primary::before {
    width: 134.5%;
    padding-top: 159%;
    top: -82px;
  }
}

/* ノートパソコン */
@media screen and (min-width: 992px) and (max-width: 1300px) {
  /* ファーストビューアニメーション */
  .first-view-animation-secondary {
    background: url("../images/frontpage-hero-bg--np.png") no-repeat 100% 0% /
      contain;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 31px;
    -webkit-animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }

  .header__globalnav__list {
    padding-left: 64px;
  }

  .header__globalnav__list-link {
    font-size: 19px;
  }

  .header__globalnav__list-item {
    margin: 0 35px 0 0;
  }
  .header__globalnav__list-item:last-child {
    margin: 0;
  }

  .hero-bg {
    background: url("../images/frontpage-hero-bg--np.png") no-repeat;
    background-position-x: right;
    background-position-y: 3px;
    background-size: contain;
  }

  .company-profile-hero {
    background-position-x: right;
    background-position-y: 35px;
    height: 85vh;
  }

  .company-profile-hero__text {
    margin-top: 30px;
    font-size: 18px;
    line-height: 34px;
  }
  .company-profile-hero__title,
  .company-profile-hero__contents {
    position: relative;
    left: 100px;
  }

  .company-profile-hero__heading {
    font-size: 33px;
  }
}

/* タブレット */
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  /* template-parts CONTACT お問い合わせ */
  .contact-section {
    padding: 150px 15px;
    margin-bottom: 0;
  }

  .contact-section__heading::before {
    content: "";
    background: url("../images/square-blue.png") no-repeat;
    display: block;
    width: 100px;
    height: 100px;
    background-size: contain;
    margin: 0 auto;
  }

  .contact-section__heading-primary {
    font-size: 90px;
    color: #252977;
    font-weight: bold;
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .contact-section__heading-secondary {
    display: block;
    font-size: 38px;
    text-align: center;
  }

  .contact-section__contents {
    text-align: center;
    margin: 130px 0;
  }
  .c-phone-number,
  .c-phone-number:link,
  .c-phone-number:visited,
  .c-phone-number:hover,
  .c-phone-number:active {
    color: #252977;
    font-size: 30px;
    display: block;
    text-align: center;
  }
  .contact-section__fax {
    color: #252977;
    font-size: 30px;
    text-align: center;
  }

  .contact-section strong {
    font-size: 50px;
    padding-left: 10px;
  }
  .c-phone-number strong {
    letter-spacing: 0.6px;
    font-size: 50px;
    padding-left: 10px;
  }

  /* $$$$$$$$共通パーツ$$$$$$$$$$$ */

  .space-sm {
    margin-left: 20px;
  }

  .fixed-bg {
    background: url("../images/fixed-bg--tablet.png") no-repeat;
    display: block;
    background-size: contain;
    width: 100%;
    background-attachment: fixed;
    background-position-y: 0;
  }

  .c-lower-page-title {
    color: #252977;
    font-size: 35px;
  }
  .c-lower-page-title--primary {
    margin-bottom: 150px;
  }
  .c-lower-page-title--eng {
    color: #696969;
    font-size: 28px;
    padding-left: 35px;
    font-weight: normal;
  }
  .c-lower-page-title--border {
    border-bottom: 2px solid #696969;
    padding-bottom: 51px;
    margin-bottom: 30px;
  }

  .c-lower-page__heading {
    color: #252977;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    z-index: 1;
  }
  .c-lower-page__heading::before {
    content: "";
    background: url("../images/square-yellow.png") no-repeat;
    background-size: contain;
    display: block;
    width: 98px;
    height: 98px;
    position: absolute;
    left: -70px;
    top: -33px;
    z-index: -1;
  }

  /* keskin */
  .c-keskin-description__heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .c-keskin-description__text {
    font-size: 18px;
    margin: 0 auto;
    line-height: 36px;
  }

  .c-phone-number-guide {
    font-size: 25px;
    font-weight: bold;
    color: #252977;
  }

  .c-contact-link,
  .c-contact-link:link,
  .c-contact-link:visited,
  .c-contact-link:hover,
  .c-contact-link:active {
    display: block;
    border: 1px solid #fff;
    width: 340px;
    margin: 50px auto 80px auto;
    padding: 25px 0;
    text-align: center;
    font-size: 25px;
    color: #fff;
    border-radius: 31px;
  }
  .c-contact-link::before {
    content: "";
    background: url("../images/footer-contact-link.png") no-repeat;
    display: inline-block;
    background-size: contain;
    width: 55px;
    height: 38px;
    vertical-align: bottom;
    margin-right: 20px;
  }

  /* ページトップリンク */
  .page-top-link,
  .page-top-link:link,
  .page-top-link:visited,
  .page-top-link:hover,
  .page-top-link:active {
    display: block;
    width: 105px;
    height: 105px;
    text-align: center;
    background: url("../images/page-top-link-bg.png") no-repeat;
    background-size: contain;
    line-height: 150px;
    font-size: 19px;
    color: #252977;
    outline: none;
    position: absolute;
    top: -105px;
    right: 150px;
  }

  /* 共通レイアウト */
  .company-profile__main .container,
  .keskin__main .container,
  .contact__main .container,
  .sitemap .container {
    max-width: 768px;
    margin-right: auto;
    margin-left: auto;
  }

  .business__main,
  .recruit__contents,
  .contact__main,
  .sitemap,
  .privacy-policy {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  /* #######################フロントページ#################################### */

  /* ファーストビューアニメーション */
  .first-view-animation-primary {
    background: url("../images/fixed-bg--tablet.png") no-repeat 0% 50% / contain;
    height: 100vh;
    width: 100%;
    position: fixed;
    -webkit-animation: slide-in-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: slide-in-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .first-view-animation-secondary {
    background: url("../images/frontpage-hero-bg--tablet.png") no-repeat 100% 0% /
      contain;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 31px;
    -webkit-animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }

  .first-view-animation-hero {
    width: 100%;
    height: 100vh;
    padding-top: 120px;
  }

  .hero {
    width: 100%;
    height: 70vh;
  }

  .hero-bg {
    background: url("../images/frontpage-hero-bg--tablet.png") no-repeat;
    background-position-x: right;
    background-position-y: -114px;
    background-size: 70%;
  }

  .hero__inner {
    z-index: 3;
    position: relative;
    bottom: 47px;
  }

  .hero__heading.hero__heading--primary {
    display: none;
  }

  .hero__heading.hero__heading--secondary {
    font-size: 40px;
    width: 340px;
    font-weight: bold;
    color: #747474;
    margin-top: 100px;
    margin-left: 20px;
    line-height: 45px;
  }

  .hero__heading--secondary span::before {
    content: "・";
  }

  /* サービス */
  .service-section {
    background: url("../images/service-section-bg.jpg") no-repeat center / cover;
    padding: 50px 15px;
    overflow: hidden;
  }

  .service-section__heading {
    text-align: center;
    margin: 0 0 200px 0;
  }

  .service-section__heading-primary {
    color: #fff;
    font-size: 90px;
    font-weight: bold;
    position: relative;
    width: 580px;
    margin: 0 auto;
    text-align: center;
  }
  .service-section__heading-primary::before {
    content: "";
    background: url("../images/square-yellow.png") no-repeat;
    height: 95px;
    width: 95px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 15px;
    background-size: contain;
  }

  .service-section__heading-secondary {
    color: #fff;
    font-size: 28px;
    display: block;
    padding-left: 30px;
  }

  .service-section__strong-point__img--primary::before {
    content: "";
    background: url("../images/square-big.png") no-repeat;
    display: block;
    width: 152.5%;
    padding-top: 180%;
    z-index: 1;
    position: absolute;
    left: -70px;
    top: -31px;
    background-position-x: left;
    background-size: cover;
  }

  .service-section__strong-point__img {
    padding: 0;
    margin-bottom: 160px;
  }

  .service-section__strong-point__heading {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    line-height: 35px;
    margin: 0 0 30px 0;
  }

  .service-section__strong-point__heading--primary {
    padding: 0 15px 0 50px;
  }
  .service-section__strong-point__heading--primary::before {
    content: "";
    background: url("../images/strong-poing-primary.png") no-repeat;
    display: block;
    width: 180px;
    height: 180px;
    position: absolute;
    top: -65px;
    left: -13px;
    transform: translate(-10px, 0px) scale(0.7);
    background-size: contain;
  }

  .service-section__strong-point__heading--secondary {
    max-width: 215px;
    margin-left: auto;
  }
  .service-section__strong-point__heading--secondary::before {
    content: "";
    background: url("../images/strong-poing-secondary.png") no-repeat;
    display: block;
    width: 180px;
    height: 180px;
    position: absolute;
    top: -60px;
    right: 0px;
    transform: translate(-150px, 0px) scale(0.7);
    background-size: contain;
  }

  .service-section__strong-point__heading--tertiary {
    padding: 0 15px 0 50px;
  }
  .service-section__strong-point__heading--tertiary::before {
    content: "";
    background: url("../images/strong-poing-tertiary.png") no-repeat;
    display: block;
    width: 180px;
    height: 180px;
    position: absolute;
    top: -65px;
    left: -13px;
    transform: translate(-10px, 0px) scale(0.7);
    background-size: contain;
  }

  .service-section__strong-point__text-contents p {
    color: #fff;
    line-height: 26px;
  }

  .service-section__strong-point__text-contents--primary p {
    padding: 0 15px 0 8px;
    max-width: 386px;
  }

  .service-section__strong-point__text-contents--secondary p {
    padding: 0 15px 0 50px;
    max-width: 386px;
    margin-left: auto;
  }

  .service-section__strong-point__text-contents--tertiary p {
    padding: 0 15px 0 8px;
    max-width: 386px;
  }

  /* keskin×tokaibiso */
  .keskin-description-section-top-img--sp {
    display: none;
  }

  .keskin-tokaibiso-section {
    background: url("../images/keskin-tokaibiso-section-bg.png") no-repeat
      center / cover;
    padding: 150px 15px 130px 15px;
  }

  .keskin-tokaibiso-section__heading {
    max-width: 83%;
    margin: auto;
  }

  .keskin-tokaibiso-section__heading-primary {
    text-align: center;
    margin: 0 0 50px 0;
  }

  .keskin-tokaibiso-section__img {
    padding: 0;
  }

  .keskin-tokaibiso-section__text p {
    max-width: 386px;
    margin: 0 0 0 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
  }

  /* keskin */
  .keskin-description-section {
    background: url("../images/keskin-description-section-bg.png") no-repeat
      center / cover;
    padding-top: 7%;
    padding-bottom: 7%;
  }

  .keskin-description-section .c-keskin-description__heading {
    text-align: center;
    width: 65%;
    margin: 0 auto 40px auto;
  }

  .c-keskin-description__text--white {
    color: #fff;
  }

  .keskin-box-img {
    display: block;
    margin: 30px auto;
    width: 70%;
  }

  .keskin-description-section__link,
  .keskin-description-section__link:link,
  .keskin-description-section__link:visited,
  .keskin-description-section__link:hover,
  .keskin-description-section__link:active {
    color: #53a9e0;
  }

  .keskin-description-section__link {
    display: block;
    color: #53a9e0;
    font-size: 25px;
    text-align: center;
    border: 5px solid #53a9e0;
    border-radius: 17px;
    width: 300px;
    padding: 6px 0px;
    margin: 0 auto;
  }

  /* スローガン */
  .container.slogan-section {
    padding: 150px 15px;
  }

  .slogan-section__heading-primary {
    font-size: 90px;
    color: #53a9e0;
    font-weight: bold;
    text-align: center;
  }
  .slogan-section__heading-secondary {
    font-size: 28px;
    display: block;
    text-align: center;
  }

  .slogan-section__slogan {
    display: flex;
    justify-content: center;
    margin: 80px 0 0 0px;
  }

  /* リクルート */
  .recruit-section {
    background-color: #eaeaea;
    padding: 150px 15px;
    overflow: hidden;
    position: relative;
  }

  .recruit-section__heading {
    margin: 0 auto 100px auto;
    max-width: 58%;
    position: relative;
  }

  .recruit-section__heading-primary {
    font-size: 90px;
    color: #53a9e0;
    font-weight: bold;
    position: relative;
    width: 860px;
    margin: 0 auto;
  }
  .recruit-section__heading::before {
    content: "";
    background: url(../images/square-white.png) no-repeat;
    height: 95px;
    width: 95px;
    display: inline-block;
    position: absolute;
    left: -90px;
    top: 15px;
    background-size: contain;
  }
  .recruit-section__heading-secondary {
    display: block;
    font-size: 28px;
    padding-left: 13px;
  }

  .recruit-section__text p {
    color: #53a9e0;
    font-size: 18px;
  }

  .recruit-section__link,
  .recruit-section__link:link,
  .recruit-section__link:visited,
  .recruit-section__link:hover,
  .recruit-section__link:active {
    display: block;
    color: #53a9e0;
    width: 140px;
    border: 4px solid #53a9e0;
    border-radius: 13px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin-left: auto;
    margin-right: 40px;
  }

  .recruit-section__text p {
    color: #53a9e0;
    font-size: 20px;
    font-weight: bold;
    width: 297px;
    margin: 0px 40px 20px auto;
    line-height: 33px;
  }

  .recruit-section__img {
    padding: 0;
  }
  .recruit-section__img img {
    width: 100%;
  }

  .recruit-section::before {
    content: "";
    background: url("../images/square-big02.png") no-repeat;
    display: block;
    width: 100%;
    padding-top: 72%;
    z-index: 1;
    position: absolute;
    background-size: contain;
    top: 195px;
    background-position-x: right;
    pointer-events: none;
  }

  /* #######################フロントページここまで#################################### */

  /* #######################会社概要ページ#################################### */

  .company-profile__main section {
    margin-bottom: 200px;
  }

  /* 会社概要ページ トップ */
  .company-profile-hero {
    background: url("../images/company-profile-hero-bg--tablet.png") no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 111%;
  }

  .company-profile-hero__title,
  .company-profile-hero__contents {
    position: absolute;
    top: 9%;
    left: 0;
  }
  .company-profile-hero__heading {
    margin-top: 80px;
    font-weight: bold;
    font-size: 35px;
  }
  .company-profile-hero__text {
    margin-top: 30px;
    font-size: 17px;
    line-height: 38px;
    max-width: 45%;
    font-weight: bold;
  }

  .company-profile-hero__president-name {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    max-width: 45%;
    text-align: right;
    margin-top: 36px;
  }

  /* 会社概要ページ 会社概要 */
  .company-profile__section {
    margin-top: 100px;
  }

  .c-lower-page__table {
    margin-top: 50px;
    margin-bottom: 80px;
  }
  .c-lower-page__table th {
    border: 1px solid #696969;
    background: #e7e8f4;
    padding: 17px 0 17px 35px;
    width: 25%;
  }
  .c-lower-page__table td {
    border: 1px solid #696969;
    background: #fff;
    padding: 20px 0 20px 35px;
  }

  .company-profile__img {
    text-align: center;
    margin-bottom: 50px;
  }

  /* 会社概要ページ 沿革 */

  .company-history__table {
    border-spacing: 0px 25px;
    border-collapse: separate;
  }
  .company-history__table th {
    color: #252977;
    font-size: 40px;
  }

  /* 会社概要ページ 資格 */
  .certification__heading {
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 15px;
  }
  .certification__text {
    margin-bottom: 30px;
  }

  /* #######################会社概要ページここまで#################################### */

  /* #######################事業案内ページ#################################### */
  .business__main {
    overflow: hidden;
  }
  .business__section {
    max-width: 950px;
    margin-left: auto;
    margin-right: 40px;
  }

  .business__contents-wrapper {
    max-width: 80%;
    margin: 0 auto 140px auto;
  }
  .business__contents-wrapper:last-child {
    margin-bottom: 0;
  }

  .business__section .c-lower-page-title--primary {
    text-align: center;
  }

  .business__section .c-lower-page__heading::before {
    content: "";
    background: url("../images/square-yellow.png") no-repeat;
    background-size: contain;
    display: block;
    width: 128px;
    height: 128px;
    position: absolute;
    left: 36%;
    top: -45px;
    z-index: -1;
  }

  .business__section .c-lower-page__heading {
    color: #252977;
    font-size: 30px;
    margin-bottom: 120px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 75%;
    margin: 0 auto 120px auto;
  }

  .business__img::before {
    content: "";
    background: url("../images/business-square-blue.png") no-repeat;
    display: block;
    background-size: contain;
    width: 602px;
    height: 500px;
    position: absolute;
    right: -178px;
    top: -92px;
    z-index: -1;
  }
  .business__img {
    text-align: center;
  }
  .business__img img {
    width: 80%;
    margin-bottom: 120px;
  }

  /* #######################事業案内ページここまで#################################### */

  /* #######################keskinページ#################################### */

  .keskin-page__hero {
    background: url("../images/keskin-page-hero-bg--tablet.png") no-repeat;
    padding-top: 96%;
    background-size: contain;
  }

  .keskin-page__hero__contents {
    position: absolute;
    top: 150px;
    left: 0;
  }

  .c-keskin-description__text {
    color: #fff;
    width: 333px;
  }

  .keskin-page__hero img {
    display: block;
    margin: 40px auto;
    width: 70%;
  }

  .keskin-page__keskin-tokaibiso__contents {
    margin: auto;
  }
  .keskin-description-section__heading {
    margin-bottom: 55px;
  }
  .keskin-page__keskin-tokaibiso__section {
    padding-top: 60px;
    padding-bottom: 250px;
  }
  .keskin-page__keskin-tokaibiso__section p {
    font-weight: bold;
    margin-bottom: 0;
    line-height: 33px;
  }
  .keskin-page__keskin-tokaibiso__section .keskin-description-section__link {
    margin-top: 50px;
  }

  .work-description__section .c-lower-page__heading {
    margin: 100px 0 60px 60px;
  }

  .work-description__section .c-lower-page-title {
    text-align: center;
  }

  .c-work-description__item-wrapper {
    background-color: #f5f5f5;
    border: 3px solid #fff;
    border-radius: 20px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
  }

  .c-work-description__item-wrapper--price-list {
    padding: 24px;
  }

  .work-description__price-list__keskin-cleaning-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  .work-description__price-list__keskin-cleaning-wrapper p,
  .work-description__price-list__set-price p {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
  }
  .work-description__price-list__keskin-cleaning-wrapper__heading {
    margin-bottom: 16px;
  }
  .work-description__price-list__keskin-cleaning-wrapper__price {
    margin-bottom: 0;
  }
  .work-description__price-list__keskin-cleaning-wrapper span,
  .work-description__price-list__set-price span {
    font-size: 20px;
    margin-left: 10px;
  }

  .work-description__price-list__keskin,
  .work-description__price-list__cleaning,
  .work-description__price-list__set-price {
    padding: 10px 15px;
    border-radius: 20px;
    border: 3px solid #fff;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
  }
  .work-description__price-list__keskin {
    background-color: #7fccec;
    width: 47%;
    margin-right: auto;
  }
  .work-description__price-list__cleaning {
    background: #252977;
    width: 47%;
    margin-left: auto;
  }
  .work-description__price-list__set-price {
    background: #6c93ff;
  }

  .c-work-description__item-wrapper--work-flow {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 150px;
    padding: 70px 15px;
  }
  .c-work-description__item-wrapper--work-flow::after {
    content: "";
    background: url("../images/work-flow-arrow.png") no-repeat;
    display: block;
    position: absolute;
    width: 120px;
    height: 72px;
    bottom: -110px;
    left: 42%;
  }
  .c-work-description__item-wrapper--work-flow:last-child::after {
    content: none;
  }
  .c-work-flow__heading {
    font-size: 40px;
    font-weight: bold;
    color: #252977;
    width: 46%;
    text-align: center;
  }

  .c-work-flow__contents {
    width: 55%;
    margin-left: auto;
  }
  .c-work-flow__contents img {
    margin-bottom: 25px;
    max-width: 90%;
  }
  .c-work-flow__contents ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 25px;
  }
  .c-work-flow__contents li {
    font-weight: bold;
    margin-bottom: 5px;
  }
  .c-work-flow__contents span {
    display: block;
    font-weight: normal;
    margin-top: 5px;
  }

  /* #######################keskinページここまで#################################### */

  /* #######################採用情報ページ#################################### */

  .recruit__contents__heading {
    color: #696969;
    font-weight: bold;
  }

  .recruit__apply-mail-tel-wrapper {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 80px;
  }

  .recruit__apply-mail__link,
  .recruit__apply-mail__link:hover {
    color: #fff;
    background: #252977;
    font-size: 25px;
    display: block;
    padding: 15px 0px;
    text-align: center;
    width: 65%;
    margin: 0 auto 100px auto;
    border-radius: 23px;
  }
  .recruit__apply-mail__link::after {
    content: "〉";
    position: relative;
    left: 20px;
  }

  .recruit__apply-mail-tel-wrapper .c-phone-number {
    display: inline;
  }

  /* #######################採用情報ページここまで#################################### */

  /* #######################お問い合わせページ#################################### */

  .contact__phone-number-wrapper {
    margin-top: 200px;
    text-align: center;
  }

  .business-hours-guide {
    font-size: 20px;
  }

  .business-hours-guide span::before {
    content: "/";
    margin: 0 10px;
  }

  .contact__phone-number-wrapper .c-phone-number {
    display: inline;
  }

  /* コンタクトフォームのstyle */
  .contact-form__must::after {
    content: "＊";
    color: red;
  }

  .contact-form__contents-wrapper label {
    margin-top: 5px;
  }

  .contact-form__item-name-heading {
    color: #252977;
    font-size: 17px;
    font-weight: bold;
    padding-left: 0;
  }
  .contact-form__item-name-heading p {
    margin-top: 5px;
  }
  .contact-form__item-name-heading span {
    font-size: 14px;
  }

  .contact-form__item-name {
    font-size: 17px;
  }

  .contact-form__input input {
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
  }

  .contact-form__submit-wrapper {
    text-align: center;
    margin-top: 100px;
  }

  .contact-form__submit {
    background: #252977;
    color: #fff;
    font-size: 22px;
    padding: 15px 80px;
    border-radius: 17px;
    letter-spacing: 8px;
    text-indent: 20px;
  }

  /* #######################お問い合わせページここまで#################################### */

  /* #######################フッター#################################### */

  footer {
    position: relative;
  }

  .footer {
    background-color: #252977;
    padding: 65px 0;
  }

  .footer__address {
    margin: 0;
    padding-left: 40px;
  }
  .footer__address p {
    color: #fff;
    margin: 0 0 6px 0;
  }
  .footer__address-mail,
  .footer__address-mail:link,
  .footer__address-mail:visited,
  .footer__address-mail:hover,
  .footer__address-mail:active {
    color: #fff;
  }

  .footer__nav {
    margin: 80px 0 0 0;
  }
  .footer__nav__list-link,
  .footer__nav__list-link:link,
  .footer__nav__list-link:visited,
  .footer__nav__list-link:hover,
  .footer__nav__list-link:active {
    color: #fff;
  }
  .footer__nav__list-primary,
  .footer__nav__list-secondary {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .footer__nav__list-primary {
    margin-bottom: 30px;
    margin-left: 0;
  }
  .footer__nav__list-primary li {
    margin: 0 30px;
  }
  .footer__nav__list-primary li:first-child {
    margin-left: 0;
  }
  .footer__nav__list-primary li:last-child {
    margin-right: 0;
  }

  .footer__nav__list-secondary li:nth-of-type(1) {
    margin-right: 20px;
  }
  .footer__nav__list-secondary li:nth-of-type(2) {
    margin-left: 20px;
  }

  .footer__copyright {
    color: #fff;
    text-align: center;
  }

  /* #######################フッターここまで#################################### */
}

@media screen and (max-width: 991.98px) {
  .language-switcher {
    gap: 8px;
    right: 80px;
    top: 20px;
  }
  .language-switcher li img {
    width: 35px;
  }
  /* ヘッダー */
  .header {
    position: sticky;
    background: #252977;
    width: 100%;
    height: 65px;
    top: 0;
    z-index: 6;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header__row {
    flex-wrap: nowrap;
  }
  .header__heading__company-name {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
  }
  .header__heading__company-name img {
    width: 200px;
  }
  .header__hamburger-menu {
    top: 20px;
  }
  .header__globalnav {
    width: 100%;
    height: 60px;
    margin-left: auto;
    background: url("../images/header-globalnav-bg.png") no-repeat 0% 0% / cover;
    margin-top: 30px;
    flex: 0 1 auto;
  }

  .header__globalnav__list {
    display: flex;
    align-items: center;
    margin: 0;
    height: 60px;
    padding-left: 110px;
  }

  .header__globalnav__list-item {
    margin: 0 20px;
  }

  .header__globalnav__list-link,
  .header__globalnav__list-link:link,
  .header__globalnav__list-link:visited,
  .header__globalnav__list-link:hover,
  .header__globalnav__list-link:active {
    color: #fff;
  }
  .header__globalnav__list-link {
    font-size: 20px;
  }
  .header__globalnav {
    display: none;
  }

  /* ハンバーガメニュー */
  .drawer__main {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .drawer__privacy,
  .drawer__sitemap {
    font-size: 16px;
  }
  #drawer .drawer__privacy a {
    padding-bottom: 5px;
  }

  #drawer .drawer__sitemap a {
    padding: 0;
  }
  .header__hamburger-menu-wrapper {
    z-index: 7;
  }
}

/* スマホ */
@media screen and (max-width: 767.98px) {
  .language-switcher {
    right: 70px;
    gap: 6px;
  }
  /* 共通レイアウト */
  .company-profile__main .container,
  .keskin__main .container,
  .recruit__contents .container,
  .contact__main .container,
  .sitemap .container {
    max-width: 95%;
    margin-right: auto;
    margin-left: auto;
  }

  /* template-parts CONTACT お問い合わせ */
  .contact-section {
    padding-bottom: 64px;
    padding-top: 64px;
    margin-bottom: 0;
  }

  .company-profile__main .contact-section,
  .keskin__main .contact-section,
  .recruit__contents .contact-section,
  .contact__main .contact-section {
    max-width: 100%;
  }

  .contact-section__heading::before {
    content: "";
    background: url("../images/square-blue.png") no-repeat;
    display: block;
    width: 60px;
    height: 80px;
    background-size: contain;
    margin: 0 auto;
  }

  .contact-section__heading-primary {
    font-size: 55px;
    color: #252977;
    font-weight: bold;
    position: relative;
    text-align: center;
  }

  .contact-section__heading-secondary {
    display: block;
    font-size: 22px;
    text-align: center;
    margin-top: 10px;
  }

  .contact-section__contents {
    text-align: center;
    margin: 24px 0;
  }

  .contact-section strong {
    font-size: 33px;
    padding-left: 10px;
  }
  .c-phone-number strong {
    letter-spacing: 0.6px;
    font-size: 30px;
    padding-left: 10px;
  }

  .c-phone-number,
  .c-phone-number:link,
  .c-phone-number:visited,
  .c-phone-number:hover,
  .c-phone-number:active {
    color: #252977;
    font-size: 20px;
    display: block;
    text-align: center;
  }

  .contact-section__fax {
    color: #252977;
    font-size: 20px;
    text-align: center;
  }

  [lang="en-US"] .c-phone-number,
  [lang="en-US"] .contact-section__fax,
  [lang="my-MM"] .c-phone-number,
  [lang="my-MM"] .contact-section__fax {
    font-size: 18px;
  }

  /* $$$$$$$$共通パーツ$$$$$$$$$$$ */

  .sp-br {
    display: block;
  }

  /* ハンバーガメニュー */
  .drawer__main {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .drawer__privacy,
  .drawer__sitemap {
    font-size: 16px;
  }
  #drawer .drawer__privacy a {
    padding-bottom: 5px;
  }

  #drawer .drawer__sitemap a {
    padding: 0;
  }
  .header__hamburger-menu-wrapper {
    z-index: 7;
  }
  #hamburger-menu.active {
    top: 15px;
  }

  /* ハンバーガメニューここまで */

  .sp-none {
    display: none;
  }

  .fixed-bg {
    background: url("../images/fixed-bg--sp.png") no-repeat;
    display: block;
    background-size: cover;
    width: 100%;
    background-attachment: fixed;
    background-position-y: 48px;
    padding-bottom: 120px;
  }

  .c-lower-page-title {
    color: #252977;
    font-size: 35px;
  }
  .c-lower-page-title--primary {
    margin-top: 24px;
    margin-bottom: 64px;
  }
  .c-lower-page-title--eng {
    color: #696969;
    font-size: 25px;
    display: block;
    font-weight: normal;
  }
  .c-lower-page-title--border {
    border-bottom: 2px solid #696969;
    padding-bottom: 8px;
    margin-bottom: 24px;
  }

  .c-lower-page__heading {
    color: #252977;
    font-size: 25px;
    margin-bottom: 20%;
    font-weight: bold;
    position: relative;
    z-index: 1;
    text-align: center;
    width: 288px;
    margin: 0 auto 20% auto;
  }
  .c-lower-page__heading::before {
    content: "";
    background: url("../images/square-yellow.png") no-repeat;
    background-size: contain;
    display: block;
    width: 98px;
    height: 98px;
    position: absolute;
    left: 33%;
    top: -33px;
    z-index: -1;
  }

  .c-phone-number-guide {
    font-size: 20px;
    font-weight: bold;
    color: #252977;
  }

  .c-contact-link,
  .c-contact-link:link,
  .c-contact-link:visited,
  .c-contact-link:hover,
  .c-contact-link:active {
    color: #fff;
  }
  .c-contact-link {
    display: block;
    border: 1px solid #fff;
    width: 100%;
    margin: 0 auto 60px auto;
    padding: 25px 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    border-radius: 31px;
  }
  #drawer .c-contact-link {
    margin-top: 30px;
    margin-bottom: 0;
    padding: 20px 0;
  }
  .c-contact-link::before {
    content: "";
    background: url("../images/footer-contact-link.png") no-repeat;
    display: inline-block;
    background-size: contain;
    width: 43px;
    height: 30px;
    vertical-align: bottom;
    margin-right: 13px;
  }

  /* ページトップリンク */
  .page-top-link,
  .page-top-link:link,
  .page-top-link:visited,
  .page-top-link:hover,
  .page-top-link:active {
    display: block;
    width: 105px;
    height: 105px;
    text-align: center;
    background: url("../images/page-top-link-bg.png") no-repeat;
    background-size: contain;
    line-height: 150px;
    font-size: 18px;
    color: #252977;
    outline: none;
    position: absolute;
    top: -105px;
    right: 5%;
  }

  /* ヘッダー */
  .header__row {
    flex-wrap: nowrap;
  }
  .header__heading__company-name img {
    width: 155px;
  }
  .header__globalnav {
    display: none;
  }

  .header__globalnav__list {
    display: flex;
    align-items: center;
    margin: 0;
    height: 60px;
    padding-left: 110px;
  }

  .header__globalnav__list-item {
    margin: 0 20px;
  }

  .header__globalnav__list-link,
  .header__globalnav__list-link:link,
  .header__globalnav__list-link:visited,
  .header__globalnav__list-link:hover,
  .header__globalnav__list-link:active {
    color: #fff;
  }
  .header__globalnav__list-link {
    font-size: 20px;
  }

  /* #######################フロントページ#################################### */

  /* ファーストビューアニメーション */
  .first-view-animation .hero__inner {
    padding-top: 85px;
  }
  .first-view-animation-primary {
    background: url("../images/fixed-bg--sp.png") no-repeat;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position-y: 45px;
    position: fixed;
    -webkit-animation: slide-in-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: slide-in-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .first-view-animation-secondary {
    background: url("../images/frontpage-hero-bg--sp.png") no-repeat;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 31px;
    background-position-x: right;
    -webkit-animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    background-position-y: 115px;
  }

  /**
* ----------------------------------------
* animation slide-in-left
* ----------------------------------------
*/
  @-webkit-keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-150px);
      transform: translateX(-150px);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-left {
    0% {
      -webkit-transform: translateX(-150px);
      transform: translateX(-150px);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }

  /**
* ----------------------------------------
* animation slide-in-right
* ----------------------------------------
*/
  @-webkit-keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(150px);
      transform: translateX(150px);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(150px);
      transform: translateX(150px);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }

  .hero {
    width: 100%;
    height: 75vh;
  }

  .hero-bg {
    background: url("../images/frontpage-hero-bg--sp.png") no-repeat;
    background-position-x: right;
    background-position-y: 62px;
    background-size: 80%;
  }

  .hero__inner {
    z-index: 3;
    position: relative;
    bottom: 47px;
  }

  .hero__heading.hero__heading--primary {
    display: none;
  }

  .hero__heading.hero__heading--secondary {
    font-size: 30px;
    width: 263px;
    font-weight: bold;
    color: #747474;
    margin-top: 100px;
    margin-left: 10px;
    line-height: 45px;
    padding-left: 0;
  }

  .hero__heading--secondary span::before {
    content: "・";
  }

  /* サービス */
  .service-section {
    background: #53a9e0;
    padding: 50px 15px;
    overflow: hidden;
  }

  .service-section__heading {
    text-align: center;
    margin-bottom: 250px;
  }

  .service-section__heading::after {
    content: "";
    display: block;
    border-right: 30vw solid #fff;
    border-top: 30vw solid transparent;
    border-bottom: 30vw solid transparent;
    position: absolute;
    top: 130px;
    right: 0;
  }

  .service-section__heading-primary {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding-left: 40px;
    width: 340px;
    margin: auto;
  }
  .service-section__heading-primary::before {
    content: "";
    background: url("../images/square-yellow.png") no-repeat;
    height: 55px;
    width: 55px;
    display: inline-block;
    position: absolute;
    left: 25px;
    top: 0;
    background-size: contain;
  }

  .service-section__heading-secondary {
    color: #fff;
    font-size: 22px;
    margin-top: 10px;
    display: block;
  }

  .service-section__strong-point__img--primary::before {
    content: "";
    background: url("../images/square-big.png") no-repeat;
    display: block;
    width: 119.5%;
    padding-top: 141%;
    z-index: 1;
    position: absolute;
    right: 21px;
    background-position-x: left;
    background-size: cover;
  }

  .service-section__strong-point__img {
    padding: 0;
    margin-top: 50px;
    margin-bottom: 160px;
  }
  .service-section__strong-point__img img {
    width: 85%;
  }

  .service-section__strong-point__img--secondary {
    margin-bottom: 250px;
    text-align: right;
  }

  .service-section__strong-point__heading {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 45px;
    margin: 0 0 30px 0;
    text-align: center;
  }

  .service-section__strong-point__heading--primary::before {
    content: "";
    background: url("../images/strong-poing-primary.png") no-repeat;
    display: block;
    width: 150px;
    height: 150px;
    position: absolute;
    top: -150px;
    left: 30%;
    background-size: contain;
  }

  .service-section__strong-point__heading--secondary::before {
    content: "";
    background: url("../images/strong-poing-secondary.png") no-repeat;
    display: block;
    width: 150px;
    height: 150px;
    position: absolute;
    top: -150px;
    left: 30%;
    background-size: contain;
  }

  .service-section__strong-point__heading--tertiary::before {
    content: "";
    background: url("../images/strong-poing-tertiary.png") no-repeat;
    display: block;
    width: 150px;
    height: 150px;
    position: absolute;
    top: -150px;
    left: 30%;
    background-size: contain;
  }

  .service-section__strong-point__text-contents--secondary {
    margin-top: 100px;
  }

  .service-section__strong-point__text-contents p {
    color: #fff;
    line-height: 30px;
    width: 80%;
    margin: auto;
    font-size: 18px;
  }

  /* keskin×tokaibiso */
  .keskin-tokaibiso-section {
    background: url("../images/keskin-tokaibiso-section-bg.png") no-repeat
      center / cover;
    padding: 80px 15px 130px 15px;
  }

  .keskin-tokaibiso-section__heading-primary {
    text-align: center;
    margin-bottom: 70px;
  }

  .keskin-tokaibiso-section__img {
    padding: 0;
    margin-top: 30px;
    text-align: center;
  }
  .keskin-tokaibiso-section__img img {
    width: 80%;
  }

  .keskin-tokaibiso-section__text p {
    max-width: 76%;
    margin: auto;
    font-size: 18px;
    font-weight: bold;
    line-height: 35px;
  }

  /* keskin */
  .keskin-description-section-top-img--sp {
    width: 100%;
  }
  .keskin-description-section__contents {
    padding: 0;
  }

  .keskin-description-section__contents
    .keskin-description-section-top-img--sp {
    margin: 0;
    width: 100%;
  }

  .c-keskin-description__heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .keskin-description-section__contents .c-keskin-description__heading {
    display: none;
  }

  .keskin-description-section__contents .c-keskin-description__text {
    font-size: 18px;
    margin: 50px auto 0px auto;
    line-height: 36px;
    color: #000;
    width: 84%;
  }

  .keskin-description-section__contents .keskin-box-img {
    width: 60%;
    display: block;
    margin: auto;
  }

  .keskin-description-section__link,
  .keskin-description-section__link:link,
  .keskin-description-section__link:visited,
  .keskin-description-section__link:hover,
  .keskin-description-section__link:active {
    color: #53a9e0;
  }

  .keskin-description-section__link {
    display: block;
    color: #53a9e0;
    font-size: 25px;
    text-align: center;
    border: 5px solid #53a9e0;
    border-radius: 17px;
    width: 300px;
    padding: 6px 0px;
    margin: 0 auto;
  }

  /* スローガン */
  .container.slogan-section {
    padding: 250px 15px;
  }

  .slogan-section__heading-primary {
    font-size: 55px;
    color: #53a9e0;
    font-weight: bold;
    text-align: center;
  }
  .slogan-section__heading-secondary {
    font-size: 22px;
    display: block;
    text-align: center;
  }

  .slogan-section__slogan {
    margin: 80px 0 0 0px;
  }

  /* リクルート */
  .recruit-section {
    background-color: #eaeaea;
    padding: 70px 15px;
    overflow: hidden;
    position: relative;
  }

  .recruit-section__heading {
    margin-bottom: 80px;
  }

  .recruit-section__heading-primary {
    font-size: 50px;
    color: #53a9e0;
    font-weight: bold;
    position: relative;
    margin: 0 auto;
    text-align: center;
    transform: translate(25px, 0px);
    width: 345px;
  }
  .recruit-section__heading-primary::before {
    content: "";
    background: url(../images/square-white.png) no-repeat;
    height: 55px;
    width: 55px;
    display: inline-block;
    position: absolute;
    left: -5px;
    top: 6px;
    background-size: contain;
  }
  .recruit-section__heading-secondary {
    display: block;
    font-size: 22px;
    padding-left: 13px;
    transform: translate(-25px, 0px);
    margin-top: 10px;
  }

  .recruit-section__text p {
    color: #53a9e0;
    font-size: 20px;
  }

  .recruit-section__link,
  .recruit-section__link:link,
  .recruit-section__link:visited,
  .recruit-section__link:hover,
  .recruit-section__link:active {
    display: block;
    color: #53a9e0;
    width: 55%;
    border: 5px solid #53a9e0;
    border-radius: 17px;
    font-size: 28px;
    text-align: center;
    font-weight: bold;
    margin: auto;
  }

  .recruit-section__text p {
    color: #53a9e0;
    font-size: 18px;
    font-weight: bold;
    width: 90%;
    margin: 50px auto 15px auto;
    line-height: 40px;
  }

  .recruit-section__img {
    padding: 0;
    text-align: right;
  }
  .recruit-section__img img {
    width: 80%;
  }

  .recruit-section::before {
    content: "";
    background: url("../images/square-big02.png") no-repeat;
    display: block;
    width: 129%;
    padding-top: 143%;
    z-index: 1;
    position: absolute;
    background-size: cover;
    top: 198px;
    left: 43px;
    background-position-x: right;
    pointer-events: none;
  }
  /* #######################フロントページここまで#################################### */

  /* #######################会社概要ページ#################################### */

  .company-profile__main section {
    margin-bottom: 80px;
  }

  /* 会社概要ページ トップ */
  /* .company-profile-hero {
    background: url('../images/company-profile-hero-bg--sp.png') no-repeat;
    background-size: contain;
    height: 1300px;
    position: relative;
    } */
  .company-profile__main::before {
    content: "";
    display: block;
    background: url("../images/company-profile-hero-bg--sp.png") no-repeat;
    background-size: contain;
    padding-top: 110%;
    position: relative;
  }

  .company-profile-hero__title {
    position: absolute;
    top: 80px;
    left: 15px;
  }

  .company-profile-hero__contents {
    margin-top: 40px;
    padding: 0 24px;
  }

  .company-profile-hero__heading {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
  }
  .company-profile-hero__text {
    margin-top: 30px;
    font-size: 18px;
    line-height: 38px;
  }

  .company-profile-hero__president-name {
    color: #000;
    font-size: 25px;
    font-weight: bold;
    text-align: right;
    margin-top: 40px;
    padding: 0;
  }

  /* 会社概要ページ 会社概要 */
  .company-profile__section {
    margin-top: 80px;
  }

  .c-lower-page__table {
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .c-lower-page__table th {
    background: #252977;
    color: #fff;
    padding: 7px 0;
    width: 35%;
    display: block;
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
  .c-lower-page__table td {
    padding-left: 20px;
    color: #696969;
    width: 100%;
    display: block;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .company-profile__img--primary {
    margin-bottom: 23px;
  }

  .company-profile__img img {
    width: 95%;
  }

  /* 会社概要ページ 沿革 */

  .company-history__section .c-lower-page-title--border {
    border: none;
  }

  .company-history__table {
    border-spacing: 0px 25px;
    border-collapse: separate;
  }
  .company-history__table th {
    color: #252977;
    font-size: 40px;
    display: block;
    border-bottom: 2px solid #696969;
  }
  .company-history__table td {
    display: block;
    width: 100%;
    font-size: 18px;
    margin-top: 12px;
  }

  /* 会社概要ページ 資格 */
  .certification__heading {
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 15px;
  }
  .certification__text {
    margin-bottom: 30px;
  }

  /* #######################会社概要ページここまで#################################### */

  /* #######################事業案内ページ#################################### */
  .business__title {
    margin-top: 24px;
  }
  .business__main {
    overflow: hidden;
  }
  .business__section {
    max-width: 90%;
    margin: auto;
  }

  .business__contents-wrapper {
    margin-bottom: 100px;
  }
  .business__contents-wrapper:last-child {
    margin-bottom: 0;
  }

  .business__img::before {
    content: "";
    background: url("../images/business-square-blue--sp.png") no-repeat;
    display: block;
    background-size: contain;
    width: 100%;
    padding-top: 100%;
    position: absolute;
    right: -52px;
    z-index: -1;
    background-position-x: right;
  }

  .business__img--square img {
    width: 95%;
  }
  .business__img-l img {
    width: 95%;
  }

  .business__img {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }

  .business__img--square {
    padding-right: 0;
    position: relative;
    z-index: 1;
  }

  .business__text {
    font-size: 18px;
    line-height: 35px;
  }

  /* #######################事業案内ページここまで#################################### */

  /* #######################keskinページ#################################### */

  .keskin-page__hero {
    background: url("../images/keskin-page-hero-bg--sp.jpg") no-repeat;
    height: 53vh;
    background-size: cover;
  }

  .keskin-page__hero__contents {
    margin-top: 35px;
  }

  .c-keskin-description__heading img {
    width: 90%;
  }

  .c-keskin-description__text {
    color: #fff;
    font-size: 18px;
  }

  .keskin-page__keskin-box-img {
    display: none;
  }

  .keskin-page__keskin-tokaibiso__contents {
    margin: auto;
  }

  .keskin-description-section__heading {
    text-align: center;
    margin-bottom: 70px;
  }

  .keskin-page__keskin-tokaibiso__section {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .keskin-page__keskin-tokaibiso__section p {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 40px;
  }

  .keskin-description-section__link {
    margin-top: 50px;
  }

  .work-description__section .c-lower-page__heading {
    margin: 100px 0;
    padding-right: 55px;
  }

  .work-description__section .c-lower-page__heading::before {
    width: 128px;
    height: 128px;
    left: 0;
    top: -51px;
  }

  .work-description__section .c-lower-page-title {
    text-align: left;
  }

  .c-work-description__item-wrapper {
    background-color: #f5f5f5;
    border: 3px solid #fff;
    border-radius: 20px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
  }

  .c-work-description__item-wrapper--price-list {
    padding: 25px 10px;
  }

  .work-description__price-list__keskin-cleaning-wrapper p {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
  }
  .work-description__price-list__set-price p {
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
  }
  .work-description__price-list__keskin-cleaning-wrapper__heading {
    margin-bottom: 16px;
  }
  .work-description__price-list__keskin-cleaning-wrapper__price {
    margin-bottom: 0;
  }
  .work-description__price-list__keskin-cleaning-wrapper span,
  .work-description__price-list__set-price span {
    font-size: 25px;
    margin-left: 10px;
  }

  .work-description__price-list__keskin,
  .work-description__price-list__cleaning,
  .work-description__price-list__set-price {
    padding: 10px 10px;
    border-radius: 20px;
    border: 3px solid #fff;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.2));
    margin-bottom: 30px;
  }
  .work-description__price-list__keskin {
    background-color: #7fccec;
    width: 100%;
    margin-right: auto;
  }
  .work-description__price-list__cleaning {
    background: #252977;
    width: 100%;
    margin-left: auto;
  }
  .work-description__price-list__set-price {
    background: #6c93ff;
  }

  .c-work-description__item-wrapper--work-flow {
    position: relative;
    margin-bottom: 40px;
    padding: 50px 15px;
  }
  .c-work-description__item-wrapper--work-flow::after {
    content: "";
    background: url("../images/work-flow-arrow.png") no-repeat;
    display: block;
    position: absolute;
    width: 120px;
    height: 72px;
    bottom: -110px;
    left: 30%;
  }
  .c-work-description__item-wrapper--work-flow:last-child::after {
    content: none;
  }
  .c-work-description__item-wrapper--work-flow:last-child::after {
    display: none;
  }
  .c-work-flow__heading {
    font-size: 35px;
    font-weight: bold;
    color: #252977;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }

  .c-work-flow__contents {
    width: 100%;
    margin-left: auto;
  }
  .c-work-flow__contents img {
    margin-bottom: 25px;
    max-width: 100%;
  }
  .c-work-flow__contents ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 25px;
  }
  .c-work-flow__contents li {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
  }
  .c-work-flow__contents span {
    display: block;
    font-weight: normal;
    margin-top: 5px;
  }

  /* #######################keskinページここまで#################################### */

  /* #######################採用情報ページ#################################### */

  .recruit__contents {
    padding-top: 150px;
  }

  .recruit__contents__heading {
    color: #696969;
    font-weight: bold;
    text-align: center;
  }

  .recruit__contents .c-lower-page__table th {
    background: transparent;
    color: #252977;
    padding: 7px 0;
    width: 100%;
    display: block;
    font-size: 20px;
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 1px solid #696969;
  }

  .recruit__contents .c-lower-page__table td {
    padding-left: 0;
    color: #696969;
    width: 100%;
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .recruit__apply-mail-tel-wrapper {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 80px;
  }

  .recruit__apply-mail__link,
  .recruit__apply-mail__link:hover {
    color: #fff;
    background: #252977;
    font-size: 20px;
    display: block;
    padding: 8px 0px;
    text-align: center;
    width: 100%;
    margin: 0 auto 60px auto;
    border-radius: 23px;
  }
  .recruit__apply-mail__link::after {
    content: "〉";
    position: relative;
    left: 20px;
  }

  .recruit__apply-mail-tel-wrapper .c-phone-number {
    display: inline;
  }

  /* #######################採用情報ページここまで#################################### */

  /* #######################お問い合わせページ#################################### */

  .contact__phone-number-wrapper {
    margin-top: 80px;
    text-align: center;
  }

  .business-hours-guide {
    font-size: 18px;
  }

  .business-hours-guide span {
    display: block;
  }

  .contact__phone-number-wrapper .c-phone-number {
    display: inline;
  }

  /* コンタクトフォームのstyle */
  .contact-form__must::after {
    content: "＊";
    color: red;
  }

  .contact-form__contents-wrapper {
    margin-bottom: 35px;
  }

  .contact-form__item-name-heading {
    color: #252977;
    font-size: 20px;
    font-weight: bold;
  }
  .contact-form__item-name-heading span {
    font-size: 16px;
  }

  .contact-form__item-name {
    font-size: 20px;
    margin-bottom: 0;
  }

  .contact-form__input {
    margin-bottom: 20px;
  }

  .contact-form__input input {
    width: 100%;
    height: 40px;
  }

  .contact-form__submit-wrapper {
    text-align: center;
    margin-top: 50px;
  }

  .contact-form__submit {
    background: #252977;
    color: #fff;
    font-size: 25px;
    padding: 16px;
    border-radius: 17px;
    letter-spacing: 8px;
    width: 100%;
    max-width: 300px;
  }

  /* #######################お問い合わせページここまで#################################### */

  /* #######################プライバシーポリシーページここまで#################################### */

  .privacy-policy .c-lower-page-title {
    font-size: 30px;
  }

  /* #######################プライバシーポリシーページここまで#################################### */

  /* #######################フッター#################################### */

  footer {
    position: relative;
  }

  .footer {
    background-color: #252977;
    padding: 65px 0 20px 0;
  }

  footer .c-contact-link {
    display: block;
    border: 2px solid #fff;
    width: 85%;
    margin: 0px auto 20px auto;
    padding: 25px 0;
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    border-radius: 40px;
  }

  .footer__company-name {
    display: none;
  }

  .footer__address {
    margin: 0;
    padding-left: 40px;
    font-size: 18px;
  }
  .footer__address p {
    color: #fff;
    margin: 0 0 6px 0;
  }
  .footer__address-mail,
  .footer__address-mail:link,
  .footer__address-mail:visited,
  .footer__address-mail:hover,
  .footer__address-mail:active {
    color: #fff;
  }

  .footer__nav {
    margin-bottom: 40px;
  }

  .footer__nav__list-link,
  .footer__nav__list-link:link,
  .footer__nav__list-link:visited,
  .footer__nav__list-link:hover,
  .footer__nav__list-link:active {
    color: #fff;
  }
  .footer__nav__list-primary,
  .footer__nav__list-secondary {
    padding: 0;
  }
  .footer__nav__list-secondary {
    display: flex;
    margin: 0;
    justify-content: center;
  }
  .footer__nav__list-primary {
    margin: 0;
    text-align: center;
    font-size: 20px;
  }
  .footer__nav__list-primary li {
    margin: 16px 0;
  }
  .footer__nav__list-primary li:nth-of-type(1) {
    margin-left: 0;
  }
  .footer__nav__list-primary li:nth-of-type(5) {
    margin-right: 0;
  }

  .footer__nav__list-secondary li:nth-of-type(1) {
    margin-right: 20px;
  }
  .footer__nav__list-secondary li:nth-of-type(2) {
    margin-left: 20px;
  }

  .footer__copyright {
    color: #fff;
    text-align: center;
    margin-top: 50px;
  }

  /* #######################フッターここまで#################################### */
}

/* スマホ iphone5 */
@media screen and (max-width: 320px) {
  .first-view-animation-secondary {
    background: url("../images/frontpage-hero-bg--sp.png") no-repeat;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 31px;
    background-position-x: right;
    -webkit-animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: slide-in-right 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    background-position-y: 75px;
    background-size: 75%;
  }

  /* template-parts contact */
  .c-phone-number strong,
  .contact-section strong {
    letter-spacing: 0.6px;
    font-size: 26px;
    padding-left: 10px;
  }
  .c-phone-number,
  .c-phone-number:link,
  .c-phone-number:visited,
  .c-phone-number:hover,
  .c-phone-number:active {
    font-size: 18px;
  }
  .contact-section__fax {
    font-size: 18px;
  }

  .c-lower-page__heading {
    width: 244px;
  }

  /* ハンバーガメニュー */
  #drawer {
    height: 95vh;
  }
  .drawer__main {
    font-size: 18px;
  }
  #drawer ul {
    padding-left: 30px;
  }
  #drawer ul li {
    margin-right: 40px;
  }
  .open #drawer li {
    margin-right: 40px;
  }
  #drawer .c-contact-link {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 13px 0;
    font-size: 18px;
  }

  .header__hamburger-menu {
    right: 25px;
  }

  .hero-bg {
    background-position-y: 15px;
  }

  /* フロントページ */
  .service-section__heading-primary {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    position: relative;
    text-align: center;
    padding-left: 0;
    width: 340px;
    margin: auto;
  }
  .service-section__heading-secondary {
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
    display: block;
  }
  .service-section__heading-primary::before {
    content: "";
    background: url("../images/square-yellow.png") no-repeat;
    height: 48px;
    width: 55px;
    display: inline-block;
    position: absolute;
    left: 22px;
    top: 0px;
    background-size: contain;
  }

  /* 会社概要ページ */
  .company-profile-hero__heading {
    font-size: 25px;
  }
  .c-lower-page__table td {
    font-size: 18px;
  }

  /* 事業案内ページ */
  .business__text {
    font-size: 18px;
  }

  /* keskinページ */
  .keskin-page__hero {
    height: 52vh;
  }
  .keskin-page__hero__contents {
    margin-top: 15px;
  }
  .c-keskin-description__heading {
    margin-bottom: 25px;
  }
  .c-keskin-description__text {
    font-size: 17px;
  }
  .keskin-page__keskin-tokaibiso__section p {
    font-size: 18px;
    line-height: 40px;
  }

  .keskin-description-section__link {
    display: block;
    color: #53a9e0;
    font-size: 18px;
    text-align: center;
    border: 5px solid #53a9e0;
    border-radius: 17px;
    width: 240px;
    padding: 6px 0px;
    margin: 0 auto;
  }

  .c-work-flow__heading {
    font-size: 28px;
    font-weight: bold;
    color: #252977;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }

  .recruit-section__heading-primary {
    font-size: 40px;
    color: #53a9e0;
    font-weight: bold;
    position: relative;
    margin: 0 auto;
    text-align: center;
    transform: translate(0px, 0px);
    width: 345px;
  }
  .recruit-section__heading-secondary {
    display: block;
    font-size: 18px;
    padding-left: 13px;
    transform: translate(-25px, 0px);
    margin-top: 10px;
  }
  .recruit-section__heading-primary::before {
    content: "";
    background: url(../images/square-white.png) no-repeat;
    height: 48px;
    width: 55px;
    display: inline-block;
    position: absolute;
    left: 17px;
    top: 0px;
    background-size: contain;
  }

  .recruit__apply-mail__link,
  .recruit__apply-mail__link:hover {
    color: #fff;
    background: #252977;
    font-size: 18px;
    display: block;
    padding: 8px 0px;
    text-align: center;
    width: 100%;
    margin: 0 auto 60px auto;
    border-radius: 23px;
  }

  .privacy-policy .c-lower-page-title {
    font-size: 26px;
  }

  /* フッター */
  .page-top-link,
  .page-top-link:link,
  .page-top-link:visited,
  .page-top-link:hover,
  .page-top-link:active {
    display: block;
    width: 105px;
    height: 105px;
    text-align: center;
    background: url("../images/page-top-link-bg.png") no-repeat;
    background-size: contain;
    line-height: 150px;
    font-size: 18px;
    color: #252977;
    outline: none;
    position: absolute;
    top: -105px;
    right: 0;
  }
  .footer__nav__list-secondary {
    font-size: 16px;
  }
  .footer__nav__list-secondary li:nth-of-type(1) {
    margin-right: 10px;
  }
  .footer__nav__list-secondary li:nth-of-type(2) {
    margin-left: 10px;
  }
  footer .c-contact-link {
    display: block;
    border: 2px solid #fff;
    width: 85%;
    margin: 0px auto 20px auto;
    padding: 25px 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 40px;
  }

  .footer__copyright {
    font-size: 12px;
  }
}

.not-currently-recruiting::before {
  content: "現在募集しておりません";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 75px;
  position: absolute;
  background-color: #696969;
  color: white;
  font-weight: bold;
  opacity: 0.8;
  width: 97%;
  height: 44vh;
}
@media screen and (max-width: 767px) {
  .not-currently-recruiting::before {
    content: "現在募集しておりません";
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    position: absolute;
    background-color: #696969;
    color: white;
    font-weight: bold;
    opacity: 0.8;
    width: 97%;
    height: 69vh;
  }
}

/* 採用ページ recruit */

.recruit__contents .c-lower-page-title {
  text-align: center;
}

.recruit__job-info {
  max-width: 1030px;
  margin: auto;
}

.recruit__job-info__inner {
  max-width: 1000px;
  margin: auto;
}

.recruit__job-info__heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #1e2a6b;
  border-bottom: 5px solid #1e2a6b;
  text-align: center;
}

.part-time .recruit__job-info__heading {
  color: #54a9e0;
  border-color: #54a9e0;
}

.recruit__job-info__employment-status-section {
  margin-bottom: 100px;
}

.recruit__job-info__employment-status {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 15px;
  font-size: 25px;
  font-weight: bold;
}
.full-time .recruit__job-info__employment-status {
  color: #252977;
  border-bottom: 3px solid #252977;
}
.part-time .recruit__job-info__employment-status {
  color: #54a9e0;
  border-bottom: 3px solid #54a9e0;
}

@media (min-width: 769px) {
  .recruit__job-info__cards {
    display: flex;
    justify-content: space-between;
  }
}

.recruit__job-info__card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 25px);
  margin-bottom: 50px;
  position: relative;
}
.recruit__job-info__card:hover {
  text-decoration: none;
}
.recruit__job-info__card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.recruit__job-info__card__employment-status {
  color: #fff;
  width: 135px;
  position: absolute;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.recruit__job-info__card__content {
  background: #252977;
}

.full-time .recruit__job-info__card__employment-status,
.full-time .recruit__job-info__card__content {
  background: #1e2a6b;
}

.part-time .recruit__job-info__card__employment-status,
.part-time .recruit__job-info__card__content {
  background: #54a9e0;
}

.recruit__job-info__card__content {
  color: #fff;
  padding: 15px 25px;
  flex-grow: 1;
}

.recruit__job-info__card__content__occupation {
  font-size: 18px;
  font-weight: bold;
  height: 55px;
  overflow: hidden;
  border-bottom: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}

.recruit__job-info__card__content__work-location {
  margin-top: 10px;
}

.recruit__job-info__img {
  display: block;
  margin: 0 auto 50px;
}

.recruit__job-info__table {
  border-collapse: collapse;
  margin: 0 auto 80px;
  width: 100%;
}

.recruit__job-info__table th,
.recruit__job-info__table td {
  padding: 15px 25px;
}

.recruit__job-info__table th {
  width: 20%;
  font-weight: normal;
  text-align: center;
}

.full-time .recruit__job-info__table th,
.full-time .recruit__job-info__table td {
  border: 1px solid #1e2a6b;
}

.part-time .recruit__job-info__table th,
.part-time .recruit__job-info__table td {
  border: 1px solid #54a9e0;
}

.full-time .recruit__job-info__table th {
  background-color: rgb(30, 42, 107, 0.2);
}

.part-time .recruit__job-info__table th {
  background-color: rgb(84, 169, 224, 0.2);
}

.recruit__job-info__table td {
  width: 80%;
  text-align: left;
}
.recruit__job-info__table td p:last-child {
  margin-bottom: 0;
}

.entry-btn {
  display: block;
  text-align: center;
  width: 350px;
  font-size: 23px;
  padding: 20px 50px;
  background: #1e2a6c;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.access {
  margin-top: 100px;
}

@media (min-width: 769px) {
  .job-requirements-details {
    display: flex;
    justify-content: space-between;
    flex: 1;
  }
}

.job-requirements-details {
  border-bottom: 1px solid #1e2a6b;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.job-requirements-details img {
  height: 300px;
  object-fit: cover;
}

.part-time .job-requirements-details {
  border-bottom: 1px solid #54a9e0;
}

.job-requirements-details:last-of-type {
  border: none;
  margin-bottom: 100px;
}

.job-requirements-details__content,
.job-requirements-details__img {
  width: calc(50% - 25px);
}

.job-requirements-details__content__employment-status {
  background: #1e2a6c;
  color: #fff;
  padding: 15px;
  font-size: 25px;
  margin-bottom: 30px;
}

.part-time .job-requirements-details__content__employment-status {
  background: #54a9e0;
}

.job-requirements-details__content__catch-copy,
.job-requirements-details__content__heading {
  color: #1e2a6c;
}

.part-time .job-requirements-details__content__catch-copy,
.part-time .job-requirements-details__content__heading {
  color: #54a9e0;
}

.job-requirements-details__content__catch-copy {
  text-align: left;
  max-width: 358px;
  margin: auto;
  font-size: 20px;
}

.job-requirements-details__content__heading {
  font-size: 20px;
  text-align: left;
  margin-bottom: 25px;
  font-weight: bold;
}

.job-requirements-details__content__description {
  text-align: left;
}

@media (max-width: 768px) {
  .recruit__job-info__table th,
  .recruit__job-info__table td {
    width: 100%;
    display: block;
  }

  .recruit__job-info__card {
    width: 100%;
  }

  .recruit__job-info__card__employment-status {
    font-size: 16px;
    width: 110px;
  }

  .job-requirements-details__content,
  .job-requirements-details__img {
    width: 100%;
  }
}

/* フォーム */
.recruit__form-heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}

.recruit__confirm-text-wrp {
  margin-top: 70px;
  margin-bottom: 35px;
}

.recruit__confirm-text__heading {
  font-size: 25px;
  margin-bottom: 15px;
}

.recruit__confirm-text {
  line-height: 1.5;
}

form {
  line-height: 1;
}

.required-explanation {
  text-align: left;
}

.required {
  color: #c30d23;
}

.form-table {
  width: 100%;
}

.form-table tr {
  border: 1px solid #cccccc;
}

.form-table th,
.form-table td {
  padding: 20px 0 20px 20px;
  font-size: 16px;
}

.form-table th {
  background: #eee;
  font-weight: normal;
  width: 30%;
  text-align: center;
}

.form-table td {
  width: 70%;
  text-align: left;
  line-height: 1.5;
}

.form_input {
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 85%;
  font-size: 16px;
  padding: 13px;
}

.form_readonly {
  border: none;
  outline: none;
  background: inherit;
}

.form_min {
  width: 20%;
}

.form-text {
  margin-left: 8px;
}

.form-text--l {
  margin-right: 8px;
}

.form-acceptance-wrp {
  text-align: center;
  margin-top: 50px;
}

.form-submit-wrp {
  text-align: center;
  margin-top: 25px;
}

.zip-margin {
  margin: 25px 0;
}

@media screen and (min-width: 769px) {
  .form-submit-wrp {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }
}

.form_submit {
  background: #0078dc;
  color: #fff;
  width: 30%;
  border: 1px solid #0078dc;
  border-radius: 8px;
  padding: 20px 0;
  font-size: 20px;
  letter-spacing: 5px;
}

.wpcf7 .wpcf7-submit:disabled {
  background: #aaa;
  border: #aaa;
}

.form_submit,
.form_previous {
  cursor: pointer;
}

.form_previous {
  background: #fff;
  color: #0078dc;
  width: 30%;
  border-radius: 8px;
  padding: 20px 0;
  font-size: 20px;
  letter-spacing: 5px;
  border: 2px solid #0078dc;
  margin-right: 50px;
}

#confirm .form-submit-wrp {
  display: flex;
  justify-content: center;
}

.confirm-text {
  text-align: center;
  font-size: 16px;
  margin-bottom: 50px;
}

.thanks-page {
  text-align: center;
  line-height: 28px;
}

.thanks-page h2 {
  font-size: 30px;
  margin-bottom: 60px;
  color: #1e2a6c;
  text-align: center;
}

.thanks-page p {
  line-height: 35px;
  margin-bottom: 25px;
}

.thanks-page strong {
  color: #cd5c5c;
}

.thanks-page a {
  background: #1e2a6c;
  color: #fff;
  padding: 15px 50px;
  border-radius: 10px;
  text-decoration: none;
  margin: 71px auto 0 auto;
  display: block;
  width: 23%;
  font-size: 16px;
  text-align: center;
}

.wpcf7-spinner {
  display: none;
}

.your-work-location textarea {
  /* height: 44px; */
  height: auto;
  max-height: 60px;
  line-height: 1.5;
  resize: none;
  overflow: hidden;
}

.entry-btn {
  color: #fff !important;
}

@media (max-width: 768px) {
  .entry-btn {
    display: block;
    width: 75%;
    margin: 50px auto 0 auto;
  }

  .form-table th,
  .form-table td {
    display: block;
    width: 100%;
  }

  .form-table tr {
    border: none;
  }

  .form-table th {
    width: 100%;
    padding-left: 15px;
    text-align: left;
  }

  .form-table td {
    padding: 25px 0 35px;
  }

  .confirm-table td {
    padding-left: 15px;
  }

  .form-table .read-only {
    padding: 15px 0;
  }

  .your-work-location textarea {
    height: 70px;
  }

  .form_input {
    width: 100%;
  }

  .form_min {
    width: 36%;
  }

  .form-acceptance-wrp {
    margin-top: 25px;
  }

  .form_submit,
  .form_previous {
    width: 80%;
  }

  .form_previous {
    margin: 0 0 15px 0;
    font-size: 18px;
  }

  .thanks-page {
    padding: 150px 0 150px 0;
    text-align: justify;
  }

  .thanks-page h2 {
    font-size: 23px;
    margin-bottom: 40px;
  }

  .thanks-page a {
    width: 60%;
    margin-top: 50px;
  }
}
