@charset "UTF-8";
.header {
  z-index: 999;
  position: fixed;
  width: 100%;
  /* PC Menu */
  /* SP Menu */
}
.header__inner {
  background-color: #fff;
  max-width: calc(100% - 100px);
  padding: 15px 30px;
  box-sizing: border-box;
  margin: 25px auto 0 auto;
  transition: margin-top 0.3s ease;
  filter: drop-shadow(0 0 1px #ccc);
}
@media (max-width: 1025px) {
  .header__inner {
    display: none;
  }
}
.header__inner.is-scrolled {
  margin-top: 0;
}
.header__logo {
  margin: 0 clamp(10px, -35.81px + 4.469vw, 50px) 0 0;
  z-index: 10;
}
.header__logo-link {
  display: block;
}
.header__logo-img {
  width: 185px;
}
.header__sp-bar {
  display: none;
}
@media (max-width: 1025px) {
  .header__sp-bar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    z-index: 180;
  }
}
.header__sp-logo {
  display: none;
}
@media (max-width: 1025px) {
  .header__sp-logo {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
  }
}
@media (max-width: 1025px) {
  .header__sp-img {
    width: clamp(100px, 28vw, 160px);
    display: block;
  }
}
.header__hamburger {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 200;
}
@media (max-width: 1025px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #4A4AE6;
  border-radius: 3px;
  transition: all 0.3s ease;
  margin-bottom: 7px;
}
.header__hamburger-line:last-child {
  margin-bottom: 0;
}
.header.is-white .header__hamburger-line {
  background-color: #fff;
}
.header__hamburger.is-active .header__hamburger-line {
  background-color: #4A4AE6;
}
.header.is-white .header__hamburger.is-active .header__hamburger-line {
  background-color: #4A4AE6;
}
.header__hamburger.is-active {
  color: #4A4AE6;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.header__hamburger:focus-visible {
  outline: 2px solid #4A4AE6;
  outline-offset: 4px;
}
.header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 150;
  overflow-y: auto;
  padding: 80px 20px 40px;
}
.header__mobile-menu.is-active {
  transform: translateY(0);
}
.header__mobile-info {
  margin-top: 50px;
}
.header__mobile-info-wrapper {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 568px) {
  .header__mobile-info-wrapper {
    margin-bottom: 10px;
    display: block;
  }
}
.header__mobile-logo {
  width: 200px;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .header__mobile-logo {
    margin-bottom: 20px;
  }
}
.header__mobile-company {
  display: block;
  font-size: 18px;
  color: #333;
}
.header__mobile-address {
  display: block;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

.header-nav {
  display: flex;
  align-items: center;
  /* ドロップダウン */
}
@media (max-width: 1025px) {
  .header-nav {
    display: none;
  }
}
.header-nav__link, .header-nav__item {
  white-space: nowrap;
}
.header-nav__list {
  display: flex;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-nav__list--right {
  margin-left: auto;
}
.header-nav__item {
  position: relative;
}
.header-nav__item--left {
  padding-right: clamp(20px, 2vw, 50px);
}
.header-nav__item--recruit, .header-nav__item--cta {
  padding: 0;
}
.header-nav__link {
  text-decoration: none;
  color: #333;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
.header-nav__link-text {
  display: inline;
}
.header-nav__link:hover {
  color: #4A4AE6;
  font-weight: 600;
}
.header-nav__link:focus-visible {
  outline: 2px solid #4A4AE6;
  outline-offset: 4px;
}
.header-nav__link::after {
  font-family: "Font Awesome 6 Free";
  content: "\f107";
  font-weight: 900;
  color: #4A4AE6;
  margin-left: 5px;
}
.header-nav__link--no-arrow::after {
  content: none;
}
.header-nav__link--single::after {
  content: none;
}
.header-nav__link--btn {
  padding: 12px 20px;
  border-radius: 5px;
  color: #fff;
  transition: all 0.2s ease;
}
.header-nav__link--recruit {
  background-color: #E65149;
  margin-right: 20px;
  border: solid 1px #E65149;
}
.header-nav__link--recruit::before {
  font-family: "Font Awesome 6 Free";
  content: "\f31c";
  font-weight: 900;
  color: #fff;
  margin-right: 5px;
}
.header-nav__link--recruit:hover {
  background-color: #fff;
  color: #E65149;
}
.header-nav__link--recruit:hover::before {
  color: #E65149;
}
.header-nav__link--cta {
  background-color: #4A4AE6;
  border: solid 1px #4A4AE6;
}
.header-nav__link--cta::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: 900;
  color: #fff;
  margin-right: 5px;
}
.header-nav__link--cta:hover {
  background-color: #fff;
  color: #4A4AE6;
}
.header-nav__link--cta:hover::before {
  color: #4A4AE6;
}
.header-nav__button {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-nav__button:hover {
  color: #4A4AE6;
}
.header-nav__button:focus-visible {
  outline: 2px solid #4A4AE6;
  outline-offset: 4px;
}
.header-nav__button[aria-expanded=true] + .header-nav__dropdown {
  display: block;
}
.header-nav__link, .header-nav__button {
  height: 50px;
  line-height: 1;
}
.header-nav__dropdown {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 200px;
  padding-top: 15px;
}
.header-nav__dropdown.is-active {
  display: block;
}
.header-nav__dropdown[aria-hidden=false] {
  display: block;
}
.header-nav__item:hover .header-nav__dropdown, .header-nav__link:hover + .header-nav__dropdown, .header-nav__dropdown:hover {
  display: block;
}
.header-nav__dropdown-list {
  list-style: none;
  margin: 0;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.header-nav__dropdown-item {
  padding: 0;
}
.header-nav__dropdown-link {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.header-nav__dropdown-link:hover, .header-nav__dropdown-link:focus {
  color: #4A4AE6;
  background-color: #E6E6FF;
}
.header-nav__dropdown-link:focus-visible {
  outline: 2px solid #4A4AE6;
  outline-offset: -2px;
}

.header-mobile-nav {
  margin-bottom: 50px;
}
.header-mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-mobile-nav__item {
  border-bottom: 1px solid #4A4AE6;
}
.header-mobile-nav__item:first-child {
  border-top: 1px solid #4A4AE6;
}
.header-mobile-nav__link {
  font-size: 18px;
  font-weight: 600;
  display: block;
  padding: 1rem;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.header-mobile-nav__link::after {
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: 900;
  color: #4A4AE6;
  margin-left: 0;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.header-mobile-nav__link:hover, .header-mobile-nav__link:focus {
  color: #4A4AE6;
  background-color: #f5f5f5;
}
.header-mobile-nav__link:focus-visible {
  outline: 2px solid #4A4AE6;
  outline-offset: -2px;
}
.header-mobile-nav__link--parent::after {
  display: none;
}
.header-mobile-nav__link--parent:hover, .header-mobile-nav__link--parent:focus {
  background-color: transparent;
  color: inherit;
}
.header-mobile-nav__submenu {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
.header-mobile-nav__submenu-item {
  width: 50%;
  padding: 1rem;
}

body:not(.home):not(.page-template-recruit) .header__inner {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}

.contact-section {
  padding: 4rem 1rem;
  text-align: center;
}
.contact-section__inner {
  max-width: 1200px !important;
  background: #f7f7f7;
  padding: 80px 70px !important;
  border-radius: 15px;
}
@media (max-width: 568px) {
  .contact-section__inner {
    padding: 50px 20px !important;
  }
}
.contact-section__header {
  padding-bottom: 0 !important;
}
.contact-section__text {
  padding: 50px 0;
}
@media (max-width: 568px) {
  .contact-section__text {
    line-height: 2;
    padding: 20px 0 50px;
  }
}
.contact-section .u-show-sp {
  display: none;
}
@media (max-width: 568px) {
  .contact-section .u-show-sp {
    display: inline;
  }
}
.contact-section__info {
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media (max-width: 568px) {
  .contact-section__info {
    display: block;
  }
}
.contact-section__office, .contact-section__email {
  text-align: left;
  flex: 0 0 calc((100% - 50px) / 2);
  min-width: 290px;
  max-width: 450px;
}
@media (max-width: 769px) {
  .contact-section__office, .contact-section__email {
    width: 100%;
    flex: 0 0 calc((100% - 50px) / 2);
  }
}
@media (max-width: 1025px) {
  .contact-section__office {
    display: inline-block;
    padding-bottom: 50px;
  }
}
.contact-section__office-name {
  border-bottom: solid 1px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.contact-section__tel {
  font-size: clamp(32px, 28.845px + 0.841vw, 45px);
  margin-bottom: 10px;
}
.contact-section__tel-label {
  font-size: 20px;
}
.contact-section__btn {
  font-size: clamp(1rem, 2vw, 1.25rem);
  display: inline-block;
  background: #474747;
  border: solid 1px #474747;
  color: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  width: 100%;
  flex: 1;
  position: relative;
  transition: 0.3s ease;
}
.contact-section__btn::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #fff;
  right: 20px;
  transition: transform 0.3s ease;
}
.contact-section__btn:hover::after {
  transform: translateX(5px);
}
.contact-section__btn:hover {
  background-color: #fff;
  color: #474747;
}
.contact-section__btn:hover::after {
  color: #474747;
}
.contact-section__sub-offices {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  padding-top: 40px;
}
@media (max-width: 568px) {
  .contact-section__sub-offices {
    display: block;
    margin-top: 30px;
    padding-top: 30px;
  }
}
.contact-section__office--sub {
  padding-bottom: 0;
  display: flex;
  align-items: center;
  color: #666;
}
@media (max-width: 568px) {
  .contact-section__office--sub {
    padding-bottom: 30px;
  }
  .contact-section__office--sub:last-child {
    padding-bottom: 0;
  }
}
.contact-section__office--sub__tel {
  font-size: clamp(32px, 28.845px + 0.841vw, 45px);
  margin-bottom: 10px;
}
.contact-section__office--sub__tel-label {
  font-size: 20px;
}
.contact-section__office--sub .contact-section__office-name {
  font-size: 16px;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.contact-section__office--sub .contact-section__tel {
  font-size: clamp(24px, 20px + 1vw, 32px);
}
.contact-section__office--sub .contact-section__hours {
  font-size: 14px;
}

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

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

.footer {
  background: linear-gradient(to bottom right, #4A4AE6, #17E6C3);
  color: #fff;
  padding: 0 20px;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 75px 20px;
}
@media (max-width: 568px) {
  .footer__inner {
    padding: 50px 0;
    max-width: 90%;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 568px) {
  .footer__top {
    display: block;
  }
}
@media (max-width: 568px) {
  .footer__company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__company-name {
  font-size: 18px;
}
.footer__company-contact {
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 1025px) {
  .footer__company-contact {
    margin: 0 auto 20px;
  }
}
@media (max-width: 568px) {
  .footer__company-contact {
    margin: 20px auto;
  }
}
.footer__logo-area {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  align-items: center;
}
@media (max-width: 568px) {
  .footer__logo-area {
    padding-bottom: 0;
  }
}
.footer__logo-link {
  max-width: 158px;
}
@media (max-width: 568px) {
  .footer__logo-link {
    max-width: calc(100% - 9rem - 20px);
  }
}
.footer__nav-list {
  display: flex;
  gap: 50px;
}
@media (max-width: 568px) {
  .footer__nav-list {
    gap: 20px;
    display: grid;
  }
  .footer__nav-list .footer__nav-item.footer__nav-item--combined {
    display: contents;
  }
}
.footer__nav-item {
  line-height: 2;
}
@media (max-width: 568px) {
  .footer__nav-item {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer__nav-item--combined {
  line-height: inherit;
}
@media (max-width: 568px) {
  .footer__nav-item--combined {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .footer__nav-item--combined .footer__nav-group {
    flex: 1 1 33%;
  }
}
.footer__nav-link {
  border-bottom: 1px solid #E65149;
  padding-bottom: 10px;
  display: block;
}
.footer__nav-group-item {
  line-height: 2;
}
.footer__nav-group-item:nth-child(2) {
  padding-top: 10px;
}
.footer__subnav-list {
  padding-top: 10px;
}
@media (max-width: 568px) {
  .footer__subnav-list {
    display: none;
  }
}
.footer__subnav-item {
  font-size: 15px;
}
.footer__subnav-link {
  padding-bottom: 3px;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
.footer__subnav-link:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}
.footer__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  gap: 10px;
}
@media (max-width: 568px) {
  .footer__info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.footer__contact-btn {
  color: #4A4AE6;
  font-weight: 600;
  background-color: #fff;
  text-align: center;
  padding: 18px;
  border-radius: 5px;
  border: solid 1px #fff;
  white-space: nowrap;
}
@media (max-width: 568px) {
  .footer__contact-btn {
    order: 1;
  }
}
.footer__contact-btn::after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  padding-left: 2rem;
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.3s ease;
}
.footer__contact-btn:hover::after {
  transform: translateX(5px);
}
.footer__contact-btn:hover {
  background-color: #fff;
  color: #474747;
}
.footer__contact-btn:hover::after {
  color: #474747;
}
.footer__info-group-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 568px) {
  .footer__info-group-inner {
    flex-wrap: wrap;
  }
}
.footer__sdgs-btn {
  color: #fff;
  font-weight: 600;
  background-color: #4A4AE6;
  text-align: center;
  padding: 18px;
  border-radius: 30px;
  border: solid 1px #4A4AE6;
  white-space: nowrap;
  transition: 0.3s ease;
}
.footer__sdgs-btn::before {
  font-family: "Font Awesome 6 Free";
  content: "\f4d8";
  font-weight: 900;
  padding-right: 1rem;
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.3s ease;
}
@media (max-width: 568px) {
  .footer__sdgs-btn::before {
    padding-right: 10px;
  }
}
.footer__sdgs-btn:hover {
  background-color: #fff;
  border: solid 1px #fff;
  color: #4A4AE6;
}
.footer__sdgs-btn:hover::after {
  color: #4A4AE6;
}
.footer__iso-img {
  height: 70px;
  width: auto;
}
.footer__policies {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 568px) {
  .footer__policies {
    flex-wrap: wrap;
  }
}
.footer__policies-list {
  display: flex;
  gap: 15px;
}
@media (max-width: 568px) {
  .footer__policies-list {
    margin-bottom: 15px;
  }
}
.footer__policies-link {
  padding-bottom: 3px;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
.footer__policies-link:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}
.footer__nav-list--sp {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30px;
  line-height: 2;
  margin: 0 auto;
}
.footer__nav-item--sp {
  margin: 0 auto;
  text-align: center;
}
.footer__nav-link--sp {
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #E65149;
}

/* グラデボタン */
.btn {
  width: 230px;
  display: inline-block;
  padding: 20px 0;
  color: #fff;
  background: linear-gradient(to right, #17E6C3, 60%, #4A4AE6);
  border-radius: 0 20px;
  text-align: center;
  line-height: 2;
  position: relative;
  overflow: hidden;
}
.btn::after {
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: 900;
  padding-left: 2rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  display: inline-block;
}
.btn:hover::after {
  transform: translateX(5px);
}
.btn:hover::before {
  left: 125%;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: 1;
}

.top-business__related-list {
  display: flex;
  gap: 25px;
}
@media (max-width: 568px) {
  .top-business__related-list {
    display: block;
  }
}
.top-business__related-item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 769px) {
  .top-business__related-item {
    padding-bottom: 50px;
  }
  .top-business__related-item:last-child {
    padding-bottom: 0;
  }
}
.top-business__related-link {
  position: relative;
  display: block;
}
.top-business__related-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(74, 74, 230, 0.5);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.top-business__related-img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 250px;
  height: auto;
  width: 100%;
  aspect-ratio: 2/1;
}
@media (max-width: 769px) {
  .top-business__related-img {
    max-height: 150px;
  }
}
.top-business__related-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  z-index: 2;
}
.top-business__related-text::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.3rem;
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
  display: inline-block;
}
@media (max-width: 1025px) {
  .top-business__related-text {
    font-size: clamp(1.3rem, 1.012rem + 1.231vw, 1.8rem);
  }
}
.top-business__related-link:hover .top-business__related-text::after {
  transform: translateX(5px);
}

.banner-area {
  width: 100%;
  height: 350px;
  background: no-repeat right top/100% url("../img/common/banner-area.jpg");
  justify-content: center;
  position: relative;
  padding-top: 430px;
  overflow: hidden;
}
.banner-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: rgba(74, 74, 230, 0.7);
  transform: skewX(-30deg);
  transform-origin: top left;
}
@media (max-width: 1025px) {
  .banner-area {
    height: 200px;
    padding-top: 0;
    margin-top: 70px;
    background: no-repeat center top/200% url("../img/common/banner-area.jpg");
  }
  .banner-area::before {
    width: 100%;
    transform: skewX(0deg);
  }
}
@media (max-width: 769px) {
  .banner-area {
    height: 170px;
  }
}
.banner-area__text {
  padding-left: 30px;
  position: absolute;
  top: 50%;
  color: #fff;
}
@media (max-width: 1025px) {
  .banner-area__text {
    top: 30%;
    padding-left: 20px;
  }
}
.banner-area__title {
  font-size: 4rem;
  padding-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media (max-width: 1025px) {
  .banner-area__title {
    font-size: clamp(2.3rem, 1.896rem + 1.726vw, 3rem);
  }
}
.banner-area__subtitle {
  font-size: 18px;
}
.banner-area__subtitle::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #E65149;
  mask-image: url("../img/common/section-subtitle_icon.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/common/section-subtitle_icon.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  margin-right: 5px;
}
@media (max-width: 568px) {
  .banner-area__subtitle::before {
    width: 16px;
    height: 16px;
  }
}
body.page-template-company .banner-area, body.archive .banner-area, body.page-template-news .banner-area, body.single-post .banner-area, body.page-template-contact .banner-area, body.page-template-contact-thanks .banner-area, body.page-template-privacy-policy .banner-area, body.page-template-sitemap .banner-area, body.page-template-site-policy .banner-area, body.error404 .banner-area, body.page-template-entry .banner-area {
  background-repeat: no-repeat;
  background-position: right top 25%;
  background-size: 100%;
  background-image: url("../img/common/banner-area.jpg");
  background-image: -webkit-image-set(url("../img/common/banner-area.webp") type("image/webp"), url("../img/common/banner-area.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/common/banner-area.webp") type("image/webp"), url("../img/common/banner-area.jpg") type("image/jpeg"));
}
body.page-template-business01 .banner-area {
  background-repeat: no-repeat;
  background-position: right top 45%;
  background-size: 100%;
  background-image: url("../img/business01/business01_banner-area.jpg");
  background-image: -webkit-image-set(url("../img/business01/business01_banner-area.webp") type("image/webp"), url("../img/business01/business01_banner-area.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/business01/business01_banner-area.webp") type("image/webp"), url("../img/business01/business01_banner-area.jpg") type("image/jpeg"));
}
body.page-template-business02 .banner-area {
  background-repeat: no-repeat;
  background-position: right bottom 50%;
  background-size: 100%;
  background-image: url("../img/business02/business02_banner-area.jpg");
  background-image: -webkit-image-set(url("../img/business02/business02_banner-area.webp") type("image/webp"), url("../img/business02/business02_banner-area.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/business02/business02_banner-area.webp") type("image/webp"), url("../img/business02/business02_banner-area.jpg") type("image/jpeg"));
}
body.page-template-business03 .banner-area {
  background-repeat: no-repeat;
  background-position: right top 40%;
  background-size: 100%;
  background-image: url("../img/business03/business03_banner-area.jpg");
  background-image: -webkit-image-set(url("../img/business03/business03_banner-area.webp") type("image/webp"), url("../img/business03/business03_banner-area.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/business03/business03_banner-area.webp") type("image/webp"), url("../img/business03/business03_banner-area.jpg") type("image/jpeg"));
}
body.page-template-products .banner-area {
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  background-image: url("../img/products/products_banner-area-2.jpg");
  background-image: -webkit-image-set(url("../img/products/products_banner-area-2.webp") type("image/webp"), url("../img/products/products_banner-area-2.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/products/products_banner-area-2.webp") type("image/webp"), url("../img/products/products_banner-area-2.jpg") type("image/jpeg"));
}
body.page-template-machines .banner-area {
  background-repeat: no-repeat;
  background-position: right top 20%;
  background-size: 100%;
  background-image: url("../img/machines/machines_banner-area.jpg");
  background-image: -webkit-image-set(url("../img/machines/machines_banner-area.webp") type("image/webp"), url("../img/machines/machines_banner-area.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/machines/machines_banner-area.webp") type("image/webp"), url("../img/machines/machines_banner-area.jpg") type("image/jpeg"));
}

body.page-template-privacy-policy .banner-area__text {
  transform: translateY(-25%);
}
@media (max-width: 1025px) {
  body.page-template-privacy-policy .banner-area__text {
    transform: none;
  }
}
@media (max-width: 1025px) {
  body.page-template-privacy-policy .banner-area__title > br {
    display: none;
  }
}

.fadein-target, .section-box {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.fadein-target.is-visible, .is-visible.section-box {
  opacity: 1;
  transform: translateY(0);
}

/* セクションタイトル用 */
/* セクションボックス用（各セクションのコンテナに付与） */
html {
  font-size: 16px;
  color: #333;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
       text-size-adjust: 100% !important;
}

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

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

section {
  padding: 0 20px;
}
@media (max-width: 769px) {
  section {
    padding: 0;
  }
}
section .inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 200px 20px;
}
@media (max-width: 1025px) {
  section .inner {
    padding: 150px 20px;
  }
}
@media (max-width: 769px) {
  section .inner {
    padding: 100px 20px;
  }
}
@media (max-width: 568px) {
  section .inner {
    padding: 80px 20px;
  }
}
section .title {
  margin-bottom: 50px;
}

@media (max-width: 568px) {
  .u-hide-sp {
    display: none;
  }
}

.u-show-sp {
  display: none;
}
@media (max-width: 568px) {
  .u-show-sp {
    display: inline;
  }
}

.grecaptcha-badge {
  display: none;
}

/* indexとrecruitのh2 */
.section-header {
  padding-bottom: 100px;
}
@media (max-width: 568px) {
  .section-header {
    padding-bottom: 30px;
  }
}

.section-title {
  padding-bottom: 30px;
  font-size: 3rem;
  color: #4A4AE6;
  font-weight: 600;
}
@media (max-width: 568px) {
  .section-title {
    font-size: 30px;
    padding-bottom: 30px;
  }
}

.section-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 25px;
  letter-spacing: 0.1em;
}
@media (max-width: 568px) {
  .section-subtitle {
    font-size: 18px;
    padding-bottom: 0;
  }
}
.section-subtitle::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #E65149;
  mask-image: url("../img/common/section-subtitle_icon.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../img/common/section-subtitle_icon.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  margin-right: 5px;
}
@media (max-width: 568px) {
  .section-subtitle::before {
    width: 16px;
    height: 16px;
  }
}

/* 下層ページのh2 */
.c-title {
  margin-bottom: 50px;
  padding-bottom: 50px;
  font-size: 3rem;
  color: #4A4AE6;
  font-weight: 600;
}
@media (max-width: 1025px) {
  .c-title {
    font-size: clamp(1.8rem, 1.512rem + 1.231vw, 2.3rem);
  }
}
@media (max-width: 568px) {
  .c-title {
    padding-bottom: 0;
  }
}
.c-title__separator {
  font-size: 3rem;
  color: #13C0A3;
  font-weight: bold;
}
@media (max-width: 1025px) {
  .c-title__separator {
    font-size: clamp(1.8rem, 1.512rem + 1.231vw, 2.3rem);
  }
}
@media (max-width: 568px) {
  .c-title__separator {
    font-size: 30px;
    padding-bottom: 20px;
  }
}

.c-title__sub {
  font-size: 1.5rem;
  background: linear-gradient(to right, #13C0A3, 50%, #4A4AE6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
}
@media (max-width: 568px) {
  .c-title__sub {
    font-size: 16px;
  }
}

/* 下層ページのh3 */
.c-heading--icon {
  color: #4A4AE6;
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 1025px) {
  .c-heading--icon {
    font-size: clamp(1.25rem, 1.142rem + 0.462vw, 1.438rem);
  }
}
.c-heading--icon::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url("../img/common/gradation_square.png") no-repeat center;
  background-size: contain;
  vertical-align: baseline;
}

/* effortとstrengthの3カラム */
.cards-list {
  display: flex;
  gap: 25px;
  align-items: stretch;
}
@media (max-width: 1025px) {
  .cards-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 568px) {
  .cards-list {
    display: block;
  }
}

.card {
  width: 33.3333333333%;
  line-height: 2;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1025px) {
  .card {
    width: calc((100% - 25px) / 2);
  }
}
@media (max-width: 568px) {
  .card {
    width: 100%;
    padding-bottom: 30px;
  }
  .card:last-child {
    padding: 0;
  }
}
.card__img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 300px;
  height: auto;
  width: 100%;
  aspect-ratio: 4/3;
}
.card__title {
  font-size: 18px;
  color: #4A4AE6;
  font-weight: 600;
  text-align: center;
  padding-bottom: 20px;
}
.card__content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.top-fv,
.top-fv * {
  box-sizing: border-box;
}

.top-fv-wrapper {
  position: relative;
}

.top-fv {
  display: flex;
  width: calc(100% - 50px);
  height: 90vh;
  overflow: hidden;
  margin: 25px auto 100px;
  border-radius: 10px;
  padding: 0 !important;
  position: relative;
}
@media (max-width: 1025px) {
  .top-fv {
    margin-top: 80px;
    height: 70vh;
  }
}
@media (max-width: 769px) {
  .top-fv {
    margin: 70px auto 0;
    width: 100%;
    border-radius: 0;
    flex-direction: column;
    height: 90vh;
  }
}
@media (max-width: 568px) {
  .top-fv {
    height: calc(100vh - 70px);
  }
}
.top-fv__text {
  position: absolute;
  bottom: 0;
  color: #fff;
  z-index: 2;
  padding: 2rem;
  width: 100%;
  line-height: 1.2;
  font-weight: 600;
}
@media (max-width: 769px) {
  .top-fv__text {
    padding: 1rem;
    font-weight: 700;
  }
}
@media (max-width: 568px) {
  .top-fv__text {
    padding-bottom: max(5rem, env(safe-area-inset-bottom) + 1rem);
  }
}
.top-fv__text .u-show-pc {
  display: none;
}
@media (max-width: 1025px) {
  .top-fv__text .u-show-pc {
    display: inline-block;
  }
}
.top-fv__title {
  font-size: clamp(2.5rem, 1.972rem + 2.254vw, 4rem);
  margin-bottom: 1rem;
}
.top-fv__subtitle {
  font-size: clamp(1.5rem, 1.324rem + 0.751vw, 2rem);
}
.top-fv__pc-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
@media (max-width: 1025px) {
  .top-fv__pc-wrapper {
    display: none;
  }
}
.top-fv__sp-wrapper {
  display: none;
  width: 100%;
}
@media (max-width: 1025px) {
  .top-fv__sp-wrapper {
    display: block;
    height: 70vh;
  }
}
@media (max-width: 769px) {
  .top-fv__sp-wrapper {
    height: 90vh;
  }
}
@media (max-width: 568px) {
  .top-fv__sp-wrapper {
    height: calc(100vh - 70px);
  }
}
.top-fv__left, .top-fv__right {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.top-fv__left {
  flex: 0 0 70%;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}
@media (max-width: 1025px) {
  .top-fv__left {
    flex: 1;
    width: 100%;
    clip-path: none;
  }
}
.top-fv__right {
  flex: 0 0 70%;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -17.5%;
}
@media (max-width: 1025px) {
  .top-fv__right {
    display: none;
  }
}
.top-fv__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.top-fv__slider .swiper-wrapper {
  width: 100% !important;
  height: 100%;
}
.top-fv__slider .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-fv picture {
  width: 100%;
  height: 100%;
  display: block;
}
.top-fv__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.top-fv__cta {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: solid #fff clamp(5px, 1.734px + 0.574vw, 10px);
  border-bottom: solid #fff clamp(5px, 1.734px + 0.574vw, 10px);
  border-left: solid #fff clamp(5px, 1.734px + 0.574vw, 10px);
  border-radius: clamp(10px, 3.467px + 1.148vw, 20px) 0 0 clamp(10px, 3.467px + 1.148vw, 20px);
  background-color: #fff;
  z-index: 100;
  width: clamp(300px, 99.566px + 26.064vw, 600px);
  transform: translateY(30%);
}
@media (max-width: 1025px) {
  .top-fv__cta {
    bottom: 0;
    transform: translateY(50%);
  }
}
@media (max-width: 769px) {
  .top-fv__cta {
    transform: translateY(25%);
  }
}
@media (max-width: 568px) {
  .top-fv__cta {
    position: fixed;
    border: 5px #fff solid;
    border-radius: 10px;
    width: 85vw;
    bottom: 5px;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .top-fv__cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
.top-fv__cta-link picture {
  display: block;
}
.top-fv__cta-img {
  transition: 0.3s ease;
  display: block;
}
.top-fv__cta-img:hover {
  filter: brightness(1.1);
}

.top-intro {
  padding: clamp(32px, 10.62px + 2.78vw, 64px) 0;
  line-height: 2;
  text-align: center;
  position: relative;
}
@media (max-width: 769px) {
  .top-intro {
    padding: 0;
  }
}
.top-intro .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.top-intro__inner {
  padding: clamp(30px, -3.406px + 4.344vw, 80px) 20px 250px !important;
}
@media (max-width: 568px) {
  .top-intro__inner {
    padding: 150px 20px clamp(300px, 104.688px + 52.083vw, 400px) !important;
  }
}
.top-intro__catch {
  font-size: clamp(24px, 15.598px + 1.479vw, 44px);
  color: #333;
  padding-bottom: 50px;
  font-weight: 600;
  z-index: 1;
}
@media (max-width: 769px) {
  .top-intro__catch {
    font-size: 1.5rem;
    text-align: left;
  }
}
.top-intro__text {
  line-height: 2.5;
  font-size: 20px;
}
@media (max-width: 769px) {
  .top-intro__text {
    font-size: 16px;
    text-align: left;
    line-height: 2;
  }
}
.top-intro__btn {
  margin: 80px auto 0;
}
.top-intro__bg--pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 568px) {
  .top-intro__bg--pc {
    display: none;
  }
}
.top-intro__bg--pc .top-intro__bg-item {
  z-index: -99;
  position: absolute;
  display: inline-block;
  max-width: 500px;
}
.top-intro__bg--pc .top-intro__bg-item--01 {
  width: clamp(200px, 32.971px + 21.72vw, 450px);
  left: 0;
  top: clamp(-50px, -83.406px + 4.344vw, 0px);
}
@media (max-width: 769px) {
  .top-intro__bg--pc .top-intro__bg-item--01 {
    display: none;
  }
}
.top-intro__bg--pc .top-intro__bg-item--02 {
  width: clamp(200px, 99.783px + 13.032vw, 350px);
  right: 20px;
  top: 0;
}
.top-intro__bg--pc .top-intro__bg-item--02::after {
  content: "";
  position: absolute;
  right: clamp(-10px, 0.563px - 2.817vw, -40px);
  bottom: -70px;
  width: clamp(50px, 6.573px + 5.647vw, 115px);
  height: clamp(80px, 65.296px + 2.589vw, 115px);
  background: url("../img/top/item-02_after.svg") no-repeat center/contain;
  animation: swing 5s infinite alternate;
}
@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media (max-width: 769px) {
  .top-intro__bg--pc .top-intro__bg-item--02 {
    top: 50px;
    right: 25px;
  }
}
.top-intro__bg--pc .top-intro__bg-item--03 {
  width: clamp(170px, 115.385px + 9.615vw, 300px);
  left: 50px;
  bottom: clamp(20px, -13.609px + 5.917vw, 100px);
}
.top-intro__bg--pc .top-intro__bg-item--04 {
  width: clamp(200px, 32.971px + 21.72vw, 450px);
  right: 0;
  bottom: clamp(50px, 7.988px + 7.396vw, 150px);
}
.top-intro__bg--pc .top-intro__bg-img {
  display: block;
  width: 100%;
  height: auto;
}
.top-intro__gears {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: absolute;
  top: 50%;
  left: 10%;
}
@media (max-width: 1025px) {
  .top-intro__gears {
    top: 65%;
    left: 5%;
  }
}
@media (max-width: 568px) {
  .top-intro__gears {
    top: auto;
    left: auto;
    bottom: 20%;
    right: 5%;
    z-index: 1;
  }
}
.top-intro__gears-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 60px;
}
@media (max-width: 568px) {
  .top-intro__gears-column {
    width: 40px;
  }
}
.top-intro__gears .top-intro__gear--yellow {
  width: clamp(80px, 56.923px + 6.154vw, 120px);
}
.top-intro__gear {
  height: auto;
  animation: rotate 8s linear infinite;
}
.top-intro__gear--green {
  animation-duration: 5s;
}
.top-intro__gear--yellow {
  animation-duration: 8s;
  animation-direction: reverse;
}
.top-intro__gear--red {
  animation-duration: 10s;
}
.top-intro__bg--sp {
  display: none;
}
@media (max-width: 568px) {
  .top-intro__bg--sp {
    display: block;
    margin-top: 40px;
    flex-wrap: wrap;
  }
}
.top-intro__bg--sp .top-intro__bg-item--01 {
  margin-bottom: 20px;
  width: 80%;
  margin: 0 auto 30px;
}
.top-intro__bg--sp .top-intro__bg-item--01::after {
  content: "";
  position: absolute;
  right: auto;
  bottom: auto;
  top: 58%;
  left: 5%;
  width: clamp(80px, 65.296px + 2.589vw, 115px);
  height: clamp(80px, 65.296px + 2.589vw, 115px);
  background: url("../img/top/item-02_after.svg") no-repeat center/contain;
  animation: swing 5s infinite alternate;
}
.top-intro__bg--sp .top-intro__bg-item--02 {
  width: clamp(260px, 181.875px + 20.833vw, 300px);
  margin: 0 auto 40px;
  position: relative;
}
.top-intro__bg--sp .top-intro__bg-item--02::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -30px;
  width: clamp(60px, 20.938px + 10.417vw, 80px);
  height: clamp(60px, 20.938px + 10.417vw, 80px);
  background: url("../img/top/item-01_after.svg") no-repeat center/contain;
}
.top-intro__bg--sp .top-intro__bg-item--03, .top-intro__bg--sp .top-intro__bg-item--04 {
  max-width: calc((100% - 30px) / 2);
  display: inline-block;
  vertical-align: top;
}
.top-intro__bg--sp .top-intro__bg-item--03 {
  position: absolute;
  left: 0;
}
.top-intro__bg--sp .top-intro__bg-item--04 {
  position: absolute;
  right: 0;
  transform: translateY(40px);
}
.top-intro__bg--sp .top-intro__bg-img {
  display: block;
  width: 100%;
  height: auto;
}

.top-title {
  padding-bottom: 30px;
}

.top-recruit {
  position: relative;
}
.top-recruit__video {
  background-color: #999;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 568px) {
  .top-recruit__video {
    width: 100%;
    left: 0;
    border-radius: 0;
  }
}
.top-recruit .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 568px) {
  .top-recruit .overlay {
    width: 100%;
    left: 0;
  }
}
.top-recruit__lead {
  font-weight: 600;
  font-size: 1.5rem;
  padding-bottom: 20px;
}
.top-recruit__text {
  line-height: 2;
  padding-bottom: 50px;
}
.top-recruit__btn {
  font-size: 16px;
  display: inline-block;
  background: #E65149;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
}
.top-recruit__btn:hover .fa-arrow-right {
  transform: translateX(5px);
  transition: transform 0.2s ease;
}
.top-recruit__btn .fa-arrow-right {
  padding-left: 0.5rem;
}

.top-business {
  /* 背景 */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  /* 事業内容のボタン */
  /* 製品紹介と設備紹介 */
}
.top-business__intro {
  padding-bottom: 80px;
}
.top-business__intro-lead {
  font-weight: 600;
  font-size: 1.5rem;
  padding-bottom: 50px;
  line-height: 2;
}
.top-business__intro-lead br {
  display: none;
}
@media (max-width: 1025px) {
  .top-business__intro-lead br {
    display: block;
  }
}
.top-business__intro-text {
  line-height: 2;
}
@media (max-width: 1025px) {
  .top-business__intro-text br {
    display: none;
  }
}
.top-business__list {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding-bottom: 200px;
}
@media (max-width: 769px) {
  .top-business__list {
    padding-bottom: 100px;
  }
}
@media (max-width: 568px) {
  .top-business__list {
    display: block;
    padding-bottom: 100px;
  }
}
.top-business__item {
  flex: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 568px) {
  .top-business__item {
    margin-bottom: 50px;
  }
}
.top-business__item:hover .top-business__img {
  transform: scale(1.1);
}
.top-business__item:nth-child(1) .top-business__caption {
  background-color: #1F994D;
}
.top-business__item:nth-child(2) .top-business__caption {
  background-color: #CCAA14;
}
.top-business__item:nth-child(3) .top-business__caption {
  background-color: #E63946;
}
.top-business__img {
  width: 100%;
  max-height: 430px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
@media (max-width: 568px) {
  .top-business__img {
    max-height: 300px;
    aspect-ratio: 3/2;
  }
}
.top-business__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  color: #fff;
  text-align: left;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-business__caption::after {
  font-family: "Font Awesome 6 Free";
  content: "\f138";
  font-weight: 900;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  display: inline-block;
}
.top-business__link:hover .top-business__caption::after {
  transform: translateX(5px);
}

@media (min-width: 568px) {
  .top-news {
    padding-bottom: 0;
  }
}
.top-news__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (max-width: 769px) {
  .top-news__inner {
    display: block;
  }
}
.top-news__header {
  padding-bottom: 0;
}
@media (max-width: 769px) {
  .top-news__header {
    padding-bottom: 30px;
  }
}
.top-news__btn--pc {
  margin-top: 50px;
}
@media (max-width: 769px) {
  .top-news__btn--pc {
    display: none;
  }
}
.top-news__btn--sp {
  display: none;
}
@media (max-width: 769px) {
  .top-news__btn--sp {
    display: block;
    margin: 0 auto 30px;
    text-align: center;
  }
}
.top-news__list {
  list-style: none;
  padding: 0;
  width: 70%;
}
@media (max-width: 769px) {
  .top-news__list {
    width: 100%;
    padding-bottom: 50px;
  }
}
.top-news__item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #969696;
  position: relative;
}
@media (max-width: 568px) {
  .top-news__item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.top-news__item::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: none;
}
@media (max-width: 568px) {
  .top-news__item::after {
    display: inline-block;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
    transform: translate(-50%, -100%);
  }
}
.top-news__item:hover::after {
  transform: translate(calc(-50% + 5px), -100%);
}
.top-news__link {
  display: block;
}
.top-news__link::after {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
  transform: translateX(-50%);
}
@media (max-width: 568px) {
  .top-news__link::after {
    display: none;
  }
}
.top-news__link:hover::after {
  transform: translateX(calc(-50% + 5px));
}
@media (max-width: 568px) {
  .top-news__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
.top-news__date {
  color: #666;
  margin-right: 3rem;
}
@media (max-width: 568px) {
  .top-news__date {
    margin-right: 0;
    font-size: 0.9em;
  }
}
@media (max-width: 568px) {
  .top-news__text {
    font-size: 0.95em;
  }
}

.top-documents__inner {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #969696;
  border-bottom: 1px solid #969696;
  align-items: center;
  padding: 25px 0 !important;
  margin-bottom: 20px !important;
  position: relative;
  height: 250px;
}
@media (max-width: 769px) {
  .top-documents__inner {
    display: block;
    height: auto;
  }
}
.top-documents__item {
  max-width: 50%;
  flex: 1;
}
@media (max-width: 769px) {
  .top-documents__item {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
}
.top-documents__item:last-child .top-documents__link {
  margin-left: auto;
  gap: 2rem;
}
@media (max-width: 769px) {
  .top-documents__item:last-child .top-documents__link {
    padding-top: 20px;
  }
}
.top-documents__item:last-child .top-documents__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 568px) {
  .top-documents__item:last-child .top-documents__content {
    gap: 0;
  }
}
.top-documents__item:last-child .top-documents__icon {
  margin-right: 0;
}
@media (max-width: 568px) {
  .top-documents__item:last-child .top-documents__icon {
    margin-right: clamp(16px, 6.769px + 2.462vw, 32px);
  }
}
.top-documents__content {
  display: flex;
  align-items: center;
}
.top-documents__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 210px;
  align-items: center;
  padding: 0 2rem;
}
@media (max-width: 769px) {
  .top-documents__line {
    display: none;
  }
}
.top-documents__line::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #969696;
  transform: translateX(-50%);
}
.top-documents__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 2rem);
  margin-right: 0;
}
.top-documents__link:hover .fa-circle-chevron-right {
  transform: translateX(5px);
}
@media (max-width: 769px) {
  .top-documents__link {
    margin: 0 auto;
  }
}
.top-documents__link i {
  font-size: clamp(18px, 15.115px + 0.769vw, 23px);
  transition: transform 0.3s ease;
}
.top-documents__icon {
  width: clamp(70px, 10vw, 100px);
  margin-right: clamp(16px, 6.769px + 2.462vw, 32px);
}
.top-documents__text {
  font-size: clamp(18px, 15.115px + 0.769vw, 23px);
}
.top-documents__note {
  font-size: 16px;
}

.message {
  /* 左カラム */
  /* 右カラム */
}
.message__content {
  display: flex;
  gap: 50px;
  /* PC: 左右2カラム */
  /* SP: 縦積み */
}
@media (min-width: 769px) {
  .message__content {
    flex-direction: row;
  }
}
@media (max-width: 769px) {
  .message__content {
    flex-direction: column;
    gap: 30px;
  }
}
.message__left {
  line-height: 2;
  flex: 1;
}
@media (max-width: 769px) {
  .message__left {
    display: contents;
  }
}
.message__right {
  width: 480px;
  flex-shrink: 0;
  text-align: right;
}
@media (max-width: 1025px) {
  .message__right {
    width: 40%;
  }
}
@media (max-width: 769px) {
  .message__right {
    display: contents;
  }
}
.message__copy {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 1025px) {
  .message__copy {
    font-size: clamp(1.563rem, 1.382rem + 0.769vw, 1.875rem);
  }
}
@media (max-width: 769px) {
  .message__copy {
    order: 1;
  }
}
@media (max-width: 880px) {
  .message__copy br {
    display: none;
  }
}
.message__description {
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  .message__description {
    order: 3;
    margin-bottom: 0;
  }
}
.message__profile-img {
  max-width: 480px;
  width: 100%;
  max-height: 480px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  .message__profile-img {
    order: 2;
    display: block;
    margin: 0 auto;
    height: auto;
    width: 90%;
  }
}
.message__profile-company {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media (max-width: 769px) {
  .message__profile-company {
    order: 4;
    margin-bottom: -15px;
  }
}
@media (max-width: 769px) {
  .message__profile-name {
    order: 5;
  }
}
.message__profile-name--highlight {
  font-size: 25px;
  margin-left: 1rem;
}

.philosophy {
  background-repeat: no-repeat;
  background-position: right 5% top;
  background-image: url("../img/company/philosophy.png");
  background-image: -webkit-image-set(url("../img/company/philosophy.webp") type("image/webp"), url("../img/company/philosophy.png") type("image/png"));
  background-image: image-set(url("../img/company/philosophy.webp") type("image/webp"), url("../img/company/philosophy.png") type("image/png"));
  background-size: clamp(260px, 35vw, 600px) auto;
}
@media (max-width: 1100px) {
  .philosophy {
    background-position: right 3% top;
  }
}
@media (max-width: 769px) {
  .philosophy {
    background-position: right top clamp(230px, 20vw, 300px);
    background-size: clamp(250px, 50vw, 300px);
  }
}
.philosophy__inner {
  padding-top: 0 !important;
}
.philosophy__item {
  max-width: 100%;
  display: flex;
  margin-bottom: 100px;
  line-height: 2;
  gap: clamp(0px, 5vw, 100px);
}
@media (max-width: 1025px) {
  .philosophy__item {
    gap: clamp(0px, 5vw, 100px);
  }
}
.philosophy__item:last-child {
  margin-bottom: 0;
}
.philosophy__text-wrapper {
  display: flex;
  gap: clamp(0px, 5vw, 100px);
}
@media (max-width: 769px) {
  .philosophy__item, .philosophy__text-wrapper {
    display: block;
  }
}
.philosophy__heading {
  width: 6em;
  flex-shrink: 0;
}
@media (max-width: 1025px) {
  .philosophy__heading {
    padding-bottom: 10px;
  }
}
.philosophy__text {
  line-height: 2;
}
.philosophy__text-bold {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 1025px) {
  .philosophy__text-bold {
    font-size: clamp(1.25rem, 1.142rem + 0.462vw, 1.438rem);
  }
}
@media (max-width: 880px) {
  .philosophy__text-bold {
    width: 50%;
  }
}
@media (max-width: 769px) {
  .philosophy__text-bold {
    width: 100%;
  }
}
@media (max-width: 880px) {
  .philosophy__text-bold br {
    display: none;
  }
}
.philosophy__points {
  display: flex;
  gap: 50px;
}
@media (max-width: 1025px) {
  .philosophy__points {
    display: block;
  }
}
.philosophy__point {
  flex: 1;
}
@media (max-width: 1025px) {
  .philosophy__point {
    padding-bottom: 30px;
  }
}
@media (max-width: 769px) {
  .philosophy__point {
    display: block;
  }
}
.philosophy__number {
  color: #4A4AE6;
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #999;
  margin-bottom: 10px;
}
.philosophy__number-text {
  color: #333;
}

.company-overview {
  background: linear-gradient(to top, rgb(227, 235, 255), rgba(227, 235, 255, 0.3));
  padding: 200px 1rem;
}
@media (max-width: 568px) {
  .company-overview {
    padding: 80px 20px;
  }
}
.company-overview__inner {
  padding: 130px 3rem !important;
  background-color: #fff;
  border-radius: 10px;
  max-width: 1500px !important;
}
@media (max-width: 568px) {
  .company-overview__inner {
    padding: 80px 20px !important;
  }
}
.company-overview__content {
  max-width: 1200px;
  margin: 0 auto;
}
.company-overview__list {
  display: grid;
  grid-template-columns: 8rem 1fr;
  grid-auto-rows: auto;
  align-items: stretch;
  line-height: 2;
}
@media (max-width: 568px) {
  .company-overview__list {
    grid-template-columns: 6rem 1fr;
  }
}
.company-overview__term, .company-overview__description {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.company-overview__term {
  color: #4A4AE6;
  border-bottom: 1px solid #4A4AE6;
}
.company-overview__description {
  border-bottom: 1px solid #969696;
}
.company-overview__pdf-link {
  margin: 2rem auto;
  display: block;
}
.company-overview__pdf-link::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.5rem;
}
.company-overview__pdf-link:hover::after {
  transform: translateX(0px);
}

.history {
  position: relative;
  z-index: 1;
}
.history__list {
  display: grid;
  grid-template-columns: 5rem 2rem 1fr;
  line-height: 1.6;
}
@media (max-width: 769px) {
  .history__inner {
    padding: 80px 0 !important;
  }
}
@media (max-width: 568px) {
  .history__inner {
    padding: 80px 20px !important;
  }
}
.history__item {
  display: contents;
}
.history__year {
  color: #4A4AE6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
.history__marker {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.history__marker-dot {
  width: 12px;
  height: 12px;
  background-color: #4A4AE6;
  border-radius: 50%;
  z-index: 1;
}
.history__marker::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #969696;
  transform: translateX(-50%);
  z-index: 0;
}
.history__description {
  padding: 1rem 0 1rem 2rem;
}
.history__bg {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  inset: 0;
  position: absolute;
  top: 10%;
  right: 1%;
}
@media (max-width: 1150px) {
  .history__bg {
    display: none;
  }
}
.history__bg--right {
  margin-top: 150px;
}
.history__bg-item {
  margin-bottom: 165px;
}
.history__img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: clamp(160px, 121.165px + 10.356vw, 320px);
  max-width: 100%;
  aspect-ratio: 4/3;
  border-radius: 0 10px;
}

.efforts {
  background-color: #E3EBFF;
}
.efforts__item:first-child .efforts__img, .efforts__item:last-child .efforts__img {
  border: 1px solid #ddd;
}
.efforts__content {
  background-color: #fff;
}
.efforts__title-link {
  display: block;
}
.efforts__title-link::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 0.5rem;
}

.access__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 568px) {
  .access__content {
    display: block;
  }
}
.access__item {
  width: calc((100% - 50px) / 2);
}
@media (max-width: 568px) {
  .access__item {
    width: 100%;
    padding-bottom: 30px;
  }
  .access__item:last-child {
    padding: 0;
  }
}
.access__map {
  padding-bottom: 20px;
}
@media (max-width: 568px) {
  .access__map {
    padding-bottom: 10px;
  }
}
.access__map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.access__location, .access__address {
  line-height: 2;
}
.access__location {
  font-size: 18px;
}

.page-detail__intro-heading {
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 50px;
  line-height: 2;
}
@media (max-width: 568px) {
  .page-detail__intro-heading {
    font-size: 1.5rem;
  }
}
.page-detail__intro-text {
  line-height: 2;
}

@media (max-width: 568px) {
  .page-detail__inner .page-detail__title {
    padding-bottom: 0;
  }
}

.page-detail__title {
  padding-bottom: 50px;
}

.other-business {
  background-color: #F7F7F4;
}
.other-business__header {
  text-align: center;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 568px) {
  .other-business__header {
    padding-bottom: 50px;
  }
}
.other-business__list {
  display: flex;
  gap: 50px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 568px) {
  .other-business__list {
    display: block;
    width: 100%;
  }
}
.other-business__item {
  flex: 1;
  position: relative;
  overflow: hidden;
}
@media (max-width: 568px) {
  .other-business__item {
    padding-bottom: 50px;
  }
  .other-business__item:last-child {
    padding-bottom: 0;
  }
}
.other-business__item:hover .other-business__img {
  transform: scale(1.1);
}
.other-business__item:hover .other-business__arrow {
  transform: translateY(-50%) translateX(5px);
}
@media (max-width: 568px) {
  .other-business__item:hover .other-business__arrow {
    transform: translateY(-100%) translateX(5px);
  }
}
.other-business__arrow {
  color: #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  z-index: 100;
  transition: transform 0.3s ease;
}
@media (max-width: 568px) {
  .other-business__arrow {
    transform: translateY(-100%);
  }
}
.other-business__link {
  position: relative;
  display: block;
}
.other-business__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.other-business__img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 250px;
  width: 100%;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
@media (max-width: 769px) {
  .other-business__img {
    height: 150px;
  }
}
.other-business__text {
  font-size: 1.5rem;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 1025px) {
  .other-business__text {
    font-size: clamp(1.3rem, 1.185rem + 0.492vw, 1.5rem);
  }
}
.other-business__text i {
  font-size: 32px;
  color: #fff;
}

/*-------------
製鋼原料リサイクル
-------------*/
.recycle-process__inner {
  background: linear-gradient(to top, rgb(227, 235, 255), rgba(227, 235, 255, 0.3));
  border-radius: 10px;
  max-width: 1500px !important;
  padding: 150px 20px !important;
}
@media (max-width: 769px) {
  .recycle-process__inner {
    padding: 80px 20px !important;
  }
}
@media (max-width: 568px) {
  .recycle-process__inner {
    border-radius: 0px;
  }
}
.recycle-process__content {
  max-width: 1200px;
  margin: 0 auto;
}
.recycle-process__list {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media (max-width: 769px) {
  .recycle-process__list {
    display: block;
  }
}
.recycle-process__img {
  width: 100%;
  display: block;
  z-index: 1;
}
@media (max-width: 769px) {
  .recycle-process__img {
    width: 100%;
    margin: 0 auto;
  }
}
.recycle-process__note {
  line-height: 2;
}

.recycle-video {
  height: 500px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
@media (max-width: 568px) {
  .recycle-video {
    max-height: 200px;
  }
}
.recycle-video__player {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.related-pages .page-detail__related-item {
  width: 50%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 568px) {
  .related-pages .page-detail__related-item {
    width: 100%;
  }
}
.related-pages .page-detail__related-item::before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  font-size: 24px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  transition: transform 0.3s ease;
}
.related-pages .page-detail__related-item:hover::before {
  transform: translateY(-50%) translateX(5px);
}
.related-pages .page-detail__related-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(74, 74, 230, 0.5);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.related-pages .page-detail__related-img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 250px;
  height: auto;
  aspect-ratio: 2/1;
  width: 100%;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
@media (max-width: 769px) {
  .related-pages .page-detail__related-img {
    max-height: 150px;
  }
}
.related-pages .page-detail__related-text {
  color: #fff;
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
@media (max-width: 1025px) {
  .related-pages .page-detail__related-text {
    font-size: clamp(1.3rem, 1.012rem + 1.231vw, 1.8rem);
  }
}

/*-------------
自動車部品加工
-------------*/
.strengths {
  counter-reset: strengthCounter;
}
.strengths__inner {
  padding: 0 20px 200px !important;
  max-width: 1200px;
}
@media (max-width: 769px) {
  .strengths__inner {
    padding: 80px 20px !important;
  }
}
.strengths__title {
  padding-bottom: 50px;
}
.strengths__content {
  background-color: #F7F7F4;
  position: relative;
}
.strengths__content::before {
  content: counter(strengthCounter, decimal-leading-zero);
  counter-increment: strengthCounter;
  position: absolute;
  right: 30px;
  bottom: -10px;
  font-size: 4.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: #fff;
}
.strengths__text {
  z-index: 99;
}

.bases .c-title {
  padding-bottom: 20px;
}
@media (max-width: 568px) {
  .bases .c-title {
    padding-bottom: 50px;
  }
}
.bases__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 150px 20px 100px;
  background: linear-gradient(to top, rgb(227, 235, 255), rgba(227, 235, 255, 0.3));
  border-radius: 10px;
}
@media (max-width: 769px) {
  .bases__inner {
    border-radius: 0px;
    padding: 80px 20px;
  }
}
.bases__wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.bases__list {
  display: flex;
  gap: 50px;
  padding-bottom: 150px;
  align-items: flex-start;
  justify-content: center;
}
.bases__list:nth-of-type(2) {
  padding: 0;
}
@media (max-width: 769px) {
  .bases__list {
    flex-direction: column;
  }
}
.bases__title {
  border-bottom: 1px solid #999;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.bases__catch {
  font-size: 18px;
  line-height: 2;
  padding-bottom: 30px;
}
.bases__description {
  line-height: 2;
}
.bases__catch {
  font-weight: 600;
}
.bases__img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 769px) {
  .bases__img {
    width: 100%;
    order: -1;
  }
}
.bases__btn {
  display: block;
  margin: 100px auto 0;
}
@media (max-width: 769px) {
  .bases__btn {
    text-align: center;
    margin: 50px auto 0;
  }
}

/*-------------
金型設計
-------------*/
.business03__strengths-img--03 {
  border: 1px solid #ddd;
}

.mold-process__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 150px 20px;
  background: linear-gradient(to top, rgb(227, 235, 255), rgba(227, 235, 255, 0.3));
  border-radius: 10px;
}
@media (max-width: 769px) {
  .mold-process__inner {
    border-radius: 0px;
    padding: 80px 20px;
  }
}
.mold-process__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.mold-process__title {
  padding-bottom: 50px;
}
.mold-process__list {
  display: flex;
  gap: 30px;
}
@media (max-width: 769px) {
  .mold-process__list {
    display: block;
  }
}
.mold-process__item {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  padding: 25px;
}
.mold-process__item::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: #333;
  left: 100%;
  top: 50%;
  transition: transform 0.3s ease;
  transform: translateY(-50%);
  margin-left: 10px;
}
.mold-process__item:last-child::after {
  display: none;
}
@media (max-width: 769px) {
  .mold-process__item {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .mold-process__item::after {
    content: "\f107";
    left: 50%;
    top: calc(100% + 15px);
    transform: translate(-50%, -50%);
    margin: 0;
  }
}
.mold-process__phase-icon {
  padding-bottom: 10px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 769px) {
  .mold-process__phase-icon {
    padding-bottom: 0;
    padding-right: 30px;
    width: 150px;
    flex-shrink: 0;
    margin: 0;
  }
}
.mold-process__phase-title {
  font-weight: bold;
  text-align: center;
  padding-bottom: 10px;
}
.mold-process__phase-title, .mold-process__phase-description {
  line-height: 2;
}
@media (max-width: 769px) {
  .mold-process__phase-title, .mold-process__phase-description {
    text-align: left;
  }
}

/*-------------
製品紹介
-------------*/
.products .c-title {
  padding-bottom: 100px;
  margin-bottom: 0;
}
.products__inner {
  padding-bottom: 0 !important;
}
.products__visual {
  margin: 0 auto 100px;
  max-width: 1000px;
}
.products__note {
  text-align: right;
}
.products__factory {
  margin-bottom: 150px;
}
.products__factory:last-child {
  margin-bottom: 0;
}
.products__heading {
  margin-bottom: 50px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #999;
}
@media (max-width: 1025px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 568px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
}
.products__item {
  padding: 30px 20px;
  position: relative;
  border-bottom: 1px solid #999;
}
.products__item::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 20px;
  width: 1px;
  background-color: #999;
}
.products__item:nth-child(4n)::after {
  content: none;
}
@media (max-width: 1025px) {
  .products__item:nth-child(2n)::after {
    content: none;
  }
}
@media (max-width: 568px) {
  .products__item::after {
    content: none;
  }
}
.products__img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.products__name {
  margin: 5px 0;
}
.products__material, .products__note {
  font-size: 0.9rem;
  color: #555;
}

/*-------------
設備紹介
-------------*/
.machines-category__inner {
  padding: 200px 20px 0 !important;
}
@media (max-width: 568px) {
  .machines-category__inner {
    padding: 50px 20px 0 !important;
  }
}
.machines-category__list {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding-bottom: 150px;
}
@media (max-width: 568px) {
  .machines-category__list {
    padding-bottom: 50px;
    gap: 30px;
  }
}
.machines-category__link {
  width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #4A4AE6;
  border: 1px solid #4A4AE6;
  padding: 23px 0;
  border-radius: 40px;
  transition: 0.3s ease;
}
.machines-category__link i {
  margin-left: 1rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.machines-category__link:hover i {
  transform: translateY(3px);
}
.machines-category__link:hover {
  background-color: #fff;
  color: #4A4AE6;
}
@media (max-width: 568px) {
  .machines-category__link {
    width: 220px;
    padding: 17px 0;
    font-size: 0.9rem;
  }
}

#machines__press,
#machines__design,
#machines__recycle {
  scroll-margin-top: 80px;
}

.machines-section__inner {
  padding: 0 20px !important;
}
.machines-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.machines-section__heading {
  padding-bottom: 50px;
}
@media (max-width: 568px) {
  .machines-section__heading {
    padding-bottom: 30px;
  }
}
.machines-section .machines-slider__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100px;
}
@media (max-width: 568px) {
  .machines-section .machines-slider__nav {
    width: 80px;
    gap: 20px;
  }
}
.machines-section .machines-slider__nav .swiper-button-prev,
.machines-section .machines-slider__nav .swiper-button-next {
  position: static !important;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.machines-section .machines-slider__nav .swiper-button-prev::after,
.machines-section .machines-slider__nav .swiper-button-next::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 30px;
  color: #4A4AE6;
}
.machines-section .machines-slider__nav .swiper-button-prev::after {
  content: "\f137";
}
.machines-section .machines-slider__nav .swiper-button-next::after {
  content: "\f138";
}
.machines-section__title {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 20px;
}
.machines-section .machines-spec {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 100px;
}
.machines-section .machines-spec::-webkit-scrollbar {
  height: 8px;
}
.machines-section .machines-spec::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.machines-section .machines-spec::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
.machines-section .machines-spec .simplebar-horizontal .simplebar-scrollbar::before {
  height: 6px;
}
.machines-section .machines-spec .simplebar-scrollbar {
  background-color: #ccc;
}
.machines-section .machines-spec .simplebar-track {
  background-color: #fff;
}
.machines-section .machines-spec .simplebar-track.simplebar-horizontal {
  height: 5px;
}
.machines-section .machines-spec__table {
  min-width: 769px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.machines-section .machines-spec__thead {
  background-color: #F7F7F4;
}
.machines-section .machines-spec__th, .machines-section .machines-spec__td {
  padding: 15px;
  border-right: 1px solid #999;
  word-break: break-word;
}
.machines-section .machines-spec__th:last-child, .machines-section .machines-spec__td:last-child {
  border-right: none;
}
.machines-section .machines-spec__td {
  border-bottom: 1px solid #999;
}
.machines-section .machines-spec--wide-header .machines-spec__th:first-child,
.machines-section .machines-spec--wide-header .machines-spec__td:first-child {
  width: 90%;
}
.machines-section .machines-spec--wide-header .machines-spec__th:last-child,
.machines-section .machines-spec--wide-header .machines-spec__td:last-child {
  width: 10%;
}

.machines-slider {
  position: relative;
  margin-bottom: 100px;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}
.machines-slider__img {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 400px;
  aspect-ratio: 5/4.5;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  box-sizing: border-box;
}

.machines-video {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 200px;
  padding: 0;
}
@media (max-width: 568px) {
  .machines-video {
    margin-top: -100px;
    margin-bottom: 0;
  }
}
.machines-video__wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.machines-video__player {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 568px) {
  .machines-video__player {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/*-------------
採用情報
-------------*/
.page-template-recruit .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85vh;
  background-color: rgba(0, 0, 0, 0.3);
  mix-blend-mode: multiply;
  border-radius: 10px;
}
@media (max-width: 568px) {
  .page-template-recruit .overlay {
    width: 100%;
    left: 0;
    border-radius: 0;
    height: 100vh;
  }
}

.recruit__job .section-header, .recruit__data .section-header, .recruit__requirements .section-header {
  text-align: center;
}
.recruit__fv {
  position: relative;
  width: calc(100% - 50px);
  height: 80vh;
  overflow: visible;
  margin: 25px auto 0;
}
@media (max-width: 1025px) {
  .recruit__fv {
    margin: 80px auto 0;
  }
}
@media (max-width: 568px) {
  .recruit__fv {
    margin: 0 auto;
    height: 90vh;
    width: 100%;
  }
}
.recruit__fv-video {
  background-color: #999;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 85vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 568px) {
  .recruit__fv-video {
    width: 100%;
    left: 0;
    border-radius: 0;
    height: 100vh;
  }
}
.recruit__fv-content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 0 2rem;
}
@media (max-width: 568px) {
  .recruit__fv-content {
    bottom: 150px;
    padding: 0 1rem;
  }
}
.recruit__fv-heading {
  font-size: clamp(3rem, 1.846rem + 4.923vw, 5rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.recruit__fv-heading .u-show-pc {
  display: none;
}
@media (max-width: 1025px) {
  .recruit__fv-heading .u-show-pc {
    display: inline-block;
  }
}
.recruit__fv-subheading {
  font-size: clamp(1.5rem, 0.923rem + 2.462vw, 2.5rem);
}
.recruit__fv-cta {
  position: absolute;
  right: 50px;
  bottom: -100px;
  width: 200px;
  height: 200px;
  filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.25));
}
@media (max-width: 568px) {
  .recruit__fv-cta {
    width: 130px;
    height: 130px;
    right: 16px;
    bottom: 0;
  }
}
.recruit__fv-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/recruit/entry-btn.png") no-repeat;
  background-size: contain;
  animation: rotate 20s linear infinite;
  z-index: 1;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.recruit__fv-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  width: 200px;
  height: 200px;
}
@media (max-width: 568px) {
  .recruit__fv-link {
    width: 130px;
    height: 130px;
    font-size: 16px;
  }
}
.recruit__fv-link::before {
  content: "\f007";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
  font-size: 25px;
  margin-bottom: 5px;
}
@media (max-width: 568px) {
  .recruit__fv-link::before {
    font-size: 16px;
  }
}
.recruit__fv-link::after {
  content: "\f063";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block;
  font-size: 25px;
  margin-top: 15px;
}
@media (max-width: 568px) {
  .recruit__fv-link::after {
    font-size: 16px;
  }
}
.recruit__fv-link:hover::after {
  transform: translateY(3px);
  transition: transform 0.2s ease;
}
.recruit__intro {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/recruit/recruit__intro_bg-2.jpg");
  background-image: -webkit-image-set(url("../img/recruit/recruit__intro_bg-2.webp") type("image/webp"), url("../img/recruit/recruit__intro_bg-2.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/recruit/recruit__intro_bg-2.webp") type("image/webp"), url("../img/recruit/recruit__intro_bg-2.jpg") type("image/jpeg"));
  background-size: cover;
  background-blend-mode: multiply;
  padding: 250px 1rem 130px;
}
@media (max-width: 568px) {
  .recruit__intro {
    padding: 150px 20px 80px;
  }
}
.recruit__intro-inner {
  background-color: #fff;
  max-width: 1300px !important;
  padding: 100px 1rem !important;
  border-radius: 10px;
}
@media (max-width: 1025px) {
  .recruit__intro-inner {
    max-width: calc(100% - 50px) !important;
  }
}
@media (max-width: 568px) {
  .recruit__intro-inner {
    padding: 80px 20px !important;
    max-width: none !important;
  }
}
.recruit__intro-content {
  line-height: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.recruit__intro-lead {
  z-index: 99;
  color: #4A4AE6;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 568px) {
  .recruit__intro-lead {
    font-size: clamp(1.5rem, 1.024rem + 2.03vw, 2rem);
  }
}
.recruit__job-list {
  display: flex;
  gap: 70px;
  line-height: 2;
}
@media (max-width: 769px) {
  .recruit__job-list {
    gap: 30px;
  }
}
@media (max-width: 568px) {
  .recruit__job-list {
    display: block;
  }
}
.recruit__job-item {
  width: calc(100% - 70px);
}
@media (max-width: 568px) {
  .recruit__job-item {
    padding-bottom: 50px;
    margin: 0 auto;
  }
}
.recruit__job-img {
  border-radius: 0 20px;
  margin-bottom: 10px;
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 568px) {
  .recruit__job-img {
    max-height: 300px;
    display: block;
    margin: 0 auto 10px;
  }
}
.recruit__job-name {
  font-size: clamp(18px, 13.962px + 1.077vw, 25px);
  font-weight: 600;
  padding-bottom: 10px;
}
@media (max-width: 568px) {
  .recruit__job-name {
    text-align: center;
  }
}
.recruit__interview {
  position: relative;
  padding: 0;
  overflow-x: hidden;
}
.recruit__interview *,
.recruit__interview *::before,
.recruit__interview *::after {
  box-sizing: border-box;
}
@media (max-width: 568px) {
  .recruit__interview .section-header {
    text-align: center;
  }
}
.recruit__interview-inner {
  padding-bottom: 0 !important;
}
.recruit__interview-item {
  margin-bottom: 350px;
  position: relative;
}
@media (max-width: 1025px) {
  .recruit__interview-item {
    margin-bottom: 200px;
  }
}
@media (max-width: 568px) {
  .recruit__interview-item {
    padding-bottom: 0;
  }
}
.recruit__interview-item-inner {
  padding: 0 20px !important;
}
.recruit__interview-item-inner.is-open {
  padding: 200px 20px 0 !important;
}
.recruit__interview-item:nth-of-type(1) .recruit__interview-visual::before {
  content: "01";
}
.recruit__interview-item:nth-of-type(2) .recruit__interview-visual::before {
  content: "02";
}
.recruit__interview-item:nth-of-type(3) .recruit__interview-visual::before {
  content: "03";
}
@media (min-width: 770px) {
  .recruit__interview-item--reverse .recruit__interview-visual {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    position: relative;
  }
  .recruit__interview-item--reverse .recruit__interview-visual::before {
    left: auto;
    right: 15%;
    transform: translate(50%, -50%);
  }
  .recruit__interview-item--reverse .recruit__interview-photo-wrapper {
    width: 65vw;
    margin-left: 0;
    margin-right: auto;
  }
  .recruit__interview-item--reverse .recruit__interview-text {
    position: absolute;
    top: 65%;
    left: auto;
    transform: translateY(-50%);
    max-width: 620px;
    z-index: 2;
  }
  .recruit__interview-item--reverse .recruit__interview-btn {
    position: absolute;
    left: max(20px, (100vw - 1240px) / 2);
    right: auto;
  }
}
.recruit__interview-visual {
  position: relative;
}
@media (max-width: 568px) {
  .recruit__interview-visual {
    display: block;
    position: relative;
  }
}
.recruit__interview-visual::before {
  content: "01";
  position: absolute;
  font-size: clamp(240px, 201.165px + 10.356vw, 400px);
  font-weight: 500;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(to top, rgb(227, 235, 255), rgba(227, 235, 255, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: -1;
  top: 30%;
  left: 15%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 769px) {
  .recruit__interview-visual::before {
    top: 60%;
    right: 0;
    transform: translate(50%, 0);
  }
}
@media (max-width: 568px) {
  .recruit__interview-visual::before {
    font-size: 150px;
    bottom: 0;
    left: 25%;
  }
}
.recruit__interview-photo-wrapper {
  position: relative;
  width: 65vw;
  height: 500px;
  margin-left: auto;
  overflow: hidden;
}
@media (max-width: 769px) {
  .recruit__interview-photo-wrapper {
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    height: auto;
  }
}
@media (max-width: 568px) {
  .recruit__interview-photo-wrapper {
    width: 100%;
  }
}
.recruit__interview-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media (max-width: 568px) {
  .recruit__interview-photo {
    width: 100%;
    height: auto;
    display: block;
  }
}
.recruit__interview-text {
  position: absolute;
  top: 65%;
  left: max(20px, (100vw - 1240px) / 2);
  transform: translateY(-50%);
  width: 50%;
  max-width: 620px;
  z-index: 2;
}
@media (max-width: 769px) {
  .recruit__interview-text {
    position: relative;
    width: 100%;
    transform: none;
    margin-top: -20px;
    order: -1;
  }
}
.recruit__interview-catchphrase {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
  z-index: 2;
  position: relative;
  z-index: 99;
}
@media (max-width: 1025px) {
  .recruit__interview-catchphrase {
    font-size: clamp(20px, 17.115px + 0.769vw, 25px);
  }
}
.recruit__interview-catchphrase-line {
  display: inline-block;
  padding: 0 13px;
  background: linear-gradient(45deg, #E65149, #7A3CE5, #4A4AE6);
  margin-bottom: 15px;
}
.recruit__interview-meta {
  padding: 10px 12px;
  color: #4A4AE6;
  background-color: #fff;
  font-weight: 600;
  box-shadow: 5px 5px #E6EAF9;
  line-height: 1.8;
  display: inline-block;
}
.recruit__interview-btn {
  position: absolute;
  bottom: -20px;
  right: max(20px, (100vw - 1240px) / 2);
  white-space: nowrap;
  background: #E65149;
  border: 1px solid #E65149;
  color: #fff;
  font-weight: 600;
  z-index: 3;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
}
@media (max-width: 769px) {
  .recruit__interview-btn {
    bottom: 0;
  }
}
@media (max-width: 568px) {
  .recruit__interview-btn {
    position: static;
    display: block;
    margin: 30px auto 0;
    text-align: center;
  }
}
.recruit__interview-btn:hover::before {
  left: -75%;
  transition: none;
}
.recruit__interview-btn::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "+";
}
.recruit__interview-btn.is-open {
  background-color: #fff;
  color: #E65149;
  border: 1px solid #E65149;
}
.recruit__interview-btn.is-open::after {
  content: "\f068";
}
.recruit__interview-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}
.recruit__interview-content.is-open {
  max-height: 2500px;
  opacity: 1;
  padding-bottom: 50px;
}
@media (max-width: 1025px) {
  .recruit__interview-content.is-open {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 568px) {
  .recruit__interview-content.is-open {
    padding-bottom: 0;
  }
}
.recruit__interview-main {
  display: flex;
  gap: clamp(30px, 17.365px + 2.221vw, 60px);
  margin: 100px auto;
  align-items: stretch;
}
@media (max-width: 1023px) {
  .recruit__interview-main {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .recruit__interview-main picture {
    display: flex;
    order: 1;
  }
}
.recruit__interview-img {
  flex: 1 1 50%;
  min-width: 0;
  max-width: 550px;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1025px) {
  .recruit__interview-img {
    order: 2;
    margin: 0 auto 0;
  }
}
@media (max-width: 568px) {
  .recruit__interview-img {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.recruit__interview-img--01 {
  -o-object-position: 35% top;
     object-position: 35% top;
}
.recruit__interview-img--02 {
  -o-object-position: 80% top;
     object-position: 80% top;
}
.recruit__interview-body {
  flex: 1 1 50%;
  min-width: 0;
  line-height: 2;
}
@media (max-width: 568px) {
  .recruit__interview-body {
    order: 0;
    margin: 0 auto 40px;
    flex: none;
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden;
  }
}
.recruit__interview-qa {
  margin-bottom: 50px;
}
.recruit__interview-qa:last-child {
  margin-bottom: 0;
}
.recruit__interview-question {
  font-size: 20px;
  color: #4A4AE6;
  font-weight: 600;
  padding-bottom: 15px;
}
.recruit__interview-question::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url("../img/recruit/gradation_square_recruit.png") no-repeat center;
  background-size: contain;
  vertical-align: baseline;
}
@media (max-width: 568px) {
  .recruit__interview-question::before {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 568px) {
  .recruit__interview-question, .recruit__interview-answer {
    font-size: 16px;
    width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
  }
}
.recruit__interview-answer {
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
  display: block !important;
  width: 100%;
}
.recruit__interview-content-footer {
  background: linear-gradient(to top, #E6EAF9, #F2F5FF);
  border-radius: 15px;
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  max-width: 1240px;
}
@media (max-width: 1023px) {
  .recruit__interview-content-footer {
    margin: 50px auto;
    z-index: 10;
    display: flex;
    order: 1;
    position: relative;
  }
}
@media (max-width: 568px) {
  .recruit__interview-content-footer {
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 75px 0;
    left: auto;
    transform: none;
    bottom: auto;
  }
}
.recruit__interview-content-footer::before {
  content: "MESSAGE";
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 4.3rem;
  position: absolute;
  top: 0;
  right: 5%;
  line-height: 0.65;
}
@media (max-width: 568px) {
  .recruit__interview-content-footer::before {
    overflow: hidden;
    font-size: 3rem;
  }
}
.recruit__interview-content-message {
  width: 60%;
  line-height: 2;
  position: relative;
  overflow: visible;
  margin: 0 auto;
  padding: 75px 0;
}
@media (max-width: 568px) {
  .recruit__interview-content-message {
    width: 80%;
    padding: 0;
  }
}
.recruit__interview-content-message::before {
  content: "";
  background-image: url("../img/recruit/recruit_interview-before.svg");
  position: absolute;
  width: 100px;
  height: 100px;
  top: -20px;
  left: -10%;
  z-index: 99;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1025px) {
  .recruit__interview-content-message::before {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 568px) {
  .recruit__interview-content-message::before {
    width: 60px;
    height: 60px;
    top: -100px;
  }
}
.recruit__interview-content-message::after {
  content: "";
  background-image: url("../img/recruit/recruit_interview-after.svg");
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -35px;
  right: -10%;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1025px) {
  .recruit__interview-content-message::after {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 568px) {
  .recruit__interview-content-message::after {
    width: 60px;
    height: 60px;
    bottom: -100px;
  }
}
.recruit__data-inner {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/recruit/recruit__data_bg.jpg");
  background-image: -webkit-image-set(url("../img/recruit/recruit__data_bg.webp") type("image/webp"), url("../img/recruit/recruit__data_bg.jpg") type("image/jpeg"));
  background-image: image-set(url("../img/recruit/recruit__data_bg.webp") type("image/webp"), url("../img/recruit/recruit__data_bg.jpg") type("image/jpeg"));
  background-size: cover;
  background-blend-mode: multiply;
  max-width: 1500px !important;
  padding: 100px 20px !important;
}
.recruit__data-title, .recruit__data-subtitle {
  color: #fff;
}
.recruit__data-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}
@media (max-width: 900px) {
  .recruit__data-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .recruit__data-row {
    display: flex !important;
    gap: 20px;
    width: 100%;
  }
  .recruit__data-row .recruit__data-item {
    flex: 1;
    min-width: 0;
  }
}
.recruit__data-note {
  color: #fff;
  font-size: 13px;
}
.recruit__data-item {
  background: #fff;
  padding: 30px;
  border-radius: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 769px) {
  .recruit__data-item {
    padding: 30px 20px;
  }
}
.recruit__data-item[data-order="1"] {
  grid-column: 1/2;
  grid-row: 1/3;
  position: relative;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="1"] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
.recruit__data-item[data-order="2"] {
  grid-column: 2/3;
  grid-row: 1/2;
  position: relative;
}
.recruit__data-item[data-order="2"]::before {
  content: "\f183";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #4A4AE6;
  font-size: 50px;
  position: absolute;
  top: 10%;
  left: 10%;
}
.recruit__data-item[data-order="2"]::after {
  content: "\f182";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #E65149;
  font-size: 50px;
  position: absolute;
  bottom: 10%;
  right: 10%;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="2"] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .recruit__data-item[data-order="2"]::before, .recruit__data-item[data-order="2"]::after {
    font-size: 40px;
  }
}
.recruit__data-item[data-order="3"] {
  grid-column: 3/4;
  grid-row: 1/2;
  position: relative;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="3"] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
.recruit__data-item[data-order="4"] {
  grid-column: 4/5;
  grid-row: 1/2;
  position: relative;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="4"] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
.recruit__data-item[data-order="4"]::after {
  content: "\f508";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #C2C2F1;
  font-size: 50px;
  position: absolute;
  top: 5%;
  right: 5%;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="4"]::after {
    font-size: 40px;
  }
}
.recruit__data-item[data-order="5"] {
  grid-column: 2/3;
  grid-row: 2/3;
  position: relative;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="5"] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
.recruit__data-item[data-order="5"]::after {
  content: "\f0b1";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #C2C2F1;
  font-size: 60px;
  position: absolute;
  top: 5%;
  left: 5%;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="5"]::after {
    font-size: 40px;
  }
}
.recruit__data-item[data-order="6"] {
  grid-column: 3/4;
  grid-row: 2/3;
  position: relative;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="6"] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
.recruit__data-item[data-order="6"]::after {
  content: "\f073";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #C2C2F1;
  font-size: 60px;
  position: absolute;
  bottom: 5%;
  right: 5%;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="6"]::after {
    font-size: 40px;
  }
}
.recruit__data-item[data-order="7"] {
  grid-column: 4/5;
  grid-row: 2/3;
}
.recruit__data-item[data-order="7"]::after {
  content: "（在籍期間3年以上）";
  font-size: 13px;
  color: #333;
}
@media (max-width: 769px) {
  .recruit__data-item[data-order="7"] {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
.recruit__data-label {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 24px 0;
  text-align: center;
  z-index: 1;
}
.recruit__data-number {
  font-size: 18px;
  margin: 0;
  z-index: 1;
}
.recruit__data-number-large {
  font-size: 50px;
  font-weight: 600;
  color: #4A4AE6;
}
.recruit__data-number-small {
  color: #666;
}
.recruit__data-number--male {
  color: #4A4AE6;
}
.recruit__data-number--female {
  color: #E65149;
}
.recruit__data-chart {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}
.recruit__data-chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.recruit__data-chart-center {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -46%);
  text-align: center;
  opacity: 0;
}
.recruit__data-chart-center::before {
  content: "合計";
  font-size: 13px;
  color: #333;
}
.recruit__data-chart--bar {
  width: 100%;
  height: auto;
}
.recruit__data .donut-background {
  fill: none;
  stroke: #f0f0f0;
  stroke-width: 30;
}
.recruit__data .donut-segment {
  fill: none;
  stroke-width: 30;
  transition: stroke-width 0.3s ease;
  stroke-dasharray: 0 1000;
}
.recruit__data .donut-segment--first {
  stroke: #4A4AE6;
}
.recruit__data .donut-segment--second {
  stroke: #13C0A3;
}
.recruit__data .donut-segment--third {
  stroke: #E65149;
}
.recruit__data-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
.recruit__data-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}
.recruit__data-legend .legend-color {
  width: 16px;
  height: 16px;
  border-radius: 3px;
}
.recruit__data-legend .legend-color--first {
  background: #4A4AE6;
}
.recruit__data-legend .legend-color--second {
  background: #13C0A3;
}
.recruit__data-legend .legend-color--third {
  background: #E65149;
}
.recruit__data-bar {
  display: flex;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}
.recruit__data-bar-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  position: relative;
}
.recruit__data-bar-segment--liberal {
  width: 0;
  background-color: #E65149;
}
.recruit__data-bar-segment--science {
  width: 0;
  background-color: #4A4AE6;
}
.recruit__data-bar-text {
  font-size: 14px;
  opacity: 0;
}
.recruit__data-bar-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.recruit__data-bar-label {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
}
.recruit__data.is-visible .recruit__data-item {
  animation: fadeInUp 0.6s ease-out forwards;
}
.recruit__data.is-visible .donut-segment {
  animation: donutFill 1.5s ease-out forwards;
}
.recruit__data.is-visible .donut-segment--first {
  animation-delay: 0.2s;
}
.recruit__data.is-visible .donut-segment--second {
  animation-delay: 0.6s;
}
.recruit__data.is-visible .donut-segment--third {
  animation-delay: 1s;
}
.recruit__data.is-visible .recruit__data-chart-center {
  animation: fadeInCenter 0.5s ease-out 1.5s forwards;
}
.recruit__data.is-visible .recruit__data-bar-segment--science {
  animation: barGrowScience 0.5s ease-out 0.3s forwards;
}
.recruit__data.is-visible .recruit__data-bar-segment--liberal {
  animation: barGrowLiberal 0.5s ease-out 0.5s forwards;
}
.recruit__data.is-visible .recruit__data-bar-text {
  animation: fadeIn 0.5s ease-out 1s forwards;
}
.recruit__data.is-visible .recruit__data-bar-label {
  animation: fadeIn 0.5s ease-out 1s forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes donutFill {
  from {
    stroke-dasharray: 0 1000;
  }
  to {
    stroke-dasharray: 1000 1000;
  }
}
@keyframes barGrowLiberal {
  from {
    width: 0;
  }
  to {
    width: 12.5%;
  }
}
@keyframes barGrowScience {
  from {
    width: 0;
  }
  to {
    width: 87.5%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInCenter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.recruit__feature {
  position: relative;
}
@media (max-width: 568px) {
  .recruit__feature .section-header {
    text-align: center;
  }
}
.recruit__feature::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 150%;
  background: linear-gradient(to bottom, rgb(227, 235, 255), rgba(227, 235, 255, 0.3));
  pointer-events: none;
  z-index: -100;
}
.recruit__feature-item {
  display: flex;
  gap: clamp(1.25rem, -0.063rem + 3.698vw, 4.375rem);
  align-items: center;
  margin-bottom: 150px;
  position: relative;
}
@media (max-width: 1025px) {
  .recruit__feature-item {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 568px) {
  .recruit__feature-item {
    margin-bottom: 80px;
  }
}
.recruit__feature-item:nth-child(3) {
  flex-direction: row-reverse;
}
@media (max-width: 1025px) {
  .recruit__feature-item:nth-child(3) {
    flex-direction: row;
  }
}
.recruit__feature-item:last-child {
  margin-bottom: 0;
}
.recruit__feature-img {
  flex: 1 1 50%;
  min-width: 0;
  max-width: 540px;
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 20px;
}
@media (max-width: 1025px) {
  .recruit__feature-img {
    margin: 0 auto;
  }
}
@media (max-width: 568px) {
  .recruit__feature-img {
    height: 275px;
  }
}
.recruit__feature-content {
  flex: 1 1 50%;
  line-height: 2;
  width: 100%;
  z-index: 10;
}
.recruit__feature-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 568px) {
  .recruit__feature-heading {
    font-size: 20px;
  }
}
.recruit__feature-heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  transform: translateY(-5%);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 118px;
}
@media (max-width: 568px) {
  .recruit__feature-heading::before {
    overflow-x: hidden;
    width: 82px;
    height: 53px;
    transform: translateY(15%);
  }
}
.recruit__feature-item:nth-of-type(2) .recruit__feature-heading::before {
  background-image: url("../img/recruit/feature-01.svg");
}
.recruit__feature-item:nth-of-type(3) .recruit__feature-heading::before {
  background-image: url("../img/recruit/feature-02.svg");
}
.recruit__feature-item:nth-of-type(4) .recruit__feature-heading::before {
  background-image: url("../img/recruit/feature-03.svg");
}
.recruit__gallery {
  max-width: 100%;
  overflow-x: hidden;
}
.recruit__gallery-slider {
  width: -moz-max-content;
  width: max-content;
  animation: scroll 80s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.recruit__gallery-track {
  display: flex;
}
.recruit__gallery-image {
  height: 400px;
}
@media (max-width: 769px) {
  .recruit__gallery-image {
    height: 300px;
  }
}
@media (max-width: 568px) {
  .recruit__gallery-image {
    height: 250px;
  }
}
.recruit__requirements {
  background-color: #F7F7F4;
}
.recruit__requirements-tabs {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 70px;
}
@media (max-width: 568px) {
  .recruit__requirements-tabs {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.recruit__requirements-tab {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
  max-width: 250px;
  width: 100%;
  padding: 20px;
  border-radius: 40px;
  text-align: center;
  transition: 0.2s ease;
}
.recruit__requirements-tab:hover {
  background-color: #4A4AE6;
  border: 1px solid #4A4AE6;
  color: #fff;
}
.recruit__requirements-tab--active {
  background-color: #4A4AE6;
  border: 1px solid #4A4AE6;
  color: #fff;
}
.recruit__requirements-content {
  max-width: 1200px;
  background-color: #fff;
  border-radius: 10px;
  line-height: 2;
}
.recruit__requirements-content--press-t, .recruit__requirements-content--press-a, .recruit__requirements-content--machining {
  display: none;
  padding: 80px;
}
@media (max-width: 568px) {
  .recruit__requirements-content--press-t, .recruit__requirements-content--press-a, .recruit__requirements-content--machining {
    padding: 50px 20px;
  }
}
.recruit__requirements-content.is-active {
  display: block;
}
.recruit__requirements-list {
  max-width: 1000px;
  margin: 0 auto 40px;
}
.recruit__requirements-item {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px solid #4A4AE6;
  margin-bottom: 20px;
}
@media (max-width: 568px) {
  .recruit__requirements-item {
    display: block;
  }
}
.recruit__requirements-term {
  color: #4A4AE6;
  width: 8rem;
}
.recruit__requirements-desc {
  flex: 1;
}
.recruit__requirements-btn {
  text-align: center;
  margin: 0 auto;
  display: block;
}

/*-------------
プライバシーポリシー
-------------*/
.privacy-policy {
  line-height: 2;
}
.privacy-policy__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 200px 20px;
}
@media (max-width: 1025px) {
  .privacy-policy__inner {
    padding: 100px 20px;
  }
}
@media (max-width: 568px) {
  .privacy-policy__inner {
    padding: 80px 20px;
  }
}
.privacy-policy__intro-text {
  padding-bottom: 70px;
}
.privacy-policy__item {
  padding-bottom: 50px;
}
.privacy-policy__heading {
  font-size: 24px;
  padding-bottom: 20px;
}
@media (max-width: 568px) {
  .privacy-policy__heading {
    font-size: 20px;
  }
  .privacy-policy__heading::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    background: url("../img/common/gradation_square.png") no-repeat center;
    background-size: contain;
    vertical-align: baseline;
  }
}
.privacy-policy__text--has-list {
  padding-bottom: 0;
}
.privacy-policy__list {
  list-style: inside;
}

/*-------------
サイトポリシー
-------------*/
.site-policy {
  line-height: 2;
}
.site-policy__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 200px 20px;
}
@media (max-width: 1025px) {
  .site-policy__inner {
    padding: 100px 20px;
  }
}
@media (max-width: 568px) {
  .site-policy__inner {
    padding: 80px 20px;
  }
}
.site-policy__heading {
  font-size: 24px;
  padding-bottom: 20px;
}
@media (max-width: 568px) {
  .site-policy__heading {
    font-size: 20px;
  }
  .site-policy__heading::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    background: url("../img/common/gradation_square.png") no-repeat center;
    background-size: contain;
    vertical-align: baseline;
  }
}
.site-policy__item {
  padding-bottom: 50px;
}
.site-policy__list {
  list-style-type: decimal;
  padding-left: 1rem;
}
.site-policy__list-item {
  padding-bottom: 20px;
}
.site-policy__text {
  padding-bottom: 50px;
}
.site-policy__text:last-child {
  padding-bottom: 0;
}
.site-policy__link {
  word-break: break-all;
}

/*-------------
コンタクトフォーム
-------------*/
.contact--lead .contact__inner {
  padding: 200px 0 50px;
}
@media (max-width: 568px) {
  .contact--lead .contact__inner {
    padding: 80px 20px 30px;
  }
}
.contact--form .contact__inner {
  padding: 0 0 200px;
}
@media (max-width: 769px) {
  .contact--form .contact__inner {
    padding: 150px 20px;
  }
}
@media (max-width: 568px) {
  .contact--form .contact__inner {
    padding: 0 20px 80px;
  }
}
.contact__inner {
  max-width: 900px;
  margin: 0 auto;
}
.contact__lead-text {
  padding-bottom: 50px;
}
.contact__info-text {
  padding-bottom: 50px;
  line-height: 2;
}
.contact__info-text:last-child {
  padding-bottom: 0;
}
.contact__heading {
  font-size: 24px;
  padding-bottom: 20px;
}
@media (max-width: 568px) {
  .contact__heading {
    font-size: 20px;
  }
  .contact__heading::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    background: url("../img/common/gradation_square.png") no-repeat center;
    background-size: contain;
    vertical-align: baseline;
  }
}

.contact-form__item {
  margin-bottom: 50px;
}
.contact-form__label {
  display: block;
  padding-bottom: 10px;
}
.contact-form__required {
  color: #fff;
  background-color: #6C6CE9;
  padding: 0 5px;
  margin-left: 0.5rem;
}
.contact-form__select, .contact-form__input, .contact-form__textarea {
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  display: block;
  width: 100%;
  max-width: 900px;
  padding: 0.8rem;
  box-sizing: border-box;
}
.contact-form__select-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 900px;
}
.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  display: block;
  width: 100%;
  padding: 0.8rem;
  padding-right: 2.5rem;
  box-sizing: border-box;
  cursor: pointer;
}
.contact-form__select-icon {
  position: absolute;
  right: 0.8rem;
  top: 30%;
  transform: translateY(-30%);
  pointer-events: none;
  color: #4A4AE6;
  font-size: 16px;
}
.contact-form__privacy {
  text-align: center;
  margin-bottom: 50px;
}
.contact-form__privacy input[type=checkbox] {
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  margin: 3px;
  vertical-align: baseline;
}
.contact-form__privacy-link {
  margin-bottom: 20px;
}
.contact-form__link {
  border-bottom: 1px solid #333;
}
.contact-form__checkbox-input {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
  background-color: initial;
  border: 1px solid #D9D9D9;
}
.contact-form__button {
  text-align: center;
}
.contact-form__note {
  margin-top: 50px;
}

.wpcf7-spinner {
  display: none !important;
}

.contact-thanks__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 200px 20px;
}

/*-------------
お知らせ一覧
-------------*/
.news__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 200px 20px;
}
@media (max-width: 1025px) {
  .news__inner {
    padding: 100px 20px;
  }
}
@media (max-width: 568px) {
  .news__inner {
    padding: 80px 20px;
  }
}
.news__list {
  width: 100%;
  margin-bottom: 50px;
}
.news__item {
  border-bottom: 1px solid #ddd;
}
.news__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  transition: transform 0.3s ease;
}
.news__link:hover {
  opacity: 0.7;
}
.news__link:hover .news__icon {
  transform: translateX(5px);
}
.news__date {
  padding-right: 45px;
}
.news__icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.news__pagination-list {
  display: flex;
  justify-content: center;
}
.news__pagination-item {
  padding: 0 0.8rem;
}
.news__pagination-link {
  transition: opacity 0.3s ease;
}
.news__pagination-link:hover {
  opacity: 0.7;
}
.news .pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.news .pagination .nav-links .current {
  font-weight: 600;
}
.news .pagination .page-numbers:hover {
  opacity: 0.7;
}

/*-------------
お知らせ記事
-------------*/
.news-detail__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 200px 20px;
}
@media (max-width: 1025px) {
  .news-detail__inner {
    padding: 100px 20px;
  }
}
@media (max-width: 568px) {
  .news-detail__inner {
    padding: 80px 20px;
  }
}
.news-detail__meta {
  display: flex;
  padding-bottom: 20px;
}
.news-detail__category {
  font-size: 13px;
  padding: 3px;
  background-color: #4A4AE6;
  color: #fff;
  margin-right: 7px;
  vertical-align: middle;
}
.news-detail__date {
  display: block;
  color: #4A4AE6;
}
.news-detail__title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
.news-detail__content {
  line-height: 2;
  margin-bottom: 100px;
}
.news-detail__content .wp-post-image {
  display: block;
  margin: 0 auto 2rem;
  max-width: 100%;
  height: auto;
}
.news-detail__btn-area {
  text-align: center;
}

/*-------------
サイトマップ
-------------*/
.sitemap {
  line-height: 3;
}
.sitemap__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 200px 20px;
  display: flex;
  gap: 80px;
}
@media (max-width: 1025px) {
  .sitemap__inner {
    padding: 100px 20px;
  }
}
@media (max-width: 568px) {
  .sitemap__inner {
    padding: 80px 20px;
    display: block;
  }
}
.sitemap__group {
  width: calc(100% - 50px);
}
@media (max-width: 568px) {
  .sitemap__group {
    margin: 0 auto 20px;
  }
  .sitemap__group:last-child {
    margin-bottom: 0;
  }
}
.sitemap__list--business, .sitemap__list--product, .sitemap__list--recruit, .sitemap__list--news {
  margin-bottom: 20px;
}
.sitemap__list--business > .sitemap__item--parent {
  border-bottom: 1px solid #ddd;
}
.sitemap__item--parent {
  font-size: 18px;
  font-weight: 600;
}
.sitemap__item:not(.sitemap__item--parent) {
  padding-left: 1rem;
}
.sitemap__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #ddd;
  width: 100%;
}
.sitemap__link::after {
  position: absolute;
  right: 0;
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9em;
  color: #4A4AE6;
  display: inline-block;
}
.sitemap__link:hover::after {
  transform: translateX(3px);
  transition: transform 0.2s ease;
}

.not-found__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 200px 20px;
}
@media (max-width: 1025px) {
  .not-found__inner {
    padding: 100px 20px;
  }
}
@media (max-width: 568px) {
  .not-found__inner {
    padding: 80px 20px;
  }
}
.not-found__heading {
  padding-bottom: 20px;
}
.not-found__text {
  line-height: 2;
  margin-bottom: 50px;
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #4A4AE6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.page-top:hover {
  background-color: #555;
  transform: translateY(-3px);
}

@media (max-width: 568px) {
  .page-index .page-top {
    margin-bottom: 90px;
  }
}

@media (max-width: 568px) {
  body.home .page-top {
    margin-bottom: 115px;
  }
}

/* 表示時の状態 */
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */