@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Zen+Old+Mincho:wght@400;500;600;900&display=swap");
.site-branding img.site-logo {
  width: 180px;
}

.section-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 20px;
}

.section-container-swip {
  max-width: 100%;
  padding: 20px 0 20px 20px;
  overflow: hidden;
}

.section-title {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.3rem;
  }
}

.page-id-19290 .section-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .page-id-19290 .section-title {
    font-size: 1.4rem;
  }
}

/* Grid 共通 */
.grid {
  display: grid;
  gap: 20px;
}

/* Movie Philosophy Hero */
.hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Category & Tag Card 共通 */
.card-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card-item {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 10px;
}
.card-item a {
  height: 150px;
}
@media (max-width: 1200px) {
  .card-item a {
    height: 100px;
  }
}
.card-item.tag-item a {
  height: 100px;
}
@media (max-width: 1200px) {
  .card-item.tag-item a {
    height: 60px;
  }
}

/* Card Image */
.card-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  height: 150px;
  /* Overlay */
  /* Title */
}
@media (max-width: 1200px) {
  .card-image {
    height: 100px;
  }
}
.card-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.card-image:hover img {
  transform: translate(-50%, -50%) scale(1.05);
}
.card-image .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 8px;
}
.card-image:hover .card-overlay {
  opacity: 1;
}
.card-image .card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
  padding: 0 10px;
  color: #fff;
  z-index: 2;
  white-space: nowrap;
}
.card-image.tag-item {
  height: 100px;
}
@media (max-width: 1200px) {
  .card-image.tag-item {
    height: 60px;
  }
}

/* Course Thumb */
.course-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  max-width: 275px;
}
.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.course-thumb:hover img {
  transform: scale(1.05);
}
.course-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.course-thumb:hover::before {
  opacity: 1;
}
.course-thumb .thumb-title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  text-align: center;
  pointer-events: none;
  padding: 0 10px;
}
.course-thumb:hover .thumb-title {
  opacity: 1;
}

/* Swiper */
.swiper {
  overflow: visible;
  width: 100%;
  padding-bottom: 0;
}
.swiper.eventsSwiper {
  padding-bottom: 30px;
}

/* Event Card */
.event-card {
  text-align: center;
  max-width: 600px;
  display: block;
}
.event-card .event-thumb img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.event-card .event-title {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
}

.page-id-19290 .section-container {
  padding-top: 80px;
  padding-bottom: 60px;
}
.page-id-19290 .section-container.section-container-tag {
  padding-top: 10px;
}
.page-id-19290 .section-container .section-title-area {
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 2rem;
}
.page-id-19290 .section-container .section-title-area h4, .page-id-19290 .section-container .section-title-area p {
  text-align: center;
}
.page-id-19290 .section-container .grid {
  max-width: 1440px;
  margin: 0 auto;
}
.page-id-19290 .card-grid .image-video img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.page-id-19290 .tpc_testimonial.swiper {
  overflow: visible;
}
.page-id-19290 .tag-grid {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .page-id-19290 .tag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-id-19290 .tag-grid .card-title span {
  display: block;
  font-size: 0.9rem;
}
.page-id-19290 .bg-light {
  background: #fffbf0;
}
.page-id-19290 .bg-light .grid {
  margin-bottom: 20px;
}
.page-id-19290 .hero.info-hero {
  height: 600px;
}
@media (max-width: 1024px) {
  .page-id-19290 .hero.info-hero {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .page-id-19290 .hero.info-hero {
    height: 300px;
  }
}
.page-id-19290 .bg-beige {
  background: #e1d2aa;
  padding-top: 50px;
  padding-bottom: 30px;
}
.page-id-19290 .mt-20 {
  margin-top: 20px !important;
}
.page-id-19290 .section-about h3 {
  text-align: center;
}
.page-id-19290 .section-about .h2-font {
  font-family: "Zen Old Mincho", Sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 32px;
}
@media (max-width: 820px) {
  .page-id-19290 .section-about .h2-font {
    font-size: 24px;
  }
}
.page-id-19290 .section-about .h3-font {
  font-family: "Zen Old Mincho", Sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 24px;
  padding-top: 50px;
}
@media (max-width: 820px) {
  .page-id-19290 .section-about .h3-font {
    font-size: 18px;
  }
}
.page-id-19290 .grid.about-grid {
  grid-template-columns: repeat(1, 1fr);
  max-width: 1440px;
  gap: 30px;
}
.page-id-19290 .grid.about-grid .about-item {
  background-color: #FFFFFF;
  padding: 30px 30px 10px;
  border-radius: 10px 10px 10px 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-id-19290 .grid.about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-id-19290 .button-widget-wrapper {
  text-align: center;
  margin-top: 40px;
}

#masthead .new-member {
  display: none !important;
}

.page-id-19290 #masthead .new-member {
  display: block !important;
}

.page-id-19290 #masthead .only-member {
  display: none !important;
}

#secondary label[for=category-97] {
  display: none;
}

.tribe-events .tribe-events-calendar-month__day-cell--selected, .tribe-events .tribe-events-calendar-month__day-cell--selected:focus, .tribe-events .tribe-events-calendar-month__day-cell--selected:hover, .tribe-events .tribe-events-c-search__button, .tribe-events button.tribe-events-c-search__button {
  background-color: #e1d2aa;
}

.tribe-events .tribe-events-c-messages__message-list-item-link {
  color: #e1d2aa;
}

.tribe-common .tribe-common-anchor-thin-alt {
  border-bottom-color: #e1d2aa;
}

.tribe-common .tribe-common-c-btn-border, .tribe-common a.tribe-common-c-btn-border {
  color: #e1d2aa;
  border-color: #e1d2aa;
}

.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover {
  background-color: #e1d2aa;
}

.tribe-common .tribe-common-c-loader__dot circle {
  fill: #e1d2aa !important;
}

.search-results .edubin-course .tutor-iconic-btn {
  display: none;
}

.edubin-testi-single.layout-7 {
  padding: 0;
}

@media only screen and (max-width: 450px) {
  #content .edubin-testi-7 .edubin-testi-single .testimonial-wrapper {
    background: #fff !important;
  }
}
.tribe-events .tribe-events-calendar-month__header-column {
  width: 100%;
}

.elementor-element-30e83b0 .category_icon .tpc-course-category-style-4 img {
  width: 40px;
  height: 40px;
}

.elementor-element-1d96e00 .edubin-counter.counter-style-2 .counter-wrapper .counter-content .edubin-counter-title {
  font-size: 14px;
}

.elementor-19290 .elementor-element.elementor-element-2c64b12:hover .elementor-widget-container,
.elementor-19290 .elementor-element.elementor-element-7750344:hover .elementor-widget-container,
.elementor-19290 .elementor-element.elementor-element-6eedc86:hover .elementor-widget-container {
  box-shadow: 0px 20px 50px 0px rgba(225, 210, 170, 0.25) !important;
}

.edubin-breadcrumb-wrapper ul li span.active {
  color: #e0d3a9 !important;
}

.edubin-course.layout__1 .course-thumb {
  max-width: 100%;
}

.edubin-course.layout-list-01 .price__1 {
  display: none;
}

.course-thumb:hover .thumb-title {
  opacity: 1;
}

.tpc-tutor-archive-courses.edubin-course-archive .edubin-col-sm-6 {
  width: 50%;
  padding-right: 5px;
  padding-left: 5px;
}

#secondary .edubin-course-info .tutor-fs-7.tutor-color-muted {
  font-size: 0;
}
#secondary .edubin-course-info .tutor-fs-7.tutor-color-muted::after {
  content: "/月額";
  font-size: 12px;
  color: inherit;
}/*# sourceMappingURL=style.css.map */