@charset "UTF-8";
/*
Theme Name: Make A Change
Version: 1.1.0
*/

:root {
  --font-en: 'Jost', sans-serif;
  --font-ja: 'Noto Sans JP', sans-serif;
  --color-text: #1f1f1f;
  --color-bg: #ffffff;
  --color-bg-gray: #f5f5f5;
  --color-main: #77CDE9;
  /* Theme main color */
  --color-accent: #00aaff;
  --header-height: 108px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  /* 1rem = 10px */
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.font-en {
  font-family: var(--font-en);
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.center {
  text-align: center;
}

.bg-gray {
  background-color: var(--color-bg-gray);
}

/* Typography */
.ttl-01 {
  font-size: 4rem;
  margin-bottom: 40px;
  line-height: 1.2;
}

.ttl-01 .font-en {
  display: block;
  font-size: 1.6rem;
  color: var(--color-main);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.ttl-02 {
  font-size: 3.2rem;
  margin-bottom: 60px;
}

.ttl-03 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Utilities */
.flex-j-between {
  justify-content: space-between;
}

.flex-j-ctr {
  justify-content: center;
}

.flex-a-ctr {
  align-items: center;
}

.flex-a-end {
  align-items: flex-end;
}

.pos-rel {
  position: relative;
}

.pos-ab {
  position: absolute;
}

.bold {
  font-weight: 700;
}

.clr-wh {
  color: #fff;
}

.mgn-btm48 {
  margin-bottom: 48px;
}

.gap16 {
  gap: 16px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  /* Initially transparent */
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.3s;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header--logo img {
  height: 61px;
  width: auto;
}

/* Hide hamburger menu on desktop */
.gnav_btn {
  display: none;
}

.gnav {
  display: flex;
  align-items: center;
  gap: 30px;
  /* メニューとCONTACTボタンの間隔 */
}

.gnav--menu {
  gap: 30px;
  /* メニュー項目間の間隔を調整 */
}

.gnav--link {
  position: relative;
  display: block;
  padding: 10px 0;
  color: var(--color-text);
  /* Dark text by default */
  transition: color 0.3s;
}

.header.scrolled .gnav--link {
  color: var(--color-text);
  /* Keep dark on scroll */
}

.gnav--link .en {
  font-family: var(--font-en);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  display: block;
  transition: transform 0.3s;
}

.gnav--link .jp {
  font-size: 1.2rem;
  opacity: 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s, top 0.3s;
  white-space: nowrap;
}

.gnav--link:hover .en {
  transform: translateY(10px);
}

.gnav--link:hover .jp {
  opacity: 1;
  top: 0;
}

.cta_link.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  /* 幅を拡大 */
  height: 50px;
  border: 1px solid #333;
  /* 黒系の枠線 */
  border-radius: 25px;
  color: #333;
  /* 黒系のテキスト */
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  transition: all 0.3s;
  white-space: nowrap;
  /* テキストの改行を防止 */
}

.cta_link.btn a:hover {
  background: #333;
  /* ホバー時は背景を黒系に */
  color: #fff;
  /* ホバー時はテキストを白に */
}

/* Hero */
.hero {
  position: relative;
  height: 750px;
  /* Refined to a fixed "just right" height */
  width: 100%;
  overflow: hidden;
}

.hero_bg_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero_slides,
.hero_slide,
.hero_slide-pc,
.swiper-container,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
  width: 100%;
}

.hero--cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  /* Centered vertically */
  display: flex;
  align-items: center;
  z-index: 10;
}

.inner-xl {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero--en {
  font-size: 12rem;
  /* フォントサイズを縮小 */
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #444;
  /* 柔らかいダークグレー */
}

.kazari-en {
  display: inline-block;
  white-space: normal;
}

@media (max-width: 768px) {
  .kazari-en {
    display: inline !important;
    white-space: normal;
  }

  .kazari-en .sp-only {
    display: inline !important;
  }
}

.ttl-03 {
  font-size: 3.2rem;
  /* フォントサイズを縮小 */
  font-weight: 700;
  margin-top: 20px;
  color: #444;
  /* 柔らかいダークグレー */
}

.scroll_down {
  position: absolute;
  bottom: 50px;
  right: 50px;
  /* Speelead might be right or center, checking... */
  z-index: 20;
  color: #fff;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}

.scroll_down::after {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: #fff;
  margin-top: 10px;
}

/* Sections Common */
section {
  padding: 100px 0;
}

/* Top Message */
.section_top_message {
  padding: 60px 0 120px;
  /* Reduced top padding to narrow the gap from Hero */
  background: #ffffff;
}

.top_message_content {
  display: flex;
  align-items: center;
  /* 上下中央揃え */
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top_message_left {
  flex: 0 0 35%;
  /* 左側カラムの幅 */
}

.top_message_left .small-label {
  font-size: 1.6rem;
  color: #666;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.top_message_left .big-title {
  font-size: 8rem;
  /* フォントサイズをさらに拡大 */
  font-weight: 700;
  line-height: 1;
  color: #77CDE9;
  /* ブルーアクセント */
  letter-spacing: 0.05em;
}

.top_message_right {
  flex: 1;
  /* 右側カラムは残りのスペース */
}

.top_message_right .main-message {
  font-size: 2.4rem;
  /* フォントサイズを拡大 */
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  margin-bottom: 60px;
  /* 余白を広げる */
}

.top_message_right .sub-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.top_message_right .btn-mission {
  display: inline-block;
  padding: 15px 50px;
  background-color: #fff;
  color: #007bff;
  border: 1px solid #007bff;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 30px;
  transition: all 0.3s;
}

.top_message_right .btn-mission:hover {
  background-color: #007bff;
  color: #fff;
}

/* YouTube Video Embed */
.youtube-video-wrapper {
  margin-top: 60px;
  width: 100%;
}

.youtube-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #000;
}

.youtube-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .top_message_content {
    flex-direction: column;
    gap: 30px;
  }

  .top_message_left {
    flex: 1;
    text-align: center;
  }

  .top_message_left .small-label {
    font-size: 1.87rem;
  }

  .top_message_left .big-title {
    font-size: 4.37rem;
  }

  .top_message_right {
    width: 100%;
  }

  .top_message_right .main-message {
    font-size: 1.5rem;
  }

  .youtube-video-wrapper {
    margin-top: 0;
  }

  .youtube-video-container {
    border-radius: 8px;
  }
}

.top_message_content .txt {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 40px;
}

/* Solution */
.section_solution {
  background: #f5f5f5;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section_solution {
    padding: 60px 0;
  }
}

.solution_header {
  margin-bottom: 60px;
}

.solution_header .sub_ttl {
  display: block;
  font-size: 1.6rem;
  color: var(--color-main);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.solution_header .ttl-02 {
  margin-bottom: 20px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .solution_header .ttl-02 {
    line-height: 1.3;
    margin-bottom: 30px;
  }
}

.solution_desc {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.solution_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.solution_item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.solution_item:hover {
  transform: translateY(-5px);
}

.triangle_deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #77CDE9;
  /* Updated to site color */
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 5;
}

.triangle_deco i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  font-size: 2rem;
}

.triangle_deco img {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.item_inner {
  padding: 60px 40px 40px;
  flex-grow: 1;
  text-align: center;
}

.solution_item .icon {
  font-size: 6rem;
  color: #77CDE9;
  /* Light blue accent */
  margin: 0 auto 30px;
  display: block;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution_title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  line-height: 1.4;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge_wrap {
  margin-bottom: 30px;
}

.badge {
  display: inline-block;
  background: #e9eff5;
  color: var(--color-main);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 700;
}

.solution_details {
  list-style: none;
  padding: 0;
  text-align: left;
}

.solution_details li {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 24px;
  position: relative;
  color: #555;
}

.solution_details li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #77CDE9;
  font-size: 1.4rem;
}

.solution_footer {
  background: #77CDE9;
  /* Updated to site color */
  color: #fff;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
}

/* Service (Pinning) */
.section_service {
  padding: 0;
  overflow: hidden;
  /* Important for pinning */
}

.service_pin_wrap {
  width: 100%;
  height: 100vh;
  min-height: 900px;
  /* Minimum height to prevent overlap */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  padding: 0;
}

.service_header {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.service_content {
  width: 100%;
  max-width: 1200px;
  position: relative;
  height: 60vh;
  min-height: 500px;
  /* Minimum height for content area */
  padding: 0;
  margin-top: 100px;
  /* Extra margin to ensure spacing from header */
}

.service_block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  /* Hidden by default, controlled by JS */
  visibility: hidden;
  background: #fff;
}

.service_block.active {
  opacity: 1;
  visibility: visible;
}

.service_block:nth-child(even) {
  flex-direction: row-reverse;
}

.service_block .txt_area {
  width: 45%;
}

.service_block .img_area {
  width: 50%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service_block .img_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Works Slider */
/* Works Grid - 2 Column Layout */
.works_slider_business {
  margin: 60px 0 0;
  padding: 0 0 60px;
  position: relative;
}

.works_slider_business .swiper-wrapper {
  padding-bottom: 20px;
}

.works_slider_business .swiper-slide {
  height: auto;
}

.works_card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 10;
}

.works_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.works_card_link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.works_card_thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #f0f0f0;
}

.works_card_thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.works_card:hover .works_card_thumb img {
  transform: scale(1.1);
}

.works_card_thumb .no_img_placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 60px;
}

.works_card_body {
  padding: 40px;
}

.works_card_title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1f1f1f;
  margin-bottom: 12px;
  min-height: 72px;
}

.works_card_excerpt {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 16px;
  min-height: 58px;
}

.works_read_more {
  margin-top: 0;
}

.works_read_more .btn_text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.works_read_more .btn_text i {
  transition: transform 0.3s ease;
}

.works_card:hover .works_read_more .btn_text {
  color: #5ab3d1;
}

.works_card:hover .works_read_more .btn_text i {
  transform: translateX(5px);
}

.no_works {
  text-align: center;
  padding: 60px 0;
  font-size: 1.6rem;
  color: #999;
}

/* Section Header with VIEW MORE */
.section_header {
  margin-bottom: 0;
}

.section_header .ttl-01 {
  margin-bottom: 0;
}

/* Works Business Slider Navigation */
.works_slider_business .swiper-button-prev,
.works_slider_business .swiper-button-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--color-main);
  z-index: 1;
}

.works_slider_business .swiper-button-prev:after,
.works_slider_business .swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
}

.works_slider_business .swiper-button-prev:hover,
.works_slider_business .swiper-button-next:hover {
  background: var(--color-main);
  color: white;
}

.works_slider_business .swiper-pagination {
  bottom: 0;
  z-index: 1;
}

.works_slider_business .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-main);
  opacity: 0.3;
}

.works_slider_business .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Products Section */
.section_products {
  padding: 100px 0;
  background: #fff;
}

.products_slider {
  margin: 60px 0 0;
  padding: 0 0 60px;
  position: relative;
}

.products_slider .swiper-wrapper {
  padding-bottom: 20px;
}

.products_slider .swiper-slide {
  height: auto;
}

.product_card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 10;
}

.product_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product_link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.product_image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.product_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product_card:hover .product_image img {
  transform: scale(1.1);
}

.product_no_img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #c5d0de;
}

.product_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product_card:hover .product_overlay {
  opacity: 1;
}

.view_more {
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view_more i {
  transition: transform 0.3s ease;
}

.product_card:hover .view_more i {
  transform: translateX(5px);
}

.product_content {
  padding: 30px;
}

.product_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.product_category {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #77CDE9 0%, #5ABEDC 100%);
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.product_title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.product_card:hover .product_title {
  color: var(--color-main);
}

.product_excerpt {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.no_products {
  text-align: center;
  padding: 80px 0;
}

.no_products p {
  font-size: 1.6rem;
  color: #999;
}

/* Products Slider Navigation */
.products_slider .swiper-button-prev,
.products_slider .swiper-button-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--color-main);
  z-index: 1;
}

.products_slider .swiper-button-prev:after,
.products_slider .swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
}

.products_slider .swiper-button-prev:hover,
.products_slider .swiper-button-next:hover {
  background: var(--color-main);
  color: white;
}

.products_slider .swiper-pagination {
  bottom: 0;
  z-index: 1;
}

.products_slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-main);
  opacity: 0.3;
}

.products_slider .swiper-pagination-bullet-active {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .section_products {
    padding: 60px 0;
  }

  .product_image {
    height: 220px;
  }

  .product_content {
    padding: 24px;
  }

  .product_title {
    font-size: 2.81rem;
    line-height: 1.5;
  }

  .product_excerpt {
    font-size: 2.18rem;
    line-height: 1.6;
  }

  .products_slider .swiper-button-prev,
  .products_slider .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .products_slider .swiper-button-prev:after,
  .products_slider .swiper-button-next:after {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .works_slider_business .swiper-button-prev,
  .works_slider_business .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .works_slider_business .swiper-button-prev:after,
  .works_slider_business .swiper-button-next:after {
    font-size: 16px;
  }

  .works_card_body {
    padding: 30px;
  }

  .works_card_title {
    font-size: 2.81rem;
    min-height: auto;
    line-height: 1.5;
  }

  .works_card_excerpt {
    font-size: 2.18rem;
    min-height: auto;
    line-height: 1.6;
  }

  .works_read_more .btn_text {
    font-size: 2.03rem;
  }
}

/* Flow Section */
.section_flow {
  background: #fff;
  padding: 100px 0;
}

.flow_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.flow_step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.flow_step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.step_number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 20px;
}

.step_label {
  font-size: 1.6rem;
  color: var(--color-main);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.step_num {
  font-size: 5.6rem;
  font-weight: 900;
  color: var(--color-main);
  line-height: 1;
}

.step_image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.step_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow_step:hover .step_image img {
  transform: scale(1.1);
}

.step_info {
  text-align: left;
  padding: 5px 24px 30px;
}

.step_title_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.step_title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.flow_step:hover .step_title {
  color: var(--color-main);
}

.step_subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: #666;
  margin-left: 8px;
}

.step_desc {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 16px;
}

.step_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.step_tag {
  display: inline-block;
  background: #e9eff5;
  color: var(--color-main);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: 700;
  border: 2px solid var(--color-main);
  transition: all 0.3s ease;
}

.flow_step:hover .step_tag {
  background: var(--color-main);
  color: #fff;
}

/* Mission */
.section_mission {
  background: var(--color-text);
  color: #fff;
}

.mission_msg {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}

/* FAQ */
.faq_container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq_left {
  flex-shrink: 0;
  width: 280px;
  position: sticky;
  top: 120px;
}

.faq_breadcrumb {
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.faq_main_title {
  font-size: 8rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: #77CDE9;
  line-height: 1;
  margin: 0;
}

.faq_right {
  flex: 1;
  min-width: 0;
}

.faq_list {
  width: 100%;
}

.faq_item {
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
}

.faq_item:last-child {
  border-bottom: none;
}

.faq_question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq_question:hover {
  background-color: rgba(119, 205, 233, 0.05);
}

.faq_number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #77CDE9;
  font-family: var(--font-en);
  flex-shrink: 0;
  min-width: 60px;
}

.faq_title {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0;
}

.faq_toggle {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #77CDE9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(119, 205, 233, 0.2);
}

.faq_toggle:hover {
  background: #5ABEDC;
  box-shadow: 0 4px 15px rgba(119, 205, 233, 0.3);
  transform: scale(1.05);
}

.faq_icon {
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease;
  display: block;
}

.faq_item.active .faq_icon {
  transform: rotate(45deg);
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 80px;
}

.faq_item.active .faq_answer {
  max-height: 500px;
  padding: 0 0 30px 80px;
}

.faq_content {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .faq_container {
    gap: 50px;
  }

  .faq_left {
    width: 200px;
  }

  .faq_main_title {
    font-size: 6rem;
  }
}

@media screen and (max-width: 768px) {
  .faq_container {
    flex-direction: column;
    gap: 40px;
  }

  .faq_left {
    width: 100%;
    position: static;
    text-align: center;
  }

  .faq_breadcrumb {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .faq_main_title {
    font-size: 5rem;
  }

  .faq_question {
    gap: 15px;
    padding: 25px 0;
  }

  .faq_number {
    font-size: 3.12rem;
    min-width: 70px;
  }

  .faq_title {
    font-size: 2.5rem;
    line-height: 1.5;
  }

  .faq_toggle {
    width: 70px;
    height: 70px;
  }

  .faq_icon {
    font-size: 3.12rem;
  }

  .faq_answer {
    padding: 0 0 0 95px;
  }

  .faq_item.active .faq_answer {
    padding: 0 0 25px 95px;
  }

  .faq_content {
    font-size: 2.18rem;
    line-height: 1.7;
  }
}

/* Recruit */
.section_recruit {
  background: #f9f9f9;
  color: var(--color-text);
}

.recruit_banner {
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  align-items: center;
  gap: 40px;
}

.recruit_left {
  flex: 1;
  text-align: left;
}

.recruit_right {
  flex: 1;
}

.recruit_right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn_recruit {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 50px;
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn_recruit:hover {
  background: var(--color-main);
}

/* Contact */
.section_contact {
  background: #f9f9f9;
}

.btn_contact {
  display: inline-block;
  margin-top: 30px;
  padding: 20px 80px;
  background: var(--color-main);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn_contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 86, 179, 0.4);
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  padding: 80px 0 30px;
}

.footer_inner {
  justify-content: space-between;
  align-items: flex-start;
}

.footer_logo {
  margin-bottom: 30px;
}

.footer_logo img {
  width: 280px;
  /* Reduced from default large size */
  height: auto;
}

.footer_nav_list {
  gap: 20px;
  margin-bottom: 40px;
}

.footer_nav_list a {
  font-size: 1.4rem;
}

.copyright {
  text-align: right;
  color: #666;
}

/* ====================================
   Responsive Styles
==================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
  }

  .inner {
    width: 92%;
  }

  .header--logo img {
    height: 50px;
  }

  .gnav--menu {
    gap: 20px;
  }

  .gnav--link .en {
    font-size: 1.4rem;
  }

  .cta_link.btn a {
    width: 140px;
    height: 45px;
    font-size: 1.4rem;
  }

  .hero {
    height: 600px;
  }

  .hero--en {
    font-size: 8rem;
  }

  .ttl-03 {
    font-size: 2.4rem;
  }

  .ttl-01 {
    font-size: 3.2rem;
  }

  .ttl-02 {
    font-size: 2.8rem;
  }

  section {
    padding: 80px 0;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  html {
    font-size: 55%;
    /* 1rem = 8.8px */
  }

  :root {
    --header-height: 70px;
  }

  /* Header */
  .header {
    height: var(--header-height);
  }

  .header--logo img {
    height: 40px;
  }

  /* Hamburger Button */
  .gnav_btn {
    display: flex;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .gnav_btn--lines {
    width: 26px;
    height: 20px;
    position: relative;
  }

  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
  }

  .gnav_btn--lines span:nth-child(1) {
    top: 0;
  }

  .gnav_btn--lines span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .gnav_btn--lines span:nth-child(3) {
    bottom: 0;
  }

  /* Active state */
  .gnav_btn.active .gnav_btn--lines span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .gnav_btn.active .gnav_btn--lines span:nth-child(2) {
    opacity: 0;
  }

  .gnav_btn.active .gnav_btn--lines span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  /* Mobile Navigation */
  .gnav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 100px 30px 30px;
    overflow-y: auto;
    transition: right 0.4s ease;
    z-index: 1000;
    flex-direction: column;
    gap: 40px;
  }

  .gnav.active {
    right: 0;
  }

  .gnav--menu {
    flex-direction: column;
    gap: 0;
  }

  .gnav--menu .menu-item {
    border-bottom: 1px solid #e0e0e0;
  }

  .gnav--link {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .gnav--link .jp {
    position: static;
    opacity: 1;
    transform: none;
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #666;
  }

  .gnav--link .en {
    font-size: 1.6rem;
  }

  .gnav--link:hover .en {
    transform: none;
  }

  .cta_link.btn {
    width: 100%;
  }

  .cta_link.btn a {
    width: 100%;
    height: 50px;
  }

  /* Hero */
  .hero {
    height: 700px;
  }

  .hero--cont {
    padding-top: 100px;
    justify-content: flex-start;
  }

  .hero--en {
    font-size: 7.8rem;
    line-height: 1.3;
    margin-bottom: 20px !important;
  }

  .hero--en .sp-only {
    display: inline !important;
  }

  .ttl-03 {
    font-size: 2.8rem;
    line-height: 1.6;
    margin-top: 12px;
    margin-bottom: 24px;
  }

  .ttl-03 .sp-only {
    display: inline !important;
  }

  .scroll_down {
    bottom: 30px;
    right: 30px;
    font-size: 1.2rem;
  }

  .scroll_down::after {
    height: 40px;
  }

  /* Typography */
  .ttl-01 {
    font-size: 4.37rem;
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .ttl-01 .font-en {
    font-size: 2.18rem;
    margin-bottom: 8px;
  }

  .ttl-01 .ja {
    font-size: 4.37rem;
  }

  .ttl-02 {
    font-size: 3.74rem;
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .ttl-03 {
    font-size: 3.12rem;
    line-height: 1.5;
  }

  section {
    padding: 60px 0;
  }

  /* Top Message */
  .section_top_message {
    padding: 40px 0 60px;
  }

  /* Solution */
  .solution_header .sub_ttl {
    font-size: 2.18rem;
  }

  .solution_header .ttl-02 {
    font-size: 3.74rem;
  }

  .solution_list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .solution_item .icon {
    font-size: 7.02rem;
    height: 84px;
  }

  .solution_item .item_inner {
    padding: 45px 20px 20px;
  }

  .solution_title {
    font-size: 3.12rem;
    margin-bottom: 16px;
    line-height: 1.4;
  }

  .badge {
    font-size: 2.18rem;
    padding: 10px 24px;
  }

  .badge_wrap {
    margin-bottom: 16px;
  }

  .solution_details li {
    font-size: 2.18rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  /* Service */
  .section_service {
    padding: 60px 0;
  }

  .service_pin_wrap {
    min-height: auto;
    height: auto;
    padding: 40px 20px;
  }

  .service_header {
    position: static;
    transform: none;
    margin-bottom: 50px;
  }

  .service_header .ttl-01 {
    font-size: 3.6rem;
    margin-bottom: 20px;
  }

  .service_header .ttl-01 .font-en {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .service_header .ttl-01 .ja {
    font-size: 3.6rem;
    display: block;
    line-height: 1.3;
  }

  .service_content {
    height: auto;
    min-height: auto;
    margin-top: 0;
  }

  .service_block {
    position: static !important;
    flex-direction: column !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 60px;
    gap: 30px;
    padding: 0 10px;
  }

  .service_block:last-child {
    margin-bottom: 0;
  }

  .service_block .txt_area,
  .service_block .img_area {
    width: 100%;
  }

  .service_block .txt_area {
    padding: 0;
  }

  .service_block .txt_area .ttl-03 {
    font-size: 3.43rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .service_block .txt_area .desc {
    font-size: 2.34rem;
    line-height: 1.7;
    color: #555;
  }

  .service_block .img_area {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
  }

  /* Flow */
  .flow_content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .step_image {
    height: 200px;
  }

  .step_info {
    padding: 24px 20px;
  }

  .step_title {
    font-size: 2.81rem;
    line-height: 1.4;
  }

  .step_desc {
    font-size: 2.18rem;
    line-height: 1.7;
  }

  .step_tag {
    font-size: 1.87rem;
  }

  .step_num {
    font-size: 4.8rem;
  }

  .step_label {
    font-size: 1.4rem;
  }

  .step_tag {
    font-size: 1.2rem;
    padding: 6px 14px;
  }

  /* Recruit */
  .recruit_banner {
    flex-direction: column;
    padding: 40px 30px;
    gap: 30px;
  }

  .recruit_left,
  .recruit_right {
    width: 100%;
  }

  .recruit_left {
    text-align: left;
  }

  .recruit_left .msg {
    font-size: 2.34rem;
    line-height: 1.7;
  }

  .btn_recruit {
    font-size: 2.18rem;
    padding: 18px 60px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  html {
    font-size: 50%;
    /* 1rem = 8px */
  }

  .kazari-en {
    display: inline !important;
  }

  .hero {
    height: 650px;
  }

  .hero--cont {
    padding-top: 90px;
    justify-content: flex-start;
  }

  .hero--en {
    font-size: 7rem;
    line-height: 1.3;
    margin-bottom: 16px !important;
  }

  .hero--en .sp-only {
    display: inline !important;
  }

  .ttl-03 {
    font-size: 2.5rem;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .ttl-03 .sp-only {
    display: inline !important;
  }

  .ttl-01 {
    font-size: 4.06rem;
    line-height: 1.4;
  }

  .ttl-01 .font-en {
    font-size: 2.03rem;
  }

  .ttl-01 .ja {
    font-size: 4.06rem;
  }

  .ttl-02 {
    font-size: 3.12rem;
    line-height: 1.4;
  }

  section {
    padding: 50px 0;
  }

  /* Service */
  .service_pin_wrap {
    padding: 30px 15px;
  }

  .service_header {
    margin-bottom: 40px;
  }

  .service_header .ttl-01 {
    font-size: 4.99rem;
  }

  .service_header .ttl-01 .ja {
    font-size: 4.99rem;
  }

  .service_block {
    margin-bottom: 50px;
    gap: 25px;
    padding: 0 5px;
  }

  .service_block .txt_area .ttl-03 {
    font-size: 3.12rem;
    margin-bottom: 16px;
    line-height: 1.4;
  }

  .service_block .txt_area .desc {
    font-size: 2.18rem;
    line-height: 1.7;
  }

  .service_block .img_area {
    height: 240px;
  }

  .flow_content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .step_num {
    font-size: 4rem;
  }

  .step_label {
    font-size: 1.3rem;
  }

  .step_image {
    height: 180px;
  }

  .step_info {
    padding: 20px 16px;
  }

  .step_title {
    font-size: 2.5rem;
    line-height: 1.4;
  }

  .step_desc {
    font-size: 2.03rem;
    line-height: 1.7;
  }

  .step_tag {
    font-size: 1.72rem;
    padding: 7px 18px;
  }

  .recruit_banner {
    padding: 30px 20px;
  }

  .mission_msg {
    font-size: 3rem;
  }

  /* News */
  .news_thumb {
    width: 100px;
    height: 100px;
  }

  .news_link .title {
    font-size: 2.34rem;
    -webkit-line-clamp: 2;
    line-height: 1.5;
  }

  .news_link .date {
    font-size: 1.87rem;
  }

  .news_link .category {
    font-size: 1.72rem;
    padding: 5px 14px;
  }
}

@media (max-width: 768px) {
  .footer_inner {
    flex-direction: column;
    text-align: center;
  }

  .footer_left,
  .footer_right {
    width: 100%;
  }

  .footer_nav_list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .copyright {
    text-align: center;
  }
}

/* News Section */
.section_news {
  padding: 100px 0;
}

.news_header {
  border-bottom: 2px solid #333;
  padding-bottom: 20px;
}

.news_list {
  margin-top: 40px;
  display: grid;
  gap: 40px 30px;
}

.grid-col3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-col4 {
  grid-template-columns: repeat(4, 1fr);
}

.news_item {
  border-bottom: none;
}

.news_link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}

.news_link:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.news_thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-right: 0;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Changed back to cover but with better container handling */
  transition: transform 0.5s ease;
}

.news_link:hover .news_thumb img {
  transform: scale(1.05);
}

.news_body {
  flex: none;
  min-width: 0;
}

.news_meta {
  margin-bottom: 12px;
}

.news_link .date {
  font-size: 1.2rem;
  /* Increased from 1.1rem */
  color: #888;
  letter-spacing: 0.05em;
}

.news_link .category {
  font-size: 1.1rem;
  /* Increased from 1rem */
  padding: 6px 18px;
  background: #333;
  color: #fff;
  border-radius: 4px;
  margin-left: 20px;
}

.news_link .title {
  font-size: 2rem;
  /* Drastic increase from 1.6rem */
  font-weight: 800;
  /* Extra bold */
  line-height: 1.3;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Increased to 3 lines as it's bigger */
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  /* Fixed horizontal overlap */
  overflow-wrap: break-word;
}

/* Response for News Grid */
@media (max-width: 1024px) {
  .grid-col3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-col3 {
    grid-template-columns: 1fr;
  }

  .grid-col4 {
    grid-template-columns: 1fr;
  }

  .section_news {
    padding: 60px 0;
  }

  .news_list {
    gap: 40px;
  }

  .news_thumb {
    margin-bottom: 16px;
  }
}

.btn_more {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn_more:hover {
  background: #333;
  color: #fff;
}

/* Utilities */
.flex {
  display: flex;
}

.flex-j-between {
  justify-content: space-between;
}

.flex-a-center {
  align-items: center;
}

.btn_more {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn_more:hover {
  background: #333;
  color: #fff;
}

/* Utilities */
.flex {
  display: flex;
}

.flex-j-between {
  justify-content: space-between;
}

.flex-a-center {
  align-items: center;
}

.center {
  text-align: center;
}

.mgn-btm16 {
  margin-bottom: 16px;
}

.mgn-btm40 {
  margin-bottom: 40px;
}

.mgn-top32 {
  margin-top: 32px;
}

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: inline !important;
  }
}

.center {
  text-align: center;
}

.mgn-btm40 {
  margin-bottom: 40px;
}

.mgn-top32 {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .news_link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .news_thumb {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-right: 0;
    margin-bottom: 0;
  }

  .news_body {
    flex: 1;
    min-width: 0;
  }

  .news_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
  }

  .news_link .date {
    font-size: 2.18rem;
    margin-right: 0;
  }

  .news_link .category {
    font-size: 1.87rem;
    padding: 6px 18px;
    margin-left: 0;
  }

  .news_link .title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 0;
    -webkit-line-clamp: 3;
  }
}

/* ====================================
   Company Section
==================================== */
.section_company {
  padding: 100px 0;
}

.mgn-btm60 {
  margin-bottom: 60px;
}

.company_content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.company_info {
  flex: 1;
  min-width: 0;
}

.company_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.company_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.company_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.company_label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.05em;
}

.company_value {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text);
}

.company_map {
  flex: 1;
  min-width: 0;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.company_map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .company_content {
    flex-direction: column;
    gap: 40px;
  }

  .company_map {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .section_company {
    padding: 60px 0;
  }

  .mgn-btm60 {
    margin-bottom: 40px;
  }

  .company_list {
    gap: 24px;
  }

  .company_item {
    gap: 6px;
    padding-bottom: 24px;
  }

  .company_label {
    font-size: 2.03rem;
  }

  .company_value {
    font-size: 2.34rem;
    line-height: 1.6;
  }

  .company_map {
    height: 300px;
  }
}

/* ====================================
   Contact Form
==================================== */
.contact_form_container {
  max-width: 800px;
  margin: 60px auto 0;
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact_form_wrapper {
  width: 100%;
}

.form-group {
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.form-control,
.form-control-textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.6rem;
  font-family: var(--font-ja);
  color: var(--color-text);
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus,
.form-control-textarea:focus {
  outline: none;
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(119, 205, 233, 0.1);
}

.form-control::placeholder,
.form-control-textarea::placeholder {
  color: #999;
}

.form-control-textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.8;
}

/* Agreement Checkbox */
.form-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  vertical-align: middle;
  accent-color: var(--color-main);
}

.form-group input[type="checkbox"] + label {
  display: inline;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
  vertical-align: middle;
  cursor: pointer;
}

/* Form Required Asterisk */
.form-required {
  color: #e74c3c;
  font-weight: 700;
  margin-left: 4px;
}

/* Submit Button */
.contact-btn {
  display: inline-block;
  padding: 18px 60px;
  background: var(--color-main);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(119, 205, 233, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-ja);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(119, 205, 233, 0.4);
  opacity: 1;
}

.contact-btn:active {
  transform: translateY(-1px);
}

/* Form Layout */
.btn {
  text-align: center;
  margin-top: 20px;
}

/* Hidden iframe for form submission */
iframe[name="hidden_iframe"] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .contact_form_container {
    padding: 40px 30px;
    margin: 40px auto 0;
  }

  .form-group {
    margin-bottom: 28px;
  }

  .form-group label {
    font-size: 2.34rem;
  }

  .form-control,
  .form-control-textarea {
    padding: 22px 24px;
    font-size: 2.34rem;
  }

  .form-control-textarea {
    min-height: 216px;
  }

  .contact-btn {
    padding: 24px 30px;
    font-size: 2.5rem;
    width: 100%;
  }

  .form-group input[type="checkbox"] + label {
    font-size: 2.03rem;
  }
}

/* ====================================
   Success Modal
==================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 60px 50px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-overlay.show .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: var(--color-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: checkmarkPop 0.5s ease 0.2s backwards;
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.modal-icon i {
  font-size: 4rem;
  color: #fff;
}

.modal-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.4;
}

.modal-message {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.modal-close-btn {
  display: inline-block;
  padding: 14px 50px;
  background: var(--color-main);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-ja);
}

.modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(119, 205, 233, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    padding: 50px 30px;
  }

  .modal-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }

  .modal-icon i {
    font-size: 3.5rem;
  }

  .modal-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .modal-message {
    font-size: 1.5rem;
    margin-bottom: 35px;
  }

  .modal-close-btn {
    padding: 12px 40px;
    font-size: 1.5rem;
  }
}

/* ========================================
   Logo Slider Section
   ======================================== */
.section_logo_slider {
  background: #ffffff;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.logo_slider_wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.logo_slider_track {
  display: flex;
  gap: 80px;
  animation: logoScroll 30s linear infinite;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.logo_item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo_item img {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
  pointer-events: none;
}

.logo_item img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive - Logo Slider */
@media (max-width: 768px) {
  .section_logo_slider {
    padding: 24px 0;
  }

  .logo_slider_track {
    gap: 50px;
    animation: logoScroll 20s linear infinite;
  }

  .logo_item img {
    height: 27px;
  }
}

/* ========================================
   Hero CTA Buttons
   ======================================== */
.hero_cta_buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hero_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero_cta_primary {
  background: var(--color-main);
  color: #fff;
  box-shadow: 0 8px 25px rgba(119, 205, 233, 0.4);
}

.hero_cta_primary:hover {
  background: #5ab8d8;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(119, 205, 233, 0.5);
  opacity: 1;
}

.hero_cta_secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #444;
  border: 2px solid #444;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero_cta_secondary:hover {
  background: #444;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

@media (max-width: 768px) {
  .hero_cta_buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    align-items: stretch;
  }

  .hero_cta_btn {
    padding: 16px 28px;
    font-size: 2rem;
    width: 100%;
    max-width: none;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .hero_cta_btn {
    padding: 14px 24px;
    font-size: 1.8rem;
  }
}

/* ========================================
   Section CTA Button
   ======================================== */
.section_cta {
  margin-top: 48px;
}

.section_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  background: var(--color-main);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(119, 205, 233, 0.3);
  transition: all 0.3s ease;
}

.section_cta_btn:hover {
  background: #5ab8d8;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(119, 205, 233, 0.4);
  opacity: 1;
}

.mgn-top48 {
  margin-top: 48px;
}

@media (max-width: 768px) {
  .section_cta {
    margin-top: 40px;
  }

  .section_cta_btn {
    padding: 18px 50px;
    font-size: 2.5rem;
  }

  .mgn-top48 {
    margin-top: 40px;
  }
}

/* ========================================
   Flow Section Enhancements
   ======================================== */
.flow_catchphrase {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.flow_catchphrase .highlight {
  color: var(--color-main);
  font-size: 3.2rem;
  font-weight: 900;
}

.step_duration {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #b3e5f5;
  color: #01579b;
  padding: 6px 14px 6px 12px;
  border-radius: 4px 0 0 4px;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.step_duration::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 12px;
  border-color: transparent transparent transparent #b3e5f5;
}

@media (max-width: 768px) {
  .flow_catchphrase {
    font-size: 3.12rem;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .flow_catchphrase .highlight {
    font-size: 4.06rem;
  }

  .step_duration {
    font-size: 1.89rem;
    padding: 7px 16px 7px 14px;
  }

  .step_duration::after {
    border-width: 17px 0 17px 14px;
    right: -14px;
  }
}

@media (max-width: 480px) {
  .flow_catchphrase {
    font-size: 2.81rem;
  }

  .flow_catchphrase .highlight {
    font-size: 3.74rem;
  }

  .step_duration {
    font-size: 1.74rem;
    padding: 6px 12px 6px 10px;
  }

  .step_duration::after {
    border-width: 15px 0 15px 12px;
    right: -12px;
  }

  .step_title_wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* ===================================
   Fixed CTA Button
   =================================== */
.fixed_cta_button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed_cta_button.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed_cta_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background: linear-gradient(135deg, #77CDE9 0%, #00aaff 100%);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 170, 255, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.fixed_cta_link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 170, 255, 0.4);
  opacity: 1;
}

.fixed_cta_text {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .fixed_cta_button {
    bottom: 20px;
    right: 20px;
  }

  .fixed_cta_link {
    padding: 14px 24px;
    font-size: 2.1rem;
  }

  .fixed_cta_text {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .fixed_cta_button {
    bottom: 15px;
    right: 15px;
  }

  .fixed_cta_link {
    padding: 12px 20px;
    font-size: 1.95rem;
  }

  .fixed_cta_text {
    font-size: 1.95rem;
  }
}

/* ===================================
   Customer Testimonials Section
   =================================== */
.section_testimonials {
  padding: 100px 0;
  background: #ffffff;
}

.testimonials_container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.testimonials_left {
  flex: 0 0 280px;
}

.testimonials_left .ttl-01 {
  margin-bottom: 40px;
}

.testimonials_navigation {
  display: flex;
  gap: 20px;
  align-items: center;
}

.testimonials_right {
  flex: 1;
  overflow: hidden;
}

.testimonials_slider {
  width: 100%;
}

.testimonials_slider .swiper-slide {
  height: auto;
}

.testimonial_card {
  background: #ffffff;
  border: 2px solid #e8f4f8;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(119, 205, 233, 0.15);
  transition: all 0.3s ease;
}

.testimonial_card:hover {
  border-color: var(--color-main);
  box-shadow: 0 8px 30px rgba(119, 205, 233, 0.25);
}

.testimonial_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8f4f8;
}

.testimonial_info {
  flex: 1;
}

.testimonial_company {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 5px;
}

.testimonial_position {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 8px;
}

.testimonial_name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-main);
}

.testimonial_photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-main);
  box-shadow: 0 3px 15px rgba(119, 205, 233, 0.3);
  flex-shrink: 0;
}

.testimonial_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial_body {
  flex: 1;
  margin-bottom: 20px;
}

.testimonial_title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 15px;
  line-height: 1.4;
}

.testimonial_text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #555;
}

.testimonial_footer {
  text-align: left;
}

.testimonial_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--color-main);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(119, 205, 233, 0.3);
}

.testimonial_link:hover {
  background: var(--color-accent);
  transform: translateX(5px);
  box-shadow: 0 5px 18px rgba(119, 205, 233, 0.4);
  opacity: 1;
}

.testimonial_link i {
  transition: transform 0.3s ease;
}

.testimonial_link:hover i {
  transform: translateX(5px);
}

.testimonials-button-prev,
.testimonials-button-next {
  color: #ffffff !important;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  background: var(--color-main);
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(119, 205, 233, 0.4);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
}

.testimonials-button-prev:after,
.testimonials-button-next:after {
  font-size: 1.4rem !important;
  font-weight: bold !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

.testimonials-button-prev:hover,
.testimonials-button-next:hover {
  background: var(--color-accent);
  color: #ffffff !important;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(119, 205, 233, 0.5);
}

.testimonials-button-prev:hover:after,
.testimonials-button-next:hover:after {
  color: #ffffff !important;
}

/* Ensure testimonials buttons stay in their container */
.testimonials_navigation {
  position: relative;
  z-index: 10;
}

.testimonials-button-prev,
.testimonials-button-next {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
}

.testimonials_slider .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.testimonials_slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d0d0d0;
  opacity: 1;
}

.testimonials_slider .swiper-pagination-bullet-active {
  background: var(--color-main);
}

@media (max-width: 1024px) {
  .testimonials_container {
    flex-direction: column;
    gap: 40px;
  }

  .testimonials_left {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .testimonials_navigation {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section_testimonials {
    padding: 60px 0;
  }

  .testimonials_container {
    gap: 30px;
  }

  .testimonials_right {
    width: 100%;
    overflow: visible;
  }

  .testimonial_card {
    padding: 25px 20px;
  }

  .testimonial_header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .testimonial_photo {
    width: 120px;
    height: 120px;
    order: -1;
  }

  .testimonial_company {
    font-size: 1.6rem;
  }

  .testimonial_position {
    font-size: 1.3rem;
  }

  .testimonial_name {
    font-size: 1.5rem;
  }

  .testimonial_title {
    font-size: 1.6rem;
  }

  .testimonial_text {
    font-size: 1.3rem;
  }

  .testimonial_footer {
    text-align: center;
  }

  .testimonials-button-prev,
  .testimonials-button-next {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .testimonials-button-prev:after,
  .testimonials-button-next:after {
    font-size: 1.2rem;
  }
}

/* ===================================
   Pricing Table Section
   =================================== */
.section_pricing {
  padding: 80px 0 60px;
}

.section_pricing .section_header {
  margin-bottom: 60px;
}

.pricing_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.pricing_card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #e8f4f8;
}

.pricing_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--color-main);
}

.pricing_header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.pricing_icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 15px rgba(119, 205, 233, 0.3);
}

.pricing_icon i {
  font-size: 2.6rem;
  color: #ffffff;
}

.pricing_title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 8px;
}

.pricing_subtitle {
  font-size: 1.3rem;
  color: #666;
}

.pricing_price {
  text-align: center;
  margin-bottom: 20px;
}

.price_amount {
  display: block;
  font-size: 3.6rem;
  font-weight: bold;
  color: var(--color-main);
  font-family: var(--font-en);
  line-height: 1;
  margin-bottom: 5px;
}

.price_unit {
  font-size: 1.3rem;
  color: #999;
}

.pricing_features {
  list-style: none;
  margin-bottom: 0;
}

.pricing_features li {
  padding: 8px 0;
  font-size: 1.4rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.pricing_features li:last-child {
  padding-bottom: 0;
}

.pricing_features i {
  color: var(--color-main);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing_note {
  margin-top: 30px;
  padding: 25px;
}

.pricing_note p {
  font-size: 1.5rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing_note i {
  color: var(--color-main);
  font-size: 1.8rem;
}

.pricing_contact_btn {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--color-main) 0%, var(--color-accent) 100%);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(119, 205, 233, 0.3);
}

.pricing_contact_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(119, 205, 233, 0.4);
  opacity: 1;
}

@media (max-width: 1024px) {
  .pricing_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .section_pricing {
    padding: 50px 0 40px;
  }

  .section_pricing .section_header {
    margin-bottom: 40px;
  }

  .pricing_grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing_card {
    padding: 20px 15px;
  }

  .pricing_icon {
    width: 55px;
    height: 55px;
  }

  .pricing_icon i {
    font-size: 3.12rem;
  }

  .pricing_title {
    font-size: 3.12rem;
  }

  .pricing_subtitle {
    font-size: 2.08rem;
  }

  .price_amount {
    font-size: 4.68rem;
  }

  .price_unit {
    font-size: 1.82rem;
  }

  .pricing_features li {
    font-size: 2.08rem;
    padding: 7px 0;
  }

  .pricing_contact_btn {
    font-size: 2.08rem;
    padding: 14px 40px;
  }

  .pricing_note p {
    font-size: 1.82rem;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .pricing_title {
    font-size: 2.86rem;
  }

  .price_amount {
    font-size: 4.42rem;
  }

  .pricing_features li {
    font-size: 1.95rem;
  }

  .pricing_contact_btn {
    font-size: 1.95rem;
    padding: 12px 36px;
  }
}

/* Hide hero swiper navigation arrows */
.hero .swiper-button-prev,
.hero .swiper-button-next,
.hero_slide-pc .swiper-button-prev,
.hero_slide-pc .swiper-button-next,
.hero_slides .swiper-button-prev,
.hero_slides .swiper-button-next {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Hide testimonials slider default swiper arrows */
.testimonials_slider .swiper-button-prev,
.testimonials_slider .swiper-button-next {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Global fix: prevent any stray swiper buttons from appearing on hero */
body .hero .swiper-button-prev,
body .hero .swiper-button-next {
  display: none !important;
}

/* Force testimonials button arrow styles */
.testimonials_navigation .testimonials-button-prev::after,
.testimonials_navigation .testimonials-button-next::after,
.testimonials_navigation .swiper-button-prev::after,
.testimonials_navigation .swiper-button-next::after {
  font-size: 1.2rem !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Header: CONTACTボタンのmargin-topリセット（.btnのform用margin-top: 20pxを打ち消す） */
.gnav .cta_link.btn {
  margin-top: 0;
}
