@charset "UTF-8";
.staff_item {
  background-color: #edede3;
}
.staff_item a {
  opacity: 1;
  transition: 0.2s;
  color: #002d59;
}
.staff_item a:hover {
  opacity: 0.9;
}
.staff_item .staff_page_title {
  padding: 7rem 1rem 1rem;
}
.staff_item .staff_page_title .container {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.staff_item .staff_page_title h1 {
  margin: 0 0 1rem;
  font-size: 24px;
  font-weight: 900;
  color: #000;
  inline-size: fit-content;
  margin-inline: auto;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .staff_item .staff_page_title h1 {
    font-size: 32px;
  }
}
.staff_item .staff_page_title h1 .staff-page-title-img {
  width: 100%;
  height: auto;
  max-width: 320px;
}
.staff_item .staff_page_title h2 {
  padding: 0 1rem;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  inline-size: fit-content;
  margin: 0 auto;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .staff_item .staff_page_title h2 {
    font-size: 24px;
  }
}
.staff_item .staff_page_title .container {
  max-width: 1500px;
}
.staff_item .staff_author_header .container {
  max-width: 1200px;
}
.staff_item .staff_breadcrumb {
  font-size: 12px;
  margin: 0;
  padding: 1rem;
}
.staff_item .staff_breadcrumb .container {
  max-width: 1500px;
}
.staff_item .staff_breadcrumb ul {
  list-style-type: none;
  font-size: 12px;
  line-height: 1.5;
}
.staff_item .staff_breadcrumb ul li {
  display: inline-block;
}
.staff_item .staff_breadcrumb ul li a {
  text-decoration: none;
}
.staff_item .staff_breadcrumb ul li a:hover {
  text-decoration: underline;
}
.staff_item .staff_detail {
  padding: 0 1rem 3rem;
}
.staff_item .staff_detail .container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
.staff_item .staff_layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .staff_item .staff_layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}
.staff_item .image_column {
  width: 100%;
}
@media (min-width: 768px) {
  .staff_item .image_column {
    position: sticky;
    top: 100px;
    width: 45%;
    height: fit-content;
    overflow-y: auto;
  }
}
.staff_item .main_media,
.staff_item .main_image {
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
}
.staff_item .main_media img,
.staff_item .main_image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.staff_item .main_image_static img {
  width: 100%;
  height: 480px;
  border-radius: 8px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .staff_item .main_image_static img {
    height: 560px;
  }
}
.staff_item .thumbnail_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, 75px);
  gap: 6px;
  padding: 1rem 0;
  transition: all 0.2s ease;
  background: transparent;
  position: relative;
  justify-content: center;
}
.staff_item .thumbnail_gallery.is_sticky {
  position: fixed !important;
  top: 0 !important;
  left: 1rem !important;
  right: 1rem !important;
  z-index: 999 !important;
  background-color: #222 !important;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 1rem !important;
  margin: 0 !important;
}
.staff_item .thumbnail_gallery.is_sticky .thumbnail .play_icon {
  width: 18px !important;
  height: 18px !important;
  font-size: 10px !important;
}
@media (min-width: 768px) {
  .staff_item .thumbnail_gallery {
    grid-template-columns: repeat(auto-fit, 100px);
  }
  .staff_item .thumbnail_gallery.is_sticky {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
    background-color: transparent !important;
    border-radius: 0;
    box-shadow: none !important;
    padding: 1rem 0 !important;
    margin: 0;
  }
}
.staff_item .thumbnail {
  position: relative;
  padding: 0;
  width: 75px;
  height: 75px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-bottom: 0;
  overflow: hidden;
}
.staff_item .thumbnail:hover img {
  filter: brightness(1);
}
.staff_item .thumbnail:hover .play_icon {
  background: rgba(227, 9, 9, 0.9);
}
.staff_item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.8);
  transition: filter 0.2s ease;
}
@media (min-width: 768px) {
  .staff_item .thumbnail {
    width: 100px;
    height: 75px;
  }
}
.staff_item .play_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 0, 0, 0.7);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  pointer-events: none;
  transition: background-color 0.2s ease;
}
.staff_item .thumbnail_placeholder {
  display: none;
  height: 0;
  transition: height 0.2s ease;
}
.staff_item .thumbnail_placeholder.active {
  display: block;
  height: 90px;
}
@media (min-width: 768px) {
  .staff_item .thumbnail_placeholder {
    display: none !important;
  }
}
.staff_item .content_column {
  width: 100%;
}
@media (min-width: 768px) {
  .staff_item .content_column {
    width: 55%;
  }
}
.staff_item .content_header {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}
.staff_item .staff_info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 16px;
  flex-direction: column;
}
.staff_item .staff_info.l_row {
  flex-direction: row;
}
.staff_item .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .staff_item .avatar {
    width: 160px;
    height: 160px;
  }
}
.staff_item .staff_details {
  width: 100%;
  text-align: left;
}
.staff_item .staff_details a {
  color: #002d59;
  transition: 0.2s;
}
.staff_item .staff_details a:hover {
  color: #e6c800;
  text-decoration: none;
}
.staff_item .staff_details .staff_name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  align-items: center;
}
.staff_item .department {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}
.staff_item .staff_link {
  text-align: right;
  font-size: 14px;
}
.staff_item .content_title {
  padding: 0 0 1rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1rem;
}
.staff_item .content_title .brand_product_category {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  flex-direction: row;
}
.staff_item .content_title .brand_product_category a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #002d59;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s ease;
  border: 1px solid #ddd;
  line-height: 1;
}
.staff_item .content_title .brand_product_category a:hover {
  background-color: #002d59;
  color: #e6c800;
}
.staff_item .content_title .brand_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1rem;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .staff_item .content_title .brand_group {
    flex-direction: row;
  }
}
.staff_item .content_title .brand_group .brand_logo {
  width: 80px;
}
.staff_item .content_title .brand_group .brand_logo a {
  opacity: 1;
  transition: 0.2s;
}
.staff_item .content_title .brand_group .brand_logo a:hover {
  opacity: 0.8;
}
.staff_item .content_title .brand_group .brand_logo img {
  width: 100%;
}
.staff_item .content_title .brand_group .brand_product_name {
  flex: 1;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  line-height: 1.25;
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .staff_item .content_title .brand_group .brand_product_name {
    font-size: 2rem;
  }
}
.staff_item .content_title .brand_group .brand_product_name span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  display: block;
}
.staff_item .lead_text {
  color: #000;
  font-weight: 900;
  margin: 1.5rem 0;
}
.staff_item .content_body_section {
  margin-bottom: 3rem;
  text-align: left;
}
.staff_item .content_body_section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  margin-left: 0;
}
@media (min-width: 768px) {
  .staff_item .content_body_section h3 {
    font-size: 20px;
  }
}
.staff_item .content_body_section p {
  line-height: 1.8;
  color: #555;
}
.staff_item .popup_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.staff_item .popup_content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .staff_item .popup_content {
    max-width: 95vw;
    max-height: 85vh;
    margin: 0;
  }
}
.staff_item .popup_close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.staff_item .popup_close:hover {
  background: rgba(0, 0, 0, 0.9);
}
@media (max-width: 768px) {
  .staff_item .popup_close {
    top: 5px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
.staff_item .popup_image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .staff_item .popup_image {
    max-height: 70vh;
  }
}
@media (max-width: 480px) {
  .staff_item .popup_image {
    max-height: 60vh;
  }
}
.staff_item .popup_youtube {
  width: 80vw;
  max-width: 800px;
  height: 45vw;
  max-height: 450px;
  min-height: 300px;
}
.staff_item .popup_youtube .youtube_container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}
.staff_item .popup_youtube .youtube_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .staff_item .popup_youtube {
    width: 90vw;
    height: 50vw;
    max-height: 250px;
    min-height: 200px;
  }
}
@media (max-width: 480px) {
  .staff_item .popup_youtube {
    width: 95vw;
    height: 53vw;
    max-height: 220px;
    min-height: 180px;
  }
}
.staff_item .maker_site {
  text-align: right;
  font-size: 14px;
}
.staff_item .staff_relation_item {
  margin: 0;
  padding: 3rem 1rem;
}
.staff_item .staff_relation_item .container {
  max-width: 1500px;
}
.staff_item .staff_relation_item .staff_item_list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 1rem;
}
.staff_item .staff_product_item {
  margin: 0;
  padding: 3rem 1rem;
}
.staff_item .staff_product_item .container {
  max-width: 1500px;
}
.staff_item .staff_product_item .staff_item_list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 1rem;
}
.staff_item .staff_item_title {
  font-size: clamp(1.25rem, 0rem + 2.6667vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1rem;
}
.staff_item .bnr_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 3rem 1rem;
}
.staff_item .bnr_contact_inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1500px;
  background-color: #fff;
  position: relative;
  z-index: 0;
  gap: 0;
}
.staff_item .bnr_contact_inner::before {
  content: "";
  display: none;
  width: 120px;
  height: 120px;
  background-image: var(--avatar-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #002d59;
  z-index: 999;
  pointer-events: none;
}
@media (min-width: 768px) {
  .staff_item .bnr_contact_inner::before {
    display: block;
  }
}
@media (min-width: 768px) {
  .staff_item .bnr_contact_inner {
    flex-direction: row;
  }
}
.staff_item .left {
  background-color: #e6c800;
  color: #002d59;
  padding: 30px 30px 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 300px;
  clip-path: none;
  z-index: 1;
  width: 100%;
}
.staff_item .left img {
  max-width: 320px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .staff_item .left img {
    max-width: 480px;
  }
}
.staff_item .left h1 {
  font-size: 48px;
  margin: 0;
  font-weight: bold;
}
.staff_item .left p {
  font-size: 16px;
  margin: 10px 0 0;
  letter-spacing: 2px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .staff_item .left {
    padding: 30px 150px 30px 30px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 120px) 100%, 0 100%);
  }
}
.staff_item .market_badge {
  margin-top: 20px;
  background-color: #002d59;
  color: white;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
}
.staff_item .right {
  position: relative;
  background-color: #002d59;
  color: white;
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
  position: relative;
  clip-path: none;
  margin-left: 0;
  z-index: 2;
  margin-right: 0;
  width: 100%;
}
.staff_item .right .circle_image {
  display: block;
  width: 90px;
  height: 90px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  border-radius: 50%;
  position: static;
  margin: 0 auto 1rem auto;
  left: auto;
  top: auto;
  transform: none;
  border: 4px solid #002d59;
  z-index: 999;
  pointer-events: none;
}
@media (min-width: 768px) {
  .staff_item .right .circle_image {
    width: 120px;
    height: 120px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
}
@media (min-width: 768px) {
  .staff_item .right {
    padding: 30px 30px 30px 150px;
    clip-path: polygon(120px 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -120px;
    margin-right: -1px;
  }
}
.staff_item .inquiry_link {
  text-align: center;
  margin-top: 20px;
  align-self: center;
}
.staff_item .inquiry_link a {
  background-color: #e6c800;
  border-radius: 50px;
  padding: 0.75rem 1rem;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  color: #002d59;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-end;
  transition: opacity 0.2s;
}
.staff_item .inquiry_link a:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .staff_item .inquiry_link {
    text-align: right;
    align-self: flex-end;
    margin-top: 0;
  }
}
.staff_item .staff_item_list {
  padding: 0 1rem 1rem;
}
.staff_item .staff_item_list .container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.staff_item .staff_item_list .container::before {
  display: none;
}
@media (min-width: 640px) {
  .staff_item .staff_item_list .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .staff_item .staff_item_list .container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .staff_item .staff_item_list .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
.staff_item .staff_item_list .page_info {
  font-weight: bold;
}
.staff_item .staff_item_list .item_list {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.staff_item .staff_item_list .item_list:hover .card_image img {
  transform: scale(1.05);
}
.staff_item .staff_item_list .item_list .card_image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e0e0e0;
}
.staff_item .staff_item_list .item_list .card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.2s ease;
}
.staff_item .staff_item_list .item_list .card_image .play_icon_white {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgb(255, 0, 0);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  pointer-events: none;
  transition: background-color 0.2s ease;
}
.staff_item .staff_item_list .item_list .card_image a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 480px) {
  .staff_item .staff_item_list .item_list .card_image {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .staff_item .staff_item_list .item_list .card_image {
    height: 240px;
  }
}
.staff_item .staff_item_list .item_list .card_image .brand_logo {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 64px;
  height: auto;
}
.staff_item .staff_item_list .item_list .no_image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  color: #666666;
  font-size: 14px;
  font-weight: 500;
}
.staff_item .staff_item_list .item_list .card_content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.staff_item .staff_item_list .item_list .card_content::before {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  width: 54px;
  height: 64px;
  background-image: url("/assets/images/logos/icon_finger.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.staff_item .staff_item_list .item_list .card_content .brand_logo.invert-logo img {
  filter: invert(1) !important;
  -webkit-filter: invert(1) !important;
  transition: filter 0.3s ease;
}
.staff_item .staff_item_list .item_list .card_content .brand_logo.invert-logo img:hover {
  filter: invert(1) brightness(0.8) !important;
  -webkit-filter: invert(1) brightness(0.8) !important;
}
.staff_item .staff_item_list .item_list .card_content .brand_logo.invert-logo {
  filter: invert(1);
  -webkit-filter: invert(1);
}
.staff_item .staff_item_list .item_list .card_content .brand_logo.invert-logo a:hover {
  filter: invert(1) brightness(0.9);
  -webkit-filter: invert(1) brightness(0.9);
}
.staff_item .staff_item_list .item_list .card_title {
  margin: 0 0 0.75rem 42px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.staff_item .staff_item_list .item_list .card_title a {
  color: #053769;
  text-decoration: none;
  transition: color 0.2s ease;
}
.staff_item .staff_item_list .item_list .card_title a:hover {
  color: #e6c800;
}
@media (min-width: 768px) {
  .staff_item .staff_item_list .item_list .card_title {
    font-size: 16px;
  }
}
.staff_item .staff_item_list .item_list .card_lead {
  font-weight: 700;
  color: #000;
  font-size: 1rem;
  text-align: left;
  margin: 0 0 0 0;
  padding: 0.5rem 0;
  line-height: 1.25;
}
.staff_item .staff_item_list .item_list .private_badge {
  display: inline-block;
  background: #ff4757;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 500;
}
.staff_item .staff_item_list .item_list .meta_row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}
.staff_item .staff_item_list .item_list .meta_row:last_child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .staff_item .staff_item_list .item_list .meta_row {
    font-size: 13px;
  }
}
.staff_item .staff_item_list .item_list .author_row {
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.staff_item .staff_item_list .item_list .author_row .post_date {
  align-self: flex-end;
}
@media (min-width: 480px) {
  .staff_item .staff_item_list .item_list .author_row .post_date {
    align-self: center;
  }
}
@media (min-width: 480px) {
  .staff_item .staff_item_list .item_list .author_row {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.staff_item .staff_item_list .item_list .staff_info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.staff_item .staff_item_list .item_list .staff_info a {
  color: #053769;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  transition: color 0.2s ease;
}
.staff_item .staff_item_list .item_list .staff_info a:hover {
  color: #e6c800;
}
@media (min-width: 768px) {
  .staff_item .staff_item_list .item_list .staff_info a {
    font-size: 13px;
  }
}
.staff_item .staff_item_list .item_list .author_avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .staff_item .staff_item_list .item_list .author_avatar {
    width: 64px;
    height: 64px;
  }
}
.staff_item .staff_item_list .item_list .post_date {
  color: #666666;
  font-size: 12px;
}
.staff_item .staff_item_list .item_list .meta_label {
  font-weight: 500;
  min-width: fit-content;
}
.staff_item .staff_item_list .item_list .shop_terms a,
.staff_item .staff_item_list .item_list .category_terms a {
  color: #053769;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.staff_item .staff_item_list .item_list .shop_terms a:hover,
.staff_item .staff_item_list .item_list .category_terms a:hover {
  color: #e6c800;
}
.staff_item .staff_item_list .item_list .card_excerpt {
  color: #666666;
  font-size: 13px;
  line-height: 1.5;
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .staff_item .staff_item_list .item_list .card_excerpt {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
}
.staff_item .staff_item_term {
  padding: 0 1rem 1rem;
  background: inherit;
}
.staff_item .staff_item_term .container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.staff_item .staff_item_term .container::before {
  display: none;
}
@media (min-width: 1200px) {
  .staff_item .staff_item_term .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.staff_item .staff_item_term .term_list_content {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.staff_item .staff_item_term .term_list_content:hover .content_image img {
  transform: scale(1.05);
}
@media (min-width: 768px) {
  .staff_item .staff_item_term .term_list_content {
    flex-direction: row;
    align-items: stretch;
  }
}
.staff_item .staff_item_term .term_list_content .content_image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}
@media (min-width: 768px) {
  .staff_item .staff_item_term .term_list_content .content_image {
    width: 40%;
    height: auto;
    min-height: 350px;
    flex-shrink: 0;
  }
}
.staff_item .staff_item_term .term_list_content .content_image a {
  display: block;
  width: 100%;
  height: 100%;
}
.staff_item .staff_item_term .term_list_content .content_image .term_image {
  width: 100%;
  height: 100%;
}
.staff_item .staff_item_term .term_list_content .content_image .term_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.2s ease;
}
.staff_item .staff_item_term .term_list_content .content_text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 768px) {
  .staff_item .staff_item_term .term_list_content .content_text {
    width: 60%;
    flex: none;
  }
}
.staff_item .staff_item_term .term_list_content .content_name {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.staff_item .staff_item_term .term_list_content .content_name h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #053769;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.staff_item .staff_item_term .term_list_content .content_name .post_count {
  display: block;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: -1px;
  text-align: center;
}
.staff_item .staff_item_term .term_list_content .content_name .category_description {
  font-size: 14px;
  margin: 0 0 1rem 0;
  flex: 1;
}
.staff_item .staff_item_term .term_list_content .content_name .category_description p {
  margin: 0;
}
.staff_item .staff_item_term .term_list_content .content_post {
  padding: 1rem 1rem;
}
@media (min-width: 768px) {
  .staff_item .staff_item_term .term_list_content .content_post {
    flex: none;
    margin-top: auto;
  }
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts h3 {
  margin: 0 0 1rem 0;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts .recent_posts_list {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  font-size: 14px;
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts .recent_posts_list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts .recent_posts_list li:last_child {
  border-bottom: none;
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts .recent_posts_list li a {
  color: #053769;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 500;
  flex: 1;
  transition: color 0.2s ease;
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts .recent_posts_list li a:hover {
  color: #e6c800;
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts .recent_posts_list li .post_date {
  color: #666666;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  flex-shrink: 0;
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts .view_all {
  text-align: center;
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts .view_all .view_all_link {
  display: inline-block;
  background: #002d59;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: all 0.2s ease;
}
.staff_item .staff_item_term .term_list_content .content_post .recent_posts .view_all .view_all_link:hover {
  background: #e6c800;
}
.staff_item .staff_item_term .term_list_content .content_post:empty::before {
  content: "記事がありません";
  display: block;
  padding: 2rem 1rem;
  text-align: center;
  color: #666666;
  font-size: 0.875rem;
  font-style: italic;
}
.staff_item .staff_list {
  padding: 0 1rem 1rem;
}
.staff_item .staff_list .container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .staff_item .staff_list .container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
.staff_item .staff_list .container::before {
  display: none;
}
.staff_item .staff_list .staff_list_item {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}
.staff_item .staff_list .staff_avatar {
  margin-bottom: 1rem;
}
.staff_item .staff_list .staff_avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ddd;
}
@media (min-width: 768px) {
  .staff_item .staff_list .staff_avatar img {
    width: 160px;
    height: 160px;
  }
}
.staff_item .staff_list .staff_name {
  margin: 0 0 10px 0;
  font-size: 1.1em;
}
.staff_item .staff_list .staff_name a {
  color: #053769;
  text-decoration: none;
}
.staff_item .staff_list .staff_name a:hover {
  color: #e6c800;
}
.staff_item .staff_list .staff_shops {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
}
.staff_item .staff_list .staff_shops a {
  color: #053769;
  text-decoration: none;
}
.staff_item .staff_list .staff_shops a:hover {
  color: #e6c800;
}
.staff_item .staff_list .staff_stats {
  margin-bottom: 15px;
  font-size: 0.85em;
  color: #444;
}
.staff_item .staff_list .view_posts_link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #053769;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}
.staff_item .staff_list .view_posts_link:hover {
  background: #e6c800;
}
.staff_item .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
  padding: 1rem;
}
@media (min-width: 768px) {
  .staff_item .pagination {
    gap: 1rem;
  }
}
.staff_item .pagination a {
  padding: 0.5rem 1rem;
  background: #053769;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}
.staff_item .pagination a:hover {
  background: #e6c800;
}
.staff_item .pagination .page_info {
  font-size: 0.9em;
  color: #444;
}
@media (min-width: 768px) {
  .staff_item .pagination .page_info {
    font-size: 1em;
  }
}
.staff_item .staff_author_header .container {
  max-width: 1500px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .staff_item .staff_author_header .container {
    flex-direction: row;
  }
}
.staff_item .staff_author_header .author_avatar {
  height: 160px;
  width: 160px;
  flex-shrink: 0;
  overflow: hidden; /* 追加 */
  border-radius: 50%; /* imgではなくこちらに移動 */
  border: 3px solid #ddd; /* imgではなくこちらに移動 */
}
.staff_item .staff_author_header .author_avatar img {
  border-radius: 50%;
  border: 3px solid #ddd;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.staff_item .staff_author_header .author_info {
  white-space: nowrap;
  padding: 0 1rem;
}
.staff_item .staff_author_header .author_name {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .staff_item .staff_author_header .author_name {
    text-align: left;
  }
}
.staff_item .staff_author_header .author_shops {
  font-size: 14px;
}
.staff_item .staff_author_header .author_shops a {
  color: #053769;
  text-decoration: none;
  font-weight: 700;
}
.staff_item .staff_author_header .author_shops a:hover {
  color: #e6c800;
}
.staff_item .staff_author_header .author_description {
  text-align: left;
  font-size: 14px;
  padding: 0 1rem;
}
.staff_item .staff_author_header .author_description h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  padding: 0;
  line-height: 1.5;
  color: #000;
}
.staff_item .staff_author_header .author_description p {
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 768px) {
  .staff_item .staff_author_header .author_header {
    flex-direction: column;
    text-align: center;
  }
  .staff_item .staff_author_header .author_avatar {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .staff_item .staff_author_header .author_post_item {
    flex-direction: column;
  }
}
.staff_item .staff_item_contact {
  padding: 0 1rem 3rem;
}
.staff_item .staff_item_contact .container {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 3rem;
}
.staff_item .staff_item_contact .container .wpcf7 div:nth-child(even) {
  border-radius: 0.5rem;
}
.staff_item .staff_item_contact .container .comment {
  font-size: 12px;
}

.staff_item_contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wpcf7-form-control-wrap[data-name=your-old] {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.wpcf7 input[type=text].your_old {
  width: 60px !important;
  display: inline-block;
  padding-right: 20px;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
}

.wpcf7-form-control-wrap[data-name=your-old]::after {
  content: "才";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
}

@media (max-width: 768px) {
  div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.wpcf7-not-valid-tip {
  font-size: 13px !important;
}

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