@charset "UTF-8";
.site-header {
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.site-header .header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media (max-width: 768px) {
  .site-header .header-container {
    padding: 0 15px;
    height: 60px;
  }
}
.site-header .header-logo .logo-link {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .header-logo .logo-image {
  height: 24px;
  width: auto;
}
.site-header .header-nav .nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
@media (max-width: 1024px) {
  .site-header .header-nav .nav-menu {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .site-header .header-nav .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  .site-header .header-nav .nav-menu.mobile-menu-open {
    display: flex;
  }
}
.site-header .header-nav .nav-item .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .site-header .header-nav .nav-item .nav-link {
    font-size: 1rem;
    padding: 10px 0;
  }
}
.site-header .header-nav .nav-item .nav-btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}
.site-header .header-nav .nav-item .nav-btn.nav-btn-contact {
  background-color: #ffe100;
  color: #000000;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header-nav .nav-item .nav-btn.nav-btn-contact p {
  margin: 0 4px 0 0;
}
.site-header .header-nav .nav-item .nav-btn.nav-btn-contact:hover {
  background: #ffffff;
  color: #000000;
}
.site-header .header-nav .nav-item .nav-btn.nav-btn-trial {
  background: #ffffff;
  color: #000000;
  border-radius: 8px;
}
.site-header .header-nav .nav-item .nav-btn.nav-btn-trial:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .site-header .header-nav .nav-item .nav-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .site-header .header-nav .nav-item .nav-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    margin: 5px 0;
  }
}
.site-header .header-nav .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
@media (max-width: 768px) {
  .site-header .header-nav .mobile-menu-toggle {
    display: flex;
  }
}
.site-header .header-nav .mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.site-header .header-nav .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.site-header .header-nav .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.site-header .header-nav .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

body {
  padding-top: 70px;
}
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

.fv-section {
  position: relative;
  height: 86vh;
  background-image: url("/wp-content/themes/kirinuki/assets/img/fv/fv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .fv-section {
    height: 100vh;
  }
}
.fv-section .fv-container {
  width: 90%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .fv-section .fv-container {
    width: 93%;
    display: block;
  }
}
.fv-section .fv-left {
  width: 45%;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .fv-section .fv-left {
    width: 100%;
    padding-top: 100px;
    height: 100%;
    box-sizing: border-box;
  }
}
.fv-section .fv-left .fv-title-back {
  background-color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 0;
}
.fv-section .fv-left .fv-title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 800;
  color: #000000;
  margin: 0;
  padding: 6px;
}
.fv-section .fv-left .fv-title span {
  color: #ffffff;
  position: absolute;
  font-size: 1rem;
  font-weight: normal;
  width: 100%;
  bottom: 100%;
  margin-bottom: 16px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 768px) {
  .fv-section .fv-left .fv-title {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .fv-section .fv-left .fv-title {
    font-size: 1rem;
  }
}
.fv-section .fv-left .fv-subtitle {
  font-size: 0.7rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .fv-section .fv-left .fv-subtitle {
    font-size: 0.8rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .fv-section .fv-left .fv-buttom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
  }
}
.fv-section .fv-left .fv-image {
  margin: 48px 0 64px;
}
.fv-section .fv-left .fv-image .fv-sample-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .fv-section .fv-left .fv-image {
    margin: 0 0 32px;
    text-align: center;
  }
}
.fv-section .fv-left .fv-buttons {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .fv-section .fv-left .fv-buttons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .fv-section .fv-left .fv-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.fv-section .fv-left .fv-btn {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 180px;
  text-align: center;
  position: relative;
}
.fv-section .fv-left .fv-btn span {
  color: #ffffff;
  position: absolute;
  font-size: 0.8rem;
  font-weight: normal;
  width: 100%;
  bottom: 100%;
  margin-bottom: 6px;
  left: 50%;
  min-width: 200px;
  transform: translate(-50%, 0);
}
.fv-section .fv-left .fv-btn.fv-btn-primary {
  background-color: #ffe100;
  color: #000000;
  font-size: 1.1rem;
  border: 3px solid #ffffff;
  padding: 10px 0;
  max-width: 260px;
  width: 40%;
}
@media (max-width: 480px) {
  .fv-section .fv-left .fv-btn.fv-btn-primary {
    width: 100%;
    max-width: none;
  }
}
.fv-section .fv-left .fv-btn.fv-btn-primary:hover {
  background: #ffeb3b;
  transform: translateY(-2px);
}
.fv-section .fv-left .fv-btn.fv-btn-secondary {
  background-color: #4415ff;
  color: #ffffff;
  font-size: 1.1rem;
  border: 3px solid #ffffff;
  padding: 10px 0;
  max-width: 260px;
  width: 40%;
}
.fv-section .fv-left .fv-btn.fv-btn-secondary:hover {
  background: #704dff;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .fv-section .fv-left .fv-btn.fv-btn-secondary {
    width: 100%;
    max-width: none;
  }
}
.fv-section .fv-right {
  width: 50%;
}
@media (max-width: 768px) {
  .fv-section .fv-right {
    position: absolute;
    top: 30%;
    right: 50%;
    transform: translate(50%, 0%);
    width: 80%;
  }
}
.fv-section .fv-right .video-swiper {
  width: 100%;
}
.fv-section .fv-right .video-swiper .swiper-slide video {
  width: 100%;
  border-radius: 8px;
  pointer-events: none;
}
.fv-section .fv-right .video-swiper .swiper-slide video::-webkit-media-controls {
  display: none !important;
}
.fv-section .fv-right .video-swiper .swiper-slide video::-webkit-media-controls-panel {
  display: none !important;
}
.fv-section .fv-right .video-swiper .swiper-slide video::-webkit-media-controls-play-button {
  display: none !important;
}
.fv-section .fv-right .video-swiper .swiper-slide video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.fv-section .fv-right .video-swiper .swiper-slide video::-moz-media-controls {
  display: none !important;
}
.fv-section .fv-right .video-swiper .swiper-slide video::-o-media-controls {
  display: none !important;
}
.fv-section .fv-right .video-swiper .swiper-slide video::-webkit-media-controls-enclosure {
  display: none !important;
}
.fv-section .fv-right .video-swiper .swiper-slide video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}
.fv-section .fv-right .video-swiper .swiper-pagination {
  bottom: 10px;
}
.fv-section .fv-right .video-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.7;
}
.fv-section .fv-right .video-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #ff6b6b;
  opacity: 1;
}
.fv-section .fv-right .video-swiper .swiper-button-next,
.fv-section .fv-right .video-swiper .swiper-button-prev {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.fv-section .fv-right .video-swiper .swiper-button-next:after,
.fv-section .fv-right .video-swiper .swiper-button-prev:after {
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #000000;
  position: relative;
}
.section-title .subtitle {
  font-size: 0.6rem;
  color: #0062db;
  display: block;
  font-weight: bold;
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translate(-50%, 0);
}
.section-title::after {
  content: "";
  width: 48px;
  height: 3px;
  background-color: #6aa1e4;
  display: block;
  margin: 15px auto 0;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

.features-section {
  padding: 100px 0;
}
.features-section .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  justify-content: center;
}
@media (max-width: 768px) {
  .features-section {
    padding: 24px 0;
  }
}
.features-section .feature-card {
  width: 25%;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1rem;
  min-width: 275px;
}
@media (max-width: 480px) {
  .features-section .feature-card {
    width: 100%;
    margin-bottom: 8px;
  }
  .features-section .feature-card p {
    margin-top: 4px;
  }
}
.features-section .feature-card .main-content {
  background-size: cover;
  width: 100%;
  aspect-ratio: 17/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-section .feature-card .main-content p {
  color: #ffffff;
  font-size: 1rem;
}

.problem-section {
  padding: 20px 0;
  background-color: #eef6fc;
}
@media (max-width: 768px) {
  .problem-section {
    padding: 60px 0;
  }
}
.problem-section .problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .problem-section .problem-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.problem-section .problem-bubble {
  background: #ffffff;
  padding: 30px;
  border-radius: 100px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.problem-section .problem-bubble::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ffffff;
}
@media (max-width: 768px) {
  .problem-section .problem-bubble::before {
    display: none;
  }
  .problem-section .problem-bubble:last-child::before {
    display: block;
  }
}
.problem-section .problem-bubble p {
  font-size: 1.1rem;
  color: #000000;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .problem-section .problem-bubble {
    padding: 25px;
  }
  .problem-section .problem-bubble p {
    font-size: 1rem;
  }
}
.problem-section .dot {
  width: 8px;
  height: 8px;
  background-color: #999999;
  margin: 50px auto;
  position: relative;
}
.problem-section .dot::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #999999;
  top: 16px;
}
.problem-section .dot::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #999999;
  bottom: 16px;
}
.problem-section .solution-text {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000000;
}
@media (max-width: 768px) {
  .problem-section .solution-text {
    font-size: 1.1rem;
    margin-top: 30px;
  }
}

.about-section {
  padding: 100px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
}
.about-section .about-grid {
  max-width: 800px;
  margin: 0 auto;
}
.about-section .about-item {
  background: #f8f9fa;
  padding: 16px;
  margin-bottom: 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .about-section .about-item {
    padding: 20px;
    margin-bottom: 30px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.about-section .about-item .about-content {
  flex: 1;
  text-align: left;
}
.about-section .about-item .about-content .about-number {
  color: #000000;
  font-size: 1rem;
}
.about-section .about-item .about-content .about-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0062db;
  margin-bottom: 15px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .about-section .about-item .about-content .about-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}
.about-section .about-item .about-content .about-description {
  color: #666666;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  .about-section .about-item .about-content .about-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
.about-section .about-item .about-image {
  flex-shrink: 0;
  width: 30%;
}
.about-section .about-item .about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .about-section .about-item .about-image {
    width: 100%;
    max-width: 300px;
  }
}

.fit-section {
  width: 100%;
  background-color: #000000;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .fit-section {
    padding: 20px 0;
  }
}
.fit-section p {
  color: #ffffff;
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .fit-section p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
.fit-section .fit-section-img {
  width: 80%;
  margin: 0 auto;
  max-width: 600px;
  display: flex;
  justify-content: center;
}
.fit-section .fit-section-img img {
  width: 100%;
  height: auto;
}

.flow-section {
  padding: 80px 0 60px;
}
@media (max-width: 768px) {
  .flow-section {
    padding: 40px 0;
  }
}
.flow-section .flow-items {
  width: 100%;
  margin: 52px auto;
  max-width: 800px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .flow-section .flow-items {
    margin: 16px auto 0;
  }
}
.flow-section .flow-items .flow-item {
  width: 100%;
  background-color: #eef6fc;
  padding: 40px;
  display: flex;
  margin: 0 0 48px;
  align-items: center;
  gap: 40px;
  border-radius: 16px;
  position: relative;
}
@media (max-width: 768px) {
  .flow-section .flow-items .flow-item {
    padding: 16px;
    gap: 20px;
    border-radius: 8px;
  }
}
.flow-section .flow-items .flow-item::after {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 16px solid #d9d9d9;
}
.flow-section .flow-items .flow-item .num {
  color: #7fb0ed;
  font-size: 3.2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .flow-section .flow-items .flow-item .num {
    font-size: 2.4rem;
  }
}
.flow-section .flow-items .flow-item .title {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 8px;
}
@media (max-width: 768px) {
  .flow-section .flow-items .flow-item .title {
    font-size: 1rem;
  }
}
.flow-section .flow-items .flow-item p {
  color: #000000;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  .flow-section .flow-items .flow-item p {
    font-size: 0.8rem;
  }
}
.flow-section .flow-items .flow-item2 {
  width: 100%;
  background-color: #ededed;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .flow-section .flow-items .flow-item2 {
    border-radius: 8px;
    padding: 16px;
  }
}
.flow-section .flow-items .flow-item2 p {
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .flow-section .flow-items .flow-item2 p {
    font-size: 0.8rem;
    margin: 0;
  }
}

.customer-section {
  padding: 32px 0;
  background-color: #eef6fc;
}
.customer-section .customer-items {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8%;
}
.customer-section .customer-items .customer-item {
  width: 26%;
  max-width: 240px;
}
@media (max-width: 768px) {
  .customer-section .customer-items .customer-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 400px) {
  .customer-section .customer-items .customer-item {
    max-width: unset;
  }
}
.customer-section .customer-items .customer-item .customer-img {
  aspect-ratio: 2/3;
  width: 70%;
  height: auto;
  border-radius: 4px;
  margin: 0 auto;
}
.customer-section .customer-items .customer-item .customer-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.customer-section .customer-items .customer-item h3 {
  margin: 20px 0 8px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #000000;
}
.customer-section .customer-items .customer-item p {
  font-size: 0.9rem;
  color: #000000;
  margin: 0;
}
.customer-section .customer-last {
  width: 100%;
  text-align: center;
  background-color: #ffe100;
  border-radius: 4px;
  padding: 8px 0;
  margin: 40px auto 16px;
}
.customer-section .customer-last p {
  color: #000000;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.click-section {
  background: linear-gradient(to right, #132e66, #265ccc);
}
.click-section .buttons {
  padding: 60px 0 44px;
}
.click-section .buttons .nav-btn {
  margin: 0 auto;
  display: block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  position: relative;
}
.click-section .buttons .nav-btn span {
  color: #ffffff;
  position: absolute;
  font-size: 0.8rem;
  font-weight: normal;
  width: 100%;
  bottom: 100%;
  margin-bottom: 6px;
  left: 50%;
  min-width: 200px;
  transform: translate(-50%, 0);
}
.click-section .buttons .nav-btn.nav-btn-primary {
  background-color: #ffe100;
  color: #000000;
  font-size: 1.2rem;
  border: 3px solid #ffffff;
  padding: 10px 0;
  max-width: 260px;
  width: 40%;
  margin: 0 auto 48px;
}
@media (max-width: 480px) {
  .click-section .buttons .nav-btn.nav-btn-primary {
    width: 100%;
    max-width: none;
    font-size: 1rem;
  }
}
.click-section .buttons .nav-btn.nav-btn-primary:hover {
  background: #ffeb3b;
  transform: translateY(-2px);
}
.click-section .buttons .nav-btn.nav-btn-secondary {
  background-color: #4415ff;
  color: #ffffff;
  font-size: 1.2rem;
  border: 3px solid #ffffff;
  padding: 10px 0;
  max-width: 260px;
  width: 40%;
}
.click-section .buttons .nav-btn.nav-btn-secondary:hover {
  background: #704dff;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .click-section .buttons .nav-btn.nav-btn-secondary {
    width: 100%;
    max-width: none;
    font-size: 1rem;
  }
}

.faq-section {
  padding: 60px 0;
}
.faq-section .faq-items .faq-item {
  background-color: #eef6fc;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 16px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq-section .faq-items .faq-item {
    max-width: 420px;
  }
}
.faq-section .faq-items .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  cursor: pointer;
}
.faq-section .faq-items .faq-item .faq-question .main {
  display: flex;
  align-items: center;
  gap: 15px;
}
.faq-section .faq-items .faq-item .faq-question .q {
  font-weight: bold;
  font-size: 1.6rem;
  color: #7fb0ed;
  margin: 0 0 6px;
}
@media (max-width: 768px) {
  .faq-section .faq-items .faq-item .faq-question .q {
    font-size: 1.2rem;
  }
}
.faq-section .faq-items .faq-item .faq-question .question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #000000;
}
@media (max-width: 768px) {
  .faq-section .faq-items .faq-item .faq-question .question {
    font-size: 1rem;
  }
}
.faq-section .faq-items .faq-item .faq-question .button .arrow-icon {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .faq-section .faq-items .faq-item .faq-question .button .arrow-icon {
    width: 32px;
    height: 32px;
  }
}
.faq-section .faq-items .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-section .faq-items .faq-item .faq-answer .answer-content {
  padding: 0 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.faq-section .faq-items .faq-item .faq-answer .answer-content .a {
  font-weight: bold;
  font-size: 1.6rem;
  color: #eef6fc;
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .faq-section .faq-items .faq-item .faq-answer .answer-content .a {
    font-size: 1.2rem;
  }
}
.faq-section .faq-items .faq-item .faq-answer .answer-content .answer-text .border {
  width: 100%;
  height: 2px;
  background-color: #dbdbdb;
  margin: 0 0 18px;
}
.faq-section .faq-items .faq-item .faq-answer .answer-content .answer-text p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .faq-section .faq-items .faq-item .faq-answer .answer-content .answer-text p {
    font-size: 0.8rem;
  }
}
.faq-section .faq-items .faq-item.active .faq-question .button .arrow-icon {
  transform: rotate(180deg);
}

.site-footer {
  background-color: #02002c;
  color: #ffffff;
  padding: 60px 0 20px;
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .site-footer .footer-container {
    padding: 0 15px;
  }
}
.site-footer .footer-top {
  margin-bottom: 40px;
}
.site-footer .footer-top .footer-logo {
  margin-bottom: 30px;
}
.site-footer .footer-top .footer-logo h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}
.site-footer .footer-top .footer-nav .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .site-footer .footer-top .footer-nav .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.site-footer .footer-top .footer-nav .footer-menu .footer-nav-item .footer-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}
.site-footer .footer-top .footer-nav .footer-menu .footer-nav-item .footer-nav-link:hover {
  color: #cccccc;
}
.site-footer .footer-top .footer-nav .footer-menu .footer-nav-item .footer-nav-btn {
  background-color: #ffffff;
  color: #02002c;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.site-footer .footer-top .footer-nav .footer-menu .footer-nav-item .footer-nav-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .site-footer .footer-top .footer-nav .footer-menu .footer-nav-item .footer-nav-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
.site-footer .footer-bottom {
  text-align: center;
  border-top: 1px solid #333333;
  padding-top: 20px;
}
.site-footer .footer-bottom p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.download-section {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .download-section {
    padding: 0px 0;
  }
}
.download-section .download-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.download-section .download-left {
  width: 48%;
}
@media (max-width: 768px) {
  .download-section .download-left {
    width: 100%;
  }
}
.download-section .download-left .download-info .download-subtitle {
  color: #c52549;
  font-size: 1rem;
  font-weight: bold;
}
.download-section .download-left .download-info .download-title {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(to bottom, #ff3300, #3300ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 768px) {
  .download-section .download-left .download-info .download-title {
    font-size: 1.6rem;
  }
}
.download-section .download-left .download-info .download-title .popular-badge {
  color: #000000;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 6px 12px;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  z-index: 1;
  background: none;
  -webkit-text-fill-color: #000000;
}
.download-section .download-left .download-info .download-title .popular-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d2e100;
  transform: skew(-15deg);
  z-index: -1;
}
@media (max-width: 768px) {
  .download-section .download-left .download-info .download-title .popular-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}
.download-section .download-left .download-info .download-thumbnail {
  width: 75%;
  margin: 30px auto;
}
.download-section .download-left .download-info .download-thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.download-section .download-left .download-info .download-recommend {
  background-color: #ebebeb;
  padding: 20px 32px;
}
.download-section .download-left .download-info .download-recommend h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0062db;
  margin: 0 0 15px 20px;
  position: relative;
}
@media (max-width: 768px) {
  .download-section .download-left .download-info .download-recommend h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.download-section .download-left .download-info .download-recommend h4::before {
  content: "";
  font-size: 0.8rem;
  width: 6px;
  height: 100%;
  position: absolute;
  left: -20px;
  bottom: 0;
  background-color: #0062db;
}
@media (max-width: 768px) {
  .download-section .download-left .download-info .download-recommend h4::before {
    left: -12px;
    width: 4px;
  }
}
.download-section .download-left .download-info .download-recommend ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.download-section .download-left .download-info .download-recommend ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #000000;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .download-section .download-left .download-info .download-recommend ul li {
    font-size: 0.9rem;
    padding-left: 16px;
    margin-bottom: 8px;
  }
}
.download-section .download-left .download-info .download-recommend ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}
.download-section .download-right {
  width: 48%;
}
@media (max-width: 768px) {
  .download-section .download-right {
    width: 100%;
    margin-top: 40px;
  }
}
.download-section .download-right .download-form {
  padding: 40px;
  max-width: 360px;
  margin: 0 auto;
  color: #0062db;
  font-weight: bold;
}
@media (max-width: 768px) {
  .download-section .download-right .download-form {
    padding: 16px;
    background-color: #eef6fc;
    border-radius: 4px;
  }
}

.client-logos-section {
  height: 14vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .client-logos-section {
    padding: 20px 0;
    height: unset;
  }
}

.client-logos-section .logos-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
  display: flex;
}

.client-logos-section .logos-track {
  display: flex !important;
  align-items: center !important;
  animation: scroll 50s linear infinite;
  height: 100% !important;
  flex-shrink: 0 !important;
  will-change: transform;
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .client-logos-section .logos-track {
    animation-duration: 35s;
  }
}

.client-logos-section .logo-item {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

.client-logos-section .client-logo {
  max-width: 160px;
  margin: 0 32px 0 32px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .client-logos-section .client-logo {
    max-width: 120px;
    margin: 0 24px 0 24px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.contact-form-section {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .contact-form-section {
    padding: 100px 0;
  }
}
.contact-form-section .contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form-section .contact-form-intro {
  text-align: center;
  margin-bottom: 50px;
}
.contact-form-section .contact-form-intro .contact-subtitle {
  color: #0062db;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.contact-form-section .contact-form-intro .contact-description {
  color: #666666;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.contact-form-section .contact-form-wrapper {
  max-width: 420px;
  margin: 0 auto;
  color: #0062db;
  font-weight: bold;
}

.page-template-page-contact .contact-info-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.page-template-page-contact .contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .page-template-page-contact .contact-info-section .contact-info-grid {
    gap: 30px;
    padding: 0 15px;
  }
}
.page-template-page-contact .contact-info-section .contact-info-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.page-template-page-contact .contact-info-section .contact-info-item .contact-icon {
  width: 60px;
  height: 60px;
  background-color: #0062db;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-page-contact .contact-info-section .contact-info-item .contact-icon::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.page-template-page-contact .contact-info-section .contact-info-item .contact-icon.email::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}
.page-template-page-contact .contact-info-section .contact-info-item .contact-icon.phone::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.page-template-page-contact .contact-info-section .contact-info-item .contact-icon.location::before {
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.page-template-page-contact .contact-info-section .contact-info-item h3 {
  color: #000000;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.page-template-page-contact .contact-info-section .contact-info-item p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.privacy-policy-section {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 60px 0;
  }
}
.privacy-policy-section .privacy-policy-container {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-policy-section .privacy-content {
  margin-top: 50px;
}
.privacy-policy-section .privacy-content .privacy-updated {
  text-align: right;
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-content .privacy-updated {
    text-align: left;
    font-size: 0.8rem;
  }
}
.privacy-policy-section .privacy-content .privacy-intro {
  margin-bottom: 40px;
  padding: 25px;
  background-color: #eef6fc;
  border-radius: 10px;
  border-left: 4px solid #0062db;
}
.privacy-policy-section .privacy-content .privacy-intro p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-content .privacy-intro p {
    font-size: 0.9rem;
  }
}
.privacy-policy-section .privacy-content .privacy-section {
  margin-bottom: 40px;
}
.privacy-policy-section .privacy-content .privacy-section h3 {
  color: #0062db;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #6aa1e4;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-content .privacy-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
}
.privacy-policy-section .privacy-content .privacy-section p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-content .privacy-section p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
.privacy-policy-section .privacy-content .privacy-section ul {
  margin: 15px 0;
  padding-left: 20px;
}
.privacy-policy-section .privacy-content .privacy-section ul li {
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .privacy-policy-section .privacy-content .privacy-section ul li {
    font-size: 0.9rem;
  }
}
.privacy-policy-section .privacy-content .privacy-section ul li::marker {
  color: #0062db;
}
.privacy-policy-section .privacy-content .privacy-section .contact-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}
.privacy-policy-section .privacy-content .privacy-section .contact-info p {
  margin: 0;
  color: #000000;
}
.privacy-policy-section .privacy-content .privacy-section .contact-info p strong {
  color: #0062db;
  font-size: 1.1rem;
}

.trial-page {
  background-color: #f3f3fe;
  padding: 120px 0 0;
}
@media (max-width: 768px) {
  .trial-page {
    padding: 80px 0 0;
  }
}
.trial-page .trial-container {
  width: 60%;
  min-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .trial-page .trial-container {
    width: 93%;
    min-width: auto;
  }
}
.trial-page .trial-container .trial-title .title {
  font-size: 1.4rem;
  color: #0c0573;
  font-weight: bold;
  margin-left: 20px;
  position: relative;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .trial-page .trial-container .trial-title .title {
    font-size: 1.2rem;
    margin-left: 12px;
  }
}
.trial-page .trial-container .trial-title .title::before {
  content: "";
  font-size: 0.8rem;
  width: 6px;
  height: 100%;
  position: absolute;
  left: -20px;
  bottom: 0;
  background-color: #0c0573;
}
@media (max-width: 768px) {
  .trial-page .trial-container .trial-title .title::before {
    width: 4px;
    left: -12px;
  }
}
.trial-page .trial-hero-section .trial-container .trial-logo {
  margin-bottom: 24px;
  width: 25%;
}
.trial-page .trial-hero-section .trial-container .trial-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .trial-page .trial-hero-section .trial-container .trial-logo {
    width: 32%;
    margin-bottom: 8px;
  }
}
.trial-page .trial-hero-section .trial-container .trial-headline {
  margin-bottom: 16px;
}
.trial-page .trial-hero-section .trial-container .trial-headline h1 {
  color: #ffffff;
  background-color: #0c0573;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  padding: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .trial-page .trial-hero-section .trial-container .trial-headline h1 {
    font-size: 1.2rem;
  }
}
.trial-page .trial-hero-section .trial-container .trial-headline h1:last-child {
  padding-top: 0;
}
.trial-page .trial-hero-section .trial-container .trial-figure {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .trial-page .trial-hero-section .trial-container .trial-figure {
    margin-bottom: 40px;
  }
}
.trial-page .trial-hero-section .trial-container .trial-figure img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trial-page .trial-step-section .step-items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trial-page .trial-step-section .step-items .step-item {
  margin: 24px 0 0;
  width: 18%;
  position: relative;
}
@media (max-width: 480px) {
  .trial-page .trial-step-section .step-items .step-item {
    width: 45%;
  }
}
.trial-page .trial-step-section .step-items .step-item .num {
  font-size: 1.2rem;
  color: #000000;
  position: relative;
  background-color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
}
.trial-page .trial-step-section .step-items .step-item .num span {
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.trial-page .trial-step-section .step-items .step-item .step-img {
  margin: 16px auto 28px;
  width: 100%;
  height: 100px;
  text-align: center;
}
.trial-page .trial-step-section .step-items .step-item .step-img img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.trial-page .trial-step-section .step-items .step-item p {
  font-size: 0.8rem;
  font-weight: bold;
  color: #000000;
  margin: 0 auto;
}
.trial-page .trial-step-section .step-items .step-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-25% - 4.5px);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 9px solid #d8d8d8;
}
@media (max-width: 480px) {
  .trial-page .trial-step-section .step-items .step-item::after {
    display: none;
  }
}
.trial-page .trial-step-section .step-items .step-item:last-child::after {
  display: none;
}
.trial-page .trial-agree-section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .trial-page .trial-agree-section {
    padding: 32px 0;
  }
}
.trial-page .trial-agree-section .agree-content {
  margin-top: 16px;
}
.trial-page .trial-agree-section .agree-content .agree-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trial-page .trial-agree-section .agree-content .agree-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: bold;
}
@media (max-width: 768px) {
  .trial-page .trial-agree-section .agree-content .agree-list li {
    font-size: 0.9rem;
    padding-left: 8px;
    margin-bottom: 18px;
  }
}
.trial-page .trial-agree-section .agree-content .agree-list li::before {
  content: "・";
  position: absolute;
  top: -3px;
  left: 0;
  color: #0c0573;
  font-weight: bold;
  font-size: 1.2rem;
}
.trial-page .trial-upload-section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .trial-page .trial-upload-section {
    padding: 32px 0;
  }
}
.trial-page .trial-upload-section .upload-description {
  margin-top: 16px;
}
.trial-page .trial-upload-section .upload-description p {
  font-size: 1rem;
  color: #000000;
  margin: 0;
  font-weight: bold;
}
.trial-page .trial-upload-section .upload-content {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .trial-page .trial-upload-section .upload-content {
    flex-direction: column;
    gap: 30px;
  }
}
.trial-page .trial-upload-section .upload-content .upload-left {
  width: 70%;
}
@media (max-width: 768px) {
  .trial-page .trial-upload-section .upload-content .upload-left {
    width: 100%;
  }
}
.trial-page .trial-upload-section .upload-content .upload-left .upload-section {
  margin-bottom: 40px;
}
.trial-page .trial-upload-section .upload-content .upload-left .upload-section:last-child {
  margin-bottom: 0;
}
.trial-page .trial-upload-section .upload-content .upload-left .upload-section h3 {
  color: #1f48ff;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  position: relative;
  padding-left: 36px;
}
@media (max-width: 768px) {
  .trial-page .trial-upload-section .upload-content .upload-left .upload-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
}
.trial-page .trial-upload-section .upload-content .upload-left .upload-section h3 img {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.trial-page .trial-upload-section .upload-content .upload-left .upload-section .ng {
  color: #ff1f1f;
}
.trial-page .trial-upload-section .upload-content .upload-left .upload-section .upload-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trial-page .trial-upload-section .upload-content .upload-left .upload-section .upload-list li {
  position: relative;
  padding-left: 20px;
  color: #000000;
  font-size: 0.95rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .trial-page .trial-upload-section .upload-content .upload-left .upload-section .upload-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}
.trial-page .trial-upload-section .upload-content .upload-left .upload-section .upload-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: -3px;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
}
.trial-page .trial-upload-section .upload-content .upload-right {
  width: 30%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 768px) {
  .trial-page .trial-upload-section .upload-content .upload-right {
    display: none;
  }
}
.trial-page .trial-upload-section .upload-content .upload-right .upload-image {
  width: 70%;
  border-radius: 8px;
  text-align: center;
}
.trial-page .trial-upload-section .upload-content .upload-right .upload-image img {
  border-radius: 8px;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.trial-page .trial-upload-section .comment p {
  font-size: 0.9rem;
  color: #000000;
  margin-top: 36px;
  font-weight: bold;
}
.trial-page .trial-upload-section .trial-form {
  color: #000000;
  font-weight: bold;
  max-width: 420px;
  width: 100%;
  margin: 32px auto 0;
}
.trial-page .trial-upload-section .trial-form p:has(.wpcf7-submit) {
  display: none;
}
.trial-page .trial-upload-section .trial-form .schedule-button {
  display: inline-block;
  background: #d2e100;
  color: #000000;
  padding: 15px 40px;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.trial-page .trial-upload-section .trial-form .schedule-button:hover {
  background: #d4e300;
  transform: translateY(-2px);
}
.trial-page .karender {
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .trial-page .karender {
    padding: 60px 0;
  }
}
.trial-page .karender .border {
  width: 100;
  height: 2px;
  background-color: #bdbdbd;
  margin: 0 auto 40px;
  border-radius: 2px;
}
.trial-page .karender h2 {
  color: #000000;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 0 40px 0;
  max-width: 600px;
  text-align: center;
}
@media (max-width: 768px) {
  .trial-page .karender h2 {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .trial-page .karender h2 {
    font-size: 0.9rem;
  }
  .trial-page .karender h2 br {
    display: none;
  }
}
.trial-page .karender a {
  display: inline-block;
  background-color: #ffffff;
  color: #006108;
  width: 160px;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #006108;
}

.timerex-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.timerex-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.timerex-modal .modal-content {
  position: relative;
  background: white;
  margin: 50px auto;
  padding: 30px;
  width: 90%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto;
}
.timerex-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.timerex-modal .modal-header #form-completion-message {
  flex: 1;
  padding: 20px;
  background: #e8f5e8;
  border: 2px solid #4CAF50;
  border-radius: 8px;
  text-align: center;
}
.timerex-modal .modal-header #form-completion-message p {
  color: #2e7d32;
  font-weight: bold;
  margin: 0;
}
.timerex-modal .modal-close {
  background: none;
  border: none;
  font-size: 30px;
  color: #999;
  cursor: pointer;
  padding: 0;
  margin-left: 20px;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timerex-modal .modal-close:hover {
  color: #666;
}
.timerex-modal .modal-body h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=text],
.wpcf7-form .wpcf7-form-control-wrap input[type=email],
.wpcf7-form .wpcf7-form-control-wrap input[type=tel],
.wpcf7-form .wpcf7-form-control-wrap input[type=url],
.wpcf7-form .wpcf7-form-control-wrap textarea {
  width: 100%;
  margin: 8px 0 0;
  box-sizing: border-box;
  padding: 16px 20px;
  border: 1px solid #777777;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-weight: normal;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=text]:focus,
.wpcf7-form .wpcf7-form-control-wrap input[type=email]:focus,
.wpcf7-form .wpcf7-form-control-wrap input[type=tel]:focus,
.wpcf7-form .wpcf7-form-control-wrap input[type=url]:focus,
.wpcf7-form .wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: #0062db;
}
.wpcf7-form .wpcf7-form-control-wrap textarea {
  resize: vertical;
  min-height: 120px;
}
.wpcf7-form .wpcf7-submit {
  background: #d2e100;
  color: #000000;
  padding: 15px 40px;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}
.wpcf7-form .wpcf7-submit:hover {
  background: #d4e300;
  transform: translateY(-2px);
}
.wpcf7-form .wpcf7-list-item {
  margin: 0;
  color: #000000;
  font-weight: normal;
}
.wpcf7-form .codedropz-upload-handler {
  margin-top: 12px;
  background-color: #cdd1e7;
  color: #545454;
  margin-bottom: 0;
}
.wpcf7-form .codedropz-upload-handler h4 {
  font-size: 1.2rem;
  font-weight: bold;
}
.wpcf7-form .codedropz-upload-handler .dnd-upload-counter {
  display: none;
}
.wpcf7-form .dnd-upload-image {
  display: none;
}
.wpcf7-form .dnd-progress-bar span {
  color: #4caf50 !important;
}

.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */