@charset "UTF-8";
.product-introduction {
  margin: 40px 0;
  padding: 20px;
  border-left: 5px solid #EF4123;
}
.product-introduction .product-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 30px;
}
.product-introduction .related-images {
  flex: 0.6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.product-introduction .related-images img {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}
.product-introduction .product-image {
  flex: 1.4;
  display: flex;
  align-items: center;
}
.product-introduction .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-introduction .product-description {
  clear: both;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .product-introduction .product-content {
    flex-direction: column-reverse;
  }
  .product-introduction .related-images, .product-introduction .product-image {
    flex: 1 1 100%;
  }
  .product-introduction .related-images img {
    height: auto;
    margin-bottom: 0;
  }
}

.caption {
  display: none; /* モバイル用のキャプションは初期状態で非表示 */
}

.global-caption {
  display: none; /* PCでのみ表示するキャプション */
}

@media (max-width: 768px) {
  .product-content {
    flex-direction: column-reverse;
  }
  .related-images img {
    height: auto;
    margin-bottom: 0;
  }
  .caption {
    display: block; /* モバイルでは各画像の下に表示 */
  }
  .global-caption {
    display: none; /* モバイルでは表示しない */
  }
}
@media (min-width: 769px) {
  .caption {
    display: none; /* PCでは個別のキャプションを非表示 */
  }
  .global-caption {
    display: block; /* PCでは3つの画像の下に表示 */
  }
}
.recruit-page {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}
.recruit-page h2 {
  font-size: 28px;
  color: #EF4123;
  margin-bottom: 20px;
}
.recruit-page .section {
  margin-bottom: 120px;
}
.recruit-page .text {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.recruit-page .table__wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.recruit-page .table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.recruit-page .table th, .recruit-page .table td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 16px;
  white-space: nowrap;
}
.recruit-page .c-button__list {
  max-width: 325px;
  margin: 20px auto;
  background-color: #EF4123;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}
.recruit-page .c-button__list button {
  width: 100%;
  padding: 20px;
  font-size: 20px;
  color: #fff;
  background-color: #EF4123;
  border: none;
  cursor: pointer;
}
@media (max-width: 600px) {
  .recruit-page .flex2 {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 1023px) {
  .recruit-page {
    padding: 20px 10px;
  }
  .recruit-page h2 {
    font-size: 24px;
  }
  .recruit-page .text {
    font-size: 14px;
  }
  .recruit-page .table {
    min-width: 100%;
  }
  .recruit-page th, .recruit-page td {
    padding: 8px;
  }
  .recruit-page .c-button__list button {
    padding: 12px;
    font-size: 14px;
  }
}

.table, .table th, .table td {
  font-family: "Noto Sans JP", sans-serif !important;
}
.table td, .table th td, .table td td {
  font-size: 20px;
}
@media (max-width: 1023px) {
  .table th, .table td, .table th th, .table th td, .table td th, .table td td {
    padding: 10px;
  }
}

.greeting {
  padding: 20px;
  margin: 30px 0;
  background-color: #f9f9f9;
  border-left: 5px solid #EF4123;
  font-size: 16px;
  line-height: 1.8;
}
.greeting__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #EF4123;
}
.greeting__content {
  font-size: 20px;
  line-height: 1.8;
}
@media (max-width: 1023px) {
  .greeting {
    padding: 15px;
    margin: 20px 0;
  }
  .greeting__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .greeting__content {
    font-size: 14px;
    line-height: 1.6;
  }
}

.recruitment__item h3 {
  font-size: 20px;
  color: #EF4123;
  margin-bottom: 15px;
}

.job-title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.feature {
  margin-bottom: 30px;
}
.feature h4 {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.feature h4 span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #EF4123;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 10px;
  font-size: 18px;
}
.feature p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 10px;
}

.qualifications {
  margin: 30px 0;
  padding: 20px;
}
.qualifications__item {
  margin-bottom: 20px;
}
.qualifications__item h3 {
  font-size: 20px;
  color: #EF4123;
  margin-bottom: 10px;
}
.qualifications__item ul {
  list-style-type: none;
  padding-left: 0;
}
.qualifications__item ul li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.qualifications__item p {
  font-size: 16px;
}

.gallery {
  margin: 40px 0;
  text-align: center;
}
.gallery__items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery__item {
  flex: 1;
  max-width: 30%;
  box-sizing: border-box;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.gallery__item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.gallery__item p {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}
.gallery__item:hover {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .gallery__item {
    max-width: 48%;
  }
}
@media (max-width: 768px) {
  .gallery__item {
    max-width: 100%;
    flex-basis: 100%;
  }
}/*# sourceMappingURL=recruit.css.map */