@charset "UTF-8";
/**
 * Product Details Styles
 */
/***＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊
ブレイクポイント設定
*＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
/********************/
/********************/
/********************/
.ast-site-title-wrap {
  display: none !important;
}

.ast-builder-menu-1 .menu-item > .menu-link {
  position: relative;
}
.ast-builder-menu-1 .menu-item > .menu-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.ast-builder-menu-1 .menu-item > .menu-link:hover {
  color: #fff !important;
}
.ast-builder-menu-1 .menu-item > .menu-link:hover::after {
  transform: scaleX(1);
}

.ast-builder-menu-1 .sub-menu .menu-item > .menu-link:hover {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu {
  background-color: #105cb4 !important;
}

.ast-page-builder-template .site .site-content #primary.post-rental-product {
  max-width: 1250px;
  margin: 80px auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .ast-page-builder-template .site .site-content #primary.post-rental-product {
    padding: 0 20px;
  }
}

.product-details {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .product-details {
    flex-wrap: wrap;
    margin: 0 auto 40px;
  }
}
.product-details__gallery {
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  .product-details__gallery {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .product-details__gallery {
    max-width: 100%;
  }
}
.product-details__main-image {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  cursor: zoom-in;
}
.product-details__main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease-in-out;
}
.product-details__thumbnails {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-details__thumbnails--count-5 {
  justify-content: space-between;
}
.product-details__thumbnail-item {
  cursor: pointer;
  border: 1px solid #ddd;
  width: 80px;
  height: auto;
  overflow: hidden;
}
.product-details__thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}
.product-details__thumbnail-item:hover img {
  opacity: 0.7;
}
.product-details__thumbnail-item.is-active {
  border-color: #333;
}
.product-details__info {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .product-details__info {
    max-width: 100%;
  }
}
.product-details__title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 25px;
}
.product-details__pagination {
  display: none;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 15px auto 0;
}
@media screen and (max-width: 768px) {
  .product-details__pagination {
    display: flex;
  }
}
.product-details__pagination-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.product-details__pagination-dot.is-active {
  background-color: #333;
}
.product-details__pricing {
  background-color: #f0f6ff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #cce0ff;
}
.product-details__price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-details__price-item:not(:last-child) {
  margin-bottom: 15px;
}
.product-details__price-label {
  font-weight: bold;
}
.product-details__price-value {
  font-size: 1.4em;
  font-weight: bold;
  color: #0056b3;
}
.product-details__price-tax {
  font-size: 0.7em;
}
.product-details__spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.product-details__spec-row {
  border: 1px solid #ddd;
}
.product-details__spec-header, .product-details__spec-data {
  padding: 12px 15px;
  text-align: left;
  vertical-align: top;
}
.product-details__spec-header {
  background-color: #f5f5f5;
  font-weight: bold;
  width: 150px;
}
.product-details__shipping-options {
  list-style: none;
  margin: 0;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  border-radius: 5px;
  background-color: #f9fafb;
}
@media screen and (max-width: 500px) {
  .product-details__shipping-options {
    grid-template-columns: 1fr;
  }
}
.product-details__shipping-item {
  font-size: 0.8em;
}
.product-details__shipping-status {
  margin-left: 0.5em;
  font-weight: bold;
}
.product-details__shipping-status--available {
  color: green;
}
.product-details__shipping-status--unavailable {
  color: #cc0000; /* ✕ の色 */
}
.product-details__actions {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-details__action-button {
  display: block;
  width: 100%;
  padding: 18px 20px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}
.product-details__action-button--primary {
  background-color: #EF4444;
  color: #fff;
  border-color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details__action-button--primary::before {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.5em;
  background-color: currentColor;
  -webkit-mask-image: url("../images/icon-tel.svg");
  mask-image: url("../images/icon-tel.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
@media screen and (min-width: 769px) {
  .product-details__action-button--primary {
    pointer-events: none;
    cursor: default;
  }
}
.product-details__action-button--primary:hover {
  background-color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
  border-color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}
.product-details__action-button--secondary {
  background-color: #fff;
  color: #2563EB;
  border: 2px solid #2563EB;
}
.product-details__action-button--secondary:hover {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  border-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  color: #fff;
}

.category-list-section {
  padding: 40px 0;
}
.category-list-section__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .category-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category-list__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-list__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.category-list__item:hover .category-list__image {
  transform: scale(1.05);
}
.category-list__item:hover .category-list__overlay {
  background-color: rgba(0, 0, 0, 0.6);
}
.category-list__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}
.category-list__image {
  width: 100%;
  padding-top: 71.43%; /* アスペクト比 7:5 (700px × 500px) */
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.category-list__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}
.category-list__name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
  .product-details__phone-text {
    display: none;
  }
}

.product-information {
  margin: 60px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.product-information__section:not(:last-child) {
  margin-bottom: 50px;
}
.product-information__title {
  font-size: 1.5em;
  font-weight: bold;
  padding-bottom: 10px;
}
.product-information__content {
  line-height: 1.7;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.product-features__item {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.5em;
}
.product-features__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: green;
  font-weight: bold;
}

.post-content-area {
  margin: 60px auto;
}
.post-content-area__content {
  line-height: 1.7;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.related-products {
  margin: 150px auto 40px;
}
.related-products__title {
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.related-products__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .related-products__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .related-products__list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
  }
  .related-products__list::-webkit-scrollbar {
    display: none;
  }
  .related-products__list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.related-products__item {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  .related-products__item {
    scroll-snap-align: start;
    flex: 0 0 85%;
  }
}
.related-products__thumbnail-link {
  display: block;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.related-products__thumbnail-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.related-products__thumbnail-link:hover img {
  transform: scale(1.05);
}
.related-products__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.related-products__item-title {
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
.related-products__item-title a {
  text-decoration: none;
  color: #333;
}
.related-products__item-title a:hover {
  text-decoration: underline;
}
.related-products__meta {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.related-products__meta .meta-label {
  font-weight: bold;
}
.related-products__meta a {
  color: #666;
  text-decoration: none;
}
.related-products__meta a:hover {
  text-decoration: underline;
}
.related-products__categories:not(:empty), .related-products__tags:not(:empty) {
  margin-bottom: 5px;
}
.related-products__button {
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: auto;
  transition: background-color 0.2s;
}
.related-products__button:hover {
  background-color: rgb(89.25, 89.25, 89.25);
  color: #fff;
}

.cta-section {
  position: relative;
  width: 90%;
  padding: 80px 40px;
  margin: 80px auto;
  max-width: 1200px;
  /* TODO: 背景画像のパスを正しいものに更新してください */
  background-image: linear-gradient(to right, rgb(37, 99, 235), rgb(8, 145, 178));
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }
}
.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section__title {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0 0 20px 0;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta-section__title {
    font-size: 1.8em;
  }
}
.cta-section__description {
  font-size: 1.1em;
  margin: 0 0 40px 0;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .cta-section__description {
    font-size: 1em;
  }
}
.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-section__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  min-width: 280px;
  box-sizing: border-box;
}
.cta-section__button--primary {
  background-color: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section__button--primary:hover {
  background-color: #f9fafb;
}
.cta-section__button--secondary {
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  pointer-events: none;
  cursor: none;
}
@media screen and (max-width: 768px) {
  .cta-section__button--secondary:hover {
    pointer-events: auto;
    cursor: pointer;
  }
}
.cta-section__button-label {
  font-size: 0.8em;
}
.cta-section__button-phone {
  font-size: 1.5em;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.cta-section__button-phone::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.3em;
  background-color: currentColor;
  -webkit-mask-image: url("../images/icon-tel.svg");
  mask-image: url("../images/icon-tel.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media (max-width: 1200px) {
  .product-details {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .product-details__thumbnails {
    display: none;
  }
}
/* Lightbox Styles */
#product-lightbox {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  cursor: zoom-out;
}
#product-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: default;
}
#product-lightbox .product-lightbox__close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
#product-lightbox .product-lightbox__close:hover, #product-lightbox .product-lightbox__close:focus {
  color: #bbb;
  text-decoration: none;
}

.archive .ast-article-post .post-thumb,
.blog .ast-article-post .post-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.archive .ast-article-post .post-thumb img,
.blog .ast-article-post .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.archive .ast-article-post:hover .post-thumb img,
.blog .ast-article-post:hover .post-thumb img {
  transform: scale(1.05);
}

.ast-blog-single-element.ast-taxonomy-container a {
  background-color: #EFF6FF;
  padding: 10px 20px;
  border-radius: 5px;
}

.ast-no-thumb .ast-blog-featured-section {
  margin-bottom: 1.5em;
}

.ast-separate-container .site-content .ast-single-post-featured-section + article {
  margin-top: 0 !important;
}

body.single #secondary .widget {
  padding: 0 !important;
}

.ast-right-sidebar #primary {
  border-right: none !important;
}

.ast-right-sidebar #secondary {
  border-left: none !important;
}

.header.entry-header:not(.related-entry-header) .post-thumb img,
.ast-single-post-featured-section.post-thumb img,
.site-content .ast-single-post-featured-section img {
  max-width: 100%;
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
}

.event-featured-image {
  margin-bottom: 40px;
}
.event-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.event-info-container {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-info-section {
  margin-bottom: 40px;
}
.event-info-section:last-child {
  margin-bottom: 0;
}
.event-info-section__title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #2563EB;
  color: #333;
}
.event-info-section__content {
  line-height: 1.8;
  color: #333;
  font-size: 1.05em;
}

.event-info-table {
  width: 100%;
  border-collapse: collapse;
}
.event-info-table__row {
  border-bottom: 1px solid #e0e0e0;
}
.event-info-table__row:last-child {
  border-bottom: none;
}
.event-info-table__header {
  width: 150px;
  padding: 15px 20px;
  background-color: #f8f9fa;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  color: #333;
}
@media screen and (max-width: 768px) {
  .event-info-table__header {
    width: 120px;
    padding: 12px 15px;
  }
}
.event-info-table__data {
  padding: 15px 20px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .event-info-table__data {
    padding: 12px 15px;
  }
}
.event-info-table__data a {
  word-break: break-all;
  overflow-wrap: break-word;
}

.event-official-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2563EB;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.event-official-link:hover {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.front-page-wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.front-page-main {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 50px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
}

.section-description {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
}

.section-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.section-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #2563EB;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.section-button:hover {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero-section {
  position: relative;
  color: #fff;
  padding: 180px 20px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero-section {
    padding: 120px 20px;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/mv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-section__content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}
.hero-section__title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .hero-section__title {
    font-size: 2em;
  }
}
.hero-section__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .hero-section__subtitle {
    font-size: 1.1em;
  }
}
.hero-section__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-section__button {
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  display: inline-block;
}
.hero-section__button--primary {
  background-color: #fff;
  color: #667eea;
}
.hero-section__button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}
.hero-section__button--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.hero-section__button--secondary:hover {
  background-color: #fff;
  color: #667eea;
}

.popular-products {
  padding: 80px 0;
  background-color: #fff;
}
.popular-products__wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 10px;
}
.popular-products__grid {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  .popular-products__grid {
    gap: 20px;
  }
}
.popular-products__slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.popular-products__slider-button {
  width: 50px;
  height: 50px;
  border: 2px solid #2563EB;
  background-color: #fff;
  color: #2563EB;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popular-products__slider-button:hover:not(:disabled) {
  background-color: #2563EB;
  color: #fff;
  transform: scale(1.1);
}
.popular-products__slider-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.popular-products__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.popular-products__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popular-products__dot--active {
  background-color: #2563EB;
  width: 30px;
  border-radius: 6px;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #fff;
  flex: 0 0 calc(33.333% - 20px);
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc(50% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .product-card {
    flex: 0 0 calc(100% - 20px);
  }
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.product-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card__image {
  aspect-ratio: 7/5;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.1);
}
.product-card__info {
  padding: 20px;
}
.product-card__title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}
.product-card__category {
  font-size: 0.9em;
  color: #666;
  margin: 0 0 10px 0;
}
.product-card__price {
  font-size: 1.3em;
  font-weight: bold;
  color: #2563EB;
  margin: 0 0 15px 0;
}
.product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85em;
  color: #666;
  line-height: 1.6;
}
.product-card__features li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 5px;
}
.product-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563EB;
  font-weight: bold;
}

.product-categories {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #fff;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.category-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.category-card__image {
  aspect-ratio: 7/5;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.category-card:hover .category-card__image {
  transform: scale(1.05);
}
.category-card__content {
  padding: 20px 15px;
  background-color: #fff;
}
.category-card__name {
  text-align: center;
  font-weight: bold;
  font-size: 1.3em;
  color: #333;
  margin-bottom: 8px;
}
.category-card__count {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  margin-bottom: 12px;
}
.category-card__more {
  text-align: center;
  font-size: 0.95em;
  color: #2563EB;
  font-weight: 500;
  transition: color 0.3s ease;
}
.category-card:hover .category-card__more {
  color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
}
.category-card--hidden {
  display: none;
}
.category-card--hidden.category-card--show {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

.category-toggle-wrapper {
  text-align: center;
  margin-top: 40px;
}

.category-toggle-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background-color: #fff;
  color: #2563EB;
  border: 2px solid #2563EB;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-toggle-button:hover {
  background-color: #2563EB;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.category-toggle-button__icon {
  font-size: 0.8em;
  transition: transform 0.3s ease;
}
.category-toggle-button:hover .category-toggle-button__icon {
  transform: translateY(2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.event-types {
  padding: 80px 0;
  background-color: #fff;
}
.event-types__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .event-types__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .event-types__grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.event-card__icon {
  font-size: 3em;
  margin-bottom: 20px;
}
.event-card__title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.event-card__description {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.event-section {
  margin-bottom: 60px;
}
.event-section__title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #2563EB;
  color: #333;
}
.event-section--past {
  margin-top: 80px;
}
.event-section--past .event-section__title {
  color: #999;
  border-bottom-color: #ccc;
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.event-list__item {
  border-bottom: 1px dotted #ddd;
}
.event-list__item:last-child {
  border-bottom: none;
}
.event-list__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .event-list__link {
    gap: 12px;
    padding: 14px 16px;
    flex-direction: row;
    align-items: center;
  }
}
.event-list__link:hover {
  background-color: #f9fafb;
}
.event-list__date {
  flex-shrink: 0;
  font-size: 0.9em;
  color: #6b7280;
  font-weight: 500;
  min-width: 100px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
@media screen and (max-width: 768px) {
  .event-list__date {
    font-size: 0.85em;
    min-width: 80px;
  }
}
.event-list__title {
  font-size: 1em;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
  color: #333;
  transition: color 0.2s ease;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .event-list__title {
    font-size: 0.95em;
  }
}
.event-list__link:hover .event-list__title {
  color: #2563EB;
}

.event-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .event-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.event-blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.event-blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.event-blog-card__thumbnail {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .event-blog-card__thumbnail {
    height: 200px;
  }
}
.event-blog-card__thumbnail--no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.event-blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.event-blog-card:hover .event-blog-card__image {
  transform: scale(1.05);
}
.event-blog-card__no-image-placeholder {
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
  opacity: 0.8;
}
.event-blog-card__content {
  padding: 20px;
}
.event-blog-card__date {
  display: block;
  font-size: 0.9em;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.event-blog-card__title {
  font-size: 1.1em;
  font-weight: bold;
  margin: 0;
  color: #333;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.event-blog-card__link:hover .event-blog-card__title {
  color: #2563EB;
}

.event-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .event-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .event-archive-grid {
    grid-template-columns: 1fr;
  }
}

.event-info-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.event-info-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.event-info-card__thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}
.event-info-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.event-info-card:hover .event-info-card__thumbnail img {
  transform: scale(1.05);
}
.event-info-card__content {
  padding: 20px;
}
.event-info-card__title {
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 0 15px;
  color: #333;
  line-height: 1.4;
}
.event-info-card__meta {
  margin-bottom: 15px;
  font-size: 0.9em;
}
.event-info-card__meta-item {
  margin-bottom: 6px;
  color: #666;
}
.event-info-card__meta-label {
  font-weight: 600;
  color: #333;
}
.event-info-card__meta-value {
  color: #666;
}
.event-info-card__overview {
  font-size: 0.9em;
  line-height: 1.6;
  color: #666;
}

.product-category-archive {
  margin: 40px 0;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .product-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .product-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.product-category-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.product-category-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-category-item__image {
  width: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.product-category-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}
.product-category-item:hover .product-category-item__overlay {
  background: rgba(0, 0, 0, 0.5);
}
.product-category-item__content {
  padding: 20px;
  background: #fff;
}
.product-category-item__name {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 8px;
  color: #333;
}
.product-category-item__count {
  font-size: 0.9em;
  color: #666;
  margin: 0 0 10px;
}
.product-category-item__description {
  font-size: 0.85em;
  color: #999;
  margin: 0;
  line-height: 1.5;
}

.news-section {
  padding: 80px 0;
  background-color: #fff;
}

.news-list {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
}
.news-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list__item {
  border-bottom: 1px solid #e5e7eb;
}
.news-list__item:last-child {
  border-bottom: none;
}
.news-list__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-list__link {
    gap: 12px;
    padding: 14px 16px;
    flex-direction: row;
    align-items: center;
  }
}
.news-list__link:hover {
  background-color: #f9fafb;
}
.news-list__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #2563EB;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.news-list__link:hover::before {
  opacity: 1;
}
.news-list__date {
  flex-shrink: 0;
  font-size: 0.9em;
  color: #6b7280;
  font-weight: 500;
  min-width: 90px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
@media screen and (max-width: 768px) {
  .news-list__date {
    font-size: 0.85em;
    min-width: 80px;
  }
}
.news-list__title {
  font-size: 1em;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
  color: #333;
  transition: color 0.2s ease;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .news-list__title {
    font-size: 0.95em;
  }
}
.news-list__link:hover .news-list__title {
  color: #2563EB;
}
.news-list__empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
  font-size: 1em;
}

.instagram-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.instagram-follow-wrapper {
  text-align: center;
  margin-top: 40px;
}

.instagram-follow-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 50px;
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 100%);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}
.instagram-follow-button:hover {
  color: #fff;
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(131, 58, 180, 0.4);
}
.instagram-follow-button__icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.cta-section-front {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}
.cta-section-front__title {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cta-section-front__title {
    font-size: 1.8em;
  }
}
.cta-section-front__description {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.95;
}
.cta-section-front__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  display: inline-block;
}
.cta-button--primary {
  background-color: #fff;
  color: #667eea;
}
.cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}
.cta-button--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 30px;
}
@media screen and (min-width: 769px) {
  .cta-button--secondary {
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (max-width: 768px) {
  .cta-button--secondary:hover {
    background-color: #fff;
    color: #667eea;
  }
}
.cta-button__label {
  font-size: 0.8em;
  margin-bottom: 5px;
}
.cta-button__phone {
  font-size: 1.3em;
  font-weight: bold;
}

.sticky-contact-button {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
}
@media screen and (max-width: 768px) {
  .sticky-contact-button {
    bottom: 20px;
  }
}
.sticky-contact-button__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background-color: #2563EB;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}
.sticky-contact-button__link:hover {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sticky-contact-button__link {
    padding: 12px 20px;
    font-size: 1em;
  }
}
.sticky-contact-button__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sticky-contact-button__icon {
    width: 20px;
    height: 20px;
  }
}
.sticky-contact-button__text {
  white-space: nowrap;
}
@media screen and (max-width: 500px) {
  .sticky-contact-button__text {
    display: none;
  }
}

.mwai-trigger.mwai-open-button {
  bottom: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
}
.mwai-trigger.mwai-open-button .mwai-icon-container {
  width: 300px !important;
  height: 150px !important;
  border-radius: 10px !important;
  border: 2px solid #105cb4 !important;
  cursor: pointer !important;
  overflow: hidden !important;
}
.mwai-trigger.mwai-open-button .mwai-icon-container .mwai-icon {
  display: none !important;
}
.mwai-trigger.mwai-open-button .mwai-icon-container {
  background-image: url("../images/chatbot_rentkun.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
@media screen and (max-width: 768px) {
  .mwai-trigger.mwai-open-button .mwai-icon-container {
    width: 100px !important;
    height: 100px !important;
    border: none !important;
    background-image: url("../images/chatbot_rentkun_sp.png") !important;
  }
}

.mwai-window {
  width: 400px !important;
  height: 600px !important;
}
@media screen and (max-width: 768px) {
  .mwai-window {
    width: 100% !important;
    height: 100% !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
  }
}

.mwai-shortcuts {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

.mwai-shortcut {
  width: 100% !important;
  min-width: auto !important;
  min-height: 60px !important;
  margin: 0 !important;
  padding: 10px 8px !important;
  text-align: center !important;
  font-size: 0.9em !important;
  line-height: 1.3 !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.mwai-shortcut .mwai-label {
  white-space: normal !important;
  word-wrap: break-word !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}

.event-info-empty {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 0.9em;
}

/*
.event-info-hierarchical-widget {
  background-color: $white-color;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-year-section {
  border-bottom: 1px solid #e5e7eb;

  &:last-child {
    border-bottom: none;
  }
}

.event-year-toggle {
  width: 100%;
  padding: 15px 20px;
  background-color: #f8f9fa;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  font-weight: bold;
  font-size: 1.1em;

  &:hover {
    background-color: #e9ecef;
  }

  &.is-open {
    background-color: #e9ecef;
  }
}

.event-year-label {
  color: $primary-color;
}

.event-toggle-icon {
  color: $main-color;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.event-months-container {
  background-color: $white-color;
}

.event-month-section {
  border-bottom: 1px solid #f0f0f0;

  &:last-child {
    border-bottom: none;
  }
}

.event-month-toggle {
  width: 100%;
  padding: 12px 20px 12px 40px;
  background-color: $white-color;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
  font-weight: 600;

  &:hover {
    background-color: #f9fafb;
  }

  &.is-open {
    background-color: #f9fafb;
  }
}

.event-month-label {
  color: #666;
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fafbfc;
}

.event-list-item {
  border-bottom: 1px solid #f0f0f0;

  &:last-child {
    border-bottom: none;
  }
}

.event-list-link {
  display: block;
  padding: 10px 20px 10px 60px;
  color: $primary-color;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95em;
  position: relative;

  &::before {
    content: '▶';
    position: absolute;
    left: 45px;
    color: $main-color;
    font-size: 0.7em;
    transition: left 0.2s ease;
  }

  &:hover {
    background-color: #f0f6ff;
    color: $main-color;
    padding-left: 65px;

    &::before {
      left: 50px;
    }
  }
}
*/
.recruitment-featured-image {
  margin-bottom: 40px;
}
.recruitment-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.recruitment-info-container {
  max-width: 1000px;
  margin: 60px auto 80px;
  margin-top: 60px;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recruitment-info-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #2563EB;
  color: #333;
}

.recruitment-info-table {
  width: 100%;
  border-collapse: collapse;
}
.recruitment-info-table tbody {
  display: table-row-group;
}

.recruitment-info-row {
  border-bottom: 1px solid #e0e0e0;
}
.recruitment-info-row:last-child {
  border-bottom: none;
}

.recruitment-info-header {
  width: 150px;
  padding: 15px 20px;
  background-color: #f8f9fa;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  color: #333;
}
@media screen and (max-width: 768px) {
  .recruitment-info-header {
    width: 120px;
    padding: 12px 15px;
  }
}

.recruitment-info-data {
  padding: 15px 20px;
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .recruitment-info-data {
    padding: 12px 15px;
  }
}

.recruitment-archive-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.recruitment-archive-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
}
.recruitment-archive-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #2563EB;
}

.recruitment-archive-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .recruitment-archive-title {
    font-size: 2em;
  }
}

.recruitment-video-section {
  margin-bottom: 60px;
}

.recruitment-video-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.recruitment-video-container iframe {
  width: 100%;
  height: 500px;
  display: block;
}
@media screen and (max-width: 768px) {
  .recruitment-video-container iframe {
    height: 300px;
  }
}

.recruitment-message-section {
  background-color: #f0f6ff;
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .recruitment-message-section {
    padding: 30px 20px;
  }
}

.recruitment-message-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.recruitment-message-content {
  line-height: 1.8;
  color: #333;
}
.recruitment-message-content p {
  margin-bottom: 15px;
}
.recruitment-message-content p:last-child {
  margin-bottom: 0;
}

.recruitment-contact-info {
  margin-top: 20px;
  font-weight: bold;
}

.recruitment-positions-section {
  margin-bottom: 80px;
}

.recruitment-positions-title {
  background-color: #2563EB;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 8px;
}

.recruitment-positions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .recruitment-positions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.recruitment-position-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.recruitment-position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.recruitment-position-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recruitment-position-card__image {
    height: 200px;
  }
}
.recruitment-position-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.recruitment-position-card:hover .recruitment-position-card__image img {
  transform: scale(1.05);
}
.recruitment-position-card__content {
  padding: 25px;
}
.recruitment-position-card__title {
  font-size: 1.3em;
  font-weight: bold;
  margin: 0 0 15px 0;
  color: #333;
}
.recruitment-position-card__excerpt {
  font-size: 0.95em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}
.recruitment-position-card__excerpt p {
  margin-bottom: 10px;
}
.recruitment-position-card__excerpt p:last-child {
  margin-bottom: 0;
}
.recruitment-position-card__excerpt strong {
  font-weight: bold;
  color: #333;
}
.recruitment-position-card__button {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background-color: #2563EB;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.recruitment-position-card__button:hover {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.recruitment-entry-flow-section {
  margin-bottom: 60px;
}

.recruitment-entry-flow-title {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
}

.recruitment-entry-flow-image {
  max-width: 900px;
  margin: 0 auto;
}
.recruitment-entry-flow-image img {
  width: 100%;
  height: auto;
  display: block;
}

.recruitment-entry-button-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.recruitment-entry-button {
  display: inline-block;
  padding: 20px 80px;
  background-color: #2563EB;
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .recruitment-entry-button {
    padding: 18px 60px;
    font-size: 1.3em;
  }
}
.recruitment-entry-button:hover {
  background-color: rgb(18.5714285714, 76.1428571429, 202.4285714286);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.recruitment-entry-note {
  font-size: 0.95em;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

body.show-recaptcha .grecaptcha-badge {
  visibility: visible !important;
}

#secondary .sidebar-main .widget,
.widget-area.secondary .sidebar-main .widget {
  margin-bottom: 1.5em !important;
  padding: 0 !important;
}

/*# sourceMappingURL=style.css.map */
