@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP", serif !important;
  line-height: 1.6;
  color: #383838;
  overflow-x: hidden;
}

.main-content {
  padding-top: 73px;
}

@media (min-width: 1280px) {
  .main-content {
    padding-top: 76px;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #d85d63;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ce343b;
}

.font-serif {
  font-family: "Noto Serif JP", serif !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.btn-primary {
  background-color: #d85d63;
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #ce343b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 93, 99, 0.3);
}

.btn-secondary {
  background-color: white;
  color: #b49e42;
  border: 2px solid #b49e42;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #b49e42;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 158, 66, 0.3);
}

.card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }
}

.nav-link {
  color: #383838;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d85d63;
}

.hamburger-btn {
  width: 45px;
  height: 45px;
  border: 1px solid #d85d63;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger-btn:hover {
  background-color: rgba(216, 93, 99, 0.1);
}

.hamburger-btn .hamburger-line {
  width: 11.314px;
  height: 1px;
  background-color: #d85d63;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(2px, 2px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  transform: rotate(-45deg) translate(2px, -2px);
}


.mobile-menu .menu-link {
  display: block;
  color: #383838;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #383838;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu .menu-link:hover {
  color: #d85d63;
}

@media (max-width: 1023px) {
  .desktop-only {
    display: none;
  }
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #d85d63;
  box-shadow: 0 0 0 3px rgba(216, 93, 99, 0.1);
}

.form-input::-moz-placeholder,
.form-textarea::-moz-placeholder {
  color: #c7b89f;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #c7b89f;
}

.form-textarea {
  min-height: 250px;
  resize: vertical;
}

.accordion .accordion-header {
  background-color: white;
  border: 1px solid #ddd;
  padding: 16px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion .accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion .accordion-content {
  background-color: white;
  border: 1px solid #ddd;
  border-top: none;
  padding: 20px;
  display: none;
}

.accordion .accordion-content.active {
  display: block;
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(216, 93, 99, 0.3);
  border-radius: 50%;
  border-top-color: #d85d63;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #d85d63;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ce343b;
}

.voice-page .hero-section {
  background: linear-gradient(135deg, #faf8f4 0%, #f0dfd1 100%);
  position: relative;
}

.voice-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d85d63" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23b49e42" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.voice-page .profile-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.voice-page .profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.voice-page .profile-card .profile-image {
  position: relative;
  overflow: hidden;
}

.voice-page .profile-card .profile-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(216, 93, 99, 0.1), rgba(180, 158, 66, 0.1));
  z-index: 1;
}

.voice-page .profile-card .profile-image img {
  transition: transform 0.3s ease;
}

.voice-page .profile-card .profile-image:hover img {
  transform: scale(1.05);
}

.voice-page .qa-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.voice-page .qa-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left-color: #d85d63;
}

.voice-page .qa-card .qa-question {
  background: #f0dfd1;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(216, 93, 99, 0.1);
}

.voice-page .qa-card .qa-question h4 {
  color: #383838;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.voice-page .qa-card .qa-answer {
  padding: 24px 20px;
}

.voice-page .qa-card .qa-answer p {
  color: #383838;
  line-height: 1.8;
  margin: 0;
}

.voice-page .show-more-btn {
  background: white;
  border: 2px solid #d85d63;
  color: #d85d63;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.voice-page .show-more-btn:hover {
  background: #d85d63;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216, 93, 99, 0.3);
}

.voice-page .show-more-btn svg {
  transition: transform 0.3s ease;
}

.voice-page .show-more-btn.expanded svg {
  transform: rotate(180deg);
}

.voice-page .cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.voice-page .cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d85d63" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.voice-page .cta-section .cta-content {
  position: relative;
  z-index: 2;
}

.voice-page .cta-section .cta-button {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.voice-page .cta-section .cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.voice-page .fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.voice-page .slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.voice-page .slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@media (max-width: 768px) {
  .voice-page .hero-section {
    padding: 48px 0;
  }

  .voice-page .profile-card {
    margin: 0 16px;
  }

  .voice-page .profile-card .profile-content {
    flex-direction: column;
    text-align: center;
  }

  .voice-page .qa-card {
    margin: 0 16px;
  }

  .voice-page .qa-card .qa-question {
    padding: 12px 16px;
  }

  .voice-page .qa-card .qa-question h4 {
    font-size: 16px;
  }

  .voice-page .qa-card .qa-answer {
    padding: 16px;
  }

  .voice-page .qa-card .qa-answer p {
    font-size: 14px;
  }

  .voice-page .show-more-btn {
    margin: 0 16px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .voice-page .cta-section {
    padding: 48px 0;
  }

  .voice-page .cta-section .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .voice-page .qa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .voice-page .qa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .voice-page .profile-card .profile-content {
    gap: 48px;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.voice-page ::-webkit-scrollbar {
  width: 6px;
}

.voice-page ::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.voice-page ::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #d85d63, #b49e42);
  border-radius: 3px;
}

.voice-page ::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ce343b, #8f7d34);
}

.column-page .column-card {
  cursor: pointer;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.column-page .column-card:hover {
  box-shadow: none !important;
  transform: scale(1.05);
}

.column-page .column-card .column-image {
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}


@media (min-width: 1280px) {
  .column-page .column-card .column-image {
    height: 200px;
  }
}

.column-page .column-card h3 {
  min-height: 50px;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
}

@media (min-width: 996px) {
  .column-page .column-card h3 {
    min-height: 70px;
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .column-page .column-card {
    margin: 0 0 24px 0;
  }
}

.column-page .column-section {
  padding: 32px 0;
}

@media (min-width: 996px) {
  .column-page .column-section {
    padding: 64px 0;
  }
}

.column-page .column-section .column-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 769px) and (max-width: 1023px) {
  .column-page .column-section .column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .column-page .column-section .column-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.column-page .more-button {
  position: relative;
  overflow: hidden;
}

.column-page .more-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.column-page .more-button:hover::before {
  left: 100%;
}

@media (max-width: 1279px) {
  .column-page .more-button {
    background: white !important;
    border: 2px solid #d85d63 !important;
    border-radius: 0 !important;
    padding: 20px !important;
    color: #d85d63 !important;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .column-page .more-button:hover {
    background: #d85d63 !important;
    color: white !important;
  }

  .column-page .more-button img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }

  .column-page .more-button:hover img {
    transform: rotate(90deg);
  }
}

.column-page .fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.column-page .slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.column-page .slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@media (max-width: 768px) {
  .column-page .column-section .column-grid {
    padding: 0 20px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .column-page .column-section .column-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .column-page .column-section .column-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.seminer-page .hero-section {
  background: url("../img/bg-seminer.jpg") center center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.seminer-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}

.seminer-page .hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.seminer-page .seminar-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.seminer-page .seminar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left-color: #d85d63;
}

.seminer-page .seminar-card .card-header {
  background: #d85d63;
  color: white;
  padding: 12px 40px;
}

.seminer-page .seminar-card .card-header .date-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.seminer-page .seminar-card .card-header .date-info .date {
  font-size: 20px;
  font-weight: 600;
}

.seminer-page .seminar-card .card-header .date-info .time {
  font-size: 18px;
}

.seminer-page .seminar-card .card-header .title {
  font-size: 18px;
  line-height: 1.4;
}

.seminer-page .seminar-card .card-content {
  padding: 32px 40px;
}

.seminer-page .seminar-card .card-content .info-section {
  margin-bottom: 16px;
}

.seminer-page .seminar-card .card-content .info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 6px;
}

.seminer-page .seminar-card .card-content .info-section .info-item .bullet {
  width: 5px;
  height: 5px;
  background: #d85d63;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.seminer-page .seminar-card .card-content .info-section .info-item .label {
  font-weight: 600;
  font-size: 16px;
  color: #383838;
}

.seminer-page .seminar-card .card-content .info-section .info-item .value {
  font-size: 16px;
  color: #383838;
  line-height: 1.5;
}

.seminer-page .seminar-card .card-content .description {
  border: 1px solid #383838;
  border-radius: 8px;
  padding: 8px 24px;
  margin-top: 24px;
}

.seminer-page .seminar-card .card-content .description p {
  font-size: 14px;
  line-height: 1.6;
  color: #383838;
  margin: 0;
}

.seminer-page .cta-section {
  background: linear-gradient(135deg, #faf8f4 0%, #f0dfd1 100%);
  position: relative;
  overflow: hidden;
}

.seminer-page .cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d85d63" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.seminer-page .cta-section .cta-content {
  position: relative;
  z-index: 2;
}

.seminer-page .cta-section .cta-button {
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.seminer-page .cta-section .cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.seminer-page .booking-section .booking-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
}

.seminer-page .booking-section .booking-card .booking-type {
  text-align: center;
  margin-bottom: 8px;
}

.seminer-page .booking-section .booking-card .booking-type .type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #d85d63;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
}

.seminer-page .booking-section .booking-card .booking-type .type-badge .icon {
  width: 30px;
  height: 30px;
}

.seminer-page .booking-section .booking-card .booking-type .description {
  font-size: 16px;
  color: #383838;
  margin: 8px 0;
}

.seminer-page .booking-section .booking-card .booking-type .features {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 8px 0;
}

.seminer-page .booking-section .booking-card .booking-type .features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.seminer-page .booking-section .booking-card .booking-type .features .feature-item .check-icon {
  width: 25px;
  height: 25px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seminer-page .booking-section .booking-card .booking-type .features .feature-item .check-icon svg {
  width: 17px;
  height: 17px;
  color: #d85d63;
}

.seminer-page .booking-section .booking-card .booking-type .features .feature-item .feature-text {
  font-size: 16px;
  color: #383838;
}

.seminer-page .booking-section .booking-card .booking-type .highlight {
  background: #FFFBED;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 8px;
}

.seminer-page .booking-section .booking-card .booking-type .highlight p {
  font-size: 14px;
  font-weight: 600;
  color: #383838;
  margin: 0;
  line-height: 2;
}

.seminer-page .booking-section .booking-card .divider {
  width: 1px;
  background: #BEBEBE;
  margin: 0 40px;
}

.seminer-page .calendar-section {
  background: #f8f9fa;
}

.seminer-page .calendar-section .calendar-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 20px 0;
}

.seminer-page .calendar-section .calendar-container .calendar-placeholder {
  background: #D9D9D9;
  border-radius: 8px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
}

.seminer-page .calendar-section .calendar-container .calendar-placeholder p {
  color: #757575;
  font-size: 18px;
  margin: 0;
}

.seminer-page .fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.seminer-page .slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.seminer-page .slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@media (max-width: 768px) {
  .seminer-page .hero-section {
    padding: 48px 0;
  }

  .seminer-page .hero-section .hero-content {
    text-align: center;
  }

  .seminer-page .seminar-card {
    margin: 0 16px;
  }

  .seminer-page .seminar-card .card-header {
    padding: 12px 20px;
  }

  .seminer-page .seminar-card .card-header .date-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .seminer-page .seminar-card .card-header .date-info .date {
    font-size: 18px;
  }

  .seminer-page .seminar-card .card-header .date-info .time {
    font-size: 14px;
  }

  .seminer-page .seminar-card .card-header .title {
    font-size: 14px;
  }

  .seminer-page .seminar-card .card-content {
    padding: 20px;
  }

  .seminer-page .seminar-card .card-content .info-item {
    gap: 12px;
  }

  .seminer-page .seminar-card .card-content .info-item .label,
  .seminer-page .seminar-card .card-content .info-item .value {
    font-size: 14px;
  }

  .seminer-page .seminar-card .card-content .description {
    padding: 8px 16px;
  }

  .seminer-page .seminar-card .card-content .description p {
    font-size: 12px;
  }

  .seminer-page .booking-section .booking-card {
    padding: 20px;
  }

  .seminer-page .booking-section .booking-card .booking-type .type-badge {
    font-size: 16px;
    padding: 8px 12px;
  }

  .seminer-page .booking-section .booking-card .booking-type .type-badge .icon {
    width: 24px;
    height: 24px;
  }

  .seminer-page .booking-section .booking-card .booking-type .description {
    font-size: 14px;
  }

  .seminer-page .booking-section .booking-card .booking-type .features {
    flex-direction: column;
    gap: 4px;
  }

  .seminer-page .booking-section .booking-card .booking-type .features .feature-item .check-icon {
    width: 20px;
    height: 20px;
  }

  .seminer-page .booking-section .booking-card .booking-type .features .feature-item .check-icon svg {
    width: 14px;
    height: 14px;
  }

  .seminer-page .booking-section .booking-card .booking-type .features .feature-item .feature-text {
    font-size: 14px;
  }

  .seminer-page .booking-section .booking-card .booking-type .highlight p {
    font-size: 12px;
  }

  .seminer-page .booking-section .booking-card .divider {
    display: none;
  }

  .seminer-page .calendar-section .calendar-container {
    margin: 0 16px;
  }

  .seminer-page .calendar-section .calendar-container .calendar-placeholder {
    height: 300px;
    margin: 16px;
  }

  .seminer-page .calendar-section .calendar-container .calendar-placeholder p {
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .seminer-page .booking-section .booking-card .booking-type .features {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .seminer-page .booking-section .booking-card .booking-type .features {
    justify-content: center;
    gap: 16px;
  }
}

@media (min-width: 1300px) {
  .seminer-page .booking-section .booking-card .booking-type p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.faq-page .hero-section {
  background: linear-gradient(135deg, #faf8f4 0%, #f0dfd1 100%);
  position: relative;
  overflow: hidden;
}

.faq-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d85d63" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23b49e42" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.faq-page .hero-section .hero-content {
  position: relative;
  z-index: 2;
}

.faq-page .faq-item {
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-page .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-page .faq-item .faq-question {
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(216, 93, 99, 0.1);
}

.faq-page .faq-item .faq-question:hover {
  background-color: #f3e4d9;
}

.faq-page .faq-item .faq-answer {
  transition: all 0.3s ease;
}

.faq-page .fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.faq-page .slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.faq-page .slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@media (max-width: 768px) {
  .faq-page .faq-item {
    margin: 0 16px;
  }

  .faq-page .faq-item .faq-question {
    padding: 12px 16px;
  }

  .faq-page .faq-item .faq-question p {
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-page .faq-item .faq-answer {
    padding: 16px;
  }

  .faq-page .faq-item .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .faq-page .faq-item .faq-question {
    padding: 16px 20px;
  }

  .faq-page .faq-item .faq-question p {
    font-size: 18px;
  }

  .faq-page .faq-item .faq-answer {
    padding: 24px 20px;
  }

  .faq-page .faq-item .faq-answer p {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .faq-page .faq-item .faq-question {
    padding: 20px 24px;
  }

  .faq-page .faq-item .faq-question p {
    font-size: 20px;
  }

  .faq-page .faq-item .faq-answer {
    padding: 32px 24px;
  }

  .faq-page .faq-item .faq-answer p {
    font-size: 16px;
  }
}

.footer {
  background-color: #f0dfd1;
  font-family: "Noto Serif JP", serif;
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
}

.footer .logo-container img {
  transition: opacity 0.3s ease;
}

.footer .logo-container img:hover {
  opacity: 0.8;
}

.footer nav a {
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #d85d63;
  transition: width 0.3s ease;
}

.footer nav a:hover::after {
  width: 100%;
}

.footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer .social-link img {
  transition: filter 0.3s ease;
}

.footer .social-link:hover img {
  filter: brightness(1.2) saturate(1.1);
}

.footer .divider-line {
  background: linear-gradient(90deg, transparent, #383838, transparent);
  height: 1px;
  opacity: 0.2;
}

.footer .copyright {
  color: #383838;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.98px;
  line-height: 23px;
}

@media (max-width: 995px) {
  .footer {
    padding: 64px 20px;
  }

  .footer .container {
    padding: 0;
  }

  .footer .logo-container {
    margin-bottom: 32px;
  }

  .footer nav {
    margin-bottom: 24px;
  }

  .footer nav a {
    font-size: 14px;
    letter-spacing: 0.98px;
  }

  .footer .social-link {
    margin: 0 12.5px;
  }

  .footer .divider-line {
    margin: 32px 0;
  }

  .footer .copyright {
    font-size: 14px;
    line-height: 23px;
  }
}

@media (min-width: 996px) {
  .footer {
    padding: 64px 0;
  }

  .footer .container {
    padding: 0 20px;
  }

  .footer .logo-container {
    flex-shrink: 0;
  }

  .footer nav a {
    font-size: 14px;
    letter-spacing: 0.98px;
    line-height: 23px;
  }

  .footer .social-link {
    margin: 0 12.5px;
  }

  .footer .divider-line {
    margin: 40px 0;
  }

  .footer .copyright {
    font-size: 14px;
    line-height: 23px;
  }
}

.footer .fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.footer .slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.footer .slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes footerFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-animate {
  animation: footerFadeIn 0.8s ease-out;
}

.footer .nav-item {
  position: relative;
  overflow: hidden;
}

.footer .nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(216, 93, 99, 0.1), transparent);
  transition: left 0.5s;
}

.footer .nav-item:hover::before {
  left: 100%;
}

.footer .social-item {
  position: relative;
}

.footer .social-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(216, 93, 99, 0.2), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.footer .social-item:hover::after {
  width: 40px;
  height: 40px;
}

@media (max-width: 450px) {
  .absolute.-top-16 {
    top: -15rem !important;
  }
}

@media (min-width: 451px) and (max-width: 1023px) {
  .absolute.-top-16 {
    top: -11.2rem !important;
  }
}

@media (min-width: 1024px) {
  .absolute.-top-16 {
    top: -12rem !important;
  }
}

.single-page .article-header .category-badge {
  background: #b49e42;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.single-page .article-header .article-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  color: #383838;
  margin: 16px 0;
}

@media (min-width: 996px) {
  .single-page .article-header .article-title {
    font-size: 2.5rem;
  }
}

.single-page .article-header .article-meta {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
}

.single-page .article-header .article-meta .meta-item {
  display: inline-block;
  margin-right: 16px;
}

.single-page .article-header .article-meta .meta-item:last-child {
  margin-right: 0;
}

.single-page .article-header .featured-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.single-page .article-header .featured-image:hover {
  transform: scale(1.02);
}

.single-page .article-header .featured-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-page .article-content .prose {
  max-width: none;
}

.single-page .article-content .prose h2 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #383838;
  margin: 40px 0 24px;
  border-left: 4px solid #d85d63;
  padding-left: 16px;
  line-height: 1.4;
}

@media (min-width: 996px) {
  .single-page .article-content .prose h2 {
    font-size: 2rem;
  }
}

.single-page .article-content .prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #b49e42;
  margin: 32px 0 16px;
  line-height: 1.4;
}

@media (min-width: 996px) {
  .single-page .article-content .prose h3 {
    font-size: 1.5rem;
  }
}

.single-page .article-content .prose p {
  line-height: 1.8;
  margin-bottom: 24px;
  color: #383838;
}

.single-page .article-content .prose ul,
.single-page .article-content .prose ol {
  margin: 24px 0;
  padding-left: 24px;
}

.single-page .article-content .prose ul li,
.single-page .article-content .prose ol li {
  line-height: 1.8;
  margin-bottom: 8px;
}

.single-page .article-content .prose .highlight-box {
  background: #f0dfd1;
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
  border-left: 4px solid #d85d63;
}

.single-page .article-content .prose .highlight-box p {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.7;
}

.single-page .article-content .prose .info-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.single-page .article-content .prose .info-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #b49e42;
}

.single-page .article-content .prose .info-card ul {
  margin: 0;
}

.single-page .article-content .prose .info-card ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.single-page .article-content .prose .info-card ul li:last-child {
  margin-bottom: 0;
}

.single-page .article-content .prose .info-card ul li .check-icon {
  width: 20px;
  height: 20px;
  color: #d85d63;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.single-page .article-content .prose .warning-box {
  background: #fefce8;
  border: 1px solid #fbbf24;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}

.single-page .article-content .prose .warning-box .warning-icon {
  width: 24px;
  height: 24px;
  color: #f59e0b;
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.single-page .article-content .prose .warning-box h3 {
  color: #92400e;
  margin-top: 0;
  margin-bottom: 8px;
}

.single-page .article-content .prose .warning-box p {
  color: #92400e;
  margin-bottom: 0;
}

.single-page .article-content .prose .numbered-list .numbered-item {
  display: flex;
  align-items: flex-start;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.single-page .article-content .prose .numbered-list .numbered-item .number {
  background: #d85d63;
  color: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.single-page .article-content .prose .numbered-list .numbered-item .content {
  flex: 1;
}

.single-page .article-content .prose .numbered-list .numbered-item .content h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #383838;
}

.single-page .article-content .prose .numbered-list .numbered-item .content p {
  margin-bottom: 0;
  color: #6b7280;
}

.single-page .article-content .faq-section .faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.single-page .article-content .faq-section .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.single-page .article-content .faq-section .faq-item .faq-question {
  padding: 24px;
  cursor: pointer;
  background: white;
  transition: background-color 0.3s ease;
}

.single-page .article-content .faq-section .faq-item .faq-question:hover {
  background: #f9fafb;
}

.single-page .article-content .faq-section .faq-item .faq-question h3 {
  margin: 0;
  font-weight: 600;
  color: #383838;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-page .article-content .faq-section .faq-item .faq-question svg {
  width: 20px;
  height: 20px;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.single-page .article-content .faq-section .faq-item .faq-question.active svg {
  transform: rotate(180deg);
}

.single-page .article-content .faq-section .faq-item .faq-answer {
  padding: 0 24px 24px;
  background: white;
}

.single-page .article-content .faq-section .faq-item .faq-answer.hidden {
  display: none;
}

.single-page .article-content .faq-section .faq-item .faq-answer p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}

.single-page .article-content .cta-section {
  background: #f0dfd1;
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  margin: 48px 0;
}

.single-page .article-content .cta-section h2 {
  margin-top: 0;
  margin-bottom: 16px;
  border: none;
  padding: 0;
  text-align: center;
}

.single-page .article-content .cta-section p {
  margin-bottom: 24px;
}

.single-page .article-content .cta-section .cta-button {
  display: inline-block;
  background: #d85d63;
  color: white;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.single-page .article-content .cta-section .cta-button:hover {
  background: #ce343b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216, 93, 99, 0.3);
}

.single-page .sidebar .sidebar-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}

.single-page .sidebar .sidebar-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #383838;
  margin: 0 0 16px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
}

.single-page .sidebar .sidebar-card .author-info {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.single-page .sidebar .sidebar-card .author-info .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-page .sidebar .sidebar-card .author-info .author-details .author-name {
  font-weight: 600;
  color: #383838;
  margin: 0;
}

.single-page .sidebar .sidebar-card .author-info .author-details .author-role {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.single-page .sidebar .sidebar-card .author-bio {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.single-page .sidebar .related-articles .article-item {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.single-page .sidebar .related-articles .article-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.single-page .sidebar .related-articles .article-item .article-link {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.single-page .sidebar .related-articles .article-item .article-link:hover .article-title {
  color: #d85d63;
}

.single-page .sidebar .related-articles .article-item .article-link .article-thumbnail {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 12px;
  flex-shrink: 0;
}

.single-page .sidebar .related-articles .article-item .article-link .article-info {
  flex: 1;
}

.single-page .sidebar .related-articles .article-item .article-link .article-info .article-title {
  font-size: 14px;
  font-weight: 600;
  color: #383838;
  line-height: 1.4;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.single-page .sidebar .related-articles .article-item .article-link .article-info .article-date {
  font-size: 12px;
  color: #6b7280;
}

.single-page .sidebar .related-articles .view-all-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border: 1px solid #d85d63;
  color: #d85d63;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.single-page .sidebar .related-articles .view-all-link:hover {
  background: #d85d63;
  color: white;
}

.single-page .sidebar .cta-card {
  background: #f0dfd1;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.single-page .sidebar .cta-card h3 {
  border: none;
  padding: 0;
  margin-bottom: 16px;
  text-align: center;
}

.single-page .sidebar .cta-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}

.cta-buttons {
  transition: all 0.3s ease !important;
}

.single-page .sidebar .cta-card .cta-buttons .cta-primary,
.cta-primary1 {
  display: block;
  width: 100%;
  background: #d85d63;
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.single-page .sidebar .cta-card .cta-buttons .cta-primary:hover,
.cta-primary1:hover {
  background: #ce343b;
}

.single-page .sidebar .cta-card .cta-buttons .cta-secondary {
  display: block;
  width: 100%;
  border: 2px solid #b49e42;
  color: #b49e42;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.single-page .sidebar .cta-card .cta-buttons .cta-secondary:hover {
  background: #b49e42;
  color: white;
}

.single-page .sidebar .newsletter-card .newsletter-form .form-input,
.single-page .sidebar .newsletter-card .newsletter-form .form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
}

.single-page .sidebar .newsletter-card .newsletter-form .form-input:focus,
.single-page .sidebar .newsletter-card .newsletter-form .form-textarea:focus {
  outline: none;
  border-color: #d85d63;
  box-shadow: 0 0 0 3px rgba(216, 93, 99, 0.1);
}

.single-page .sidebar .newsletter-card .newsletter-form .form-input::-moz-placeholder,
.single-page .sidebar .newsletter-card .newsletter-form .form-textarea::-moz-placeholder {
  color: #9ca3af;
}

.single-page .sidebar .newsletter-card .newsletter-form .form-input::placeholder,
.single-page .sidebar .newsletter-card .newsletter-form .form-textarea::placeholder {
  color: #9ca3af;
}

.single-page .sidebar .newsletter-card .newsletter-form .form-submit {
  width: 100%;
  background: #b49e42;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.single-page .sidebar .newsletter-card .newsletter-form .form-submit:hover {
  background: #8f7d34;
}

.single-page .article-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 32px;
  margin-top: 48px;
}

.single-page .article-footer .article-meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.single-page .article-footer .article-meta-footer .update-date {
  font-size: 14px;
  color: #6b7280;
}

.single-page .article-footer .article-meta-footer .share-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.single-page .article-footer .article-meta-footer .share-section .share-label {
  font-size: 14px;
  color: #6b7280;
}

.single-page .article-footer .article-meta-footer .share-section .share-links {
  display: flex;
  gap: 12px;
}

.single-page .article-footer .article-meta-footer .share-section .share-links .share-link {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.single-page .article-footer .article-meta-footer .share-section .share-links .share-link:hover {
  color: #d85d63;
}

.single-page .article-footer .article-meta-footer .share-section .share-links .share-link svg {
  width: 20px;
  height: 20px;
}

.single-page #reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #d85d63;
  z-index: 50;
  transition: width 0.3s ease;
}

.single-page .breadcrumb {
  background: white;
  border-bottom: 1px solid #f3f4f6;
}

.single-page .breadcrumb nav {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
}

.single-page .breadcrumb nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-page .breadcrumb nav a:hover {
  color: #d85d63;
}

.single-page .breadcrumb nav svg {
  width: 16px;
  height: 16px;
  margin: 0 8px;
}

.single-page .breadcrumb nav .current {
  color: #383838;
}

.single-page .back-to-list {
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 32px 0;
}

.single-page .back-to-list .back-link {
  display: inline-flex;
  align-items: center;
  background: #f3f4f6;
  color: #383838;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.single-page .back-to-list .back-link:hover {
  background: #e5e7eb;
}

.single-page .back-to-list .back-link svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

@media (max-width: 995px) {
  .single-page .article-header .article-title {
    font-size: 1.75rem;
  }

  .single-page .article-header .featured-image {
    margin: 0 -16px 32px;
    border-radius: 0;
  }

  .single-page .article-content .prose h2 {
    font-size: 1.5rem;
    margin: 32px 0 20px;
  }

  .single-page .article-content .prose h3 {
    font-size: 1.125rem;
    margin: 24px 0 12px;
  }

  .single-page .article-content .prose .highlight-box,
  .single-page .article-content .prose .info-card,
  .single-page .article-content .prose .warning-box {
    margin: 0 -16px 24px;
    border-radius: 0;
  }

  .single-page .article-content .cta-section {
    margin: 0 -16px 32px;
    border-radius: 0;
    padding: 32px 16px;
  }

  .single-page .sidebar {
    margin-top: 48px;
  }

  .single-page .sidebar .sidebar-card {
    margin: 0 -16px 24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .single-page .article-footer .article-meta-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .single-page .article-footer .article-meta-footer .share-section {
    align-self: stretch;
    justify-content: space-between;
  }

  .single-page .back-to-list {
    padding: 24px 0;
  }
}

.single-page .fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.single-page .slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.single-page .slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.seminer-page .seminar-hero-section {
  position: relative;
  padding: 110px 0 0px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section {
    padding: 40px 0;
  }
}

.seminer-page .seminar-hero-section .seminar-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section .seminar-hero-container {
    padding: 0 20px;
  }
}

.seminer-page .seminar-hero-section .seminar-hero-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 646px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section .seminar-hero-content {
    flex-direction: column;
    min-height: auto;
    gap: 24px;
  }
}

.seminer-page .seminar-hero-section .seminar-hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 975px;
  height: 646px;
  background-image: url("../img/img-intro.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  opacity: 1;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section .seminar-hero-bg-image {
    display: none;
  }
}

.seminer-page .seminar-hero-section .seminar-hero-text {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section .seminar-hero-text {
    max-width: 100%;
    text-align: left;
    order: 2;
  }
}

.seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-title {
  color: #D85D63;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 50px;
  line-height: 80px;
  letter-spacing: 3.5px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-title {
    font-size: 36px;
    line-height: 60px;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    text-align: left;
  }
}

.seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-title span {
  color: #D85D63;
}

.seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-subtitle {
  color: #383838;
  font-weight: 600;
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.5;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-subtitle {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 24px;
    text-align: left;
  }
}

.seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-info-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 32px 40px;
  max-width: 600px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-info-box {
    padding: 24px;
    max-width: 100%;
  }
}

.seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-info-box .seminar-hero-info-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-info-box .seminar-hero-info-content .seminar-hero-info-item {
  color: #383838;
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-info-box .seminar-hero-info-content .seminar-hero-info-item {
    font-size: 14px;
  }

  .seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-info-box .seminar-hero-info-content .seminar-hero-info-item:nth-child(4) br {
    display: none;
  }

  .seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-info-box .seminar-hero-info-content .seminar-hero-info-item:nth-child(4)::after {
    content: "\a（名前／メール／希望日時／備考）";
    white-space: pre;
  }
}

.seminer-page .seminar-hero-section .seminar-hero-mobile-image {
  display: none;
}

@media (max-width: 996px) {
  .seminer-page .seminar-hero-section .seminar-hero-mobile-image {
    display: block;
    width: 100%;
    order: 1;
    height: 80vw;
  }

  .seminer-page .seminar-hero-section .seminar-hero-mobile-image img {
    width: 100%;

    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    object-position: 24% 50%;
    object-fit: cover;
  }
}

.seminer-page .seminar-schedule-section {
  padding: 64px 0;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section {
    padding: 40px 0;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.seminar-schedule-container .session-highlight {
  margin: 0 auto 50px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-container {
    padding: 0 20px;
  }

  .seminar-schedule-container .session-highlight {
    margin: 0 auto 50px;
  }

}

.seminer-page .seminar-schedule-section .seminar-schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1024px;
  margin: 0 auto;
}

.seminer-page .seminar-schedule-section .seminar-schedule-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.seminer-page .seminar-schedule-section .seminar-schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left-color: #d85d63;
  border-left-width: 4px;
}

.seminer-page .seminar-schedule-section .seminar-schedule-header {
  background: #d85d63;
  color: white;
  padding: 12px 40px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-header {
    padding: 12px 20px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-header .seminar-schedule-date-info {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 16px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-header .seminar-schedule-date-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-header .seminar-schedule-date-info .seminar-schedule-date {
  font-weight: 600;
  font-size: 20px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-header .seminar-schedule-date-info .seminar-schedule-date {
    font-size: 18px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-header .seminar-schedule-date-info .seminar-schedule-time {
  font-size: 18px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-header .seminar-schedule-date-info .seminar-schedule-time {
    font-size: 14px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-header .seminar-schedule-title {
  line-height: 1.4;
  font-size: 18px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-header .seminar-schedule-title {
    font-size: 14px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-content {
  padding: 32px 40px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-content {
    padding: 20px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-info {
    gap: 12px;
    margin-bottom: 16px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-info-item {
    gap: 12px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-info-item .seminar-schedule-bullet {
  width: 6px;
  height: 6px;
  background: #d85d63;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-info-item .seminar-schedule-label {
  font-weight: 600;
  color: #383838;
  white-space: nowrap;
  font-size: 16px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-info-item .seminar-schedule-label {
    font-size: 14px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-info-item .seminar-schedule-value {
  color: #383838;
  line-height: 1.5;
  font-size: 16px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-info-item .seminar-schedule-value {
    font-size: 14px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-description {
  border: 1px solid #383838;
  border-radius: 8px;
  padding: 24px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-description {
    padding: 16px;
  }
}

.seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-description p {
  margin: 0;
  color: #383838;
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 996px) {
  .seminer-page .seminar-schedule-section .seminar-schedule-content .seminar-schedule-description p {
    font-size: 12px;
  }
}

@media print {
  .no-print {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section {
    padding: 20px 0;
  }

  .footer {
    display: none !important;
  }

  .voice-page .show-more-btn {
    display: none !important;
  }

  .voice-page .qa-card {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 20px;
  }

  .column-page .column-card,
  .column-page .column-card-mobile {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 20px;
  }

  .seminer-page .seminar-card {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 20px;
  }

  .seminer-page .cta-section .cta-button {
    display: none !important;
  }

  .faq-page .faq-item {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 20px;
  }

  .single-page .sidebar {
    display: none !important;
  }

  .single-page .article-content .cta-section .cta-button {
    display: none !important;
  }

  .single-page #reading-progress {
    display: none !important;
  }

  .single-page .back-to-list {
    display: none !important;
  }
}

.text-secondary {
  color: #b49e42 !important;
}

.text-primary {
  color: #d85d63 !important;
}

.faq-question-text {
  color: #b49e42 !important;
}

.faq-q-symbol {
  font-size: 1.5rem !important;
}

@media (min-width: 1280px) {
  .faq-q-symbol {
    font-size: 2.25rem !important;
  }
}

.faq-a-symbol {
  font-size: 1.5rem !important;
}

@media (min-width: 1280px) {
  .faq-a-symbol {
    font-size: 2.25rem !important;
  }
}

.faq-section {
  background-color: #faf8f4 !important;
}

.faq-item {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  transition: none !important;
}

.faq-item:hover {
  transform: none !important;
  box-shadow: none !important;
}

.faq-question {
  background: transparent !important;
}

.faq-answer {
  background: #fff !important;
}

.cta-button-hover {
  transition: all 0.3s ease;
}

.cta-button-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button-hover:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header {
  background-color: #faf8f4;
  padding: 16px 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1279px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 16px 20px;
  }
}

@media (min-width: 1280px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 16px 0;
  }
}

.header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 1280px) {
  .header .header-container {
    max-width: none;
    margin: 0;
    padding: 0 12px;
  }
}

.header .header-container .logo {
  display: block;
}

@media (max-width: 1279px) {
  .header .header-container .logo {
    height: 24px;
    width: 176px;
  }
}

@media (min-width: 1280px) {
  .header .header-container .logo {
    height: 26px;
    width: 150px;
  }
}

.header .header-container .logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header .header-container .nav {
  display: none;
}

@media (min-width: 1280px) {
  .header .header-container .nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }
}

@media (min-width: 1700px) {
  .header .header-container .logo {
    height: 36px;
    width: 256px;
  }

  .header .header-container .nav {

    gap: 32px;
  }
}

.header .header-container .nav .nav-link {
  color: #383838;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.12px;
  text-decoration: none;
  transition: color 0.3s ease;
}


.header .header-container .nav .nav-link:hover {
  color: #d85d63;
}

@media (min-width: 1536px) {
  .header .header-container .nav .nav-link {
    font-size: 14px;
  }
}

.header .header-container .nav .cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .header-container .nav .cta-buttons .cta-primary {
  background-color: #d85d63;
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.header .header-container .nav .cta-buttons .cta-primary:hover {
  background-color: #d3484f;
}

@media (min-width: 1536px) {
  .header .header-container .nav .cta-buttons .cta-primary {
    font-size: 14px;
  }
}

.header .header-container .nav .cta-buttons .cta-secondary {
  background-color: white;
  border: 2px solid #b49e42;
  color: #b49e42;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header .header-container .nav .cta-buttons .cta-secondary:hover {
  background-color: #b49e42;
  color: white;
}

@media (min-width: 1536px) {
  .header .header-container .nav .cta-buttons .cta-secondary {
    font-size: 14px;
  }
}

.header .header-container .hamburger-btn {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid #d85d63;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 50;
}

@media (min-width: 1280px) {
  .header .header-container .hamburger-btn {
    display: none;
  }
}

.header .header-container .hamburger-btn:hover {
  background-color: rgba(216, 93, 99, 0.1);
}

.header .header-container .hamburger-btn .hamburger-line {
  width: 16px;
  height: 2px;
  background-color: #d85d63;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header .header-container .hamburger-btn .hamburger-line.line-1 {
  position: relative;
}

.header .header-container .hamburger-btn .hamburger-line.line-2 {
  position: relative;
}

.header .header-container .hamburger-btn.active .hamburger-line.line-1 {
  transform: rotate(45deg) translate(2px, 2px);
}

.header .header-container .hamburger-btn.active .hamburger-line.line-2 {
  transform: rotate(-45deg) translate(2px, -2px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #f0dfd1;
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  display: block;
  transform: translateX(0);
}

@media (min-width: 1280px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu .menu-content {
  padding-top: 90px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 64px;
}

.mobile-menu .menu-content .menu-links {
  margin-bottom: 40px;
}

.mobile-menu .menu-content .menu-links .menu-link {
  display: block;
  color: #383838;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.12px;
  padding: 8px 0;
  border-bottom: 1px solid #383838;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu .menu-content .menu-links .menu-link:hover {
  color: #d85d63;
}

.mobile-menu .menu-content .menu-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu .menu-content .menu-cta .cta-primary {
  width: 100%;
  background-color: #d85d63;
  color: white;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mobile-menu .menu-content .menu-cta .cta-primary:hover {
  background-color: #d3484f;
}

.mobile-menu .menu-content .menu-cta .cta-primary img {
  width: 24px;
  height: 24px;
}

.mobile-menu .menu-content .menu-cta .cta-secondary {
  width: 100%;
  background-color: white;
  border: 2px solid #b49e42;
  color: #b49e42;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu .menu-content .menu-cta .cta-secondary:hover {
  background-color: #b49e42;
  color: white;
}

.mobile-menu .menu-content .menu-cta .cta-secondary img {
  width: 24px;
  height: 24px;
}

.hero-section {
  position: relative;
  background-color: #faf8f4;
}

.hero-section .hero-content {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-section .hero-content .hero-media {
  width: 100%;
}

.hero-section .hero-content .hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-section .hero-content .fc-badge {
  position: absolute;
  top: 273px;
  left: 774px;
  width: 155px;
  height: 155px;
}

@media (max-width: 1279px) {
  .hero-section .hero-content .fc-badge {
    top: 38px;
    left: 19px;
    width: 106px;
    height: 106px;
  }

}

@media (max-width: 769px) {

  .hero-section .hero-content .hero-media img {
    width: 100%;
    max-width: none;
    height: 100%;
    display: block;
    object-position: 67% 50%;
    object-fit: cover;
  }

  .hero-section .hero-content .hero-media {
    width: 100%;
    height: 98vw;
  }
}

.hero-section .hero-content .fc-badge img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero-section .hero-content .hero-text {
  position: absolute;
  top: 50%;
  /*470px*/
  left: 202px;
  width: 777px;
}

@media (max-width: 1279px) {
  .hero-section .hero-content .hero-text {
    top: 50%;
    left: 19px;
    width: 324px;
  }
}

.hero-section .hero-content .hero-text .main-title {
  color: #d85d63;
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 0;
  font-size: 55px;
  line-height: 80px;
  letter-spacing: 3.85px;
  margin-bottom: 40px;
  text-shadow: 4px 4px 20px #fff, -4px -4px 20px #fff,
    -4px 4px 20px #fff, 4px -4px 20px #fff,
    4px 0 20px #fff, -4px 0 20px #fff,
    0 4px 20px #fff, 0 -4px 20px #fff;
}

@media (max-width: 1279px) {
  .hero-section .hero-content .hero-text .main-title {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 2.31px;
    margin-bottom: 8px;
  }
}

.hero-section .hero-content .hero-text .subtitle {
  color: #383838;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 0;
  text-shadow: 4px 4px 4px #fff, -4px -4px 4px #fff,
    -4px 4px 4px #fff, 4px -4px 4px #fff,
    4px 0 4px #fff, -4px 0 4px #fff,
    0 4px 4px #fff, 0 -4px 4px #fff;
}

@media (max-width: 1279px) {
  .hero-section .hero-content .hero-text .subtitle {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 1.12px;
    margin-bottom: 4px;
  }
}

@media (min-width: 1280px) {
  .hero-section .hero-content .hero-text .subtitle {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 2.1px;
    margin-bottom: 12px;
  }
}

.hero-section .hero-content .hero-text .highlight-box {
  background-color: #b49e42;
  padding: 8px;
}

@media (max-width: 1279px) {
  .hero-section .hero-content .hero-text .highlight-box {
    height: 56px;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .hero-section .hero-content .hero-text .highlight-box {
    padding: 8px;
  }
}

.hero-section .hero-content .hero-text .highlight-box .highlight-text {
  color: white;
  font-weight: 500;
  margin: 0;
  font-size: 18px;
}

@media (max-width: 1279px) {
  .hero-section .hero-content .hero-text .highlight-box .highlight-text {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.98px;
  }
}

@media (min-width: 1280px) {
  .hero-section .hero-content .hero-text .highlight-box .highlight-text {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.4px;
  }
}

.hero-section .hero-content .decorative-element {
  position: absolute;
}

@media (max-width: 1279px) {
  .hero-section .hero-content .decorative-element {
    bottom: 20px;
    right: 20px;
    width: 84px;
    height: 84px;
  }
}

@media (min-width: 1280px) {
  .hero-section .hero-content .decorative-element {
    bottom: 185px;
    right: 160px;
    width: 121px;
    height: 121px;
  }
}

.hero-section .hero-content .decorative-element img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero-section .hero-content .scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
}

@media (max-width: 1279px) {
  .hero-section .hero-content .scroll-indicator {
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
  }
}

.hero-section .hero-content .scroll-indicator img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
  animation: rotate 10s linear infinite;
}


.hero-section .hero-content .scroll-indicator .scroll {
  position: absolute;
  right: calc(50% - 2px);
  top: calc(10% + 5px);
  writing-mode: vertical-rl;
}

.hero-section .hero-content .scroll-indicator .scroll::before {
  animation: scroll 2s infinite;
  background-color: white;
  bottom: -65px;
  content: "";
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@media (max-width: 500px) {
  .hero-section .hero-content .scroll-indicator {
    bottom: 10px;
    width: 60px;
    height: 60px;
  }

  .hero-section .hero-content .scroll-indicator .scroll::before {
    bottom: -37px;
    content: "";
    height: 30px;
    left: -4px;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.problem-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 4xl;
  margin: 0 auto;
  gap: 40px;
}

@media (max-width: 996px) {
  .problem-content {
    gap: 20px;
  }
}

.problem-content .problem-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 996px) {
  .problem-content .problem-row {
    gap: 20px;
  }
}

.problem-content .problem-row.problem-row-top {
  margin-bottom: 0;
}

.problem-content .problem-row.problem-row-bottom {
  margin-top: 0;
}

.problem-content .problem-circle {
  background-color: #f1eae0;
  border-radius: 130px;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 996px) {
  .problem-content .problem-circle {
    width: 120px;
    height: 120px;
    border-radius: 130px;
  }
}

.problem-content .problem-text {
  color: #383838;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.12px;
  text-align: center;
}

@media (max-width: 996px) {
  .problem-content .problem-text {
    font-size: 11px;
    line-height: 20px;
    letter-spacing: 0.77px;
  }
}

.problem-content .problem-image {
  width: 100px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 996px) {
  .problem-content .problem-image {
    width: 80px;
    height: 160px;
  }
}

.features-section .features-container .feature-item {
  display: flex;
  gap: 40px;
  align-items: center;
}

.features-section .features-container .feature-item .feature-visual {
  display: flex;
  align-items: flex-end;
}

.features-section .features-container .feature-item .feature-visual .feature-number {
  display: flex;
  height: 79.859px;
  align-items: center;
  justify-content: center;
  width: 53px;
}

.features-section .features-container .feature-item .feature-visual .feature-number .feature-number-text {
  color: #383838;
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 2.1px;
}

.features-section .features-container .feature-item .feature-visual .feature-number .feature-number-text span:last-child {
  font-size: 24px;
}

.features-section .features-container .feature-item .feature-visual .feature-image {
  width: 600px;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.features-section .features-container .feature-item .feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 500px;
}

.features-section .features-container .feature-item .feature-content .feature-title {
  color: #b49e42;
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: 2.1px;
}

.features-section .features-container .feature-item .feature-content .feature-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-section .features-container .feature-item .feature-content .feature-text p {
  color: #383838;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 1.12px;
}

@media (max-width: 996px) {
  .features-section .features-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .features-section .features-container .feature-item {
    display: flex;
    flex-direction: column;

    gap: 4px;
  }

  .features-section .features-container .feature-item.feature-item-2 .feature-visual {
    order: 1;
  }

  .features-section .features-container .feature-item.feature-item-2 .feature-content {
    order: 2;
  }

  .features-section .features-container .feature-item .feature-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
  }

  .features-section .features-container .feature-item .feature-visual .feature-number {
    height: 62.297px;
    width: 34px;
  }

  .features-section .features-container .feature-item .feature-visual .feature-number .feature-number-text {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: 2.1px;
  }

  .features-section .features-container .feature-item .feature-visual .feature-number .feature-number-text span:last-child {
    font-size: 16px;
  }

  .features-section .features-container .feature-item .feature-visual .feature-image {
    width: 300px;
    height: 195px;
  }

  .features-section .features-container .feature-item .feature-content {
    width: 100%;
    max-width: 400px;
    gap: 4px;
  }
}

@media (max-width: 996px) and (min-width: 400px) {
  .features-section .features-container .feature-item .feature-content {}
}

@media (max-width: 996px) {
  .features-section .features-container .feature-item .feature-content .feature-title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.4px;
    padding: 20px 0 0;
  }

  .features-section .features-container .feature-item .feature-content .feature-text {
    gap: 4px;
  }

  .features-section .features-container .feature-item .feature-content .feature-text p {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.98px;
  }
}

.subtitle-section {
  background: white;
  padding: 32px 0;
}

@media (max-width: 996px) {
  .subtitle-section {
    padding: 24px 0;
  }
}

.subtitle-section .subtitle {
  color: #383838;
  font-weight: 500;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 1.68px;
}

@media (max-width: 996px) {
  .subtitle-section .subtitle {
    text-align: left;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1.26px;
  }
}

.points-section {
  background: white;
  padding: 64px 0;
}

@media (max-width: 996px) {
  .points-section {
    padding: 40px 0;
  }
}

.points-section .points-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 996px) {
  .points-section .points-container {
    padding: 0 20px;
  }
}

.points-section .points-grid {
  display: grid;
  gap: 32px;
}



@media (min-width: 1280px) {
  .points-section .points-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (min-width: 997px) and (max-width: 1279px) {
  .points-section .points-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;

    margin: 0 auto;

  }
}

@media (max-width: 996px) {
  .points-section .points-grid {
    gap: 32px;
    grid-template-columns: 1fr;
    width: 70%;
    margin: 0 auto;
    min-width: 330px;
    max-width: 366px;
  }
}

.points-section .point-item {
  position: relative;
  background: white;
}

.points-section .point-header {
  margin-bottom: 16px;
}

@media (max-width: 996px) {
  .points-section .point-header {
    margin-bottom: 16px;
  }
}

.points-section .point-badge {
  background: white;
  border: 1px solid #383838;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.points-section .point-badge .point-badge-text {
  color: #383838;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}

.points-section .point-badge .point-badge-text span:first-child {
  font-size: 16px;
}

.points-section .point-badge .point-badge-text span:last-child {
  font-size: 24px;
}

.points-section .point-title {
  color: #b49e42;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin: 0;
  line-height: 1.4;
  font-size: 24px;
  white-space: nowrap;
}

@media (max-width: 996px) {
  .points-section .point-title {
    font-size: 20px;
  }
}


.points-section .point-image {

  margin-bottom: 16px;

  border-radius: 8px;
}

.points-section .point-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


.points-section .point-decorative-line {
  position: absolute;
  width: 1px;
  height: 98px;
  background-color: #383838;
  left: 12px;
  transform: translateY(-70px);
}

.points-section .point-description {
  color: #383838;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  padding-left: 24px;
  font-family: "Noto Serif JP", serif;
}

.points-section .point-description p {
  margin: 0;
}

@media (min-width: 997px) {
  .points-section .point-description {
    font-size: 14px;
    line-height: 1.8;
  }
}

.cta-section {
  background-color: #f0dfd1;
  padding: 64px 0;
}

@media (max-width: 996px) {
  .cta-section {
    padding: 40px 0;
  }
}

.cta-section .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 996px) {
  .cta-section .cta-container {
    padding: 0 20px;
  }
}

.cta-section .cta-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 996px) {
  .cta-section .cta-content {
    gap: 20px;
  }
}

.cta-section .cta-title {
  color: #383838;
  font-weight: 500;
  margin: 0;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 1.4px;
}

@media (max-width: 996px) {
  .cta-section .cta-title {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1.12px;
  }
}

.cta-section .cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}

@media (max-width: 996px) {
  .cta-section .cta-buttons {
    flex-direction: column;
    gap: 20px;
  }
}

.cta-section .cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 20px 24px;
  font-size: 20px;
  letter-spacing: 1.4px;
  width: 385px;
}

@media (max-width: 996px) {
  .cta-section .cta-button {
    padding: 20px 24px;
    font-size: 19px;
    letter-spacing: 1.4px;
    width: 100%;
  }
}

.cta-section .cta-button .cta-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.cta-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section .cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-section .cta-button-primary {
  background-color: #d85d63;
  color: white;
}

.cta-section .cta-button-primary:hover {
  background-color: #ce343b;
}

.cta-section .cta-button-secondary {
  background-color: white;
  border: 2px solid #b49e42;
  color: #b49e42;
}

.cta-section .cta-button-secondary:hover {
  background-color: #b49e42;
  color: white;
}

.main-cta-section {
  padding: 64px 0;
}

@media (max-width: 996px) {
  .main-cta-section {
    padding: 40px 0;
  }
}

.main-cta-section .main-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.main-cta-section .main-cta-content {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.main-cta-section .main-cta-content .main-cta-title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

@media (max-width: 996px) {
  .main-cta-section .main-cta-content .main-cta-title-section {
    margin-bottom: 24px;
    gap: 16px;
  }
}

.main-cta-section .main-cta-content .main-cta-title-section .main-cta-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 996px) {
  .main-cta-section .main-cta-content .main-cta-title-section .main-cta-title-row {
    gap: 8px;
  }
}

.main-cta-section .main-cta-content .main-cta-title-section .main-cta-title-row .main-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 12px;
}

@media (max-width: 996px) {
  .main-cta-section .main-cta-content .main-cta-title-section .main-cta-title-row .main-cta-bar {
    height: 40px;
    width: 8px;
  }
}

.main-cta-section .main-cta-content .main-cta-title-section .main-cta-title-row .main-cta-bar img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.main-cta-section .main-cta-content .main-cta-title-section .main-cta-title-row .main-cta-title {
  text-align: center;
  margin: 0;
}

.main-cta-section .main-cta-content .main-cta-title-section .main-cta-title-row .main-cta-title h2 {
  color: #d85d63;
  font-weight: 500;
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.4px;
}

@media (max-width: 996px) {
  .main-cta-section .main-cta-content .main-cta-title-section .main-cta-title-row .main-cta-title h2 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.12px;
  }
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 568px;
  height: 130px;
}

@media (max-width: 996px) {
  .main-cta-section .main-cta-content .main-cta-button-section .main-cta-button {
    width: 100%;
    max-width: 335px;
    height: 76px;
    margin-top: 16px;
  }
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/btn-seminer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 4px 6px #DDD5C6);
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(123, 123, 123, 0.5);
  transition: background-color 0.3s ease;
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-content .main-cta-button-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 996px) {
  .main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-content .main-cta-button-inner {
    gap: 8px;
  }
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-content .main-cta-button-inner .main-cta-button-text {
  color: white;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 20px;
}

@media (max-width: 996px) {
  .main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-content .main-cta-button-inner .main-cta-button-text {
    font-size: 14px;
  }
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-content .main-cta-button-inner .main-cta-button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
}

@media (max-width: 996px) {
  .main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-content .main-cta-button-inner .main-cta-button-arrow {
    width: 16px;
    height: 16px;
  }
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button .main-cta-button-content .main-cta-button-inner .main-cta-button-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button:hover .main-cta-button-overlay {
  background-color: rgba(123, 123, 123, 0.3);
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button:hover .main-cta-button-arrow {
  transform: translateX(4px);
}

.main-cta-section .main-cta-content .main-cta-button-section .main-cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-about-section {
  background-color: #faf8f4;
  position: relative;
}

.hero-about-section .hero-about-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.hero-about-section .hero-about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 100px;
}

.hero-about-section .hero-about-content .hero-about-text-box {
  background: white;
  width: 40%;
  height: 360px;
  min-width: 400px;

  padding: 80px 0px;
  position: relative;
  z-index: 2;
}

.hero-about-section .hero-about-content .hero-about-text-box .hero-about-title {
  color: #B49E42;
  font-size: 30px;
  line-height: 50px;
  letter-spacing: 2.1px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  text-align: left;

}

.hero-about-section .hero-about-content .hero-about-text-box .hero-about-description {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 1.12px;
  color: #383838;
}

.hero-about-section .hero-about-content .hero-about-image {
  /* position: absolute; */
  /* right: 0; */
  /* top: 0; */
  /* width: 50%; */
  z-index: 1;
}

.hero-about-section .hero-about-content .hero-about-image img {
  width: 100%;
  max-width: 540px;
  height: auto;
}

@media (min-width: 997px) and (max-width: 1200px) {

  .hero-about-section .hero-about-content .hero-about-text-box .hero-about-title {
    font-size: 22px;
  }
}

@media (max-width: 996px) {
  .hero-about-section .hero-about-content {
    flex-direction: column;
    padding-bottom: 64px;
  }

  .hero-about-section .hero-about-content .hero-about-image {
    position: relative;
    right: auto;
    top: auto;
    width: 75%;
    min-width: 300px;
    max-width: 400px;
    margin: 0 auto 0 auto;
    z-index: -5;
    order: 1;
  }

  .hero-about-section .hero-about-content .hero-about-image img {
    max-width: 100%;
  }

  .hero-about-section .hero-about-content .hero-about-text-box {
    width: 75%;
    min-width: 300px;
    max-width: 400px;

    padding: 35px 0;
    margin: 0px auto 0;
    z-index: -4;
    order: 2;
    height: 180px;
  }

  .hero-about-section .hero-about-content .hero-about-text-box .hero-about-title {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    padding-top: 0px;
  }

  .hero-about-section .hero-about-content .hero-about-text-box .hero-about-description {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 1px;
  }
}

/* Q&Aアコーディオン用スタイル */
/* Voiceセクション用：スマホ版のみ非表示、PC版では表示 */
.hidden-voice {
  display: block;
}

@media (max-width: 767px) {
  .hidden-voice {
    display: none !important;
  }
}

/* FAQセクション用：全デバイスで非表示 */
.hidden-faq {
  display: none;
}

.show-more-btn {
  margin-top: 24px;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 127, 0.3);
}

/* Voiceセクション用のアニメーション（スマホ版のみ） */
@media (max-width: 767px) {
  .voice-mobile-qa {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none !important;
  }

  .voice-mobile-qa.show {
    opacity: 1;
    transform: translateY(0);
    display: block !important;
  }
}

/* FAQセクション用のアコーディオンスタイル */
.faq-item.hidden-faq {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.hidden-faq.show {
  opacity: 1;
  transform: translateY(0);
}

.seminar-booking-section .seminar-header {
  margin-bottom: 3rem;
}

.seminar-booking-section .seminar-header .seminar-balloon-img {
  height: auto;
}

.seminar-booking-section .seminar-header .seminar-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #B49E42;
}

.seminar-booking-section .seminar-header .seminar-description {
  font-size: 1.125rem;
  color: #383838;
}

.seminar-booking-section .seminar-header .seminar-description .mobile-text {
  display: none;
}

.seminar-booking-section .seminar-header .seminar-description .desktop-text {
  display: inline;
}

.seminar-booking-section .seminar-content {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.seminar-booking-section .seminar-content .seminar-layout {
  display: flex;
  gap: 1.5rem;
}

.seminar-booking-section .seminar-content .seminar-layout .individual-session {
  width: 40%;
  min-width: 0;
}

.seminar-booking-section .seminar-content .seminar-layout .session-divider {
  width: 1px;
  background-color: #d1d5db;
}

.seminar-booking-section .seminar-content .seminar-layout .group-session {
  width: 60%;
  min-width: 0;
}

.seminar-booking-section .session-content {
  margin-bottom: 1.5rem;
}

.seminar-booking-section .session-content .session-header {
  text-align: center;
  margin-bottom: 1rem;
}

.seminar-booking-section .session-content .session-header .session-title-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.seminar-booking-section .session-content .session-header .session-title-wrapper .session-icon {
  width: 2rem;
  height: 2rem;
}

.seminar-booking-section .session-content .session-header .session-title-wrapper .session-title-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #D85D63;
}

.seminar-booking-section .session-content .session-description {
  font-size: 1rem;
  color: #383838;
  margin-bottom: 1rem;
  line-height: 1.625;
}

.seminar-booking-section .session-content .session-description .mobile-desc {
  display: none;
}

.seminar-booking-section .session-content .session-description .desktop-desc {
  display: inline;
}

.seminar-schedule-section ul.seminar-description {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5rem;
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}

.seminar-schedule-section ul.seminar-description li {
  display: list-item;
  padding-left: 0.5rem;
}

.seminar-schedule-section ul.seminar-description-custom {
  list-style: none !important;
  padding-left: 0;
}

.seminar-schedule-section ul.seminar-description-custom li.custom-bullet {
  position: relative;
  padding-left: 1rem;
}

.seminar-schedule-section ul.seminar-description-custom li.custom-bullet::before {
  content: "・";
  font-size: 20px;
  position: absolute;
  left: -4px;
  top: 1px;
}

@media (max-width: 996px) {
  .seminar-schedule-section ul.seminar-description-custom li.custom-bullet::before {
    content: "・";
    font-size: 20px;
    position: absolute;
    left: -3px;
    top: -2px;
  }
}

.seminar-booking-section .session-content .session-features {
  display: block;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
  flex-wrap: nowrap;
}

.seminar-booking-section .session-content .session-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 4px 0;
  max-width: 439px;
  margin: 0 auto;
  text-align: left;
}

.seminar-booking-section .session-content .session-features .feature-item .feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin: 4px 0 0 0;
}

.seminar-booking-section .session-content .session-features .feature-item .feature-text {
  font-size: 1.05rem;
}

.seminar-booking-section .session-content .session-highlight {
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.seminar-booking-section .session-content .session-highlight .highlight-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #d85d63;
}



.seminar-booking-section .individual-session .session-features {
  gap: 0.5rem;
}

.seminar-booking-section .individual-session .session-highlight {
  background-color: #fffbeb;
}

.seminar-booking-section .group-session .session-content {
  text-align: center;
}

.seminar-booking-section .group-session .session-features {
  gap: 1rem;
}

.seminar-booking-section .group-session .session-highlight {
  background-color: #FFFBED;
}

@media (max-width: 996px) {
  .seminar-booking-section .seminar-header {
    margin-bottom: 2rem;
  }

  .seminar-booking-section .seminar-header .seminar-balloon-img {
    max-width: 280px;
  }

  .seminar-booking-section .seminar-header .seminar-title {
    font-size: 1.5rem;
  }

  .seminar-booking-section .seminar-header .seminar-description {
    font-size: 0.875rem;
  }

  .seminar-booking-section .seminar-header .seminar-description .mobile-text {
    display: inline;
  }

  .seminar-booking-section .seminar-header .seminar-description .desktop-text {
    display: none;
  }

  .seminar-booking-section .seminar-content {
    padding: 1.5rem;
  }

  .seminar-booking-section .seminar-content .seminar-layout {
    display: block;
    gap: 0;
  }

  .seminar-booking-section .seminar-content .seminar-layout .individual-session,
  .seminar-booking-section .seminar-content .seminar-layout .group-session {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .seminar-booking-section .seminar-content .seminar-layout .individual-session:last-child,
  .seminar-booking-section .seminar-content .seminar-layout .group-session:last-child {
    margin-bottom: 0;
  }

  .seminar-booking-section .seminar-content .seminar-layout .session-divider {
    display: none;
  }

  .seminar-booking-section .session-content {
    text-align: center;
  }

  .seminar-booking-section .session-content .session-header .session-title-wrapper {
    padding: 0.5rem 0.75rem;
  }

  .seminar-booking-section .session-content .session-header .session-title-wrapper .session-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .seminar-booking-section .session-content .session-header .session-title-wrapper .session-title-text {
    font-size: 1rem;
  }

  .seminar-booking-section .session-content .session-description {
    font-size: 0.875rem;
    text-align: center;
  }

  .seminar-booking-section .session-content .session-description .mobile-desc {
    display: inline;
  }

  .seminar-booking-section .session-content .session-description .desktop-desc {
    display: none;
  }

  .seminar-booking-section .session-content .session-features {
    display: block;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .seminar-booking-section .session-content .session-features .feature-item {
    justify-content: flex-start;
    width: 100%;
    max-width: 300px;
  }

  .seminar-booking-section .session-content .session-features .feature-item .feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin: 7px 0 0 0;
  }

  .seminar-booking-section .session-content .session-features .feature-item .feature-text {
    font-size: 0.875rem;
  }

  .seminar-booking-section .session-content .session-highlight .highlight-text {
    font-size: 0.875rem;
  }

  .seminar-booking-section .individual-session .session-description {
    text-align: center;
  }

  .seminar-booking-section .group-session .session-highlight .highlight-text {
    color: #383838;
    font-size: 14px;
  }
}

.download-section {
  background-color: #f0dfd1;
  padding: 4rem 0;
}

.download-section .download-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.download-section .download-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.download-section .download-header h1 {
  color: #383838;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.04rem;
  letter-spacing: 0.1em;
}

.download-section .download-header .bg-mama-gold {
  background-color: #b49e42;
  width: 8rem;
  height: 1px;
}

.download-section .download-form {
  margin: 0 auto;
}

.download-section .download-form .form-field {
  margin-bottom: 1.875rem;
}

.download-section .download-form .form-field:last-of-type {
  margin-bottom: 1.5rem;
}

.download-section .download-form .form-label {
  display: block;
  color: #383838;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 0.625rem;
}

.download-section .download-form .form-input,
.download-section .download-form .form-textarea {
  width: 100%;
  background-color: white;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.download-section .download-form .form-input::-moz-placeholder,
.download-section .download-form .form-textarea::-moz-placeholder {
  color: #c7b89f;
}

.download-section .download-form .form-input::placeholder,
.download-section .download-form .form-textarea::placeholder {
  color: #c7b89f;
}

.download-section .download-form .form-input:focus,
.download-section .download-form .form-textarea:focus {
  box-shadow: 0 0 0 2px rgba(216, 93, 99, 0.2);
}

.download-section .download-form .form-textarea {
  resize: none;
  min-height: 8rem;
}

.download-section .download-form .custom-dropdown {
  position: relative;
  width: 100%;
}

.download-section .download-form .custom-dropdown .dropdown-trigger {
  background-color: white;
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #c7b89f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.download-section .download-form .custom-dropdown .dropdown-trigger:hover {
  background-color: #f9f9f9;
}

.download-section .download-form .custom-dropdown .dropdown-trigger.active {
  color: #383838;
}

.download-section .download-form .custom-dropdown .dropdown-trigger img {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.download-section .download-form .custom-dropdown .dropdown-trigger.active img {
  transform: rotate(180deg);
}

.download-section .download-form .custom-dropdown .dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border-radius: 0.5rem;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 10;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.download-section .download-form .custom-dropdown .dropdown-options.hidden {
  display: none;
}

.download-section .download-form .custom-dropdown .dropdown-options.show {
  opacity: 1;
  transform: translateY(0);
}

.download-section .download-form .custom-dropdown .dropdown-options .option {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: #383838;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.download-section .download-form .custom-dropdown .dropdown-options .option:hover {
  background-color: #f9fafb;
}

.download-section .download-form .custom-dropdown .dropdown-options .option:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}

.download-section .download-form .form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.download-section .download-form .form-privacy input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: #d85d63;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
}

.download-section .download-form .form-privacy input[type=checkbox]:focus {
  box-shadow: 0 0 0 2px rgba(216, 93, 99, 0.2);
}

.download-section .download-form .form-privacy label {
  color: #383838;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  cursor: pointer;
}

.download-section .download-form .form-submit {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
}

.download-section .download-form .form-submit .download-submit-btn {
  background-color: white;
  border: 2px solid #d85d63;
  color: #d85d63;
  padding: 1.25rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.0875em;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 385px;
  justify-content: center;
  transition: all 0.3s ease;
}

.download-section .download-form .form-submit .download-submit-btn:hover {
  background-color: #d85d63;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(216, 93, 99, 0.3);
}

.download-section .download-form .form-submit .download-submit-btn:active {
  transform: translateY(0);
}

.download-section .download-form .form-submit .download-submit-btn img {
  width: 1.5rem;
  height: 1.5rem;
}

.download-section .download-form .form-mobile-spacer {
  display: none;
}

@media (min-width: 1280px) {
  .download-section {
    padding: 6.25rem 0;
  }

  .download-section .download-header {
    margin-bottom: 2rem;
  }

  .download-section .download-header h1 {
    font-size: 1.875rem;
  }

  .download-section .download-header .bg-mama-gold {
    width: 11rem;
  }
}

.footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.footer .footer-logo {
  width: 260px;
  height: 35px;
}

.footer .footer-nav-social {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.footer .footer-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 996px) {

  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer .footer-logo {
    width: 209px;
    height: 28px;
  }

  .footer .footer-nav-social {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer .footer-nav {
    gap: 1.5rem;
  }

  .download-section .download-container {
    padding: 0 1.25rem;
  }

  .download-section .download-form {
    max-width: 335px;
  }

  .download-section .download-form .form-field {
    margin-bottom: 1.25rem;
  }

  .download-section .download-form .form-field:last-of-type {
    margin-bottom: 1rem;
  }

  .download-section .download-form .form-label {
    margin-bottom: 0.5rem;
  }

  .download-section .download-form .form-mobile-spacer {
    display: block;
    height: 1.5rem;
    width: 100%;
  }

  .download-section .download-form .form-submit {
    padding-top: 0;
  }

  .download-section .download-form .form-submit .download-submit-btn {
    width: 100%;
  }

  .download-section .download-form .custom-dropdown .dropdown-options {
    max-height: 200px;
    overflow-y: auto;
  }
}

/* Q&A セクション - もっとみる機能 */
@media (max-width: 1279px) {
  .qa-hidden-mobile {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
  }

  .qa-hidden-mobile.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .qa-show-animation {
    animation: qaFadeIn 0.3s ease-in-out forwards;
  }
}

@keyframes qaFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-subtitle {
  margin: 40px 0;
}

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

@media (max-width: 996px) and (min-width: 400px) {
  .features-section .features-container .feature-item .feature-content {
    text-align: left;
  }
}

.seminar-hero-title {

  text-shadow: 4px 4px 20px #fff, -4px -4px 20px #fff,
    -4px 4px 20px #fff, 4px -4px 20px #fff,
    4px 0 20px #fff, -4px 0 20px #fff,
    0 4px 20px #fff, 0 -4px 20px #fff;
}



.seminar-hero-subtitle {
  text-shadow: 4px 4px 4px #fff, -4px -4px 4px #fff,
    -4px 4px 4px #fff, 4px -4px 4px #fff,
    4px 0 4px #fff, -4px 0 4px #fff,
    0 4px 4px #fff, 0 -4px 4px #fff;
}

.seminer-page .seminar-hero-section .seminar-hero-text {
  margin: 291px 0 0 0;
}

.seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-title {
  text-shadow: 4px 4px 20px #eaed34, -4px -4px 20px #fff, -4px 4px 20px #fff, 4px -4px 20px #fff, 4px 0 20px #fff, -4px 0 20px #fff, 0 4px 20px #fff, 0 -4px 20px #fff;
}

.pc-voice-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media (max-width: 996px) {
  .pc-voice-bottom {
    display: block;
    height: auto;
  }

  .column-page .column-section {
    padding: 60px 0;
  }

  .seminer-page .seminar-hero-section .seminar-hero-text .seminar-hero-title {
    font-size: 25px;
    line-height: 1.75;
  }

  .seminer-page .seminar-hero-section .seminar-hero-text {
    margin: 0px 0 0 0;
  }

  .seminer-page .seminar-hero-section {
    padding: 40px 0 0px;
  }

  .session-header {
    margin-bottom: 0;
  }

  .seminar-booking-section .session-content .session-header .session-title-wrapper {
    margin-bottom: 0;
  }

  .main-cta-section .main-cta-content .main-cta-title-section {
    margin-bottom: 0px;
    margin-top: 20px;
    gap: 16px;
  }

  .amelia-v2-booking #amelia-container.am-fs__wrapper {
    margin: 10px 0 !important;
  }

  .seminar-schedule-section .seminar-title {
    font-size: 1.5rem;
  }
}




/* Contact Form 7 資料請求フォーム用スタイル */
.download-section .wpcf7-form {
  margin: 0 auto;
}

.download-section .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.875rem;
}

.download-section .wpcf7-form .wpcf7-form-control-wrap:last-of-type {
  margin-bottom: 1.5rem;
}

.download-section .wpcf7-form label {
  display: block;
  color: #383838;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.download-section .wpcf7-form input[type="text"],
.download-section .wpcf7-form input[type="email"],
.download-section .wpcf7-form input[type="tel"],
.download-section .wpcf7-form textarea,
.download-section .wpcf7-form select {
  width: 100%;
  background-color: white;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #383838;
  transition: all 0.3s ease;
}

.download-section .wpcf7-form input[type="text"]::-moz-placeholder,
.download-section .wpcf7-form input[type="email"]::-moz-placeholder,
.download-section .wpcf7-form input[type="tel"]::-moz-placeholder,
.download-section .wpcf7-form textarea::-moz-placeholder {
  color: #c7b89f;
}

.download-section .wpcf7-form input[type="text"]::placeholder,
.download-section .wpcf7-form input[type="email"]::placeholder,
.download-section .wpcf7-form input[type="tel"]::placeholder,
.download-section .wpcf7-form textarea::placeholder {
  color: #c7b89f;
}

.download-section .wpcf7-form input[type="text"]:focus,
.download-section .wpcf7-form input[type="email"]:focus,
.download-section .wpcf7-form input[type="tel"]:focus,
.download-section .wpcf7-form textarea:focus,
.download-section .wpcf7-form select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(216, 93, 99, 0.2);
  border-color: #d85d63;
}

.download-section .wpcf7-form textarea {
  resize: none;
  min-height: 8rem;
}

.download-section .wpcf7-form .wpcf7-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.download-section .wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: #d85d63;
  border-radius: 0.25rem;
}

.download-section .wpcf7-form .wpcf7-checkbox input[type="checkbox"]:focus {
  box-shadow: 0 0 0 2px rgba(216, 93, 99, 0.2);
}

.download-section .wpcf7-form .wpcf7-checkbox label {
  color: #383838;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  cursor: pointer;
}

.download-section .wpcf7-form .wpcf7-submit {
  background-color: white;
  border: 2px solid #d85d63;
  color: #d85d63;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.download-section .wpcf7-form .wpcf7-submit:hover {
  background-color: #d85d63;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(216, 93, 99, 0.3);
}

.download-section .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}

/* レスポンシブ対応 */
@media (max-width: 1279px) {
  .download-section .wpcf7-form .wpcf7-form-control-wrap {
    margin-bottom: 1.25rem;
  }

  .download-section .wpcf7-form .wpcf7-form-control-wrap:last-of-type {
    margin-bottom: 1rem;
  }

  .download-section .wpcf7-form label {
    margin-bottom: 0.5rem;
  }

  .download-section .wpcf7-form .wpcf7-submit {
    width: 100%;
  }


}

/* エラーメッセージ用スタイル */
.download-section .wpcf7-not-valid-tip {
  color: #d85d63;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.download-section .wpcf7-validation-errors {
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.download-section .wpcf7-mail-sent-ok {
  background-color: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.cf7-form-privacy {
  display: flex;
  justify-content: center;
}

.policy-text a {
  color: #dc2626;
}

.policy-text:hover {
  color: #3d79a1;
}

.amelia-v2-booking #amelia-container .am-fs-sb__step-heading {
  width: 148px;

}

.amelia-v2-booking #amelia-container .am-fs__main-heading-inner-title {
  white-space: normal !important;
}

.inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}



.am-event-list .am-event-book-cta__inner {
  font-size: 14px !important;
  white-space: nowrap !important;
  margin-left: 20px !important;
  border: none !important;
}

.am-event-list .am-event-book-cta__inner+div {
  display: none !important;

}

.amelia-app-booking #amelia-booking-wrap #am-events-booking .am-event-list .am-event .am-event-book-cta {
  padding-top: 18px !important;
  padding-bottom: 15px !important;
}

.amelia-v2-booking #amelia-container .am-input-wrapper .am-input {
  box-shadow: none !important;
}

.amelia-v2-booking #amelia-container .am-fs__main-heading-inner-title {
  font-size: 15px !important;
}

.el-button.el-button--primary.calendar-link,
.el-button.el-button--primary.redirect-link {
  padding: 0 !important;
  opacity: 1 !important;
}

.el-button.el-button--primary.calendar-link:hover,
.el-button.el-button--primary.redirect-link:hover {
  opacity: 1 !important;
}

.el-button.el-button--primary.calendar-link.is-disabled {
  padding: 12px 20px !important;
  opacity: 1 !important;
}

.el-button.el-button--primary.calendar-link a,
.el-button.el-button--primary.redirect-link a {
  padding: 12px 20px !important;
  display: block !important;
}

.el-button.el-button--primary.calendar-link a:hover,
.el-button.el-button--primary.redirect-link a:hover {
  text-decoration: none !important;
}

#am-add-to-calendar .el-button:hover,
#am-add-to-calendar .el-button:hover+.el-button {
  opacity: 1 !important;
}

/***コラム用追加CSS********************************************/
/***コラム用追加CSS********************************************/


/***コラム用追加CSS********************************************/

.entries {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.entry-item {
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  display: block;
  margin-bottom: 50px;
  margin-right: 40px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  width: calc(50% - 20px);
}

.entry-item:hover {
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.16);
}

.entry-item:nth-child(2n),
.entry-item:last-child {
  margin-right: 0;
}

.entry-item-img {
  text-align: center;
}

.entry-item-body {
  padding: 20px;
}

.entry-item-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.entry-item-published {
  color: #808080;
  font-size: 12px;
  margin-top: 4px;
}

.entry-item-published::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  margin-right: 8px;
}

.entry-item-tag {
  background: #d85d63;
  color: #fff;
  display: block;
  font-size: 12px;
  margin-right: 15px;
  padding: 3px 14px 2px;
}

.entry-item-title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
  margin-bottom: 14px;
}

.entry-item-excerpt {
  color: #454545;
  font-size: 14px;
  line-height: 1.71429;
}

.entries.m_horizontal {
  margin-bottom: 62px;
}

.entries.m_horizontal .entry-item {
  display: flex;
  margin-bottom: 30px;
  margin-right: 0;
  padding: 20px;
  width: 100%;
}

.entries.m_horizontal .entry-item:last-child {
  margin-bottom: 0;
}

.entries.m_horizontal .entry-item .entry-item-img {
  width: 36.02941%;
}

.entries.m_horizontal .entry-item .entry-item-body {
  padding: 0 0 0 20px;
  width: 63.97059%;
}

.entries.m_block .entry-item {
  width: 100%;
  margin-right: 0;
}

.entries.m_block .entry-item .entry-item-body {
  padding: 20px;
  width: 100%;
}

.entries.m_block .entry-item .entry-item-published {
  font-size: 14px;
}

.entries.m_block .entry-item .entry-item-tag {
  font-size: 14px;
}

.entries.m_block .entry-item .entry-item-title {
  font-size: 20px;
}

.entries.m_block .entry-item .entry-item-excerpt {
  font-size: 16px;
}

.entry {
  background: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
  padding: 40px 40px 12px;
}

.entry-label {
  display: inline-block;
  margin-bottom: 18px;
}

.entry-label a {
  background: #d85d63;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 4px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.entry-label a:hover {
  opacity: 0.6;
}

.entry-title {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 18px;
}

.m_page .entry-title {
  margin-bottom: 34px;
}

.entry-meta {
  align-items: center;
  display: flex;
  margin-bottom: 18px;
}

.entry-published,
.entry-updated {
  color: #808080;
  font-size: 12px;
}

.entry-published::before,
.entry-updated::before {
  content: "\f073";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  margin-right: 8px;
}

.entry-updated {
  margin-left: 27px;
}

.entry-updated::before {
  content: "\f1da";
  font-weight: 900;
}

.entry-img {
  text-align: center;
}

.entry-tag-items {
  border-top: 1px solid #e2e2e2;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}

.entry-tag-head {
  background: #808080;
  border-radius: 3px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 15px;
  padding: 6px 15px 0;
}

.entry-tag-head::before {
  content: "\f02b";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 5px;
}

.entry-tag-item {
  margin-bottom: 10px;
  margin-right: 15px;
}

.entry-tag-item:last-child {
  margin-right: 0;
}

.entry-tag-item a {
  border: 1px solid #e2e2e2;
  border-radius: 3px;
  color: #808080;
  display: block;
  font-size: 14px;
  padding: 6px 18px 5px;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.entry-tag-item a:hover {
  background: #808080;
  border-color: #808080;
  color: #fff;
}

.entry-body {
  margin-top: 32px;
  padding-bottom: 44px;
}

.m_page .entry-body {
  padding-bottom: 12px;
}

.entry-body h2+p,
.entry-body h3+p,
.entry-body h4+p,
.entry-body h5+p,
.entry-body h6+p {
  margin-top: 0;
}

.entry-body h2 {
  background: #faf8f4;
  border-radius: 3px;
  border-bottom: 4px solid #d85d63;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.2;
  margin: 50px 0 20px;
  padding: 14px 16px 8px;
  position: relative;
  text-align: left;
  font-size: 21px;
}

@media (min-width: 992px) {
  .entry-body h2 {
    margin: 60px 0 38px;
    padding: 24px 20px;
    font-size: 24px;
  }
}

/**
.entry-body h2::after {
	border: 5px solid transparent;
	border-top: 15px solid #ebebeb;
	content: "";
	height: 0;
	left: 24px;
	position: absolute;
	top: 100%;
	width: 0;
}
**/
.entry-body h3 {
  border-left: 4px solid #d85d63;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.4;
  margin: 40px 0 18px;
  padding: 3px 0 3px 12px;
  font-size: 18px;
}

@media (min-width: 992px) {
  .entry-body h3 {
    margin-bottom: 24px;
    margin-top: 64px;
  }
}

.entry-body h4 {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.6;
  margin: 24px 0 12px;
  position: relative;
}

@media (min-width: 992px) {
  .entry-body h4 {
    margin: 42px 0 16px;
  }
}

/**
.entry-body h4::before {
    color: #d85d63;
    content: "\f00c";
    font-family: "Font Awesome 5 Free", sans-serif;

    font-weight: 900;
    left: 0;
    position: absolute;
    top: -8px;
}**/
.entry-body h5 {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 27px;
  margin-top: 60px;
}

.entry-body h6 {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1em;
  margin-top: 2em;
}

.entry-body p {
  line-height: 1.875;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 400;
}

@media (min-width: 992px) {
  .entry-body p {
    margin-top: 30px;
    font-size: 16px;
  }
}

.entry-body ul {
  list-style-type: disc;
  margin-bottom: 1em;
  padding-left: 20px;
}

.entry-body ol {
  list-style-type: decimal;
  margin-bottom: 1em;
  padding-left: 20px;
}

.entry-body li {
  line-height: 1.6;
  margin-bottom: 0.4em;
  margin-top: 0.4em;
}

.entry-body blockquote {
  background: #eee;
  line-height: 1.6;
  margin-bottom: 1em;
  margin-top: 1em;
  padding: 1em;
}

.entry-body blockquote> :first-child {
  margin-top: 0;
}

.entry-body blockquote> :last-child {
  margin-bottom: 0;
}

.entry-body q {
  background: #eee;
  display: inline-block;
  padding-left: 0.2em;
  padding-right: 0.2em;
  vertical-align: middle;
}

.entry-body strong,
.entry-body b {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
}

.entry-body a {
  color: #1592e6;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 600;
  transition: all 0.3s ease 0s;
}

.entry-body a:hover {
  opacity: 0.6;
}

.entry-body img {
  vertical-align: middle;
}

.entry-body .entry-btn {
  margin: 1em 0;
  text-align: center;
}

.entry-body .entry-btn .btn {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.entry-body .entry-btn .btn:hover {
  opacity: 1;
}

.entry-links {
  margin-top: 32px;
  text-align: center;
}

.entry-links .post-page-numbers {
  background: #fff;
  border: 1px solid #666;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  margin-left: 8px;
  margin-right: 8px;
  min-width: 30px;
  text-align: center;
}

.entry-links .post-page-numbers.current {
  background: #666;
  color: #fff;
}

.entry-links .post-page-numbers:first-child {
  margin-left: 0;
}

.entry-links .post-page-numbers:last-child {
  margin-right: 0;
}

.entry-links a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.entry-links a:hover {
  background: #666;
  color: #fff;
}

/* 資料ダウンロードボタン - headerの「資料請求はこちら」と同じデザイン、文字サイズ2倍 */
.download-btn {
  background-color: #d85d63;
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.12px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download-btn:hover {
  background-color: #d3484f;
}

@media (min-width: 1536px) {
  .download-btn {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .download-btn {
    font-size: 32px;
    padding: 20px 24px;
  }
}

@media (max-width: 992px) {


  :root {
    --wp--preset--font-size--small: 13px !important;
    --wp--preset--font-size--medium: 16px !important;
    --wp--preset--font-size--large: 24px !important;
    --wp--preset--font-size--x-large: 30px !important;
  }

}

@media (min-width: 900px) and (max-width: 1279px) {

  #column-archive .column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 825px;
    margin: 0 auto;
  }

  #column-archive .column-card {
    max-width: 432px;
    margin: 0 auto;
  }

  #column-archive .container {
    max-width: inherit !important;
  }
}



  .column-archive-img{
    height: 15rem;
    border-radius: 6px;
  }


@media (min-width: 500px) {
  .column-archive-img{
    height: 19rem;
    border-radius: 10px;
  }
}

@media (min-width: 1280px) {
  .column-archive-img{
    height: 0;
  }
}

.front-more{
  width: 330px;
  margin: 0 auto;
  display: block;
}


@media (min-width: 600px) and (max-width: 1279px) {

  .column-archive-img  {
  height: 18rem;
  }

}

#download-page {
  line-height: 2.7;
  transition: all 0.3s ease;
}

#download-page a:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}

#download-page .btn-secondary:hover {
  border: 2px solid #b49e42;

}

#download-page .inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;

}

@media (max-width: 768px) {
  #download-page {
    line-height: 1.75;
  }

  #download-page p {
    padding: 10px 0 0;
  }
}

.front-column-img {
  width: 100%;
}

@media (min-width: 540px) and (max-width: 768px) {
  .front-column-img {
    width: 70%;
    margin: 0 auto;
    height: 17rem!important;
  }

}